优化实践教程示例项目
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

40717 行
2.1 MiB

#include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
struct VirtualActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct VirtualActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct VirtualActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R>
struct VirtualFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct VirtualFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1>
struct GenericVirtualFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1>
struct GenericInterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1>
struct InvokerFuncInvoker1;
template <typename R, typename T1>
struct InvokerFuncInvoker1<R, T1*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
{
R ret;
void* params[1] = { p1 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2>
struct InvokerFuncInvoker2;
template <typename R, typename T1, typename T2>
struct InvokerFuncInvoker2<R, T1*, T2*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2)
{
R ret;
void* params[2] = { p1, p2 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3>
struct InvokerFuncInvoker3;
template <typename R, typename T1, typename T2, typename T3>
struct InvokerFuncInvoker3<R, T1*, T2*, T3*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3)
{
R ret;
void* params[3] = { p1, p2, p3 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
// System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>
struct Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B;
// System.Action`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>
struct Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C;
// System.Action`1<System.Object>
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87;
// System.Action`1<UnityEngine.InputSystem.LowLevel.InputStateHistory/Record>
struct Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7;
// System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange>
struct Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333;
// System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.LowLevel.InputEventPtr>
struct Action_2_tBB6A2D36E83BB3B7BFA2ACD51493D5740A3D7F2E;
// System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice>
struct Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA;
// System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Object>
struct Action_2_tD987B97B18D27B9920365359C46BC12702AD4F7D;
// System.Action`2<System.Object,System.Int32Enum>
struct Action_2_t9C4E97D0565650F0AEF7C72077EB8A0F9326E40B;
// System.Action`2<System.String,UnityEngine.InputSystem.InputControlLayoutChange>
struct Action_2_t4797B88C63509F2EE4385D6DABE6A4B5AD5393F7;
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.InputSystem.InputDevice>
struct Dictionary_2_t0B4F40FB3850F8F8B487CCD9F64B8CF9ED139AB3;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,System.Func`1<UnityEngine.InputSystem.Layouts.InputControlLayout>>
struct Dictionary_2_tFF0F3921D8B2465193365C2463B7D6A977E874DA;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Utilities.InternedString[]>
struct Dictionary_2_tA8E192E813E347FF19EC3868E2C565607445394C;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Layouts.InputControlLayout>
struct Dictionary_2_t058B78C04CBFB0F1C72F95C9880AE09DA041219F;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Utilities.InternedString>
struct Dictionary_2_t433D1FE2CDB69C9F583F79D5252A34112439D0AD;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,System.String>
struct Dictionary_2_tEB3FF1660C6129E11F3B4771A549DE9F169B5103;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,System.Type>
struct Dictionary_2_t1FFEE4C9AF6AF524CAD4FDCEA8F3AB34E585451D;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/PrecompiledLayout>
struct Dictionary_2_tD68C40116E127FE79F9E7AF07820CFDDBF20A8C1;
// System.Func`2<UnityEngine.InputSystem.Android.LowLevel.AndroidAxis,System.String>
struct Func_2_t0825937F2E7F47B2A220EAB90DE0736AAEB5AE1D;
// System.Func`2<System.Int32Enum,System.Object>
struct Func_2_tF12503C33FD184E465546C31F324F4C344B8975A;
// System.Func`3<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice,System.Boolean>
struct Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0;
// System.Func`3<UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Object,System.Boolean>
struct Func_3_t0072F82DFBE56A425CAA051639D6DF09CB126719;
// System.Func`4<UnityEngine.InputSystem.InputControl,System.Double,UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Boolean>
struct Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2;
// System.Func`4<System.Object,System.Double,UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Boolean>
struct Func_4_t71673974799A3C352F89909BA77E8B33929F2A32;
// System.Collections.Generic.HashSet`1<UnityEngine.InputSystem.Utilities.InternedString>
struct HashSet_1_t87C47CF88B1B88398D4F9A1E51E92F834CF5160B;
// System.Collections.Generic.HashSet`1<System.String>
struct HashSet_1_tEFC6605F7DE53F71946C33FD371E53C3100F2178;
// System.Collections.Generic.IEnumerable`1<UnityEngine.InputSystem.Android.LowLevel.AndroidAxis>
struct IEnumerable_1_tEA842FBD01FA572CAD6A27FA6C2AF963089E6B12;
// System.Collections.Generic.IEnumerable`1<System.Int32Enum>
struct IEnumerable_1_t71A46277DBD73BD4009B2B20885D2B7057593A1A;
// System.Collections.Generic.IEnumerable`1<System.Object>
struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9;
// System.Collections.Generic.IEnumerable`1<System.String>
struct IEnumerable_1_t349E66EC5F09B881A8E52EE40A1AB9EC60E08E44;
// System.Collections.Generic.IEnumerable`1<UnityEngine.InputSystem.Touchscreen>
struct IEnumerable_1_t95A7770A90FA1932B7B5A6E80CFFE84EFDD89CD4;
// System.Collections.Generic.IEnumerable`1<UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage>
struct IEnumerable_1_t150759F7548BAA782C609A9B09BA00CEC84BE3E6;
// System.Collections.Generic.IEnumerator`1<UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>>
struct IEnumerator_1_tAFB65610F759CAFC5D1E91B68A548311182B6A22;
// System.Collections.Generic.IEnumerator`1<System.Char>
struct IEnumerator_1_t067D943FA808557FBA1FBED8EA4E9A1BFCB791B8;
// System.Collections.Generic.IEnumerator`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>
struct IEnumerator_1_tC686F7806DE87459BEAA5E37865B3E8BD4DAA1A0;
// System.Collections.Generic.IEnumerator`1<UnityEngine.InputSystem.EnhancedTouch.Touch>
struct IEnumerator_1_t8ED46B87E7705380C41A64C1E848D3F32789C639;
// System.IObserver`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>
struct IObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5;
// UnityEngine.InputSystem.InputControl`1<System.Single>
struct InputControl_1_t7A35A4AF63A7AA94678E000D4F3265A1FD84288A;
// UnityEngine.InputSystem.InputControl`1<UnityEngine.InputSystem.LowLevel.TouchState>
struct InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3;
// UnityEngine.InputSystem.InputControl`1<UnityEngine.Vector2>
struct InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66;
// UnityEngine.InputSystem.InputProcessor`1<System.Single>
struct InputProcessor_1_tFE49B42CB371A9A2A3F29802695BD251947AD0B4;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.InputSystem.LowLevel.TouchState>
struct InputProcessor_1_tCC7634AB386F9C6888B89C0FD440251E67C5D8F7;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Vector2>
struct InputProcessor_1_tD1A40E0E5825AAABC3416EC96E087FF6E6351DD2;
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState>
struct InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798;
// System.Collections.Generic.KeyValuePair`2<UnityEngine.InputSystem.Utilities.InternedString,System.Object>
struct KeyValuePair_2_tC24A74EF64A292F5C6BA77D0B04CD6620D2DE3AC;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>
struct List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448;
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>
struct List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>
struct List_1_t66029D02EA129D03A082E470EB98C85812301A0C;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HIDParser/HIDReportData>
struct List_1_t268ADAE63E623B42094720668F8DB571CF6085E6;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/LayoutMatcher>
struct List_1_t4E502B2E42676E48E6F9A8F0251ADB1DF4BD490E;
// UnityEngine.InputSystem.Utilities.SavedStructState`1<UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState>
struct SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B;
// System.Collections.Generic.Stack`1<UnityEngine.InputSystem.InputSystem/State>
struct Stack_1_tA8463878F53349F62A421C3630EBACB9CAFF75E4;
// UnityEngine.InputSystem.Utilities.SavedStructState`1/TypedRestore<UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState>
struct TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021;
// System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>[]
struct Action_1U5BU5D_t18C922CAB85EAE463E29566305D718EF64B12A16;
// System.Action`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>[]
struct Action_1U5BU5D_tE4E06618063C3EF89781BEB4DF47D183654040E6;
// System.Action`1<System.Object>[]
struct Action_1U5BU5D_t9AF7A60AA589F7071315F3DA2F77CD32CB43FB5D;
// System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange>[]
struct Action_2U5BU5D_tE696881AB7B602657DE1A212B1F9322B7F472FBB;
// System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.LowLevel.InputEventPtr>[]
struct Action_2U5BU5D_t493765D280908ABBDC5280C16C38A55BEB3FB645;
// System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice>[]
struct Action_2U5BU5D_tF0EAC88CF3D1AADA46955EC4879598BCF64FEA5B;
// System.Action`2<System.String,UnityEngine.InputSystem.InputControlLayoutChange>[]
struct Action_2U5BU5D_t03D844ECB7234028DD3556FBAD4097B4835CA7A4;
// System.IObserver`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>[]
struct IObserver_1U5BU5D_tC7308F301F0D09FCB9FED9003FC09E1AA8B7C170;
// UnityEngine.InputSystem.InputProcessor`1<System.Single>[]
struct InputProcessor_1U5BU5D_tFEE411B67EEAA6B997AF875A65D072993C8C809C;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.InputSystem.LowLevel.TouchState>[]
struct InputProcessor_1U5BU5D_t2D9B681F9F0B39759619A0D4617FB6B20FB10AC0;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Vector2>[]
struct InputProcessor_1U5BU5D_t5083205703ED9D1A4B8037E3BBE765389957231A;
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>[]
struct KeyValuePair_2U5BU5D_t45BAFB41C049BDC49B00275E5A255BB6DEB1396C;
// System.Collections.Generic.KeyValuePair`2<UnityEngine.InputSystem.Utilities.InternedString,System.Object>[]
struct KeyValuePair_2U5BU5D_tF8154B2302178CCE00D745DBF55F703880469DFC;
// System.Action[]
struct ActionU5BU5D_tF6161335A0A12A221AB081D78725C8AB6FE506D2;
// UnityEngine.InputSystem.Android.LowLevel.AndroidAxis[]
struct AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847;
// UnityEngine.InputSystem.Controls.ButtonControl[]
struct ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7;
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
// UnityEngine.InputSystem.EnhancedTouch.Finger[]
struct FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F;
// UnityEngine.InputSystem.Gamepad[]
struct GamepadU5BU5D_t907383551E67ACF51B8B4ECCC0E399DAE2AB3762;
// UnityEngine.InputSystem.LowLevel.GamepadButton[]
struct GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6;
// UnityEngine.InputSystem.InputControl[]
struct InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17;
// UnityEngine.InputSystem.InputDevice[]
struct InputDeviceU5BU5D_tA9AEFC6AF63557D3D5DCFB2B26DDA6F63147D548;
// UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate[]
struct InputDeviceCommandDelegateU5BU5D_t243984810DCC1E9828C0D6665D0B7AC435A43D9A;
// UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate[]
struct InputDeviceFindControlLayoutDelegateU5BU5D_t9B27C1115622DAB0A04E3C93E8A9D64EBFDA27BC;
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
// System.IntPtr[]
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
// UnityEngine.InputSystem.Utilities.InternedString[]
struct InternedStringU5BU5D_t0B851758733FC0B118D84BE83AED10A0404C18D5;
// UnityEngine.InputSystem.Joystick[]
struct JoystickU5BU5D_tF04167FBAEECAD6E2C47C144DD866A5B5790B8FD;
// UnityEngine.InputSystem.Key[]
struct KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A;
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
// UnityEngine.InputSystem.Pointer[]
struct PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5;
// System.Single[]
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
// UnityEngine.InputSystem.EnhancedTouch.Touch[]
struct TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354;
// UnityEngine.InputSystem.Controls.TouchControl[]
struct TouchControlU5BU5D_t339733075857CFF82B4E43BFB310F2350225836D;
// UnityEngine.InputSystem.Touchscreen[]
struct TouchscreenU5BU5D_t73D22E3D2A7039C6C374D75B796C8F83BCA897E3;
// System.UInt32[]
struct UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA;
// UnityEngine.Vector2[]
struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA;
// UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor[]
struct HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5;
// UnityEngine.InputSystem.HID.HID/HIDElementDescriptor[]
struct HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D;
// UnityEngine.InputSystem.HID.HIDParser/HIDReportData[]
struct HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955;
// UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage[]
struct HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD;
// UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem[]
struct ControlItemU5BU5D_t7798E8B7C7F58B8F6D13B567539CD82E962C7104;
// UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo[]
struct DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A;
// UnityEngine.InputSystem.InputManager/AvailableDevice[]
struct AvailableDeviceU5BU5D_t47A5F4F158146E9E9066D29DB4494D96AF8F1DB5;
// UnityEngine.InputSystem.InputManager/DeviceState[]
struct DeviceStateU5BU5D_t2FFF1D33A730514A6E6B9A88A22A1E5292442DD0;
// UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout[]
struct StateChangeMonitorTimeoutU5BU5D_t475D94CE66B17064D5DE2966779E7E9006A09D82;
// UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice[]
struct StateChangeMonitorsForDeviceU5BU5D_tA1D732EEFF09F568D8FDA6908633B6DAD38B61F4;
// UnityEngine.InputSystem.Accelerometer
struct Accelerometer_t9F891328DDA1A9CD745AC981AE5FA6BE9139B76E;
// System.Action
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
// UnityEngine.InputSystem.AmbientTemperatureSensor
struct AmbientTemperatureSensor_t76EBA3E167601D4CC695BC674983F15E4EEADAE8;
// UnityEngine.InputSystem.Android.AndroidAccelerometer
struct AndroidAccelerometer_t424C7F249B02EEE2B4FC08EEEB8CCA17979C0152;
// UnityEngine.InputSystem.Android.AndroidAmbientTemperature
struct AndroidAmbientTemperature_t708F5C6684A965DF4B1DB0FBCD468DDCCC718F85;
// UnityEngine.InputSystem.Android.LowLevel.AndroidCompensateDirectionProcessor
struct AndroidCompensateDirectionProcessor_t6EC5E83645FC7DD5345A83BD314EB8672860E557;
// UnityEngine.InputSystem.Android.LowLevel.AndroidCompensateRotationProcessor
struct AndroidCompensateRotationProcessor_tFDB308670A5D207966B1CF3BCA786D69D060F021;
// UnityEngine.InputSystem.Android.AndroidGamepad
struct AndroidGamepad_t786079AAF70FADAC9023B59E60BE8DB35903EF6E;
// UnityEngine.InputSystem.Android.AndroidGamepadWithDpadAxes
struct AndroidGamepadWithDpadAxes_tF737215B337DB2EE82739556B7D49B9C47E1E0A6;
// UnityEngine.InputSystem.Android.AndroidGamepadWithDpadButtons
struct AndroidGamepadWithDpadButtons_t62C4BA5D1E7EDAC25BF4540A84825D8F210121CA;
// UnityEngine.InputSystem.Android.AndroidGravitySensor
struct AndroidGravitySensor_t41E115E03C89B62509B2B088FA239E7DAFFF9695;
// UnityEngine.InputSystem.Android.AndroidGyroscope
struct AndroidGyroscope_t0C9BB3F1F09F92AD929863225385D22D46C2D39D;
// UnityEngine.InputSystem.Android.AndroidJoystick
struct AndroidJoystick_t046CDCD28C85B087F639711DB5F651B6D469CA01;
// UnityEngine.InputSystem.Android.AndroidLightSensor
struct AndroidLightSensor_t555467EDE38119DBD9BADEFD8EB33EC2E44D120A;
// UnityEngine.InputSystem.Android.AndroidLinearAccelerationSensor
struct AndroidLinearAccelerationSensor_t970198FECD057A043BC8DDEE99C42928861CE5D9;
// UnityEngine.InputSystem.Android.AndroidMagneticFieldSensor
struct AndroidMagneticFieldSensor_t1610FE66F3C8C0B079226776522B00876CD7307F;
// UnityEngine.InputSystem.Android.AndroidPressureSensor
struct AndroidPressureSensor_t35F3053D89964B2771F3C24CC0A3D3ACE7A64FFE;
// UnityEngine.InputSystem.Android.AndroidProximity
struct AndroidProximity_t0951C9819B491F6DA8066417FE24C750A409288F;
// UnityEngine.InputSystem.Android.AndroidRelativeHumidity
struct AndroidRelativeHumidity_tBEFC71512766927C2BB2C95270C4E9938A3F3342;
// UnityEngine.InputSystem.Android.AndroidRotationVector
struct AndroidRotationVector_tD623D1A57567CB6F21E37E60BBB5CE66042F1C3C;
// UnityEngine.InputSystem.Android.AndroidStepCounter
struct AndroidStepCounter_t60ECCD106CD8AD94CB740C46D212D1FA94DF38CD;
// UnityEngine.InputSystem.Android.AndroidSupport
struct AndroidSupport_t9BA3FBC7ECB2AA03961149F9D91F90CF72F1A65D;
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
// System.AsyncCallback
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C;
// UnityEngine.InputSystem.AttitudeSensor
struct AttitudeSensor_tA85F0C6E285FC1137DE8AB1CFB7357C7E8673906;
// UnityEngine.InputSystem.Controls.AxisControl
struct AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7;
// UnityEngine.Behaviour
struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA;
// System.IO.BinaryReader
struct BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158;
// System.IO.BinaryWriter
struct BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E;
// UnityEngine.InputSystem.Controls.ButtonControl
struct ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF;
// System.Byte
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3;
// UnityEngine.InputSystem.Processors.CompensateDirectionProcessor
struct CompensateDirectionProcessor_tD37E3634AA6A1D86A67B21CFFFF5BDD0F39183BE;
// UnityEngine.InputSystem.Processors.CompensateRotationProcessor
struct CompensateRotationProcessor_t1D14AFF56CF5C0B6615C8448470ABF88F7480D02;
// UnityEngine.Component
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3;
// System.Text.Decoder
struct Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
// UnityEngine.InputSystem.Controls.DoubleControl
struct DoubleControl_t3707A6260424A2F3636669A2BAFF5CB5E91D2486;
// UnityEngine.InputSystem.Controls.DpadControl
struct DpadControl_t517E87BF3EB22369B71EA1941648079B468A45AB;
// UnityEngine.InputSystem.Android.DualShock4GamepadAndroid
struct DualShock4GamepadAndroid_t12F04A138227E893CDB038399FFE400836152296;
// UnityEngine.InputSystem.DualShock.DualShockGamepad
struct DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B;
// System.Text.Encoder
struct Encoder_tAF9067231A76315584BDF4CD27990E2F485A78FA;
// System.Text.Encoding
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095;
// System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2;
// System.IO.FileStream
struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8;
// UnityEngine.InputSystem.EnhancedTouch.Finger
struct Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A;
// UnityEngine.GameObject
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F;
// UnityEngine.InputSystem.Gamepad
struct Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C;
// UnityEngine.InputSystem.GravitySensor
struct GravitySensor_t46D8EBFF773EDB6F2E508444B02B972300EC43D5;
// UnityEngine.InputSystem.Gyroscope
struct Gyroscope_t07C58BC3D40B432CE9B1526B33487FD23EBB47D4;
// UnityEngine.InputSystem.HID.HID
struct HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D;
// UnityEngine.InputSystem.HumiditySensor
struct HumiditySensor_t72BCA304940BF73377CB2B6CE2ACF7DCA6A97D03;
// System.IAsyncResult
struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5;
// System.Collections.IDictionary
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
// System.IDisposable
struct IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5;
// System.Collections.IEnumerator
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
// UnityEngine.InputSystem.LowLevel.IInputRuntime
struct IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09;
// UnityEngine.InputSystem.LowLevel.IInputStateChangeMonitor
struct IInputStateChangeMonitor_t043FD8736A6F45C06A2FAFFC5BE70A565F999598;
// UnityEngine.InputSystem.LowLevel.IMECompositionString
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E;
// System.IO.IOException
struct IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910;
// UnityEngine.InputSystem.Utilities.ISavedState
struct ISavedState_tC899A3970A1A39D623ABACC592E3E346F0CA7401;
// UnityEngine.InputSystem.InputControl
struct InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E;
// UnityEngine.InputSystem.Layouts.InputControlLayout
struct InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D;
// UnityEngine.InputSystem.InputDevice
struct InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B;
// UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate
struct InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809;
// UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate
struct InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A;
// UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate
struct InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E;
// UnityEngine.InputSystem.LowLevel.InputEvent
struct InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5;
// UnityEngine.InputSystem.LowLevel.InputEventBuffer
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE;
// UnityEngine.InputSystem.LowLevel.InputEventTrace
struct InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD;
// UnityEngine.InputSystem.InputManager
struct InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210;
// UnityEngine.InputSystem.InputRemoting
struct InputRemoting_tCBC35AAA3A034ECED8F33C5BA5257F2EB2B05114;
// UnityEngine.InputSystem.InputSettings
struct InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF;
// UnityEngine.InputSystem.LowLevel.InputStateHistory
struct InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480;
// UnityEngine.InputSystem.Controls.IntegerControl
struct IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB;
// System.InvalidCastException
struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E;
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
// UnityEngine.InputSystem.Joystick
struct Joystick_t2235B6B58C2C6BC3755C8E5852BC6BA9CFD0981C;
// UnityEngine.InputSystem.LightSensor
struct LightSensor_t9B735ADB57990930D7E180C6BF93F450845CD554;
// UnityEngine.InputSystem.LinearAccelerationSensor
struct LinearAccelerationSensor_tE9FB374E1BBE28478D63F7A580BF74664411BE68;
// UnityEngine.InputSystem.MagneticFieldSensor
struct MagneticFieldSensor_tCC668B97017215736B7B7BDDB0AB4E690EF16C34;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71;
// System.NotImplementedException
struct NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8;
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
// UnityEngine.Object
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;
// UnityEngine.InputSystem.Pointer
struct Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A;
// UnityEngine.InputSystem.PressureSensor
struct PressureSensor_t0F29E50DD84E69A639F1BFDBE1B2BF70E117F603;
// UnityEngine.InputSystem.ProximitySensor
struct ProximitySensor_tD3418A859057A9D7FFA0E099C00C403CD3916718;
// UnityEngine.InputSystem.Controls.QuaternionControl
struct QuaternionControl_t18A2F742850FC2FD82A1F980A35C188A29F1A0B1;
// UnityEngine.InputSystem.RemoteInputPlayerConnection
struct RemoteInputPlayerConnection_t30D11D576C269098E4EBC0E07291C767130FC3DF;
// Microsoft.Win32.SafeHandles.SafeFileHandle
struct SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
// System.Threading.SemaphoreSlim
struct SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2;
// UnityEngine.InputSystem.StepCounter
struct StepCounter_t892F78E1286E3B4DF254DFB6A5D28F2618BD32B2;
// UnityEngine.InputSystem.Controls.StickControl
struct StickControl_t2608D1388A5015029123635B4B589AC7EE20C50B;
// System.IO.Stream
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE;
// System.String
struct String_t;
// UnityEngine.InputSystem.EnhancedTouch.Touch
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70;
// UnityEngine.InputSystem.Controls.TouchControl
struct TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079;
// UnityEngine.InputSystem.Controls.TouchPhaseControl
struct TouchPhaseControl_t4652C6E0EBFAFA85A31607769876B02C1C9FCAEC;
// UnityEngine.InputSystem.Controls.TouchPressControl
struct TouchPressControl_tD5BD68D9FDEAC889591DD7A499864893A43C7CEB;
// UnityEngine.InputSystem.EnhancedTouch.TouchSimulation
struct TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0;
// UnityEngine.InputSystem.Touchscreen
struct Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE;
// System.Type
struct Type_t;
// UnityEngine.InputSystem.Controls.Vector2Control
struct Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432;
// UnityEngine.InputSystem.Controls.Vector3Control
struct Vector3Control_t32D7E4836F56C2FDC61BF0D96ED455DEFA6C949A;
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
// UnityEngine.InputSystem.XInput.XInputController
struct XInputController_t8DB31CC6BD9BB1B280AB37DA697D0AF92E6A6B19;
// UnityEngine.InputSystem.Android.XboxOneGamepadAndroid
struct XboxOneGamepadAndroid_t81C60ABAB05F8FA9762EBB7655043EFDCBCBC728;
// UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities/<>c
struct U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B;
// UnityEngine.InputSystem.HID.HID/<>c__DisplayClass12_0
struct U3CU3Ec__DisplayClass12_0_t128E165E956D7BC338F305A5B22EF50246D796A3;
// UnityEngine.InputSystem.HID.HID/HIDElementDescriptor
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED;
// UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder
struct HIDLayoutBuilder_t1B1FA825DFA02D93183E7C1B3C416D4A43D56553;
// UnityEngine.InputSystem.LowLevel.IMECompositionString/<buffer>e__FixedBuffer
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF;
// UnityEngine.InputSystem.LowLevel.InputEventListener/DisposableObserver
struct DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73;
// UnityEngine.InputSystem.LowLevel.InputEventListener/ObserverState
struct ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8;
// UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator
struct Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75;
// UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController
struct ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C;
// System.IO.Stream/ReadWriteTask
struct ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05;
// UnityEngine.InputSystem.EnhancedTouch.Touch/<>c
struct U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6;
// UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D;
// UnityEngine.InputSystem.EnhancedTouch.TouchHistory/Enumerator
struct Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5;
IL2CPP_EXTERN_C RuntimeClass* Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AndroidInputSource_t4E49A7A84DDF7CF3966E322F75C97EEA43DE2738_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t0825937F2E7F47B2A220EAB90DE0736AAEB5AE1D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tAFB65610F759CAFC5D1E91B68A548311182B6A22_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tC686F7806DE87459BEAA5E37865B3E8BD4DAA1A0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t268ADAE63E623B42094720668F8DB571CF6085E6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t66029D02EA129D03A082E470EB98C85812301A0C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TouchPhase_tC280DE0C3DA3652019BF3605D57099E6CE2F3B14_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UsagePage_t6EF545F107AB1DED99B07C377BD0B8457DC6F7B8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral012315DEACA80CA5572171295D68942333F9F9A7;
IL2CPP_EXTERN_C String_t* _stringLiteral05B5896E41F6CE375015DD206C28094820DE1498;
IL2CPP_EXTERN_C String_t* _stringLiteral0654CF7A7652A61085CCC7B975A9FB4D7C53DD46;
IL2CPP_EXTERN_C String_t* _stringLiteral08FB9129CB5911626293A76FA9EA45A589D9966E;
IL2CPP_EXTERN_C String_t* _stringLiteral0D74755D51876350D4B4382E014E2E93AD3D3B73;
IL2CPP_EXTERN_C String_t* _stringLiteral18F4362DA6D8860F62A6DA84DFB398164DBA5F0B;
IL2CPP_EXTERN_C String_t* _stringLiteral23AD0FFB4F9C6A352D6C32AAFEEA5457AD8207A0;
IL2CPP_EXTERN_C String_t* _stringLiteral294B0EF262D645A4939BABCFB7C842F2BC2E20B1;
IL2CPP_EXTERN_C String_t* _stringLiteral2A5AC4668ADDA05D44CC58641856CAE1ADB66D24;
IL2CPP_EXTERN_C String_t* _stringLiteral2B396DAFCF90B4201E355761B57D4F5B4820024F;
IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1;
IL2CPP_EXTERN_C String_t* _stringLiteral2E967EC47C0181B3A2E25F28AF8F0061B4E2A296;
IL2CPP_EXTERN_C String_t* _stringLiteral2F93CE416D1DF2E7B305D3D44798A355740F8407;
IL2CPP_EXTERN_C String_t* _stringLiteral30C9A4CE48482CFCCFE484E0EF36FF8844DDAE6E;
IL2CPP_EXTERN_C String_t* _stringLiteral31D159E683556C06B3B3963D92483B6867EB3233;
IL2CPP_EXTERN_C String_t* _stringLiteral34E2E1D5D393F33E08B55532C6B7D27294F02F4C;
IL2CPP_EXTERN_C String_t* _stringLiteral3BA4C63055FA6CF5A2214085C6E3F3F666044A57;
IL2CPP_EXTERN_C String_t* _stringLiteral3C54E891B7C3652F3066D6041DE2D9BABF6DCA32;
IL2CPP_EXTERN_C String_t* _stringLiteral413A93D2DA41C940A92CBF70746012937590610E;
IL2CPP_EXTERN_C String_t* _stringLiteral43187C90BBB5DFB063A95733C9BD65ECD25A2E84;
IL2CPP_EXTERN_C String_t* _stringLiteral4541DABAC4FE8FD5D7C4DBCDA1190481B5A90229;
IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8;
IL2CPP_EXTERN_C String_t* _stringLiteral4E6231226F0A62484622AE51964EB5710BB528F9;
IL2CPP_EXTERN_C String_t* _stringLiteral52644C0210EBD0D65678081FEE3608A5723F313B;
IL2CPP_EXTERN_C String_t* _stringLiteral5278FC49D5DD7EE6B7B489211DF85A018916ACB6;
IL2CPP_EXTERN_C String_t* _stringLiteral556A46F1AB4A0DE066935CB5894CD2C282D8730F;
IL2CPP_EXTERN_C String_t* _stringLiteral589E6D8BD59F7D804E4A1A1C559787B0B2549B6C;
IL2CPP_EXTERN_C String_t* _stringLiteral58EE5386C7A4EBFD342B1A8A3469B586CD7724F3;
IL2CPP_EXTERN_C String_t* _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174;
IL2CPP_EXTERN_C String_t* _stringLiteral5C82E0DD83FAB77ECA656BE8D48C1899B25B0815;
IL2CPP_EXTERN_C String_t* _stringLiteral62F4F3914DA44EFA764CD7207FD98C1D7D603493;
IL2CPP_EXTERN_C String_t* _stringLiteral670E19EC873FB9B20AEA9120EC8039FAC7747881;
IL2CPP_EXTERN_C String_t* _stringLiteral67D79FFE3F1020FFFD4380B534EF1D4B43C549A1;
IL2CPP_EXTERN_C String_t* _stringLiteral682C94355936D06676EFEE25A133C60E3F8445C8;
IL2CPP_EXTERN_C String_t* _stringLiteral6C63C93EC2E14069C02301603969E78DB054EF8E;
IL2CPP_EXTERN_C String_t* _stringLiteral6CD29DF87BDE4FB4030DE06320C56337EE9127EF;
IL2CPP_EXTERN_C String_t* _stringLiteral71422D56F07943E650B22F6F3B927D53A7515425;
IL2CPP_EXTERN_C String_t* _stringLiteral7301585ABD4376FD1069F11E591E81BFFA6949FA;
IL2CPP_EXTERN_C String_t* _stringLiteral75C2382105EE7550A774237E98EAB4B761429404;
IL2CPP_EXTERN_C String_t* _stringLiteral77843243D4312B40A1163EFE55D56961E2352D09;
IL2CPP_EXTERN_C String_t* _stringLiteral79E7200C256B5A139CC2342D4CDC95E51A6DD366;
IL2CPP_EXTERN_C String_t* _stringLiteral7A3DCBDB544A326B1B52EBC4A2AB7E3A5470AD85;
IL2CPP_EXTERN_C String_t* _stringLiteral7C4A74EE167FC8265DC7AC8BA68D37DAF14A0C55;
IL2CPP_EXTERN_C String_t* _stringLiteral7CBC829EB9D45B990872742C9C460CF80137D155;
IL2CPP_EXTERN_C String_t* _stringLiteral7ED914680C555D96C6ADF1D908946F172FCFAFCB;
IL2CPP_EXTERN_C String_t* _stringLiteral80C0A09DC56E67593A40EC47DEE2A4827DB0BC33;
IL2CPP_EXTERN_C String_t* _stringLiteral822D2E2FACD5A075837EA460A85415C1BB4A5B00;
IL2CPP_EXTERN_C String_t* _stringLiteral82D598CE3B93B20E038CBF5D5EE6829297E22B95;
IL2CPP_EXTERN_C String_t* _stringLiteral894192F113AFCA62FF819992911789F3CD2A99BF;
IL2CPP_EXTERN_C String_t* _stringLiteral8F6CFBA1DD39F197A0470DD4831EDB73FF9AA184;
IL2CPP_EXTERN_C String_t* _stringLiteral9185A9C6A1BF633445844194B5073A9E7D587F4D;
IL2CPP_EXTERN_C String_t* _stringLiteral924007ED054F82D9429F46EA3884D176E0DB744B;
IL2CPP_EXTERN_C String_t* _stringLiteral97390174FD4C882BACE6D033A351D373021320B0;
IL2CPP_EXTERN_C String_t* _stringLiteral984F1D6B627002C7E119AF5664891A8440D6A1ED;
IL2CPP_EXTERN_C String_t* _stringLiteral98BC550B25E41B9B00C9D21EF0AD0291FE9A85CC;
IL2CPP_EXTERN_C String_t* _stringLiteral9AF4E05D5EE30F6198706F2776329DBF078FC7EC;
IL2CPP_EXTERN_C String_t* _stringLiteral9C48CA6788127425CDDF8980A9418FBA63A97A7A;
IL2CPP_EXTERN_C String_t* _stringLiteralA44A39671D4B7FA8FBE50D795EAB52248D5C5469;
IL2CPP_EXTERN_C String_t* _stringLiteralA4EC35FE30A8C73BDAEF7A654EEEA3953D7FAE24;
IL2CPP_EXTERN_C String_t* _stringLiteralA7A40E38D01B668F4968EFCD7A511545A5B99846;
IL2CPP_EXTERN_C String_t* _stringLiteralA86DE20D593008E3327ECC746BF23D927DB2B176;
IL2CPP_EXTERN_C String_t* _stringLiteralAD23E6251FEEFC7CF204F3BB7E43B14EE901517E;
IL2CPP_EXTERN_C String_t* _stringLiteralAE11AB31B7AFD5F5D11CBA5FAE03571E8E0EE750;
IL2CPP_EXTERN_C String_t* _stringLiteralAF8D2CB665353A2FDB49DC87BFE7DEE6E860AA31;
IL2CPP_EXTERN_C String_t* _stringLiteralB2A6BBCEEF1288495F26EB3470ACB3FD27C456E3;
IL2CPP_EXTERN_C String_t* _stringLiteralB7FFC054EB71FDBA49A8F29EC2F5EDB55D76F076;
IL2CPP_EXTERN_C String_t* _stringLiteralBA67382D61289B0EDBD1CD867DE673562B9B5111;
IL2CPP_EXTERN_C String_t* _stringLiteralBBD73174406D6BAD02A5FFCA92D8E5008A02E589;
IL2CPP_EXTERN_C String_t* _stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB;
IL2CPP_EXTERN_C String_t* _stringLiteralC1FF02C94AF6761BB495CE9E94D85A9422EE0E3A;
IL2CPP_EXTERN_C String_t* _stringLiteralC2451B8C6D92CA7D8CE2544B065B761C4B4C9647;
IL2CPP_EXTERN_C String_t* _stringLiteralC263EA29ADF3548CFEBC57B532EED28451A56C10;
IL2CPP_EXTERN_C String_t* _stringLiteralC26AE6F38B24292B9F4A89F463BE2C43F48DEBD1;
IL2CPP_EXTERN_C String_t* _stringLiteralC5F6475699851D077E0F965E3C29BEB8A33E339A;
IL2CPP_EXTERN_C String_t* _stringLiteralCA0F65034D6B6BD3BB9E353144259AC585587137;
IL2CPP_EXTERN_C String_t* _stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F;
IL2CPP_EXTERN_C String_t* _stringLiteralD04950964E883490D4CCE5E2BB5659308B237EA5;
IL2CPP_EXTERN_C String_t* _stringLiteralD408E794AF2B358E256380A4F7BA14299C3D5801;
IL2CPP_EXTERN_C String_t* _stringLiteralD4D9018374577033D15B6167431AD3810E804E83;
IL2CPP_EXTERN_C String_t* _stringLiteralD52F14A7E64122290D63B7EF4B3530CB47A85E14;
IL2CPP_EXTERN_C String_t* _stringLiteralD64DE515DE159C401BB82652225D6BE22CDAD7A1;
IL2CPP_EXTERN_C String_t* _stringLiteralD748E233FD289CD4B1ED5D7797639399A9B696ED;
IL2CPP_EXTERN_C String_t* _stringLiteralD8D5235574444C342D8D4E761289705C697DD73F;
IL2CPP_EXTERN_C String_t* _stringLiteralDC71B380AFF23A38F6029B32B61C6943CB960350;
IL2CPP_EXTERN_C String_t* _stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5;
IL2CPP_EXTERN_C String_t* _stringLiteralE493A589C92D423742E94550596D4C4E4B20CC33;
IL2CPP_EXTERN_C String_t* _stringLiteralE518FE2FD73613C259C98F83F70015A67E8459D1;
IL2CPP_EXTERN_C String_t* _stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF;
IL2CPP_EXTERN_C String_t* _stringLiteralE94EF447B7CA22BD133EBC24A4C29384FD843DB0;
IL2CPP_EXTERN_C String_t* _stringLiteralEBE3EEDD107BB87C6567C5FBFDC3A815F512391E;
IL2CPP_EXTERN_C String_t* _stringLiteralF33AEA4F74EB3F443686A5ABBEB28AFF89059C6F;
IL2CPP_EXTERN_C String_t* _stringLiteralF43C565EB197642FD7A61215CD152E5223F84532;
IL2CPP_EXTERN_C String_t* _stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914;
IL2CPP_EXTERN_C String_t* _stringLiteralF87BFA6908F78FD2F9414AE8928800B1CECA77EC;
IL2CPP_EXTERN_C String_t* _stringLiteralFAAED55F148F74B2C74F8C745D3CF6CBC766B1DC;
IL2CPP_EXTERN_C const RuntimeMethod* ActionEvent_From_m8E1D5F422A20DDD6B2FF8FE3B34DBCC2F33548E2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ActionEvent_set_bindingIndex_mF620F2E875C9E6EC9B51271D6E8F469C4E855708_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ActionEvent_set_controlIndex_m2AC91D48B3CCA9C73415A1F85648CB93B05711E7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ActionEvent_set_interactionIndex_m8369A717B14FE2DE5CC74F55A1764EFE2DCE0546_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ActionEvent_set_stateIndex_m6A5B88C7CD64D3BC75B8211484AF25280C5E520B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AndroidDeviceCapabilities_FromJson_mA71F4880BD35D6541D70A08607FDA510FBAB2615_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AndroidSensorCapabilities_FromJson_m8F522B25918D4061F431D9E1342AD3250C5D7D62_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AndroidSensorState_WithData_m5CA936E024B49BFA51E35E17643A7A1393427101_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AndroidSupport_OnFindLayoutForDevice_m8D54B20C58E793F3810737C2ABE26E462F29BFAF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_AppendWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mA0F243DCF6B46AF4F8BF3C2129CC386433A13ECC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_AppendWithCapacity_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_mC5BF2128B73357928D460A8F53B4AEEE75704DEB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_AppendWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m3E7EA1BC4C9A50C286CED7589BFB84378410F71E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_AppendWithCapacity_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m68E6FD9C5D608130BCBB593660420B8C744A7459_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_Append_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m50A8921FF90F5A6E5BA2D15D6D58D486B3D882BC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_Clear_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m9FD4CFA77DBA7687E309C7E824110DA0601CEA9A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_Clear_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_m7D9C926B759FBD5D6ED532FC4C0E82C39B00A223_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_Clear_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m75DA9B4408B934504135E39F0169061B763484F1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_ContainsReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m8EB37E781A7A5D954305A6264CC1CBC77CFE01E6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_EnsureCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m971DE1F66935BC99FA38DD3DA860BD52628087A1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_EraseAtWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m2179F91C32ADB02EDFAD572124793CE03CD33447_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_EraseAtWithCapacity_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m89DBB1BBEAA8E9BDFB918291668D52A0FB6B971E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_EraseSliceWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m349F0F46D2A4FAC0A03FEAB5730B615633E0FDE4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m7F202185A312FF5654544DCE9CF8EBB5CB163760_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_m80E0602C0A8BF5D7EFA613CFEA7AF5EED6492EB0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisInputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B_m7E90E70DE1BE6505096E9B1FE7E8E4B72C0EAB61_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_mA905115B7F581BBE35AF535DCE9A0AC2F53F5EF5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_InsertAtWithCapacity_TisTouch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_m96BFF397234C618FAA34CAA72DE6AD4F4113819B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_LengthSafe_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m23FEE5388406AABEE411B02BE7EB7F6CFB9B5DFF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_AddCallback_m3952EFDAB87F62F3748292CDF90AB17DFB3BC72B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_RemoveCallback_m193ADCFAE914FE65AB4E5206FA645A02CDC9890D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_get_length_m096E657BAB53406356BABE16CE03C92212CF5A52_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m4153D51E2445D2C899F268C65D1C858A092C7206_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_m4EA8E60C61F02A061BF6D95B1411AC917E54A074_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DeltaStateEvent_From_m623498D28E12FF7B0ACD6D863034E634D4CECBC1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DeltaStateEvent_From_mC63B48B86DC2A4699F37521D347FBC89A07C6E8F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DualMotorRumble_PauseHaptics_m3BE8E2167226A3C37799E19743D4F8DAD232E31A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DualMotorRumble_ResetHaptics_m0589143821BBBA3DEA22D4F88027063057FBADA5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DualMotorRumble_ResumeHaptics_mECD40150D2AAB95F7FA25BC7BD146E0C28B76E56_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DualMotorRumble_SetMotorSpeeds_m59E9BDD10561248589656B578B7D741DA3931A59_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EnhancedTouchSupport_CheckEnabled_m3FC2364507836124CB8E289D66CA0B2CF3F8B10C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EnhancedTouchSupport_OnDeviceChange_mAF845A948AFFB9419953242B144E4B50971F0100_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EnhancedTouchSupport_OnSettingsChange_m410D59C33D4CC6AE8EC12808F4DBAD66E5A265E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Contains_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_m3A90F2A6B53FFE9AFE2BECEB27CB51257ADC2E38_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Contains_TisHIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F_mB26F4731F210BE498011E27E6DD428518C90CDD5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Select_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_TisString_t_mFF4D6A3B07A9821C08DE0D6B5EE2E5D62DD31F59_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToArray_TisString_t_mCD2BC789CBFF834E06F00948FC47E15E720936DC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mE6025392536B1B57D5D39AD09482558157C4CBAA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mEDB482ACA649331B5EF4524B9E1D4C3B9BCD1134_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m6FBB9F9F70B0D21E92C7D13E26DDC8EA5A70ACB3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mB9DC3D934804170CFD1F8B40AD171946368F5E8C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m5EA592269528B338C04111C5D99C9FA016762671_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m61FE609D85AF8173D12BD2876CCD1039024B4F54_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Finger_OnTouchRecorded_m242B4B22E53D86C6710D4D23C1455CF98B30B19F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Finger_ShouldRecordTouch_m2A7ED7057D66C551407600CECA628F04E156B94D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_AddComponent_TisTouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_m3332B854D47D58542E9A5D19442054BDFC92FD85_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GamepadState__ctor_mD69F20EFA852648DFB4A97AC8B91692FBA793373_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HIDDeviceDescriptorBuilder_AddElement_mD994613C265EE2137E086C3BD8A028E81763647E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HIDDeviceDescriptorBuilder_WithLogicalMinMax_m3B81BFABC8C577FFF03F61E1B205DF09B921B5C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HIDDeviceDescriptorBuilder_WithPhysicalMinMax_m58B0FD4DA13242CD7B1D7F67FFB664E344A0270A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HIDParser_ParseReportDescriptor_m85537E64BCBC4FAEF2406CCCA1AC50C52BB37336_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HIDParser_ParseReportDescriptor_m8BAEFF5CA7C34524902608293523E165920C800A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HID_OnFindLayoutForDevice_mF3ACB130B5ABABC1A68AD5594A4D6035BA2C04EE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IMECompositionString_get_Item_mAD02BEFBDF102BC3A61859E112F62473431FD9C7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_AppendWithCapacity_m4D609EB991E007436EB5BFA3784373529E098771_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_AppendWithCapacity_m7D120AE2B1401CD22AEE9DC9662CCC0DC84BBB60_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_RemoveAtWithCapacity_m8C65A9998195061436978BFFC7624D99DFAA3976_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_RemoveAtWithCapacity_mB93190E8A814A079EA1D711D1CE53DA0953D325D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_get_Item_m9028E5429BC2E916894F7F533B18E2D628C53CD9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputArrayExtensions_ContainsReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m2B94D6633F1987FDAE5DA91FFFA304203910D13D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputArrayExtensions_IndexOfReference_TisIObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5_mF3D43CA41C7D31102F3943B9522A3FC16074AA15_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputArrayExtensions_IndexOfReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m7AEB481A05BC589B8BDC49DF286A77491A2ABE8D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputControl_1_ReadValueFromState_m1748B48FE53C7B329B8138F43857E231AC6FC24E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputControl_1_ReadValueFromState_m90076063D4500290705DBD1D85DA8743D4652C37_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputControl_1_ReadValue_m360BE6DCDE6FE778516FC63F909BC88CA1D8A484_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputControl_GetChildControl_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m37B3269440E54D5C867480E334993426D47F9044_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventBuffer_AllocateEvent_m8B8C57E4A0764F048F9FC7D61B9E1329A6A2BC7C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventBuffer_AppendEvent_mAEC914B9C5C5534378199FF5C35D7EB57215E011_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventBuffer__ctor_mC9DC5120D654A771A3E7B8B21E89EE6071DD01C3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventBuffer__ctor_mE2DE130D019FEE1A6E4DE07D0EDA233F7008D50B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventListener_op_Addition_m122B39C12D9ADEDFA730C3B3A0B2530AA23172A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventListener_op_Subtraction_m64F5559B543948C414AC7A0D3E7BA1FE95743328_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_IsA_TisActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444_m2F2591754A98F71A8E950E17F45153089F5B2D10_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_IsA_TisStateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F_mA9BDDBB4B234A924F74AB0343F6F3CFDBFF70327_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_get_stateFormat_m664BD225A799818C59844F7749CF52A0F588D9B4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_get_stateOffset_mDB68F2BF9E2D3B80A98ED6B8DE02F1C3C55D69E4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_get_stateSizeInBytes_m4C0F58AF9A43543102B597F3ACDCAED40D2B95AB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_set_deviceId_mDC5B90109CDEECE63A5F1310379DB8B1B31D2B97_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_set_handled_m855A75D4B98470B0A814FB8627608595FC9E9EF0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_set_id_m8CCBE3CAF92578F56613E99AAA4334BCCFCFD40B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_set_internalTime_mBD0B465C6882DD13F5FA3AAE487C0FA8A68E3810_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_set_time_m6058E3EFFAC41CA39B2F16CB8F184F03CDEE6E13_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_LoadFrom_mBF5C50471E480D9416B0F0503CEA5518CE658E36_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_LoadFrom_mE21BD1BF696EB9B7756199C143AE32FBEBDFB49C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_OnInputEvent_m119567393F344B8F53888E8564191B1280414AC8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_ReadFrom_m0B3DB3EBB340BBD3B9AE3A819C432B09BF4F358F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_Resize_m0319AC81996595EBA1C5C16A7C2C2EB24310DB0A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_WriteTo_mCCAB194CB8909F1BEC6854A0CA39FF87160629D7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_WriteTo_mE0CBA14E395823FF215130CF48644ED14E8875CF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace__ctor_m8FF4728B5B37E6D481CD0118EB102B69BC22B138_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEvent_GetNextInMemoryChecked_mE6034EBF4B5766E3C5E9CE6470319451BE6BD6DB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputEvent_set_sizeInBytes_m0F44793DDA0884B427B82447CE1106FC4E6F691C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputStateHistory_1_GetEnumerator_m7589AE5E798BAFF50EF3C3BC3539FFDFF5DFCF59_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputStateHistory_1_RecordStateChange_mD873C4A092DA5D5E86088B221B90A4B5B05F5840_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputStateHistory_1__ctor_m760ABD5FDD38AF6C3FF42B641B3FC8383E4A91DB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputStateHistory_1__ctor_mF238AB65ADBA9D960A9B86F6AA208AA315B42435_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputState_Change_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_mEA3F7DC352CCBD2270034CD741750CF21CB93F75_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_AddDevice_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m775D9156EA7C89373C733037CEEDE590B34385CE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisAndroidAccelerometer_t424C7F249B02EEE2B4FC08EEEB8CCA17979C0152_m1A38F9810255A13478FD3C3CF264D16A541EB4E3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisAndroidAmbientTemperature_t708F5C6684A965DF4B1DB0FBCD468DDCCC718F85_m9D24CE3A04058CA2A287CC24EBC1E7FB5F1CCC0F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisAndroidGamepadWithDpadAxes_tF737215B337DB2EE82739556B7D49B9C47E1E0A6_mF87B21488883753F2AB3BA8A3958EF55B7F0611D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisAndroidGamepadWithDpadButtons_t62C4BA5D1E7EDAC25BF4540A84825D8F210121CA_mD2C4FEB7BA984C4A4B36675C8913FEBAB361F764_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisAndroidGamepad_t786079AAF70FADAC9023B59E60BE8DB35903EF6E_m7EEC589523FCF3B8359D12070CA407255586F447_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisAndroidGravitySensor_t41E115E03C89B62509B2B088FA239E7DAFFF9695_mFB7169F7A18BD1ED1DE79D6E8AE0C4A83CD43FB8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisAndroidGyroscope_t0C9BB3F1F09F92AD929863225385D22D46C2D39D_m06AECBB2E664188BF622D1EE82E3D1E9ED224803_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisAndroidJoystick_t046CDCD28C85B087F639711DB5F651B6D469CA01_m1BD3D66CCAC5FF1B6BBB5B38AE0B85E38B2D2B31_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisAndroidLightSensor_t555467EDE38119DBD9BADEFD8EB33EC2E44D120A_m891E7CFB540B01E715BC6F92E789788AACA779C9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisAndroidLinearAccelerationSensor_t970198FECD057A043BC8DDEE99C42928861CE5D9_m0E1C1D4ADE8497F71EBE54E75F3D7923531D8E66_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisAndroidMagneticFieldSensor_t1610FE66F3C8C0B079226776522B00876CD7307F_m92E13D5070D1F25D1CBD64670A3F5DAA70CC5F40_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisAndroidPressureSensor_t35F3053D89964B2771F3C24CC0A3D3ACE7A64FFE_mB00F579AA1A164599771BDEB14EC38270BA5CB1C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisAndroidProximity_t0951C9819B491F6DA8066417FE24C750A409288F_m0579CB26ACF2AE8BCB5E0B752ECE3DBCC50920B5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisAndroidRelativeHumidity_tBEFC71512766927C2BB2C95270C4E9938A3F3342_m1C4E8C33132041BF2304D793F6681ED7DAAC1B68_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisAndroidRotationVector_tD623D1A57567CB6F21E37E60BBB5CE66042F1C3C_m02EBEE8A9A9B7358D3EDB31E90EBC6F9BF17CD9C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisAndroidStepCounter_t60ECCD106CD8AD94CB740C46D212D1FA94DF38CD_mB0A266FC14B8DBE737B1B44FC1BA101E6B30A56D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisDualShock4GamepadAndroid_t12F04A138227E893CDB038399FFE400836152296_m4C98F825FBCEC3B44C364CF79D3AE5393518480E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisDualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_m36DC2FEC3F1EB796BFF08D7E9404F22241C6644D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisHID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D_m386AEFB411C8CB4ECEEE863719FED4611062B85E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisXboxOneGamepadAndroid_t81C60ABAB05F8FA9762EBB7655043EFDCBCBC728_m7B15F9E1E73C6FB9FDAE2E9A348D90AED10098D4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterProcessor_TisAndroidCompensateDirectionProcessor_t6EC5E83645FC7DD5345A83BD314EB8672860E557_m7FB80E4B8116918152685B15C67A1A26EE8DD327_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterProcessor_TisAndroidCompensateRotationProcessor_tFDB308670A5D207966B1CF3BCA786D69D060F021_mFBA82B492DEE7FAB37A6222E0F14C4ED1983B6E0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonUtility_FromJson_TisAndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_m459CC1D300860AF774BDDD62715981659FA9F1A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonUtility_FromJson_TisAndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F_mCD18DC17AC85C3CA6C4702C4E3D2AECD8A591211_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonUtility_FromJson_TisHIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_m606903A6B6AF076EAA11F3F733032BF631DA5FAD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyboardState__ctor_m06346BD84C3DE0C9392359B3ABC584E7B0ED9E0C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m1FD2135A63F0BDE6E3127763ACDA2591AFC774F4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m8E820017C1FBE8A372423716AE53545CD6BA9F39_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mC605D61CAC954D4A3A8D348D5D221B814319A038_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mEFED85B7C6AF40AEC5B34E6C11C3C18BF631B3B5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m12163A5ACF7868965793C27BB4086FA446FE4082_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m2193302E2DBF37D55C25EE317E0BDE040BE5CB52_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m4339FB05BC7860D417DA2CDFFD8B356B9DF262B0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mAA78D7E536ED334B3A2ACF6807CC5CFFD12A1F04_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m62F2D5DF7AD292BC7D658B73628876B1EFDE0EB2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_mF8C569EAE11C005E295F2F7CFD63AF6107206290_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m43F0AE90A986A434C9B62B82562A021E0B5065C0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m65FA1E123815CA621B3659034958C4213DF274CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_CopyFrom_mCF4D43C37F14A2904C5BA14973DDE501D965DA89_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ObserverState_U3C_ctorU3Eb__2_0_m614AC79FB380B888191060E784E5A18A3A4FF29F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Profiler_ValidateArguments_m732E71FF4C28CBEDD8D4CD51DA409198224ED395_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* QueryPairedUserAccountCommand_set_id_mCA44A798D70E7F0EB7BA347652F4341221A5BDAE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* QueryPairedUserAccountCommand_set_name_m4C8CBE6D10186933B46DB10B494E21213805B37A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_ToArray_m7C4848AF221AD3A11F95E50E61A49B4AA1FB58FE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1__ctor_m5CD4C576598DB61EBF1B99DFD3900020A951738F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1__ctor_m9C297EC68F90BE1CBFDC80B0D94420BF2B905455_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_get_Count_mB20295F7CC546835AD75D4880A2A81DABB6BE29C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_get_Item_mCB4626E80069288BC1EEF0F558B1B806F59DAE43_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_get_Item_mF7217A9697E8EAA3A574FCDCB611597EC9C1836A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_op_Implicit_m1291C740F5550F006C2001EAF01E1EF009677B22_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_op_Implicit_mA22B8A64D028BB26629945A20BB233B21108C0C0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Record_Equals_m17C216CDC45654F53F8191093F3404478DB16B69_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Record_GetHashCode_m94F8E34331A3B0253C5448B7E9B23BFE0F1B04A8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Record_GetUnsafeExtraMemoryPtrUnchecked_m43B2E6AC3AF2307D2DDF2C92E90A629666277F66_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Record_GetUnsafeExtraMemoryPtr_mF305A3D8857DFF297E9FB6573684E4B9BF82022C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Record__ctor_m1CACECB022FDAACE6482C208E6552F7614445895_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Record_get_index_m8BF5DBF4C267EED76E3802B249F2856F29DAD8A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Record_get_owner_mE1A451C654D70DF2754170FA45A6A19AD3483471_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Record_get_time_m5976C10C2C3A2A2089D57F1DF9AE5557C10DF47E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SavedStructState_1__ctor_m3C152C71C4CF020B00FFFDB88B7A667A8192389B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TouchHistory_CheckValid_m16A4AC2BB2AA62C738B2A9F916002454F83C2038_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TouchHistory_get_Item_m2CF5BFE3F5263F361E7CBFD083E7449DA4F42BBF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TouchSimulation_AddPointer_mAF311DF959277CE67860C36E4650A3EE734194C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TouchSimulation_OnDeviceChange_mBBFFE124D77C484CF2AFC391E9A53C408F4689B7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TouchSimulation_OnEvent_m1D309DAE95183E20C72075AE2B502EC6C0066414_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TouchSimulation_RemovePointer_m787BDB97748ADD4B28C3AFB85304B6A938889B42_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Touch_BeginUpdate_m3EDF005AF7A44CE6FE5EC0F00D8F21F6BE320834_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Touch_add_onFingerDown_m1A06CB56B507CE4ECD7B5137F1A33CB86BA7B910_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Touch_add_onFingerMove_m790C3D161E6F1ED5F312CF9D93FFA60EFD858EE6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Touch_add_onFingerUp_m4C8AB77040FC31B3FCA841E7A8284B01C78244FC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Touch_get_history_m1B049B5EB482493F9CFE5B260DACEAE9B0119BB6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Touch_remove_onFingerDown_mD11650C03AE02E240208B4C4ADF28901677BEBD3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Touch_remove_onFingerMove_m1C66CD941D63EF11775A5BD8CD40EE2D5EC22294_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Touch_remove_onFingerUp_mD95078E500291E448306C161643E913FD6C4BDAF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSaveAndResetStateU3Eb__78_0_m0868752872E1B31C85DAEB17E4E73889B0C6C8A0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSaveAndResetStateU3Eb__78_1_m92D6BCF9F85D9FEB5BB866AE1502698081D78CF8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CToStringU3Eb__8_0_m4E6C86B6147419A1476EE25E4015405A461B6D66_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_mA2C7B854E9A67DF24154B9668CE5EA1C21575E61_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnsafeUtility_SizeOf_TisInputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5_mE272E24745A5A5359FDC77837068A5C4B9421E75_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnsafeUtility_SizeOf_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_m69FCD3C12AF3FB3E4C75D033E34648DED186489F_RuntimeMethod_var;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D;;
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com;
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com;;
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke;
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke;;
struct HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7;
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED;;
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_com;
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_com;;
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_pinvoke;
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_pinvoke;;
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E;;
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com;
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com;;
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke;
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke;;
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE;;
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com;
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com;;
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke;
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke;;
struct InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5;
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70;;
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com;
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com;;
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke;
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke;;
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF;;
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com;
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com;;
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke;
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke;;
struct AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847;
struct ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7;
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
struct FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F;
struct GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6;
struct InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17;
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
struct KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A;
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
struct PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5;
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C;
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
struct TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354;
struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA;
struct HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5;
struct HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D;
struct HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955;
struct HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD;
struct DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>
struct List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>
struct List_1_t66029D02EA129D03A082E470EB98C85812301A0C : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t66029D02EA129D03A082E470EB98C85812301A0C_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HIDParser/HIDReportData>
struct List_1_t268ADAE63E623B42094720668F8DB571CF6085E6 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t268ADAE63E623B42094720668F8DB571CF6085E6_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955* ___s_emptyArray_5;
};
// UnityEngine.InputSystem.Android.AndroidSupport
struct AndroidSupport_t9BA3FBC7ECB2AA03961149F9D91F90CF72F1A65D : public RuntimeObject
{
};
struct Il2CppArrayBounds;
// System.IO.BinaryReader
struct BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158 : public RuntimeObject
{
// System.IO.Stream System.IO.BinaryReader::m_stream
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___m_stream_0;
// System.Byte[] System.IO.BinaryReader::m_buffer
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___m_buffer_1;
// System.Text.Decoder System.IO.BinaryReader::m_decoder
Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC* ___m_decoder_2;
// System.Byte[] System.IO.BinaryReader::m_charBytes
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___m_charBytes_3;
// System.Char[] System.IO.BinaryReader::m_singleChar
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_singleChar_4;
// System.Char[] System.IO.BinaryReader::m_charBuffer
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_charBuffer_5;
// System.Int32 System.IO.BinaryReader::m_maxCharsSize
int32_t ___m_maxCharsSize_6;
// System.Boolean System.IO.BinaryReader::m_2BytesPerChar
bool ___m_2BytesPerChar_7;
// System.Boolean System.IO.BinaryReader::m_isMemoryStream
bool ___m_isMemoryStream_8;
// System.Boolean System.IO.BinaryReader::m_leaveOpen
bool ___m_leaveOpen_9;
};
// System.IO.BinaryWriter
struct BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E : public RuntimeObject
{
// System.IO.Stream System.IO.BinaryWriter::OutStream
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___OutStream_1;
// System.Byte[] System.IO.BinaryWriter::_buffer
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____buffer_2;
// System.Text.Encoding System.IO.BinaryWriter::_encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ____encoding_3;
// System.Text.Encoder System.IO.BinaryWriter::_encoder
Encoder_tAF9067231A76315584BDF4CD27990E2F485A78FA* ____encoder_4;
// System.Boolean System.IO.BinaryWriter::_leaveOpen
bool ____leaveOpen_5;
// System.Byte[] System.IO.BinaryWriter::_largeByteBuffer
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____largeByteBuffer_6;
// System.Int32 System.IO.BinaryWriter::_maxChars
int32_t ____maxChars_7;
};
struct BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E_StaticFields
{
// System.IO.BinaryWriter System.IO.BinaryWriter::Null
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* ___Null_0;
};
// UnityEngine.InputSystem.DualShock.DualShockSupport
struct DualShockSupport_tD28EA4C748CF508B6AF1F9AF9726C3ABF980F539 : public RuntimeObject
{
};
// UnityEngine.InputSystem.EnhancedTouch.Finger
struct Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A : public RuntimeObject
{
// UnityEngine.InputSystem.Touchscreen UnityEngine.InputSystem.EnhancedTouch.Finger::<screen>k__BackingField
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___U3CscreenU3Ek__BackingField_0;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Finger::<index>k__BackingField
int32_t ___U3CindexU3Ek__BackingField_1;
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState> UnityEngine.InputSystem.EnhancedTouch.Finger::m_StateHistory
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___m_StateHistory_2;
};
// UnityEngine.InputSystem.HID.HIDParser
struct HIDParser_t2D551915CEBEE317397BFBEE69221D129DF48114 : public RuntimeObject
{
};
// UnityEngine.InputSystem.HID.HIDSupport
struct HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2 : public RuntimeObject
{
};
struct HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_StaticFields
{
// UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage[] UnityEngine.InputSystem.HID.HIDSupport::s_SupportedHIDUsages
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* ___s_SupportedHIDUsages_0;
};
// UnityEngine.InputSystem.LowLevel.InputRuntime
struct InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3 : public RuntimeObject
{
};
struct InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_StaticFields
{
// UnityEngine.InputSystem.LowLevel.IInputRuntime UnityEngine.InputSystem.LowLevel.InputRuntime::s_Instance
RuntimeObject* ___s_Instance_0;
// System.Double UnityEngine.InputSystem.LowLevel.InputRuntime::s_CurrentTimeOffsetToRealtimeSinceStartup
double ___s_CurrentTimeOffsetToRealtimeSinceStartup_1;
};
// UnityEngine.InputSystem.InputSystem
struct InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164 : public RuntimeObject
{
};
struct InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_StaticFields
{
// UnityEngine.InputSystem.InputManager UnityEngine.InputSystem.InputSystem::s_Manager
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* ___s_Manager_2;
// UnityEngine.InputSystem.InputRemoting UnityEngine.InputSystem.InputSystem::s_Remote
InputRemoting_tCBC35AAA3A034ECED8F33C5BA5257F2EB2B05114* ___s_Remote_3;
// UnityEngine.InputSystem.RemoteInputPlayerConnection UnityEngine.InputSystem.InputSystem::s_RemoteConnection
RemoteInputPlayerConnection_t30D11D576C269098E4EBC0E07291C767130FC3DF* ___s_RemoteConnection_4;
// System.Collections.Generic.Stack`1<UnityEngine.InputSystem.InputSystem/State> UnityEngine.InputSystem.InputSystem::s_SavedStateStack
Stack_1_tA8463878F53349F62A421C3630EBACB9CAFF75E4* ___s_SavedStateStack_5;
};
// System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject
{
// System.Object System.MarshalByRefObject::_identity
RuntimeObject* ____identity_0;
};
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
{
Il2CppIUnknown* ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
{
Il2CppIUnknown* ____identity_0;
};
// System.String
struct String_t : public RuntimeObject
{
// System.Int32 System.String::_stringLength
int32_t ____stringLength_4;
// System.Char System.String::_firstChar
Il2CppChar ____firstChar_5;
};
struct String_t_StaticFields
{
// System.String System.String::Empty
String_t* ___Empty_6;
};
// System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
{
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
{
};
// UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities/<>c
struct U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B : public RuntimeObject
{
};
struct U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_StaticFields
{
// UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities/<>c UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities/<>c::<>9
U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B* ___U3CU3E9_0;
// System.Func`2<UnityEngine.InputSystem.Android.LowLevel.AndroidAxis,System.String> UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities/<>c::<>9__8_0
Func_2_t0825937F2E7F47B2A220EAB90DE0736AAEB5AE1D* ___U3CU3E9__8_0_1;
};
// UnityEngine.InputSystem.HID.HID/<>c__DisplayClass12_0
struct U3CU3Ec__DisplayClass12_0_t128E165E956D7BC338F305A5B22EF50246D796A3 : public RuntimeObject
{
// UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder UnityEngine.InputSystem.HID.HID/<>c__DisplayClass12_0::layout
HIDLayoutBuilder_t1B1FA825DFA02D93183E7C1B3C416D4A43D56553* ___layout_0;
};
// UnityEngine.InputSystem.LowLevel.InputEventListener/DisposableObserver
struct DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73 : public RuntimeObject
{
// System.IObserver`1<UnityEngine.InputSystem.LowLevel.InputEventPtr> UnityEngine.InputSystem.LowLevel.InputEventListener/DisposableObserver::observer
RuntimeObject* ___observer_0;
};
// UnityEngine.InputSystem.EnhancedTouch.Touch/<>c
struct U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6 : public RuntimeObject
{
};
struct U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields
{
// UnityEngine.InputSystem.EnhancedTouch.Touch/<>c UnityEngine.InputSystem.EnhancedTouch.Touch/<>c::<>9
U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6* ___U3CU3E9_0;
// UnityEngine.InputSystem.Utilities.SavedStructState`1/TypedRestore<UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState> UnityEngine.InputSystem.EnhancedTouch.Touch/<>c::<>9__78_0
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* ___U3CU3E9__78_0_1;
// System.Action UnityEngine.InputSystem.EnhancedTouch.Touch/<>c::<>9__78_1
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___U3CU3E9__78_1_2;
};
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator<UnityEngine.InputSystem.InputDevice>
struct Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B
{
// TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator::m_Array
InputDeviceU5BU5D_tA9AEFC6AF63557D3D5DCFB2B26DDA6F63147D548* ___m_Array_0;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator::m_IndexStart
int32_t ___m_IndexStart_1;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator::m_IndexEnd
int32_t ___m_IndexEnd_2;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator::m_Index
int32_t ___m_Index_3;
};
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator<System.Object>
struct Enumerator_t13B0EDB01F0A85A952803970AFD1073D96A46C94
{
// TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator::m_Array
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_Array_0;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator::m_IndexStart
int32_t ___m_IndexStart_1;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator::m_IndexEnd
int32_t ___m_IndexEnd_2;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator::m_Index
int32_t ___m_Index_3;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>>
struct InlinedArray_1_tFABE06D675C714FC44C09C36D7B9C908690ADEAD
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
Action_1U5BU5D_t18C922CAB85EAE463E29566305D718EF64B12A16* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>>
struct InlinedArray_1_tC5A6273BF5A8642C3615223409DC9A7AE2856C8D
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
Action_1U5BU5D_tE4E06618063C3EF89781BEB4DF47D183654040E6* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<System.Object>>
struct InlinedArray_1_t90D679876AE3A52129F69F403ECC9AD16D60AD9F
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
Action_1U5BU5D_t9AF7A60AA589F7071315F3DA2F77CD32CB43FB5D* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange>>
struct InlinedArray_1_tC156E68CC1D19C7411B135D705222BBA02E1E546
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
Action_2U5BU5D_tE696881AB7B602657DE1A212B1F9322B7F472FBB* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.LowLevel.InputEventPtr>>
struct InlinedArray_1_t0C164496D3AC9C0D8B5986F12B3E22F94E904138
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
Action_2_tBB6A2D36E83BB3B7BFA2ACD51493D5740A3D7F2E* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
Action_2U5BU5D_t493765D280908ABBDC5280C16C38A55BEB3FB645* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice>>
struct InlinedArray_1_tCB69E3C40A7449F79D455D118402BE76E07EDD3B
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
Action_2U5BU5D_tF0EAC88CF3D1AADA46955EC4879598BCF64FEA5B* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`2<System.String,UnityEngine.InputSystem.InputControlLayoutChange>>
struct InlinedArray_1_t6CA0FBB125302D36470046647247C3C186DA3C81
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
Action_2_t4797B88C63509F2EE4385D6DABE6A4B5AD5393F7* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
Action_2U5BU5D_t03D844ECB7234028DD3556FBAD4097B4835CA7A4* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.IObserver`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>>
struct InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
RuntimeObject* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
IObserver_1U5BU5D_tC7308F301F0D09FCB9FED9003FC09E1AA8B7C170* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<System.Single>>
struct InlinedArray_1_t2A86A6C75E0160EE14310E053C5249518871D847
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputProcessor_1_tFE49B42CB371A9A2A3F29802695BD251947AD0B4* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputProcessor_1U5BU5D_tFEE411B67EEAA6B997AF875A65D072993C8C809C* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<UnityEngine.InputSystem.LowLevel.TouchState>>
struct InlinedArray_1_tD4AEEFFEC2CBF49D196A92D16CE8DA15F1532FCD
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputProcessor_1_tCC7634AB386F9C6888B89C0FD440251E67C5D8F7* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputProcessor_1U5BU5D_t2D9B681F9F0B39759619A0D4617FB6B20FB10AC0* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Vector2>>
struct InlinedArray_1_tE5F1062E65707D24360CEAC52E03D32C6E5BA8BB
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputProcessor_1_tD1A40E0E5825AAABC3416EC96E087FF6E6351DD2* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputProcessor_1U5BU5D_t5083205703ED9D1A4B8037E3BBE765389957231A* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action>
struct InlinedArray_1_tD7279E61A2C2BCBF7B9BA61C55E889A59A778B32
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
ActionU5BU5D_tF6161335A0A12A221AB081D78725C8AB6FE506D2* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputDevice>
struct InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputDeviceU5BU5D_tA9AEFC6AF63557D3D5DCFB2B26DDA6F63147D548* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate>
struct InlinedArray_1_t8574959399B65CB49207DFFDE0842E996E6DBBED
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputDeviceCommandDelegateU5BU5D_t243984810DCC1E9828C0D6665D0B7AC435A43D9A* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate>
struct InlinedArray_1_t6FEF55D1987F9E3301E4FF894670C2B041308E88
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputDeviceFindControlLayoutDelegateU5BU5D_t9B27C1115622DAB0A04E3C93E8A9D64EBFDA27BC* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Object>
struct InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
RuntimeObject* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.Touchscreen>
struct InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
TouchscreenU5BU5D_t73D22E3D2A7039C6C374D75B796C8F83BCA897E3* ___additionalValues_2;
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>
struct KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189
{
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
};
// System.Nullable`1<System.Boolean>
struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
bool ___value_1;
};
// System.Nullable`1<System.Int32>
struct Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
int32_t ___value_1;
};
// System.Nullable`1<System.Int64>
struct Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
int64_t ___value_1;
};
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.EnhancedTouch.Finger>
struct ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36
{
// TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* ___m_Array_0;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex
int32_t ___m_StartIndex_1;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length
int32_t ___m_Length_2;
};
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.InputControl>
struct ReadOnlyArray_1_tA1DF7A256AD2BF17FB155224CB2611ED215EFCD3
{
// TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___m_Array_0;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex
int32_t ___m_StartIndex_1;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length
int32_t ___m_Length_2;
};
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.InputDevice>
struct ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA
{
// TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array
InputDeviceU5BU5D_tA9AEFC6AF63557D3D5DCFB2B26DDA6F63147D548* ___m_Array_0;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex
int32_t ___m_StartIndex_1;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length
int32_t ___m_Length_2;
};
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<System.Object>
struct ReadOnlyArray_1_t40B8DDDCD6ACBA3B2C0AF1387BE23D68DAEF77B5
{
// TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_Array_0;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex
int32_t ___m_StartIndex_1;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length
int32_t ___m_Length_2;
};
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.EnhancedTouch.Touch>
struct ReadOnlyArray_1_t3D5F71F2FAC15E8E7413E1B4BDCCA92D49962E72
{
// TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array
TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354* ___m_Array_0;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex
int32_t ___m_StartIndex_1;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length
int32_t ___m_Length_2;
};
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.Controls.TouchControl>
struct ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E
{
// TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array
TouchControlU5BU5D_t339733075857CFF82B4E43BFB310F2350225836D* ___m_Array_0;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex
int32_t ___m_StartIndex_1;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length
int32_t ___m_Length_2;
};
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage>
struct ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7
{
// TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* ___m_Array_0;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex
int32_t ___m_StartIndex_1;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length
int32_t ___m_Length_2;
};
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo>
struct ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570
{
// TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* ___m_Array_0;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex
int32_t ___m_StartIndex_1;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length
int32_t ___m_Length_2;
};
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>
struct Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4
{
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1<TValue> UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record::m_Owner
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___m_Owner_0;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record::m_IndexPlusOne
int32_t ___m_IndexPlusOne_1;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record::m_Version
uint32_t ___m_Version_2;
};
// System.Boolean
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
{
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
};
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
{
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
};
// System.Byte
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
{
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
};
// System.Char
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
{
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
};
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
{
// System.Byte[] System.Char::s_categoryForLatin1
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
};
// UnityEngine.Color
struct Color_tD001788D726C3A7F1379BEED0260B9591F440C1F
{
// System.Single UnityEngine.Color::r
float ___r_0;
// System.Single UnityEngine.Color::g
float ___g_1;
// System.Single UnityEngine.Color::b
float ___b_2;
// System.Single UnityEngine.Color::a
float ___a_3;
};
// System.Double
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
{
// System.Double System.Double::m_value
double ___m_value_0;
};
// UnityEngine.InputSystem.Haptics.DualMotorRumble
struct DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701
{
// System.Single UnityEngine.InputSystem.Haptics.DualMotorRumble::<lowFrequencyMotorSpeed>k__BackingField
float ___U3ClowFrequencyMotorSpeedU3Ek__BackingField_0;
// System.Single UnityEngine.InputSystem.Haptics.DualMotorRumble::<highFrequencyMotorSpeed>k__BackingField
float ___U3ChighFrequencyMotorSpeedU3Ek__BackingField_1;
};
// System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
{
};
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields
{
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray_0;
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
{
};
// UnityEngine.InputSystem.Utilities.FourCC
struct FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED
{
// System.Int32 UnityEngine.InputSystem.Utilities.FourCC::m_Code
int32_t ___m_Code_0;
};
// UnityEngine.InputSystem.Layouts.InputDeviceDescription
struct InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F
{
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_InterfaceName
String_t* ___m_InterfaceName_0;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_DeviceClass
String_t* ___m_DeviceClass_1;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Manufacturer
String_t* ___m_Manufacturer_2;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Product
String_t* ___m_Product_3;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Serial
String_t* ___m_Serial_4;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Version
String_t* ___m_Version_5;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Capabilities
String_t* ___m_Capabilities_6;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputDeviceDescription
struct InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F_marshaled_pinvoke
{
char* ___m_InterfaceName_0;
char* ___m_DeviceClass_1;
char* ___m_Manufacturer_2;
char* ___m_Product_3;
char* ___m_Serial_4;
char* ___m_Version_5;
char* ___m_Capabilities_6;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputDeviceDescription
struct InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F_marshaled_com
{
Il2CppChar* ___m_InterfaceName_0;
Il2CppChar* ___m_DeviceClass_1;
Il2CppChar* ___m_Manufacturer_2;
Il2CppChar* ___m_Product_3;
Il2CppChar* ___m_Serial_4;
Il2CppChar* ___m_Version_5;
Il2CppChar* ___m_Capabilities_6;
};
// UnityEngine.InputSystem.LowLevel.InputEventListener
struct InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D
{
union
{
struct
{
};
uint8_t InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D__padding[1];
};
};
struct InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields
{
// UnityEngine.InputSystem.LowLevel.InputEventListener/ObserverState UnityEngine.InputSystem.LowLevel.InputEventListener::s_ObserverState
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* ___s_ObserverState_0;
};
// UnityEngine.InputSystem.LowLevel.InputEventPtr
struct InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0
{
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::m_EventPtr
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_EventPtr_0;
};
// UnityEngine.InputSystem.LowLevel.InputMetrics
struct InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338
{
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<maxNumDevices>k__BackingField
int32_t ___U3CmaxNumDevicesU3Ek__BackingField_0;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<currentNumDevices>k__BackingField
int32_t ___U3CcurrentNumDevicesU3Ek__BackingField_1;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<maxStateSizeInBytes>k__BackingField
int32_t ___U3CmaxStateSizeInBytesU3Ek__BackingField_2;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<currentStateSizeInBytes>k__BackingField
int32_t ___U3CcurrentStateSizeInBytesU3Ek__BackingField_3;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<currentControlCount>k__BackingField
int32_t ___U3CcurrentControlCountU3Ek__BackingField_4;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<currentLayoutCount>k__BackingField
int32_t ___U3CcurrentLayoutCountU3Ek__BackingField_5;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<totalEventBytes>k__BackingField
int32_t ___U3CtotalEventBytesU3Ek__BackingField_6;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<totalEventCount>k__BackingField
int32_t ___U3CtotalEventCountU3Ek__BackingField_7;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<totalUpdateCount>k__BackingField
int32_t ___U3CtotalUpdateCountU3Ek__BackingField_8;
// System.Double UnityEngine.InputSystem.LowLevel.InputMetrics::<totalEventProcessingTime>k__BackingField
double ___U3CtotalEventProcessingTimeU3Ek__BackingField_9;
// System.Double UnityEngine.InputSystem.LowLevel.InputMetrics::<totalEventLagTime>k__BackingField
double ___U3CtotalEventLagTimeU3Ek__BackingField_10;
};
// System.Int32
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
{
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
};
// System.Int64
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
{
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
};
// System.IntPtr
struct IntPtr_t
{
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
};
struct IntPtr_t_StaticFields
{
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
};
// UnityEngine.InputSystem.Utilities.InternedString
struct InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735
{
// System.String UnityEngine.InputSystem.Utilities.InternedString::m_StringOriginalCase
String_t* ___m_StringOriginalCase_0;
// System.String UnityEngine.InputSystem.Utilities.InternedString::m_StringLowerCase
String_t* ___m_StringLowerCase_1;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.InternedString
struct InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735_marshaled_pinvoke
{
char* ___m_StringOriginalCase_0;
char* ___m_StringLowerCase_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.InternedString
struct InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735_marshaled_com
{
Il2CppChar* ___m_StringOriginalCase_0;
Il2CppChar* ___m_StringLowerCase_1;
};
// UnityEngine.Mathf
struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682
{
union
{
struct
{
};
uint8_t Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682__padding[1];
};
};
struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields
{
// System.Single UnityEngine.Mathf::Epsilon
float ___Epsilon_0;
};
// UnityEngine.Quaternion
struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974
{
// System.Single UnityEngine.Quaternion::x
float ___x_0;
// System.Single UnityEngine.Quaternion::y
float ___y_1;
// System.Single UnityEngine.Quaternion::z
float ___z_2;
// System.Single UnityEngine.Quaternion::w
float ___w_3;
};
struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_StaticFields
{
// UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___identityQuaternion_4;
};
// System.Single
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
{
// System.Single System.Single::m_value
float ___m_value_0;
};
// System.IO.Stream
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
// System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask
ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05* ____activeReadWriteTask_2;
// System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore
SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2* ____asyncActiveSemaphore_3;
};
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_StaticFields
{
// System.IO.Stream System.IO.Stream::Null
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___Null_1;
};
// UnityEngine.InputSystem.EnhancedTouch.TouchHistory
struct TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580
{
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState> UnityEngine.InputSystem.EnhancedTouch.TouchHistory::m_History
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___m_History_0;
// UnityEngine.InputSystem.EnhancedTouch.Finger UnityEngine.InputSystem.EnhancedTouch.TouchHistory::m_Finger
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___m_Finger_1;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.TouchHistory::m_Count
int32_t ___m_Count_2;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.TouchHistory::m_StartIndex
int32_t ___m_StartIndex_3;
// System.UInt32 UnityEngine.InputSystem.EnhancedTouch.TouchHistory::m_Version
uint32_t ___m_Version_4;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.EnhancedTouch.TouchHistory
struct TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshaled_pinvoke
{
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___m_History_0;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___m_Finger_1;
int32_t ___m_Count_2;
int32_t ___m_StartIndex_3;
uint32_t ___m_Version_4;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.EnhancedTouch.TouchHistory
struct TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshaled_com
{
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___m_History_0;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___m_Finger_1;
int32_t ___m_Count_2;
int32_t ___m_StartIndex_3;
uint32_t ___m_Version_4;
};
// UnityEngine.InputSystem.Utilities.TypeTable
struct TypeTable_tEAC1ECAD849469DEA65DA2FC65B19C2D4739B67E
{
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,System.Type> UnityEngine.InputSystem.Utilities.TypeTable::table
Dictionary_2_t1FFEE4C9AF6AF524CAD4FDCEA8F3AB34E585451D* ___table_0;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.TypeTable
struct TypeTable_tEAC1ECAD849469DEA65DA2FC65B19C2D4739B67E_marshaled_pinvoke
{
Dictionary_2_t1FFEE4C9AF6AF524CAD4FDCEA8F3AB34E585451D* ___table_0;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.TypeTable
struct TypeTable_tEAC1ECAD849469DEA65DA2FC65B19C2D4739B67E_marshaled_com
{
Dictionary_2_t1FFEE4C9AF6AF524CAD4FDCEA8F3AB34E585451D* ___table_0;
};
// System.UInt16
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
{
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
};
// System.UInt32
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
{
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
};
// System.UInt64
struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
{
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
};
// UnityEngine.Vector2
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7
{
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
};
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields
{
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___negativeInfinityVector_9;
};
// UnityEngine.Vector3
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
{
// System.Single UnityEngine.Vector3::x
float ___x_2;
// System.Single UnityEngine.Vector3::y
float ___y_3;
// System.Single UnityEngine.Vector3::z
float ___z_4;
};
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
{
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector_13;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector_14;
};
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
{
union
{
struct
{
};
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
};
};
// UnityEngine.InputSystem.LowLevel.ActionEvent/<m_ValueData>e__FixedBuffer
struct U3Cm_ValueDataU3Ee__FixedBuffer_t94746BF84FF1BD9ACDDDA17AE7155A9AA40DB97A
{
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.ActionEvent/<m_ValueData>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3Cm_ValueDataU3Ee__FixedBuffer_t94746BF84FF1BD9ACDDDA17AE7155A9AA40DB97A__padding[1];
};
};
// UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState/<axis>e__FixedBuffer
struct U3CaxisU3Ee__FixedBuffer_tDC679A545AFAAEF05C398B21A88FEE416E1F3B0F
{
union
{
struct
{
// System.Single UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState/<axis>e__FixedBuffer::FixedElementField
float ___FixedElementField_0;
};
uint8_t U3CaxisU3Ee__FixedBuffer_tDC679A545AFAAEF05C398B21A88FEE416E1F3B0F__padding[192];
};
};
// UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState/<buttons>e__FixedBuffer
struct U3CbuttonsU3Ee__FixedBuffer_t7413EBD27C3C5C4333E8EEF49BE780DEE091C295
{
union
{
struct
{
// System.UInt32 UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState/<buttons>e__FixedBuffer::FixedElementField
uint32_t ___FixedElementField_0;
};
uint8_t U3CbuttonsU3Ee__FixedBuffer_t7413EBD27C3C5C4333E8EEF49BE780DEE091C295__padding[28];
};
};
// UnityEngine.InputSystem.Android.LowLevel.AndroidSensorState/<data>e__FixedBuffer
struct U3CdataU3Ee__FixedBuffer_t066695EC09AC9F1A1401452C33184A8BB20DC632
{
union
{
struct
{
// System.Single UnityEngine.InputSystem.Android.LowLevel.AndroidSensorState/<data>e__FixedBuffer::FixedElementField
float ___FixedElementField_0;
};
uint8_t U3CdataU3Ee__FixedBuffer_t066695EC09AC9F1A1401452C33184A8BB20DC632__padding[64];
};
};
// UnityEngine.InputSystem.LowLevel.DeltaStateEvent/<stateData>e__FixedBuffer
struct U3CstateDataU3Ee__FixedBuffer_t2D79C7E59F64E19D0450D36680F1A1B52CD89F84
{
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.DeltaStateEvent/<stateData>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CstateDataU3Ee__FixedBuffer_t2D79C7E59F64E19D0450D36680F1A1B52CD89F84__padding[1];
};
};
// UnityEngine.InputSystem.LowLevel.IMECompositionString/<buffer>e__FixedBuffer
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF
{
union
{
struct
{
// System.Char UnityEngine.InputSystem.LowLevel.IMECompositionString/<buffer>e__FixedBuffer::FixedElementField
Il2CppChar ___FixedElementField_0;
};
uint8_t U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF__padding[128];
};
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionString/<buffer>e__FixedBuffer
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke
{
union
{
struct
{
uint8_t ___FixedElementField_0;
};
uint8_t U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF__padding[128];
};
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionString/<buffer>e__FixedBuffer
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com
{
union
{
struct
{
uint8_t ___FixedElementField_0;
};
uint8_t U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF__padding[128];
};
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/Cache
struct Cache_tB837109647F577DCE3795AEE2E9E0E3F61F543AB
{
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Layouts.InputControlLayout> UnityEngine.InputSystem.Layouts.InputControlLayout/Cache::table
Dictionary_2_t058B78C04CBFB0F1C72F95C9880AE09DA041219F* ___table_0;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Cache
struct Cache_tB837109647F577DCE3795AEE2E9E0E3F61F543AB_marshaled_pinvoke
{
Dictionary_2_t058B78C04CBFB0F1C72F95C9880AE09DA041219F* ___table_0;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Cache
struct Cache_tB837109647F577DCE3795AEE2E9E0E3F61F543AB_marshaled_com
{
Dictionary_2_t058B78C04CBFB0F1C72F95C9880AE09DA041219F* ___table_0;
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/Collection
struct Collection_t6E9F85AD439CF26269683541C4DC58BA3B6756C5
{
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,System.Type> UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutTypes
Dictionary_2_t1FFEE4C9AF6AF524CAD4FDCEA8F3AB34E585451D* ___layoutTypes_1;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,System.String> UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutStrings
Dictionary_2_tEB3FF1660C6129E11F3B4771A549DE9F169B5103* ___layoutStrings_2;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,System.Func`1<UnityEngine.InputSystem.Layouts.InputControlLayout>> UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutBuilders
Dictionary_2_tFF0F3921D8B2465193365C2463B7D6A977E874DA* ___layoutBuilders_3;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Utilities.InternedString> UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::baseLayoutTable
Dictionary_2_t433D1FE2CDB69C9F583F79D5252A34112439D0AD* ___baseLayoutTable_4;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Utilities.InternedString[]> UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutOverrides
Dictionary_2_tA8E192E813E347FF19EC3868E2C565607445394C* ___layoutOverrides_5;
// System.Collections.Generic.HashSet`1<UnityEngine.InputSystem.Utilities.InternedString> UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutOverrideNames
HashSet_1_t87C47CF88B1B88398D4F9A1E51E92F834CF5160B* ___layoutOverrideNames_6;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/PrecompiledLayout> UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::precompiledLayouts
Dictionary_2_tD68C40116E127FE79F9E7AF07820CFDDBF20A8C1* ___precompiledLayouts_7;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/LayoutMatcher> UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutMatchers
List_1_t4E502B2E42676E48E6F9A8F0251ADB1DF4BD490E* ___layoutMatchers_8;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Collection
struct Collection_t6E9F85AD439CF26269683541C4DC58BA3B6756C5_marshaled_pinvoke
{
Dictionary_2_t1FFEE4C9AF6AF524CAD4FDCEA8F3AB34E585451D* ___layoutTypes_1;
Dictionary_2_tEB3FF1660C6129E11F3B4771A549DE9F169B5103* ___layoutStrings_2;
Dictionary_2_tFF0F3921D8B2465193365C2463B7D6A977E874DA* ___layoutBuilders_3;
Dictionary_2_t433D1FE2CDB69C9F583F79D5252A34112439D0AD* ___baseLayoutTable_4;
Dictionary_2_tA8E192E813E347FF19EC3868E2C565607445394C* ___layoutOverrides_5;
HashSet_1_t87C47CF88B1B88398D4F9A1E51E92F834CF5160B* ___layoutOverrideNames_6;
Dictionary_2_tD68C40116E127FE79F9E7AF07820CFDDBF20A8C1* ___precompiledLayouts_7;
List_1_t4E502B2E42676E48E6F9A8F0251ADB1DF4BD490E* ___layoutMatchers_8;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Collection
struct Collection_t6E9F85AD439CF26269683541C4DC58BA3B6756C5_marshaled_com
{
Dictionary_2_t1FFEE4C9AF6AF524CAD4FDCEA8F3AB34E585451D* ___layoutTypes_1;
Dictionary_2_tEB3FF1660C6129E11F3B4771A549DE9F169B5103* ___layoutStrings_2;
Dictionary_2_tFF0F3921D8B2465193365C2463B7D6A977E874DA* ___layoutBuilders_3;
Dictionary_2_t433D1FE2CDB69C9F583F79D5252A34112439D0AD* ___baseLayoutTable_4;
Dictionary_2_tA8E192E813E347FF19EC3868E2C565607445394C* ___layoutOverrides_5;
HashSet_1_t87C47CF88B1B88398D4F9A1E51E92F834CF5160B* ___layoutOverrideNames_6;
Dictionary_2_tD68C40116E127FE79F9E7AF07820CFDDBF20A8C1* ___precompiledLayouts_7;
List_1_t4E502B2E42676E48E6F9A8F0251ADB1DF4BD490E* ___layoutMatchers_8;
};
// UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator
struct Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB
{
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::m_Buffer
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_Buffer_0;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::m_EventCount
int32_t ___m_EventCount_1;
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::m_CurrentEvent
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentEvent_2;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::m_CurrentIndex
int32_t ___m_CurrentIndex_3;
};
// UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout
struct StateChangeMonitorTimeout_t9D00677B36798F8E8A4FA1DC5797CBD5F5C4F1DE
{
// UnityEngine.InputSystem.InputControl UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout::control
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control_0;
// System.Double UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout::time
double ___time_1;
// UnityEngine.InputSystem.LowLevel.IInputStateChangeMonitor UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout::monitor
RuntimeObject* ___monitor_2;
// System.Int64 UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout::monitorIndex
int64_t ___monitorIndex_3;
// System.Int32 UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout::timerIndex
int32_t ___timerIndex_4;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout
struct StateChangeMonitorTimeout_t9D00677B36798F8E8A4FA1DC5797CBD5F5C4F1DE_marshaled_pinvoke
{
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control_0;
double ___time_1;
RuntimeObject* ___monitor_2;
int64_t ___monitorIndex_3;
int32_t ___timerIndex_4;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout
struct StateChangeMonitorTimeout_t9D00677B36798F8E8A4FA1DC5797CBD5F5C4F1DE_marshaled_com
{
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control_0;
double ___time_1;
RuntimeObject* ___monitor_2;
int64_t ___monitorIndex_3;
int32_t ___timerIndex_4;
};
// UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers
struct DoubleBuffers_tC70880E0E4F69237E763403F28F65B807E94A9ED
{
// System.Void** UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers::deviceToBufferMapping
void** ___deviceToBufferMapping_0;
};
// UnityEngine.InputSystem.LowLevel.InputStateHistory/Record
struct Record_tF7FF07DC502355356B48CE78337FB16B196E2EE0
{
// UnityEngine.InputSystem.LowLevel.InputStateHistory UnityEngine.InputSystem.LowLevel.InputStateHistory/Record::m_Owner
InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* ___m_Owner_0;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory/Record::m_IndexPlusOne
int32_t ___m_IndexPlusOne_1;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateHistory/Record::m_Version
uint32_t ___m_Version_2;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.InputStateHistory/Record
struct Record_tF7FF07DC502355356B48CE78337FB16B196E2EE0_marshaled_pinvoke
{
InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* ___m_Owner_0;
int32_t ___m_IndexPlusOne_1;
uint32_t ___m_Version_2;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.InputStateHistory/Record
struct Record_tF7FF07DC502355356B48CE78337FB16B196E2EE0_marshaled_com
{
InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* ___m_Owner_0;
int32_t ___m_IndexPlusOne_1;
uint32_t ___m_Version_2;
};
// UnityEngine.InputSystem.LowLevel.InputUpdate/UpdateStepCount
struct UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324
{
// System.Boolean UnityEngine.InputSystem.LowLevel.InputUpdate/UpdateStepCount::m_WasUpdated
bool ___m_WasUpdated_0;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputUpdate/UpdateStepCount::<value>k__BackingField
uint32_t ___U3CvalueU3Ek__BackingField_1;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.InputUpdate/UpdateStepCount
struct UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_pinvoke
{
int32_t ___m_WasUpdated_0;
uint32_t ___U3CvalueU3Ek__BackingField_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.InputUpdate/UpdateStepCount
struct UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_com
{
int32_t ___m_WasUpdated_0;
uint32_t ___U3CvalueU3Ek__BackingField_1;
};
// UnityEngine.InputSystem.LowLevel.KeyboardState/<keys>e__FixedBuffer
struct U3CkeysU3Ee__FixedBuffer_t042985C8A4742730483B7863D903A899805230F3
{
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.KeyboardState/<keys>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CkeysU3Ee__FixedBuffer_t042985C8A4742730483B7863D903A899805230F3__padding[14];
};
};
// UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand/<nameBuffer>e__FixedBuffer
struct U3CnameBufferU3Ee__FixedBuffer_tF101426D1EE77D09C5615FAE829F3F32616ED2A4
{
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand/<nameBuffer>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CnameBufferU3Ee__FixedBuffer_tF101426D1EE77D09C5615FAE829F3F32616ED2A4__padding[256];
};
};
// UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand/<nameBuffer>e__FixedBuffer
struct U3CnameBufferU3Ee__FixedBuffer_t168308F70377718D2FF4ADDC61E423166ADBE1DA
{
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand/<nameBuffer>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CnameBufferU3Ee__FixedBuffer_t168308F70377718D2FF4ADDC61E423166ADBE1DA__padding[256];
};
};
// UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand/<idBuffer>e__FixedBuffer
struct U3CidBufferU3Ee__FixedBuffer_t8F8E3EAA210EF6DD3834C5C4E574ADC65AC6173A
{
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand/<idBuffer>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CidBufferU3Ee__FixedBuffer_t8F8E3EAA210EF6DD3834C5C4E574ADC65AC6173A__padding[512];
};
};
// UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand/<nameBuffer>e__FixedBuffer
struct U3CnameBufferU3Ee__FixedBuffer_tC07F8AB4DC191B8E7EAC20B6CAD62F5D165BB91B
{
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand/<nameBuffer>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CnameBufferU3Ee__FixedBuffer_tC07F8AB4DC191B8E7EAC20B6CAD62F5D165BB91B__padding[512];
};
};
// UnityEngine.InputSystem.LowLevel.QueryUserIdCommand/<idBuffer>e__FixedBuffer
struct U3CidBufferU3Ee__FixedBuffer_tE4CA52A47737D5043418F9D66A282E93248BF2BD
{
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.QueryUserIdCommand/<idBuffer>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CidBufferU3Ee__FixedBuffer_tE4CA52A47737D5043418F9D66A282E93248BF2BD__padding[512];
};
};
// UnityEngine.InputSystem.LowLevel.StateEvent/<stateData>e__FixedBuffer
struct U3CstateDataU3Ee__FixedBuffer_t00ED1E0C66E396C0021CE2F46B671748BC5E5FEC
{
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.StateEvent/<stateData>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CstateDataU3Ee__FixedBuffer_t00ED1E0C66E396C0021CE2F46B671748BC5E5FEC__padding[1];
};
};
// UnityEngine.InputSystem.LowLevel.TouchscreenState/<primaryTouchData>e__FixedBuffer
struct U3CprimaryTouchDataU3Ee__FixedBuffer_t843D75C0F089EEBE01C3063B14726D4B99B56258
{
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.TouchscreenState/<primaryTouchData>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CprimaryTouchDataU3Ee__FixedBuffer_t843D75C0F089EEBE01C3063B14726D4B99B56258__padding[56];
};
};
// UnityEngine.InputSystem.LowLevel.TouchscreenState/<touchData>e__FixedBuffer
struct U3CtouchDataU3Ee__FixedBuffer_t6436C7ECCAE275554BE674C0A81E0C42D5213DAE
{
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.TouchscreenState/<touchData>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CtouchDataU3Ee__FixedBuffer_t6436C7ECCAE275554BE674C0A81E0C42D5213DAE__padding[560];
};
};
// UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader/<m_StateWithControlIndex>e__FixedBuffer
struct U3Cm_StateWithControlIndexU3Ee__FixedBuffer_t77EBD407B7C7A5338334A356AE94C7F24C77CDA2
{
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader/<m_StateWithControlIndex>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3Cm_StateWithControlIndexU3Ee__FixedBuffer_t77EBD407B7C7A5338334A356AE94C7F24C77CDA2__padding[1];
};
};
// UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader/<m_StateWithoutControlIndex>e__FixedBuffer
struct U3Cm_StateWithoutControlIndexU3Ee__FixedBuffer_tBC837D25D8887B1E4BCBE9B19FEB8EBD20FEF254
{
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader/<m_StateWithoutControlIndex>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3Cm_StateWithoutControlIndexU3Ee__FixedBuffer_tBC837D25D8887B1E4BCBE9B19FEB8EBD20FEF254__padding[1];
};
};
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>>
struct CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B
{
// System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray
bool ___m_CannotMutateCallbacksArray_0;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks
InlinedArray_1_tFABE06D675C714FC44C09C36D7B9C908690ADEAD ___m_Callbacks_1;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd
InlinedArray_1_tFABE06D675C714FC44C09C36D7B9C908690ADEAD ___m_CallbacksToAdd_2;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove
InlinedArray_1_tFABE06D675C714FC44C09C36D7B9C908690ADEAD ___m_CallbacksToRemove_3;
};
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>>
struct CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477
{
// System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray
bool ___m_CannotMutateCallbacksArray_0;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks
InlinedArray_1_tC5A6273BF5A8642C3615223409DC9A7AE2856C8D ___m_Callbacks_1;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd
InlinedArray_1_tC5A6273BF5A8642C3615223409DC9A7AE2856C8D ___m_CallbacksToAdd_2;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove
InlinedArray_1_tC5A6273BF5A8642C3615223409DC9A7AE2856C8D ___m_CallbacksToRemove_3;
};
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`1<System.Object>>
struct CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411
{
// System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray
bool ___m_CannotMutateCallbacksArray_0;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks
InlinedArray_1_t90D679876AE3A52129F69F403ECC9AD16D60AD9F ___m_Callbacks_1;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd
InlinedArray_1_t90D679876AE3A52129F69F403ECC9AD16D60AD9F ___m_CallbacksToAdd_2;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove
InlinedArray_1_t90D679876AE3A52129F69F403ECC9AD16D60AD9F ___m_CallbacksToRemove_3;
};
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange>>
struct CallbackArray_1_t2CA72B1E4C1404A9DA6888410ADA4EAF32795333
{
// System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray
bool ___m_CannotMutateCallbacksArray_0;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks
InlinedArray_1_tC156E68CC1D19C7411B135D705222BBA02E1E546 ___m_Callbacks_1;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd
InlinedArray_1_tC156E68CC1D19C7411B135D705222BBA02E1E546 ___m_CallbacksToAdd_2;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove
InlinedArray_1_tC156E68CC1D19C7411B135D705222BBA02E1E546 ___m_CallbacksToRemove_3;
};
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.LowLevel.InputEventPtr>>
struct CallbackArray_1_t6CDC364469641FDEFC50305004914224252C5C85
{
// System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray
bool ___m_CannotMutateCallbacksArray_0;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks
InlinedArray_1_t0C164496D3AC9C0D8B5986F12B3E22F94E904138 ___m_Callbacks_1;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd
InlinedArray_1_t0C164496D3AC9C0D8B5986F12B3E22F94E904138 ___m_CallbacksToAdd_2;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove
InlinedArray_1_t0C164496D3AC9C0D8B5986F12B3E22F94E904138 ___m_CallbacksToRemove_3;
};
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice>>
struct CallbackArray_1_t85DCE036F5C6200B85D9AF68EE20A7675DD9AC37
{
// System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray
bool ___m_CannotMutateCallbacksArray_0;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks
InlinedArray_1_tCB69E3C40A7449F79D455D118402BE76E07EDD3B ___m_Callbacks_1;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd
InlinedArray_1_tCB69E3C40A7449F79D455D118402BE76E07EDD3B ___m_CallbacksToAdd_2;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove
InlinedArray_1_tCB69E3C40A7449F79D455D118402BE76E07EDD3B ___m_CallbacksToRemove_3;
};
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`2<System.String,UnityEngine.InputSystem.InputControlLayoutChange>>
struct CallbackArray_1_t766EB5E63A2D3692C554B40CB077C80A0D3633CC
{
// System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray
bool ___m_CannotMutateCallbacksArray_0;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks
InlinedArray_1_t6CA0FBB125302D36470046647247C3C186DA3C81 ___m_Callbacks_1;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd
InlinedArray_1_t6CA0FBB125302D36470046647247C3C186DA3C81 ___m_CallbacksToAdd_2;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove
InlinedArray_1_t6CA0FBB125302D36470046647247C3C186DA3C81 ___m_CallbacksToRemove_3;
};
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action>
struct CallbackArray_1_t346DB7B424423D4F14A14CFE2C0734F62447A529
{
// System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray
bool ___m_CannotMutateCallbacksArray_0;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks
InlinedArray_1_tD7279E61A2C2BCBF7B9BA61C55E889A59A778B32 ___m_Callbacks_1;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd
InlinedArray_1_tD7279E61A2C2BCBF7B9BA61C55E889A59A778B32 ___m_CallbacksToAdd_2;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove
InlinedArray_1_tD7279E61A2C2BCBF7B9BA61C55E889A59A778B32 ___m_CallbacksToRemove_3;
};
// UnityEngine.InputSystem.Utilities.CallbackArray`1<UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate>
struct CallbackArray_1_t7C2A86AF46E04B281542BEADE553C9DF6B1A0885
{
// System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray
bool ___m_CannotMutateCallbacksArray_0;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks
InlinedArray_1_t8574959399B65CB49207DFFDE0842E996E6DBBED ___m_Callbacks_1;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd
InlinedArray_1_t8574959399B65CB49207DFFDE0842E996E6DBBED ___m_CallbacksToAdd_2;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove
InlinedArray_1_t8574959399B65CB49207DFFDE0842E996E6DBBED ___m_CallbacksToRemove_3;
};
// UnityEngine.InputSystem.Utilities.CallbackArray`1<UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate>
struct CallbackArray_1_t52995C3D8849483AA8BD7ABCDB6094548AF3BE8D
{
// System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray
bool ___m_CannotMutateCallbacksArray_0;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks
InlinedArray_1_t6FEF55D1987F9E3301E4FF894670C2B041308E88 ___m_Callbacks_1;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd
InlinedArray_1_t6FEF55D1987F9E3301E4FF894670C2B041308E88 ___m_CallbacksToAdd_2;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove
InlinedArray_1_t6FEF55D1987F9E3301E4FF894670C2B041308E88 ___m_CallbacksToRemove_3;
};
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Object>
struct CallbackArray_1_t70C9B62D06582BEAC403C9259B541A2D8D4B4A1F
{
// System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray
bool ___m_CannotMutateCallbacksArray_0;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks
InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4 ___m_Callbacks_1;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd
InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4 ___m_CallbacksToAdd_2;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<TDelegate> UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove
InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4 ___m_CallbacksToRemove_3;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>
struct InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189 ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
KeyValuePair_2U5BU5D_t45BAFB41C049BDC49B00275E5A255BB6DEB1396C* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.Utilities.InternedString>
struct InlinedArray_1_tAFDFE0972A71B9760077CFA9D4A1DBD7BE435800
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InternedStringU5BU5D_t0B851758733FC0B118D84BE83AED10A0404C18D5* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout>
struct InlinedArray_1_t63A16C5FE53708C13F492320BA02E124371662FA
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
StateChangeMonitorTimeout_t9D00677B36798F8E8A4FA1DC5797CBD5F5C4F1DE ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
StateChangeMonitorTimeoutU5BU5D_t475D94CE66B17064D5DE2966779E7E9006A09D82* ___additionalValues_2;
};
// UnityEngine.InputSystem.LowLevel.AccelerometerState
struct AccelerometerState_tBC7006B5431DF59DC2A9AF2E08FD06674EA8372A
{
// UnityEngine.Vector3 UnityEngine.InputSystem.LowLevel.AccelerometerState::acceleration
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___acceleration_0;
};
// Unity.Collections.Allocator
struct Allocator_t996642592271AAD9EE688F142741D512C07B5824
{
// System.Int32 Unity.Collections.Allocator::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.Android.LowLevel.AndroidAxis
struct AndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A
{
// System.Int32 UnityEngine.InputSystem.Android.LowLevel.AndroidAxis::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState
struct AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38
{
// UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState/<buttons>e__FixedBuffer UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState::buttons
U3CbuttonsU3Ee__FixedBuffer_t7413EBD27C3C5C4333E8EEF49BE780DEE091C295 ___buttons_8;
// UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState/<axis>e__FixedBuffer UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState::axis
U3CaxisU3Ee__FixedBuffer_tDC679A545AFAAEF05C398B21A88FEE416E1F3B0F ___axis_9;
};
struct AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38_StaticFields
{
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState::kFormat
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___kFormat_7;
};
// UnityEngine.InputSystem.Android.LowLevel.AndroidInputSource
struct AndroidInputSource_t4E49A7A84DDF7CF3966E322F75C97EEA43DE2738
{
// System.Int32 UnityEngine.InputSystem.Android.LowLevel.AndroidInputSource::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.Android.LowLevel.AndroidKeyCode
struct AndroidKeyCode_t22A9ABD89137227DDCCED60D3E046E523298040E
{
// System.Int32 UnityEngine.InputSystem.Android.LowLevel.AndroidKeyCode::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.Android.LowLevel.AndroidSensorState
struct AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29
{
// UnityEngine.InputSystem.Android.LowLevel.AndroidSensorState/<data>e__FixedBuffer UnityEngine.InputSystem.Android.LowLevel.AndroidSensorState::data
U3CdataU3Ee__FixedBuffer_t066695EC09AC9F1A1401452C33184A8BB20DC632 ___data_1;
};
struct AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29_StaticFields
{
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.Android.LowLevel.AndroidSensorState::kFormat
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___kFormat_0;
};
// UnityEngine.InputSystem.Android.LowLevel.AndroidSensorType
struct AndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C
{
// System.Int32 UnityEngine.InputSystem.Android.LowLevel.AndroidSensorType::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.LowLevel.AttitudeState
struct AttitudeState_tE01F02CAD17A08F2D35660E017437AC72BC45745
{
// UnityEngine.Quaternion UnityEngine.InputSystem.LowLevel.AttitudeState::attitude
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___attitude_0;
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject* ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.IntPtr System.Delegate::interp_method
intptr_t ___interp_method_7;
// System.IntPtr System.Delegate::interp_invoke_impl
intptr_t ___interp_invoke_impl_8;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t* ___method_info_9;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t* ___original_method_info_10;
// System.DelegateData System.Delegate::data
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_12;
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// System.Exception
struct Exception_t : public RuntimeObject
{
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t* ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject* ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject* ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
// System.Int32 System.Exception::caught_in_unmanaged
int32_t ___caught_in_unmanaged_16;
};
struct Exception_t_StaticFields
{
// System.Object System.Exception::s_EDILock
RuntimeObject* ___s_EDILock_0;
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// System.IO.FileAccess
struct FileAccess_t3992FF4CCC61971B804DD291F06F696C3CF33C30
{
// System.Int32 System.IO.FileAccess::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.LowLevel.GamepadButton
struct GamepadButton_t092328B0362619B4160D3BA65D497B41D807EB16
{
// System.Int32 UnityEngine.InputSystem.LowLevel.GamepadButton::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.LowLevel.GamepadState
struct GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.UInt32 UnityEngine.InputSystem.LowLevel.GamepadState::buttons
uint32_t ___buttons_4;
};
#pragma pack(pop, tp)
struct
{
uint32_t ___buttons_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___leftStick_5_OffsetPadding[4];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.GamepadState::leftStick
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftStick_5;
};
#pragma pack(pop, tp)
struct
{
char ___leftStick_5_OffsetPadding_forAlignmentOnly[4];
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftStick_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___rightStick_6_OffsetPadding[12];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.GamepadState::rightStick
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightStick_6;
};
#pragma pack(pop, tp)
struct
{
char ___rightStick_6_OffsetPadding_forAlignmentOnly[12];
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightStick_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___leftTrigger_7_OffsetPadding[20];
// System.Single UnityEngine.InputSystem.LowLevel.GamepadState::leftTrigger
float ___leftTrigger_7;
};
#pragma pack(pop, tp)
struct
{
char ___leftTrigger_7_OffsetPadding_forAlignmentOnly[20];
float ___leftTrigger_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___rightTrigger_8_OffsetPadding[24];
// System.Single UnityEngine.InputSystem.LowLevel.GamepadState::rightTrigger
float ___rightTrigger_8;
};
#pragma pack(pop, tp)
struct
{
char ___rightTrigger_8_OffsetPadding_forAlignmentOnly[24];
float ___rightTrigger_8_forAlignmentOnly;
};
};
};
uint8_t GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1__padding[28];
};
};
// UnityEngine.InputSystem.LowLevel.GravityState
struct GravityState_tD607A716F9E0D00477CECC5C019929633E66ACFF
{
// UnityEngine.Vector3 UnityEngine.InputSystem.LowLevel.GravityState::gravity
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___gravity_0;
};
// UnityEngine.InputSystem.LowLevel.GyroscopeState
struct GyroscopeState_t6C1BC700557D943111882E3634CA7411EE531B87
{
// UnityEngine.Vector3 UnityEngine.InputSystem.LowLevel.GyroscopeState::angularVelocity
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___angularVelocity_0;
};
// UnityEngine.HideFlags
struct HideFlags_tC514182ACEFD3B847988C45D5DB812FF6DB1BF4A
{
// System.Int32 UnityEngine.HideFlags::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.LowLevel.IMECompositionString
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.InputSystem.LowLevel.IMECompositionString::size
int32_t ___size_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___size_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___buffer_1_OffsetPadding[4];
// UnityEngine.InputSystem.LowLevel.IMECompositionString/<buffer>e__FixedBuffer UnityEngine.InputSystem.LowLevel.IMECompositionString::buffer
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF ___buffer_1;
};
#pragma pack(pop, tp)
struct
{
char ___buffer_1_OffsetPadding_forAlignmentOnly[4];
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF ___buffer_1_forAlignmentOnly;
};
};
};
uint8_t IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E__padding[132];
};
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionString
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___size_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___size_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___buffer_1_OffsetPadding[4];
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke ___buffer_1;
};
#pragma pack(pop, tp)
struct
{
char ___buffer_1_OffsetPadding_forAlignmentOnly[4];
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke ___buffer_1_forAlignmentOnly;
};
};
};
uint8_t IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E__padding[132];
};
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionString
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___size_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___size_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___buffer_1_OffsetPadding[4];
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com ___buffer_1;
};
#pragma pack(pop, tp)
struct
{
char ___buffer_1_OffsetPadding_forAlignmentOnly[4];
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com ___buffer_1_forAlignmentOnly;
};
};
};
uint8_t IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E__padding[132];
};
};
// UnityEngine.InputSystem.InputActionPhase
struct InputActionPhase_t79D9374C1940AA7248377075A0E83122540334C6
{
// System.Int32 UnityEngine.InputSystem.InputActionPhase::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.InputDeviceChange
struct InputDeviceChange_t1AD7D7058ABBDAA185C1A2B3A9B5E8FE115D7A78
{
// System.Int32 UnityEngine.InputSystem.InputDeviceChange::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand
struct InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputDeviceCommand::type
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___type_4;
};
#pragma pack(pop, tp)
struct
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___type_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___sizeInBytes_5_OffsetPadding[4];
// System.Int32 UnityEngine.InputSystem.LowLevel.InputDeviceCommand::sizeInBytes
int32_t ___sizeInBytes_5;
};
#pragma pack(pop, tp)
struct
{
char ___sizeInBytes_5_OffsetPadding_forAlignmentOnly[4];
int32_t ___sizeInBytes_5_forAlignmentOnly;
};
};
};
uint8_t InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E__padding[8];
};
};
// UnityEngine.InputSystem.Layouts.InputDeviceMatcher
struct InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555
{
// System.Collections.Generic.KeyValuePair`2<UnityEngine.InputSystem.Utilities.InternedString,System.Object>[] UnityEngine.InputSystem.Layouts.InputDeviceMatcher::m_Patterns
KeyValuePair_2U5BU5D_tF8154B2302178CCE00D745DBF55F703880469DFC* ___m_Patterns_0;
};
struct InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555_StaticFields
{
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputDeviceMatcher::kInterfaceKey
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___kInterfaceKey_1;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputDeviceMatcher::kDeviceClassKey
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___kDeviceClassKey_2;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputDeviceMatcher::kManufacturerKey
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___kManufacturerKey_3;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputDeviceMatcher::kProductKey
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___kProductKey_4;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputDeviceMatcher::kVersionKey
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___kVersionKey_5;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputDeviceMatcher
struct InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555_marshaled_pinvoke
{
KeyValuePair_2_tC24A74EF64A292F5C6BA77D0B04CD6620D2DE3AC* ___m_Patterns_0;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputDeviceMatcher
struct InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555_marshaled_com
{
KeyValuePair_2_tC24A74EF64A292F5C6BA77D0B04CD6620D2DE3AC* ___m_Patterns_0;
};
// UnityEngine.InputSystem.InputProcessor
struct InputProcessor_t71DA6677A0295DC87736E1D8D208FEA75D860457 : public RuntimeObject
{
};
struct InputProcessor_t71DA6677A0295DC87736E1D8D208FEA75D860457_StaticFields
{
// UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputProcessor::s_Processors
TypeTable_tEAC1ECAD849469DEA65DA2FC65B19C2D4739B67E ___s_Processors_0;
};
// UnityEngine.InputSystem.LowLevel.InputStateBlock
struct InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5
{
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::<format>k__BackingField
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___U3CformatU3Ek__BackingField_33;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::<byteOffset>k__BackingField
uint32_t ___U3CbyteOffsetU3Ek__BackingField_34;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::<bitOffset>k__BackingField
uint32_t ___U3CbitOffsetU3Ek__BackingField_35;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::<sizeInBits>k__BackingField
uint32_t ___U3CsizeInBitsU3Ek__BackingField_36;
};
struct InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5_StaticFields
{
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatBit
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatBit_2;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatSBit
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatSBit_4;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatInt
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatInt_6;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatUInt
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatUInt_8;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatShort
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatShort_10;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatUShort
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatUShort_12;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatByte
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatByte_14;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatSByte
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatSByte_16;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatLong
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatLong_18;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatULong
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatULong_20;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatFloat
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatFloat_22;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatDouble
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatDouble_24;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector2
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector2_26;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector3
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector3_27;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatQuaternion
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatQuaternion_28;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector2Short
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector2Short_29;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector3Short
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector3Short_30;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector2Byte
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector2Byte_31;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector3Byte
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector3Byte_32;
};
// UnityEngine.InputSystem.LowLevel.InputStateBuffers
struct InputStateBuffers_t338A1714D01276EEEF5F8CD6AE81DFED939D5968
{
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBuffers::sizePerBuffer
uint32_t ___sizePerBuffer_0;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBuffers::totalSize
uint32_t ___totalSize_1;
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::defaultStateBuffer
void* ___defaultStateBuffer_2;
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::noiseMaskBuffer
void* ___noiseMaskBuffer_3;
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::resetMaskBuffer
void* ___resetMaskBuffer_4;
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::m_AllBuffers
void* ___m_AllBuffers_5;
// UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers UnityEngine.InputSystem.LowLevel.InputStateBuffers::m_PlayerStateBuffers
DoubleBuffers_tC70880E0E4F69237E763403F28F65B807E94A9ED ___m_PlayerStateBuffers_6;
};
struct InputStateBuffers_t338A1714D01276EEEF5F8CD6AE81DFED939D5968_StaticFields
{
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::s_DefaultStateBuffer
void* ___s_DefaultStateBuffer_7;
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::s_NoiseMaskBuffer
void* ___s_NoiseMaskBuffer_8;
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::s_ResetMaskBuffer
void* ___s_ResetMaskBuffer_9;
// UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers UnityEngine.InputSystem.LowLevel.InputStateBuffers::s_CurrentBuffers
DoubleBuffers_tC70880E0E4F69237E763403F28F65B807E94A9ED ___s_CurrentBuffers_10;
};
// UnityEngine.InputSystem.LowLevel.InputUpdateType
struct InputUpdateType_t31A66F5342D924983382FA675EF78007C04EC590
{
// System.Int32 UnityEngine.InputSystem.LowLevel.InputUpdateType::value__
int32_t ___value___2;
};
// System.Int32Enum
struct Int32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C
{
// System.Int32 System.Int32Enum::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.LowLevel.JoystickState
struct JoystickState_t03D95BB2BA3497FA34F7F2C395126FE079DBAD23
{
// System.Int32 UnityEngine.InputSystem.LowLevel.JoystickState::buttons
int32_t ___buttons_0;
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.JoystickState::stick
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___stick_1;
};
// UnityEngine.InputSystem.Key
struct Key_tA157C0DCB2A0D2BE58B76B3BB836A1B2E4EAF387
{
// System.Int32 UnityEngine.InputSystem.Key::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.LowLevel.KeyboardState
struct KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E
{
// UnityEngine.InputSystem.LowLevel.KeyboardState/<keys>e__FixedBuffer UnityEngine.InputSystem.LowLevel.KeyboardState::keys
U3CkeysU3Ee__FixedBuffer_t042985C8A4742730483B7863D903A899805230F3 ___keys_2;
};
// UnityEngine.InputSystem.LowLevel.LinearAccelerationState
struct LinearAccelerationState_tD14025B444097A9A3CA0B3ADBA153C775A316F24
{
// UnityEngine.Vector3 UnityEngine.InputSystem.LowLevel.LinearAccelerationState::acceleration
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___acceleration_0;
};
// UnityEngine.InputSystem.LowLevel.MouseButton
struct MouseButton_t8D0B198592CF83A5A765258D30674D66A3E64A0C
{
// System.Int32 UnityEngine.InputSystem.LowLevel.MouseButton::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.LowLevel.MouseState
struct MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.MouseState::position
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position_0;
};
#pragma pack(pop, tp)
struct
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___delta_1_OffsetPadding[8];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.MouseState::delta
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___delta_1;
};
#pragma pack(pop, tp)
struct
{
char ___delta_1_OffsetPadding_forAlignmentOnly[8];
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___delta_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___scroll_2_OffsetPadding[16];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.MouseState::scroll
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___scroll_2;
};
#pragma pack(pop, tp)
struct
{
char ___scroll_2_OffsetPadding_forAlignmentOnly[16];
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___scroll_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___buttons_3_OffsetPadding[24];
// System.UInt16 UnityEngine.InputSystem.LowLevel.MouseState::buttons
uint16_t ___buttons_3;
};
#pragma pack(pop, tp)
struct
{
char ___buttons_3_OffsetPadding_forAlignmentOnly[24];
uint16_t ___buttons_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___displayIndex_4_OffsetPadding[26];
// System.UInt16 UnityEngine.InputSystem.LowLevel.MouseState::displayIndex
uint16_t ___displayIndex_4;
};
#pragma pack(pop, tp)
struct
{
char ___displayIndex_4_OffsetPadding_forAlignmentOnly[26];
uint16_t ___displayIndex_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___clickCount_5_OffsetPadding[28];
// System.UInt16 UnityEngine.InputSystem.LowLevel.MouseState::clickCount
uint16_t ___clickCount_5;
};
#pragma pack(pop, tp)
struct
{
char ___clickCount_5_OffsetPadding_forAlignmentOnly[28];
uint16_t ___clickCount_5_forAlignmentOnly;
};
};
};
uint8_t MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1__padding[30];
};
};
// Unity.Collections.NativeArrayOptions
struct NativeArrayOptions_t3E979EEF4B4840228A7692A97DA07553C6465F1D
{
// System.Int32 Unity.Collections.NativeArrayOptions::value__
int32_t ___value___2;
};
// UnityEngineInternal.Input.NativeInputEventType
struct NativeInputEventType_t622584116C97356073253408636FA50ECAA9853B
{
// System.Int32 UnityEngineInternal.Input.NativeInputEventType::value__
int32_t ___value___2;
};
// UnityEngine.Object
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
{
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
};
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
{
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
};
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.InputSystem.PenButton
struct PenButton_t0BA4B52240ABD38446866B65EE531F669377E554
{
// System.Int32 UnityEngine.InputSystem.PenButton::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.LowLevel.PenState
struct PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.PenState::position
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position_0;
};
#pragma pack(pop, tp)
struct
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___delta_1_OffsetPadding[8];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.PenState::delta
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___delta_1;
};
#pragma pack(pop, tp)
struct
{
char ___delta_1_OffsetPadding_forAlignmentOnly[8];
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___delta_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___tilt_2_OffsetPadding[16];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.PenState::tilt
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___tilt_2;
};
#pragma pack(pop, tp)
struct
{
char ___tilt_2_OffsetPadding_forAlignmentOnly[16];
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___tilt_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___pressure_3_OffsetPadding[24];
// System.Single UnityEngine.InputSystem.LowLevel.PenState::pressure
float ___pressure_3;
};
#pragma pack(pop, tp)
struct
{
char ___pressure_3_OffsetPadding_forAlignmentOnly[24];
float ___pressure_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___twist_4_OffsetPadding[28];
// System.Single UnityEngine.InputSystem.LowLevel.PenState::twist
float ___twist_4;
};
#pragma pack(pop, tp)
struct
{
char ___twist_4_OffsetPadding_forAlignmentOnly[28];
float ___twist_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___buttons_5_OffsetPadding[32];
// System.UInt16 UnityEngine.InputSystem.LowLevel.PenState::buttons
uint16_t ___buttons_5;
};
#pragma pack(pop, tp)
struct
{
char ___buttons_5_OffsetPadding_forAlignmentOnly[32];
uint16_t ___buttons_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___displayIndex_6_OffsetPadding[34];
// System.UInt16 UnityEngine.InputSystem.LowLevel.PenState::displayIndex
uint16_t ___displayIndex_6;
};
#pragma pack(pop, tp)
struct
{
char ___displayIndex_6_OffsetPadding_forAlignmentOnly[34];
uint16_t ___displayIndex_6_forAlignmentOnly;
};
};
};
uint8_t PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144__padding[36];
};
};
// UnityEngine.InputSystem.LowLevel.PointerState
struct PointerState_t3BD79772D06D5CC227EBE757B27F8262EB46A919
{
// System.UInt32 UnityEngine.InputSystem.LowLevel.PointerState::pointerId
uint32_t ___pointerId_0;
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.PointerState::position
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position_1;
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.PointerState::delta
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___delta_2;
// System.Single UnityEngine.InputSystem.LowLevel.PointerState::pressure
float ___pressure_3;
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.PointerState::radius
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___radius_4;
// System.UInt16 UnityEngine.InputSystem.LowLevel.PointerState::buttons
uint16_t ___buttons_5;
};
// UnityEngine.RuntimePlatform
struct RuntimePlatform_t9A8AAF204603076FCAAECCCC05DA386AEE7BF66E
{
// System.Int32 UnityEngine.RuntimePlatform::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.LowLevel.TouchFlags
struct TouchFlags_tE612D94D507D1CFA4DB40EEE3FDF65302CE4137B
{
// System.Byte UnityEngine.InputSystem.LowLevel.TouchFlags::value__
uint8_t ___value___2;
};
// UnityEngine.InputSystem.TouchPhase
struct TouchPhase_tC280DE0C3DA3652019BF3605D57099E6CE2F3B14
{
// System.Int32 UnityEngine.InputSystem.TouchPhase::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.LowLevel.TouchState
struct TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.InputSystem.LowLevel.TouchState::touchId
int32_t ___touchId_1;
};
#pragma pack(pop, tp)
struct
{
int32_t ___touchId_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___position_2_OffsetPadding[4];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.TouchState::position
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position_2;
};
#pragma pack(pop, tp)
struct
{
char ___position_2_OffsetPadding_forAlignmentOnly[4];
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___delta_3_OffsetPadding[12];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.TouchState::delta
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___delta_3;
};
#pragma pack(pop, tp)
struct
{
char ___delta_3_OffsetPadding_forAlignmentOnly[12];
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___delta_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___pressure_4_OffsetPadding[20];
// System.Single UnityEngine.InputSystem.LowLevel.TouchState::pressure
float ___pressure_4;
};
#pragma pack(pop, tp)
struct
{
char ___pressure_4_OffsetPadding_forAlignmentOnly[20];
float ___pressure_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___radius_5_OffsetPadding[24];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.TouchState::radius
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___radius_5;
};
#pragma pack(pop, tp)
struct
{
char ___radius_5_OffsetPadding_forAlignmentOnly[24];
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___radius_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___phaseId_6_OffsetPadding[32];
// System.Byte UnityEngine.InputSystem.LowLevel.TouchState::phaseId
uint8_t ___phaseId_6;
};
#pragma pack(pop, tp)
struct
{
char ___phaseId_6_OffsetPadding_forAlignmentOnly[32];
uint8_t ___phaseId_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___tapCount_7_OffsetPadding[33];
// System.Byte UnityEngine.InputSystem.LowLevel.TouchState::tapCount
uint8_t ___tapCount_7;
};
#pragma pack(pop, tp)
struct
{
char ___tapCount_7_OffsetPadding_forAlignmentOnly[33];
uint8_t ___tapCount_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___displayIndex_8_OffsetPadding[34];
// System.Byte UnityEngine.InputSystem.LowLevel.TouchState::displayIndex
uint8_t ___displayIndex_8;
};
#pragma pack(pop, tp)
struct
{
char ___displayIndex_8_OffsetPadding_forAlignmentOnly[34];
uint8_t ___displayIndex_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___flags_9_OffsetPadding[35];
// System.Byte UnityEngine.InputSystem.LowLevel.TouchState::flags
uint8_t ___flags_9;
};
#pragma pack(pop, tp)
struct
{
char ___flags_9_OffsetPadding_forAlignmentOnly[35];
uint8_t ___flags_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___updateStepCount_10_OffsetPadding[36];
// System.UInt32 UnityEngine.InputSystem.LowLevel.TouchState::updateStepCount
uint32_t ___updateStepCount_10;
};
#pragma pack(pop, tp)
struct
{
char ___updateStepCount_10_OffsetPadding_forAlignmentOnly[36];
uint32_t ___updateStepCount_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___startTime_11_OffsetPadding[40];
// System.Double UnityEngine.InputSystem.LowLevel.TouchState::startTime
double ___startTime_11;
};
#pragma pack(pop, tp)
struct
{
char ___startTime_11_OffsetPadding_forAlignmentOnly[40];
double ___startTime_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___startPosition_12_OffsetPadding[48];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.TouchState::startPosition
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___startPosition_12;
};
#pragma pack(pop, tp)
struct
{
char ___startPosition_12_OffsetPadding_forAlignmentOnly[48];
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___startPosition_12_forAlignmentOnly;
};
};
};
uint8_t TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97__padding[56];
};
};
// UnityEngine.InputSystem.LowLevel.TouchscreenState
struct TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.TouchscreenState/<primaryTouchData>e__FixedBuffer UnityEngine.InputSystem.LowLevel.TouchscreenState::primaryTouchData
U3CprimaryTouchDataU3Ee__FixedBuffer_t843D75C0F089EEBE01C3063B14726D4B99B56258 ___primaryTouchData_1;
};
#pragma pack(pop, tp)
struct
{
U3CprimaryTouchDataU3Ee__FixedBuffer_t843D75C0F089EEBE01C3063B14726D4B99B56258 ___primaryTouchData_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___touchData_3_OffsetPadding[56];
// UnityEngine.InputSystem.LowLevel.TouchscreenState/<touchData>e__FixedBuffer UnityEngine.InputSystem.LowLevel.TouchscreenState::touchData
U3CtouchDataU3Ee__FixedBuffer_t6436C7ECCAE275554BE674C0A81E0C42D5213DAE ___touchData_3;
};
#pragma pack(pop, tp)
struct
{
char ___touchData_3_OffsetPadding_forAlignmentOnly[56];
U3CtouchDataU3Ee__FixedBuffer_t6436C7ECCAE275554BE674C0A81E0C42D5213DAE ___touchData_3_forAlignmentOnly;
};
};
};
uint8_t TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F__padding[560];
};
};
// System.TypeCode
struct TypeCode_tBEF9BE86C8BCF5A6B82F3381219738D27804EF79
{
// System.Int32 System.TypeCode::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.Controls.AxisControl/Clamp
struct Clamp_tCB96E8D34067B0DCBED42C565F4443DF880DD284
{
// System.Int32 UnityEngine.InputSystem.Controls.AxisControl/Clamp::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.HID.HID/Button
struct Button_t1B68DE33744879F4E02B6FE84C2434558BFADC59
{
// System.Int32 UnityEngine.InputSystem.HID.HID/Button::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.HID.HID/GenericDesktop
struct GenericDesktop_t7A7FDC7978756F7A79860CB0DEB547978F968063
{
// System.Int32 UnityEngine.InputSystem.HID.HID/GenericDesktop::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.HID.HID/HIDCollectionType
struct HIDCollectionType_t7AC7F0F059AEAEEFBD54D5F4DB1DFCB85254C854
{
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDCollectionType::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.HID.HID/HIDElementFlags
struct HIDElementFlags_t3C41C626435310A0F354E862D4747C2369E8720C
{
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementFlags::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.HID.HID/HIDReportType
struct HIDReportType_t37249B7677BD7083BEB296DEC42B8A0C0ADE562F
{
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDReportType::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.HID.HID/Simulation
struct Simulation_t4760B5DEC24047A16F290FAC6D7E64AAD44E1EAF
{
// System.Int32 UnityEngine.InputSystem.HID.HID/Simulation::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.HID.HID/UsagePage
struct UsagePage_t6EF545F107AB1DED99B07C377BD0B8457DC6F7B8
{
// System.Int32 UnityEngine.InputSystem.HID.HID/UsagePage::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal
struct HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1
{
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::usagePage
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usagePage_0;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::logicalMinimum
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___logicalMinimum_1;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::logicalMaximum
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___logicalMaximum_2;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::physicalMinimum
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___physicalMinimum_3;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::physicalMaximum
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___physicalMaximum_4;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::unitExponent
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___unitExponent_5;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::unit
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___unit_6;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::reportSize
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportSize_7;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::reportCount
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportCount_8;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::reportId
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportId_9;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal
struct HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshaled_pinvoke
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usagePage_0;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___logicalMinimum_1;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___logicalMaximum_2;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___physicalMinimum_3;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___physicalMaximum_4;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___unitExponent_5;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___unit_6;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportSize_7;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportCount_8;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportId_9;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal
struct HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshaled_com
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usagePage_0;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___logicalMinimum_1;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___logicalMaximum_2;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___physicalMinimum_3;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___physicalMaximum_4;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___unitExponent_5;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___unit_6;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportSize_7;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportCount_8;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportId_9;
};
// UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal
struct HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B
{
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::usage
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usage_0;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::usageMinimum
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMinimum_1;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::usageMaximum
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMaximum_2;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::designatorIndex
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorIndex_3;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::designatorMinimum
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorMinimum_4;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::designatorMaximum
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorMaximum_5;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::stringIndex
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringIndex_6;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::stringMinimum
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringMinimum_7;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::stringMaximum
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringMaximum_8;
// System.Collections.Generic.List`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::usageList
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___usageList_9;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal
struct HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshaled_pinvoke
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usage_0;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMinimum_1;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMaximum_2;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorIndex_3;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorMinimum_4;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorMaximum_5;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringIndex_6;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringMinimum_7;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringMaximum_8;
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___usageList_9;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal
struct HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshaled_com
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usage_0;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMinimum_1;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMaximum_2;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorIndex_3;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorMinimum_4;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorMaximum_5;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringIndex_6;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringMinimum_7;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringMaximum_8;
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___usageList_9;
};
// UnityEngine.InputSystem.HID.HIDParser/HIDItemTypeAndTag
struct HIDItemTypeAndTag_t313707ACB3F0F6EF0C884DEC46ACFA92F64DDCE6
{
// System.Int32 UnityEngine.InputSystem.HID.HIDParser/HIDItemTypeAndTag::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.LowLevel.InitiateUserAccountPairingCommand/Result
struct Result_t3AF4C1D4CB426836EBEA0C76FF29FB5D62788606
{
// System.Int32 UnityEngine.InputSystem.LowLevel.InitiateUserAccountPairingCommand/Result::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.InputControl/ControlFlags
struct ControlFlags_t9C297F208DE19CEB00A0560F7FDE59F6A2004132
{
// System.Int32 UnityEngine.InputSystem.InputControl/ControlFlags::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.InputControlExtensions/Enumerate
struct Enumerate_tAFB6E28CA44189165DDA67CC93DF6A7FA5B31D73
{
// System.Int32 UnityEngine.InputSystem.InputControlExtensions/Enumerate::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/Flags
struct Flags_t193C2E9B0D9701ACB7ABD982BA8B3B2DB2F74230
{
// System.Int32 UnityEngine.InputSystem.Layouts.InputControlLayout/Flags::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.InputDevice/DeviceFlags
struct DeviceFlags_tF02F85DA24FF16879A67B540FCA560EC955CE728
{
// System.Int32 UnityEngine.InputSystem.InputDevice/DeviceFlags::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.LowLevel.InputEventListener/ObserverState
struct ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8 : public RuntimeObject
{
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.IObserver`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>> UnityEngine.InputSystem.LowLevel.InputEventListener/ObserverState::observers
InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5 ___observers_0;
// System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice> UnityEngine.InputSystem.LowLevel.InputEventListener/ObserverState::onEventDelegate
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___onEventDelegate_1;
};
// UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo
struct DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52
{
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::m_DeviceId
int32_t ___m_DeviceId_0;
// System.String UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::m_Layout
String_t* ___m_Layout_1;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::m_StateFormat
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___m_StateFormat_2;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::m_StateSizeInBytes
int32_t ___m_StateSizeInBytes_3;
// System.String UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::m_FullLayoutJson
String_t* ___m_FullLayoutJson_4;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo
struct DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_marshaled_pinvoke
{
int32_t ___m_DeviceId_0;
char* ___m_Layout_1;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___m_StateFormat_2;
int32_t ___m_StateSizeInBytes_3;
char* ___m_FullLayoutJson_4;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo
struct DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_marshaled_com
{
int32_t ___m_DeviceId_0;
Il2CppChar* ___m_Layout_1;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___m_StateFormat_2;
int32_t ___m_StateSizeInBytes_3;
Il2CppChar* ___m_FullLayoutJson_4;
};
// UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator
struct Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75 : public RuntimeObject
{
// UnityEngine.InputSystem.LowLevel.InputEventTrace UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator::m_Trace
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* ___m_Trace_0;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator::m_ChangeCounter
int32_t ___m_ChangeCounter_1;
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator::m_Current
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___m_Current_2;
};
// UnityEngine.InputSystem.LowLevel.InputEventTrace/FileFlags
struct FileFlags_tBDC19CD105DD0618556D092585D1B6942AD1D3CA
{
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/FileFlags::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.InputSettings/BackgroundBehavior
struct BackgroundBehavior_t4D397A0FC3ECD31C1A4DB8C2D09BBC4E71BFC1D6
{
// System.Int32 UnityEngine.InputSystem.InputSettings/BackgroundBehavior::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.InputSettings/EditorInputBehaviorInPlayMode
struct EditorInputBehaviorInPlayMode_tC47B44FACCF39F8E2DCA21270D51417B5DEF814D
{
// System.Int32 UnityEngine.InputSystem.InputSettings/EditorInputBehaviorInPlayMode::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.InputSettings/UpdateMode
struct UpdateMode_tCD49766B755C4CD8E1F2DE8D57798DAC2C5CBF32
{
// System.Int32 UnityEngine.InputSystem.InputSettings/UpdateMode::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader
struct RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Double UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader::time
double ___time_0;
};
#pragma pack(pop, tp)
struct
{
double ___time_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___version_1_OffsetPadding[8];
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader::version
uint32_t ___version_1;
};
#pragma pack(pop, tp)
struct
{
char ___version_1_OffsetPadding_forAlignmentOnly[8];
uint32_t ___version_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___controlIndex_2_OffsetPadding[12];
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader::controlIndex
int32_t ___controlIndex_2;
};
#pragma pack(pop, tp)
struct
{
char ___controlIndex_2_OffsetPadding_forAlignmentOnly[12];
int32_t ___controlIndex_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_StateWithoutControlIndex_3_OffsetPadding[12];
// UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader/<m_StateWithoutControlIndex>e__FixedBuffer UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader::m_StateWithoutControlIndex
U3Cm_StateWithoutControlIndexU3Ee__FixedBuffer_tBC837D25D8887B1E4BCBE9B19FEB8EBD20FEF254 ___m_StateWithoutControlIndex_3;
};
#pragma pack(pop, tp)
struct
{
char ___m_StateWithoutControlIndex_3_OffsetPadding_forAlignmentOnly[12];
U3Cm_StateWithoutControlIndexU3Ee__FixedBuffer_tBC837D25D8887B1E4BCBE9B19FEB8EBD20FEF254 ___m_StateWithoutControlIndex_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_StateWithControlIndex_4_OffsetPadding[16];
// UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader/<m_StateWithControlIndex>e__FixedBuffer UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader::m_StateWithControlIndex
U3Cm_StateWithControlIndexU3Ee__FixedBuffer_t77EBD407B7C7A5338334A356AE94C7F24C77CDA2 ___m_StateWithControlIndex_4;
};
#pragma pack(pop, tp)
struct
{
char ___m_StateWithControlIndex_4_OffsetPadding_forAlignmentOnly[16];
U3Cm_StateWithControlIndexU3Ee__FixedBuffer_t77EBD407B7C7A5338334A356AE94C7F24C77CDA2 ___m_StateWithControlIndex_4_forAlignmentOnly;
};
};
};
// UnityEngine.InputSystem.LowLevel.JoystickState/Button
struct Button_tB77F320590E9A3E16FDB75B0E162337BD9764879
{
// System.Int32 UnityEngine.InputSystem.LowLevel.JoystickState/Button::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand/Result
struct Result_tBEBF555661C3E631D77404276F9D7D3D954C4E50
{
// System.Int64 UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand/Result::value__
int64_t ___value___2;
};
// UnityEngine.InputSystem.EnhancedTouch.Touch/ExtraDataPerTouchState
struct ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4
{
// UnityEngine.Vector2 UnityEngine.InputSystem.EnhancedTouch.Touch/ExtraDataPerTouchState::accumulatedDelta
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___accumulatedDelta_0;
// System.UInt32 UnityEngine.InputSystem.EnhancedTouch.Touch/ExtraDataPerTouchState::uniqueId
uint32_t ___uniqueId_1;
};
// UnityEngine.InputSystem.EnhancedTouch.TouchHistory/Enumerator
struct Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5 : public RuntimeObject
{
// UnityEngine.InputSystem.EnhancedTouch.TouchHistory UnityEngine.InputSystem.EnhancedTouch.TouchHistory/Enumerator::m_Owner
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 ___m_Owner_0;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.TouchHistory/Enumerator::m_Index
int32_t ___m_Index_1;
};
// UnityEngine.InputSystem.XInput.XInputController/DeviceFlags
struct DeviceFlags_tB4B3722C4DD56E33F559D815C84AB638ED8A56FE
{
// System.Int32 UnityEngine.InputSystem.XInput.XInputController/DeviceFlags::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.XInput.XInputController/DeviceSubType
struct DeviceSubType_t7A0FF5B2D9C7289C70884129466A803D5F75A776
{
// System.Int32 UnityEngine.InputSystem.XInput.XInputController/DeviceSubType::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Quaternion>
struct InputProcessor_1_t43B1AEC927E378D43D0207A4C031927E872280CE : public InputProcessor_t71DA6677A0295DC87736E1D8D208FEA75D860457
{
};
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Vector3>
struct InputProcessor_1_t10DFF33E2326C9CB9E156D4E45DB2D85EFD54C7F : public InputProcessor_t71DA6677A0295DC87736E1D8D208FEA75D860457
{
};
// Unity.Collections.NativeArray`1<System.Byte>
struct NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF
{
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
};
// System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>
struct Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 ___value_1;
};
// System.Nullable`1<UnityEngine.InputSystem.LowLevel.InputUpdateType>
struct Nullable_1_t01EA562E317937F4460711CFA1BFDE2AA35CBF20
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
int32_t ___value_1;
};
// UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities
struct AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D
{
// System.String UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities::deviceDescriptor
String_t* ___deviceDescriptor_0;
// System.Int32 UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities::productId
int32_t ___productId_1;
// System.Int32 UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities::vendorId
int32_t ___vendorId_2;
// System.Boolean UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities::isVirtual
bool ___isVirtual_3;
// UnityEngine.InputSystem.Android.LowLevel.AndroidAxis[] UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities::motionAxes
AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847* ___motionAxes_4;
// UnityEngine.InputSystem.Android.LowLevel.AndroidInputSource UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities::inputSources
int32_t ___inputSources_5;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities
struct AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_marshaled_pinvoke
{
char* ___deviceDescriptor_0;
int32_t ___productId_1;
int32_t ___vendorId_2;
int32_t ___isVirtual_3;
int32_t* ___motionAxes_4;
int32_t ___inputSources_5;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities
struct AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_marshaled_com
{
Il2CppChar* ___deviceDescriptor_0;
int32_t ___productId_1;
int32_t ___vendorId_2;
int32_t ___isVirtual_3;
int32_t* ___motionAxes_4;
int32_t ___inputSources_5;
};
// UnityEngine.InputSystem.Android.LowLevel.AndroidSensorCapabilities
struct AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F
{
// UnityEngine.InputSystem.Android.LowLevel.AndroidSensorType UnityEngine.InputSystem.Android.LowLevel.AndroidSensorCapabilities::sensorType
int32_t ___sensorType_0;
};
// UnityEngine.Component
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
{
};
// UnityEngine.InputSystem.LowLevel.DisableDeviceCommand
struct DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.DisableDeviceCommand::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
};
};
uint8_t DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD__padding[8];
};
};
// UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand
struct DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___lowFrequencyMotorSpeed_2_OffsetPadding[8];
// System.Single UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand::lowFrequencyMotorSpeed
float ___lowFrequencyMotorSpeed_2;
};
#pragma pack(pop, tp)
struct
{
char ___lowFrequencyMotorSpeed_2_OffsetPadding_forAlignmentOnly[8];
float ___lowFrequencyMotorSpeed_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___highFrequencyMotorSpeed_3_OffsetPadding[12];
// System.Single UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand::highFrequencyMotorSpeed
float ___highFrequencyMotorSpeed_3;
};
#pragma pack(pop, tp)
struct
{
char ___highFrequencyMotorSpeed_3_OffsetPadding_forAlignmentOnly[12];
float ___highFrequencyMotorSpeed_3_forAlignmentOnly;
};
};
};
uint8_t DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E__padding[16];
};
};
// UnityEngine.InputSystem.LowLevel.EnableDeviceCommand
struct EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.EnableDeviceCommand::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
};
};
uint8_t EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4__padding[8];
};
};
// UnityEngine.InputSystem.LowLevel.EnableIMECompositionCommand
struct EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.EnableIMECompositionCommand::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ImeEnabled_2_OffsetPadding[8];
// System.Byte UnityEngine.InputSystem.LowLevel.EnableIMECompositionCommand::m_ImeEnabled
uint8_t ___m_ImeEnabled_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_ImeEnabled_2_OffsetPadding_forAlignmentOnly[8];
uint8_t ___m_ImeEnabled_2_forAlignmentOnly;
};
};
};
uint8_t EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C__padding[9];
};
};
// UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport
struct EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D : public RuntimeObject
{
};
struct EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields
{
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::s_Enabled
int32_t ___s_Enabled_0;
// UnityEngine.InputSystem.InputSettings/UpdateMode UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::s_UpdateMode
int32_t ___s_UpdateMode_1;
};
// System.IO.FileStream
struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8 : public Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE
{
// System.Byte[] System.IO.FileStream::buf
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buf_6;
// System.String System.IO.FileStream::name
String_t* ___name_7;
// Microsoft.Win32.SafeHandles.SafeFileHandle System.IO.FileStream::safeHandle
SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E* ___safeHandle_8;
// System.Boolean System.IO.FileStream::isExposed
bool ___isExposed_9;
// System.Int64 System.IO.FileStream::append_startpos
int64_t ___append_startpos_10;
// System.IO.FileAccess System.IO.FileStream::access
int32_t ___access_11;
// System.Boolean System.IO.FileStream::owner
bool ___owner_12;
// System.Boolean System.IO.FileStream::async
bool ___async_13;
// System.Boolean System.IO.FileStream::canseek
bool ___canseek_14;
// System.Boolean System.IO.FileStream::anonymous
bool ___anonymous_15;
// System.Boolean System.IO.FileStream::buf_dirty
bool ___buf_dirty_16;
// System.Int32 System.IO.FileStream::buf_size
int32_t ___buf_size_17;
// System.Int32 System.IO.FileStream::buf_length
int32_t ___buf_length_18;
// System.Int32 System.IO.FileStream::buf_offset
int32_t ___buf_offset_19;
// System.Int64 System.IO.FileStream::buf_start
int64_t ___buf_start_20;
};
struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8_StaticFields
{
// System.Byte[] System.IO.FileStream::buf_recycle
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buf_recycle_4;
// System.Object System.IO.FileStream::buf_recycle_lock
RuntimeObject* ___buf_recycle_lock_5;
};
// UnityEngine.GameObject
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
{
};
// UnityEngine.InputSystem.LowLevel.InitiateUserAccountPairingCommand
struct InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.InitiateUserAccountPairingCommand::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
};
};
uint8_t InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF__padding[8];
};
};
// UnityEngine.InputSystem.Layouts.InputControlLayout
struct InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D : public RuntimeObject
{
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputControlLayout::m_Name
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___m_Name_2;
// System.Type UnityEngine.InputSystem.Layouts.InputControlLayout::m_Type
Type_t* ___m_Type_3;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputControlLayout::m_Variants
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___m_Variants_4;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.Layouts.InputControlLayout::m_StateFormat
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___m_StateFormat_5;
// System.Int32 UnityEngine.InputSystem.Layouts.InputControlLayout::m_StateSizeInBytes
int32_t ___m_StateSizeInBytes_6;
// System.Nullable`1<System.Boolean> UnityEngine.InputSystem.Layouts.InputControlLayout::m_UpdateBeforeRender
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___m_UpdateBeforeRender_7;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.Utilities.InternedString> UnityEngine.InputSystem.Layouts.InputControlLayout::m_BaseLayouts
InlinedArray_1_tAFDFE0972A71B9760077CFA9D4A1DBD7BE435800 ___m_BaseLayouts_8;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.Utilities.InternedString> UnityEngine.InputSystem.Layouts.InputControlLayout::m_AppliedOverrides
InlinedArray_1_tAFDFE0972A71B9760077CFA9D4A1DBD7BE435800 ___m_AppliedOverrides_9;
// UnityEngine.InputSystem.Utilities.InternedString[] UnityEngine.InputSystem.Layouts.InputControlLayout::m_CommonUsages
InternedStringU5BU5D_t0B851758733FC0B118D84BE83AED10A0404C18D5* ___m_CommonUsages_10;
// UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem[] UnityEngine.InputSystem.Layouts.InputControlLayout::m_Controls
ControlItemU5BU5D_t7798E8B7C7F58B8F6D13B567539CD82E962C7104* ___m_Controls_11;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout::m_DisplayName
String_t* ___m_DisplayName_12;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout::m_Description
String_t* ___m_Description_13;
// UnityEngine.InputSystem.Layouts.InputControlLayout/Flags UnityEngine.InputSystem.Layouts.InputControlLayout::m_Flags
int32_t ___m_Flags_14;
};
struct InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D_StaticFields
{
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputControlLayout::s_DefaultVariant
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___s_DefaultVariant_0;
// UnityEngine.InputSystem.Layouts.InputControlLayout/Collection UnityEngine.InputSystem.Layouts.InputControlLayout::s_Layouts
Collection_t6E9F85AD439CF26269683541C4DC58BA3B6756C5 ___s_Layouts_15;
// UnityEngine.InputSystem.Layouts.InputControlLayout/Cache UnityEngine.InputSystem.Layouts.InputControlLayout::s_CacheInstance
Cache_tB837109647F577DCE3795AEE2E9E0E3F61F543AB ___s_CacheInstance_16;
// System.Int32 UnityEngine.InputSystem.Layouts.InputControlLayout::s_CacheInstanceRef
int32_t ___s_CacheInstanceRef_17;
};
// UnityEngine.InputSystem.LowLevel.InputEventTrace
struct InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD : public RuntimeObject
{
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_ChangeCounter
int32_t ___m_ChangeCounter_1;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::m_Enabled
bool ___m_Enabled_2;
// System.Func`3<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice,System.Boolean> UnityEngine.InputSystem.LowLevel.InputEventTrace::m_OnFilterEvent
Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0* ___m_OnFilterEvent_3;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_DeviceId
int32_t ___m_DeviceId_4;
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>> UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventListeners
CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477 ___m_EventListeners_5;
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventBufferSize
int64_t ___m_EventBufferSize_6;
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_MaxEventBufferSize
int64_t ___m_MaxEventBufferSize_7;
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_GrowIncrementSize
int64_t ___m_GrowIncrementSize_8;
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventCount
int64_t ___m_EventCount_9;
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventSizeInBytes
int64_t ___m_EventSizeInBytes_10;
// System.UInt64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventBufferStorage
uint64_t ___m_EventBufferStorage_11;
// System.UInt64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventBufferHeadStorage
uint64_t ___m_EventBufferHeadStorage_12;
// System.UInt64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventBufferTailStorage
uint64_t ___m_EventBufferTailStorage_13;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::m_HasWrapped
bool ___m_HasWrapped_14;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::m_RecordFrameMarkers
bool ___m_RecordFrameMarkers_15;
// UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo[] UnityEngine.InputSystem.LowLevel.InputEventTrace::m_DeviceInfos
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* ___m_DeviceInfos_16;
};
struct InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_StaticFields
{
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace::kFileVersion
int32_t ___kFileVersion_17;
};
// UnityEngine.InputSystem.LowLevel.InputUpdate
struct InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD : public RuntimeObject
{
};
struct InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields
{
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputUpdate::s_UpdateStepCount
uint32_t ___s_UpdateStepCount_0;
// UnityEngine.InputSystem.LowLevel.InputUpdateType UnityEngine.InputSystem.LowLevel.InputUpdate::s_LatestUpdateType
int32_t ___s_LatestUpdateType_1;
// UnityEngine.InputSystem.LowLevel.InputUpdate/UpdateStepCount UnityEngine.InputSystem.LowLevel.InputUpdate::s_PlayerUpdateStepCount
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324 ___s_PlayerUpdateStepCount_2;
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_13;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_13;
};
// UnityEngineInternal.Input.NativeInputEvent
struct NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngineInternal.Input.NativeInputEventType UnityEngineInternal.Input.NativeInputEvent::type
int32_t ___type_1;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
int32_t ___type_1_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___sizeInBytes_2_OffsetPadding[4];
// System.UInt16 UnityEngineInternal.Input.NativeInputEvent::sizeInBytes
uint16_t ___sizeInBytes_2;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___sizeInBytes_2_OffsetPadding_forAlignmentOnly[4];
uint16_t ___sizeInBytes_2_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___deviceId_3_OffsetPadding[6];
// System.UInt16 UnityEngineInternal.Input.NativeInputEvent::deviceId
uint16_t ___deviceId_3;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___deviceId_3_OffsetPadding_forAlignmentOnly[6];
uint16_t ___deviceId_3_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___time_4_OffsetPadding[8];
// System.Double UnityEngineInternal.Input.NativeInputEvent::time
double ___time_4;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___time_4_OffsetPadding_forAlignmentOnly[8];
double ___time_4_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___eventId_5_OffsetPadding[16];
// System.Int32 UnityEngineInternal.Input.NativeInputEvent::eventId
int32_t ___eventId_5;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___eventId_5_OffsetPadding_forAlignmentOnly[16];
int32_t ___eventId_5_forAlignmentOnly;
};
#pragma pack(pop, tp)
};
};
uint8_t NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8__padding[20];
};
};
// UnityEngine.InputSystem.Utilities.PrimitiveValue
struct PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.TypeCode UnityEngine.InputSystem.Utilities.PrimitiveValue::m_Type
int32_t ___m_Type_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___m_Type_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_BoolValue_1_OffsetPadding[4];
// System.Boolean UnityEngine.InputSystem.Utilities.PrimitiveValue::m_BoolValue
bool ___m_BoolValue_1;
};
#pragma pack(pop, tp)
struct
{
char ___m_BoolValue_1_OffsetPadding_forAlignmentOnly[4];
bool ___m_BoolValue_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_CharValue_2_OffsetPadding[4];
// System.Char UnityEngine.InputSystem.Utilities.PrimitiveValue::m_CharValue
Il2CppChar ___m_CharValue_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_CharValue_2_OffsetPadding_forAlignmentOnly[4];
Il2CppChar ___m_CharValue_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ByteValue_3_OffsetPadding[4];
// System.Byte UnityEngine.InputSystem.Utilities.PrimitiveValue::m_ByteValue
uint8_t ___m_ByteValue_3;
};
#pragma pack(pop, tp)
struct
{
char ___m_ByteValue_3_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_ByteValue_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_SByteValue_4_OffsetPadding[4];
// System.SByte UnityEngine.InputSystem.Utilities.PrimitiveValue::m_SByteValue
int8_t ___m_SByteValue_4;
};
#pragma pack(pop, tp)
struct
{
char ___m_SByteValue_4_OffsetPadding_forAlignmentOnly[4];
int8_t ___m_SByteValue_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ShortValue_5_OffsetPadding[4];
// System.Int16 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_ShortValue
int16_t ___m_ShortValue_5;
};
#pragma pack(pop, tp)
struct
{
char ___m_ShortValue_5_OffsetPadding_forAlignmentOnly[4];
int16_t ___m_ShortValue_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UShortValue_6_OffsetPadding[4];
// System.UInt16 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_UShortValue
uint16_t ___m_UShortValue_6;
};
#pragma pack(pop, tp)
struct
{
char ___m_UShortValue_6_OffsetPadding_forAlignmentOnly[4];
uint16_t ___m_UShortValue_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_IntValue_7_OffsetPadding[4];
// System.Int32 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_IntValue
int32_t ___m_IntValue_7;
};
#pragma pack(pop, tp)
struct
{
char ___m_IntValue_7_OffsetPadding_forAlignmentOnly[4];
int32_t ___m_IntValue_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UIntValue_8_OffsetPadding[4];
// System.UInt32 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_UIntValue
uint32_t ___m_UIntValue_8;
};
#pragma pack(pop, tp)
struct
{
char ___m_UIntValue_8_OffsetPadding_forAlignmentOnly[4];
uint32_t ___m_UIntValue_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_LongValue_9_OffsetPadding[4];
// System.Int64 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_LongValue
int64_t ___m_LongValue_9;
};
#pragma pack(pop, tp)
struct
{
char ___m_LongValue_9_OffsetPadding_forAlignmentOnly[4];
int64_t ___m_LongValue_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ULongValue_10_OffsetPadding[4];
// System.UInt64 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_ULongValue
uint64_t ___m_ULongValue_10;
};
#pragma pack(pop, tp)
struct
{
char ___m_ULongValue_10_OffsetPadding_forAlignmentOnly[4];
uint64_t ___m_ULongValue_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_FloatValue_11_OffsetPadding[4];
// System.Single UnityEngine.InputSystem.Utilities.PrimitiveValue::m_FloatValue
float ___m_FloatValue_11;
};
#pragma pack(pop, tp)
struct
{
char ___m_FloatValue_11_OffsetPadding_forAlignmentOnly[4];
float ___m_FloatValue_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_DoubleValue_12_OffsetPadding[4];
// System.Double UnityEngine.InputSystem.Utilities.PrimitiveValue::m_DoubleValue
double ___m_DoubleValue_12;
};
#pragma pack(pop, tp)
struct
{
char ___m_DoubleValue_12_OffsetPadding_forAlignmentOnly[4];
double ___m_DoubleValue_12_forAlignmentOnly;
};
};
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.PrimitiveValue
struct PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4_marshaled_pinvoke
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___m_Type_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___m_Type_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_BoolValue_1_OffsetPadding[4];
int32_t ___m_BoolValue_1;
};
#pragma pack(pop, tp)
struct
{
char ___m_BoolValue_1_OffsetPadding_forAlignmentOnly[4];
int32_t ___m_BoolValue_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_CharValue_2_OffsetPadding[4];
uint8_t ___m_CharValue_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_CharValue_2_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_CharValue_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ByteValue_3_OffsetPadding[4];
uint8_t ___m_ByteValue_3;
};
#pragma pack(pop, tp)
struct
{
char ___m_ByteValue_3_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_ByteValue_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_SByteValue_4_OffsetPadding[4];
int8_t ___m_SByteValue_4;
};
#pragma pack(pop, tp)
struct
{
char ___m_SByteValue_4_OffsetPadding_forAlignmentOnly[4];
int8_t ___m_SByteValue_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ShortValue_5_OffsetPadding[4];
int16_t ___m_ShortValue_5;
};
#pragma pack(pop, tp)
struct
{
char ___m_ShortValue_5_OffsetPadding_forAlignmentOnly[4];
int16_t ___m_ShortValue_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UShortValue_6_OffsetPadding[4];
uint16_t ___m_UShortValue_6;
};
#pragma pack(pop, tp)
struct
{
char ___m_UShortValue_6_OffsetPadding_forAlignmentOnly[4];
uint16_t ___m_UShortValue_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_IntValue_7_OffsetPadding[4];
int32_t ___m_IntValue_7;
};
#pragma pack(pop, tp)
struct
{
char ___m_IntValue_7_OffsetPadding_forAlignmentOnly[4];
int32_t ___m_IntValue_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UIntValue_8_OffsetPadding[4];
uint32_t ___m_UIntValue_8;
};
#pragma pack(pop, tp)
struct
{
char ___m_UIntValue_8_OffsetPadding_forAlignmentOnly[4];
uint32_t ___m_UIntValue_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_LongValue_9_OffsetPadding[4];
int64_t ___m_LongValue_9;
};
#pragma pack(pop, tp)
struct
{
char ___m_LongValue_9_OffsetPadding_forAlignmentOnly[4];
int64_t ___m_LongValue_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ULongValue_10_OffsetPadding[4];
uint64_t ___m_ULongValue_10;
};
#pragma pack(pop, tp)
struct
{
char ___m_ULongValue_10_OffsetPadding_forAlignmentOnly[4];
uint64_t ___m_ULongValue_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_FloatValue_11_OffsetPadding[4];
float ___m_FloatValue_11;
};
#pragma pack(pop, tp)
struct
{
char ___m_FloatValue_11_OffsetPadding_forAlignmentOnly[4];
float ___m_FloatValue_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_DoubleValue_12_OffsetPadding[4];
double ___m_DoubleValue_12;
};
#pragma pack(pop, tp)
struct
{
char ___m_DoubleValue_12_OffsetPadding_forAlignmentOnly[4];
double ___m_DoubleValue_12_forAlignmentOnly;
};
};
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.PrimitiveValue
struct PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4_marshaled_com
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___m_Type_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___m_Type_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_BoolValue_1_OffsetPadding[4];
int32_t ___m_BoolValue_1;
};
#pragma pack(pop, tp)
struct
{
char ___m_BoolValue_1_OffsetPadding_forAlignmentOnly[4];
int32_t ___m_BoolValue_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_CharValue_2_OffsetPadding[4];
uint8_t ___m_CharValue_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_CharValue_2_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_CharValue_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ByteValue_3_OffsetPadding[4];
uint8_t ___m_ByteValue_3;
};
#pragma pack(pop, tp)
struct
{
char ___m_ByteValue_3_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_ByteValue_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_SByteValue_4_OffsetPadding[4];
int8_t ___m_SByteValue_4;
};
#pragma pack(pop, tp)
struct
{
char ___m_SByteValue_4_OffsetPadding_forAlignmentOnly[4];
int8_t ___m_SByteValue_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ShortValue_5_OffsetPadding[4];
int16_t ___m_ShortValue_5;
};
#pragma pack(pop, tp)
struct
{
char ___m_ShortValue_5_OffsetPadding_forAlignmentOnly[4];
int16_t ___m_ShortValue_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UShortValue_6_OffsetPadding[4];
uint16_t ___m_UShortValue_6;
};
#pragma pack(pop, tp)
struct
{
char ___m_UShortValue_6_OffsetPadding_forAlignmentOnly[4];
uint16_t ___m_UShortValue_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_IntValue_7_OffsetPadding[4];
int32_t ___m_IntValue_7;
};
#pragma pack(pop, tp)
struct
{
char ___m_IntValue_7_OffsetPadding_forAlignmentOnly[4];
int32_t ___m_IntValue_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UIntValue_8_OffsetPadding[4];
uint32_t ___m_UIntValue_8;
};
#pragma pack(pop, tp)
struct
{
char ___m_UIntValue_8_OffsetPadding_forAlignmentOnly[4];
uint32_t ___m_UIntValue_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_LongValue_9_OffsetPadding[4];
int64_t ___m_LongValue_9;
};
#pragma pack(pop, tp)
struct
{
char ___m_LongValue_9_OffsetPadding_forAlignmentOnly[4];
int64_t ___m_LongValue_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ULongValue_10_OffsetPadding[4];
uint64_t ___m_ULongValue_10;
};
#pragma pack(pop, tp)
struct
{
char ___m_ULongValue_10_OffsetPadding_forAlignmentOnly[4];
uint64_t ___m_ULongValue_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_FloatValue_11_OffsetPadding[4];
float ___m_FloatValue_11;
};
#pragma pack(pop, tp)
struct
{
char ___m_FloatValue_11_OffsetPadding_forAlignmentOnly[4];
float ___m_FloatValue_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_DoubleValue_12_OffsetPadding[4];
double ___m_DoubleValue_12;
};
#pragma pack(pop, tp)
struct
{
char ___m_DoubleValue_12_OffsetPadding_forAlignmentOnly[4];
double ___m_DoubleValue_12_forAlignmentOnly;
};
};
};
// UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground
struct QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___canRunInBackground_2_OffsetPadding[8];
// System.Boolean UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground::canRunInBackground
bool ___canRunInBackground_2;
};
#pragma pack(pop, tp)
struct
{
char ___canRunInBackground_2_OffsetPadding_forAlignmentOnly[8];
bool ___canRunInBackground_2_forAlignmentOnly;
};
};
};
uint8_t QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341__padding[9];
};
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground
struct QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshaled_pinvoke
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___canRunInBackground_2_OffsetPadding[8];
int32_t ___canRunInBackground_2;
};
#pragma pack(pop, tp)
struct
{
char ___canRunInBackground_2_OffsetPadding_forAlignmentOnly[8];
int32_t ___canRunInBackground_2_forAlignmentOnly;
};
};
};
uint8_t QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341__padding[9];
};
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground
struct QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshaled_com
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___canRunInBackground_2_OffsetPadding[8];
int32_t ___canRunInBackground_2;
};
#pragma pack(pop, tp)
struct
{
char ___canRunInBackground_2_OffsetPadding_forAlignmentOnly[8];
int32_t ___canRunInBackground_2_forAlignmentOnly;
};
};
};
uint8_t QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341__padding[9];
};
};
// UnityEngine.InputSystem.LowLevel.QueryDimensionsCommand
struct QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.QueryDimensionsCommand::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___outDimensions_2_OffsetPadding[8];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.QueryDimensionsCommand::outDimensions
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___outDimensions_2;
};
#pragma pack(pop, tp)
struct
{
char ___outDimensions_2_OffsetPadding_forAlignmentOnly[8];
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___outDimensions_2_forAlignmentOnly;
};
};
};
uint8_t QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83__padding[16];
};
};
// UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand
struct QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___isEnabled_2_OffsetPadding[8];
// System.Boolean UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand::isEnabled
bool ___isEnabled_2;
};
#pragma pack(pop, tp)
struct
{
char ___isEnabled_2_OffsetPadding_forAlignmentOnly[8];
bool ___isEnabled_2_forAlignmentOnly;
};
};
};
uint8_t QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4__padding[9];
};
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand
struct QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshaled_pinvoke
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___isEnabled_2_OffsetPadding[8];
int32_t ___isEnabled_2;
};
#pragma pack(pop, tp)
struct
{
char ___isEnabled_2_OffsetPadding_forAlignmentOnly[8];
int32_t ___isEnabled_2_forAlignmentOnly;
};
};
};
uint8_t QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4__padding[9];
};
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand
struct QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshaled_com
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___isEnabled_2_OffsetPadding[8];
int32_t ___isEnabled_2;
};
#pragma pack(pop, tp)
struct
{
char ___isEnabled_2_OffsetPadding_forAlignmentOnly[8];
int32_t ___isEnabled_2_forAlignmentOnly;
};
};
};
uint8_t QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4__padding[9];
};
};
// UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand
struct QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_2;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___scanOrKeyCode_3_OffsetPadding[8];
// System.Int32 UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand::scanOrKeyCode
int32_t ___scanOrKeyCode_3;
};
#pragma pack(pop, tp)
struct
{
char ___scanOrKeyCode_3_OffsetPadding_forAlignmentOnly[8];
int32_t ___scanOrKeyCode_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___nameBuffer_4_OffsetPadding[12];
// UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand/<nameBuffer>e__FixedBuffer UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand::nameBuffer
U3CnameBufferU3Ee__FixedBuffer_tF101426D1EE77D09C5615FAE829F3F32616ED2A4 ___nameBuffer_4;
};
#pragma pack(pop, tp)
struct
{
char ___nameBuffer_4_OffsetPadding_forAlignmentOnly[12];
U3CnameBufferU3Ee__FixedBuffer_tF101426D1EE77D09C5615FAE829F3F32616ED2A4 ___nameBuffer_4_forAlignmentOnly;
};
};
};
uint8_t QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247__padding[268];
};
};
// UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand
struct QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___nameBuffer_2_OffsetPadding[8];
// UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand/<nameBuffer>e__FixedBuffer UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand::nameBuffer
U3CnameBufferU3Ee__FixedBuffer_t168308F70377718D2FF4ADDC61E423166ADBE1DA ___nameBuffer_2;
};
#pragma pack(pop, tp)
struct
{
char ___nameBuffer_2_OffsetPadding_forAlignmentOnly[8];
U3CnameBufferU3Ee__FixedBuffer_t168308F70377718D2FF4ADDC61E423166ADBE1DA ___nameBuffer_2_forAlignmentOnly;
};
};
};
uint8_t QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F__padding[264];
};
};
// UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand
struct QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_3;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___handle_4_OffsetPadding[8];
// System.UInt64 UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::handle
uint64_t ___handle_4;
};
#pragma pack(pop, tp)
struct
{
char ___handle_4_OffsetPadding_forAlignmentOnly[8];
uint64_t ___handle_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___nameBuffer_5_OffsetPadding[16];
// UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand/<nameBuffer>e__FixedBuffer UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::nameBuffer
U3CnameBufferU3Ee__FixedBuffer_tC07F8AB4DC191B8E7EAC20B6CAD62F5D165BB91B ___nameBuffer_5;
};
#pragma pack(pop, tp)
struct
{
char ___nameBuffer_5_OffsetPadding_forAlignmentOnly[16];
U3CnameBufferU3Ee__FixedBuffer_tC07F8AB4DC191B8E7EAC20B6CAD62F5D165BB91B ___nameBuffer_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___idBuffer_6_OffsetPadding[528];
// UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand/<idBuffer>e__FixedBuffer UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::idBuffer
U3CidBufferU3Ee__FixedBuffer_t8F8E3EAA210EF6DD3834C5C4E574ADC65AC6173A ___idBuffer_6;
};
#pragma pack(pop, tp)
struct
{
char ___idBuffer_6_OffsetPadding_forAlignmentOnly[528];
U3CidBufferU3Ee__FixedBuffer_t8F8E3EAA210EF6DD3834C5C4E574ADC65AC6173A ___idBuffer_6_forAlignmentOnly;
};
};
};
uint8_t QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582__padding[1040];
};
};
// UnityEngine.InputSystem.LowLevel.QuerySamplingFrequencyCommand
struct QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.QuerySamplingFrequencyCommand::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___frequency_2_OffsetPadding[8];
// System.Single UnityEngine.InputSystem.LowLevel.QuerySamplingFrequencyCommand::frequency
float ___frequency_2;
};
#pragma pack(pop, tp)
struct
{
char ___frequency_2_OffsetPadding_forAlignmentOnly[8];
float ___frequency_2_forAlignmentOnly;
};
};
};
uint8_t QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA__padding[12];
};
};
// UnityEngine.InputSystem.LowLevel.QueryUserIdCommand
struct QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.QueryUserIdCommand::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_2;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___idBuffer_3_OffsetPadding[8];
// UnityEngine.InputSystem.LowLevel.QueryUserIdCommand/<idBuffer>e__FixedBuffer UnityEngine.InputSystem.LowLevel.QueryUserIdCommand::idBuffer
U3CidBufferU3Ee__FixedBuffer_tE4CA52A47737D5043418F9D66A282E93248BF2BD ___idBuffer_3;
};
#pragma pack(pop, tp)
struct
{
char ___idBuffer_3_OffsetPadding_forAlignmentOnly[8];
U3CidBufferU3Ee__FixedBuffer_tE4CA52A47737D5043418F9D66A282E93248BF2BD ___idBuffer_3_forAlignmentOnly;
};
};
};
uint8_t QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD__padding[520];
};
};
// UnityEngine.InputSystem.LowLevel.RequestResetCommand
struct RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.RequestResetCommand::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
};
};
uint8_t RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968__padding[8];
};
};
// UnityEngine.InputSystem.LowLevel.RequestSyncCommand
struct RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.RequestSyncCommand::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
};
};
uint8_t RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8__padding[8];
};
};
// UnityEngine.ScriptableObject
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
{
};
// Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_pinvoke : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_com : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
{
};
// UnityEngine.InputSystem.LowLevel.SetIMECursorPositionCommand
struct SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.SetIMECursorPositionCommand::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_Position_2_OffsetPadding[8];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.SetIMECursorPositionCommand::m_Position
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Position_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_Position_2_OffsetPadding_forAlignmentOnly[8];
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Position_2_forAlignmentOnly;
};
};
};
uint8_t SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46__padding[16];
};
};
// UnityEngine.InputSystem.LowLevel.SetSamplingFrequencyCommand
struct SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.SetSamplingFrequencyCommand::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___frequency_2_OffsetPadding[8];
// System.Single UnityEngine.InputSystem.LowLevel.SetSamplingFrequencyCommand::frequency
float ___frequency_2;
};
#pragma pack(pop, tp)
struct
{
char ___frequency_2_OffsetPadding_forAlignmentOnly[8];
float ___frequency_2_forAlignmentOnly;
};
};
};
uint8_t SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88__padding[12];
};
};
// System.SystemException
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
{
};
// UnityEngine.InputSystem.LowLevel.WarpMousePositionCommand
struct WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.WarpMousePositionCommand::baseCommand
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___warpPositionInPlayerDisplaySpace_2_OffsetPadding[8];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.WarpMousePositionCommand::warpPositionInPlayerDisplaySpace
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___warpPositionInPlayerDisplaySpace_2;
};
#pragma pack(pop, tp)
struct
{
char ___warpPositionInPlayerDisplaySpace_2_OffsetPadding_forAlignmentOnly[8];
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___warpPositionInPlayerDisplaySpace_2_forAlignmentOnly;
};
};
};
uint8_t WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0__padding[16];
};
};
// UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor
struct HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7
{
// UnityEngine.InputSystem.HID.HID/HIDCollectionType UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor::type
int32_t ___type_0;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor::usage
int32_t ___usage_1;
// UnityEngine.InputSystem.HID.HID/UsagePage UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor::usagePage
int32_t ___usagePage_2;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor::parent
int32_t ___parent_3;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor::childCount
int32_t ___childCount_4;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor::firstChild
int32_t ___firstChild_5;
};
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor
struct HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59
{
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::vendorId
int32_t ___vendorId_0;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::productId
int32_t ___productId_1;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::usage
int32_t ___usage_2;
// UnityEngine.InputSystem.HID.HID/UsagePage UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::usagePage
int32_t ___usagePage_3;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::inputReportSize
int32_t ___inputReportSize_4;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::outputReportSize
int32_t ___outputReportSize_5;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::featureReportSize
int32_t ___featureReportSize_6;
// UnityEngine.InputSystem.HID.HID/HIDElementDescriptor[] UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::elements
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* ___elements_7;
// UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor[] UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::collections
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* ___collections_8;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor
struct HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshaled_pinvoke
{
int32_t ___vendorId_0;
int32_t ___productId_1;
int32_t ___usage_2;
int32_t ___usagePage_3;
int32_t ___inputReportSize_4;
int32_t ___outputReportSize_5;
int32_t ___featureReportSize_6;
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_pinvoke* ___elements_7;
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7* ___collections_8;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor
struct HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshaled_com
{
int32_t ___vendorId_0;
int32_t ___productId_1;
int32_t ___usage_2;
int32_t ___usagePage_3;
int32_t ___inputReportSize_4;
int32_t ___outputReportSize_5;
int32_t ___featureReportSize_6;
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_com* ___elements_7;
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7* ___collections_8;
};
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder
struct HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C
{
// UnityEngine.InputSystem.HID.HID/UsagePage UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::usagePage
int32_t ___usagePage_0;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::usage
int32_t ___usage_1;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::m_CurrentReportId
int32_t ___m_CurrentReportId_2;
// UnityEngine.InputSystem.HID.HID/HIDReportType UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::m_CurrentReportType
int32_t ___m_CurrentReportType_3;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::m_CurrentReportOffsetInBits
int32_t ___m_CurrentReportOffsetInBits_4;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor> UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::m_Elements
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* ___m_Elements_5;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor> UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::m_Collections
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* ___m_Collections_6;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::m_InputReportSize
int32_t ___m_InputReportSize_7;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::m_OutputReportSize
int32_t ___m_OutputReportSize_8;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::m_FeatureReportSize
int32_t ___m_FeatureReportSize_9;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder
struct HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshaled_pinvoke
{
int32_t ___usagePage_0;
int32_t ___usage_1;
int32_t ___m_CurrentReportId_2;
int32_t ___m_CurrentReportType_3;
int32_t ___m_CurrentReportOffsetInBits_4;
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* ___m_Elements_5;
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* ___m_Collections_6;
int32_t ___m_InputReportSize_7;
int32_t ___m_OutputReportSize_8;
int32_t ___m_FeatureReportSize_9;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder
struct HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshaled_com
{
int32_t ___usagePage_0;
int32_t ___usage_1;
int32_t ___m_CurrentReportId_2;
int32_t ___m_CurrentReportType_3;
int32_t ___m_CurrentReportOffsetInBits_4;
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* ___m_Elements_5;
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* ___m_Collections_6;
int32_t ___m_InputReportSize_7;
int32_t ___m_OutputReportSize_8;
int32_t ___m_FeatureReportSize_9;
};
// UnityEngine.InputSystem.HID.HID/HIDElementDescriptor
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED
{
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::usage
int32_t ___usage_0;
// UnityEngine.InputSystem.HID.HID/UsagePage UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::usagePage
int32_t ___usagePage_1;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::unit
int32_t ___unit_2;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::unitExponent
int32_t ___unitExponent_3;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::logicalMin
int32_t ___logicalMin_4;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::logicalMax
int32_t ___logicalMax_5;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::physicalMin
int32_t ___physicalMin_6;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::physicalMax
int32_t ___physicalMax_7;
// UnityEngine.InputSystem.HID.HID/HIDReportType UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::reportType
int32_t ___reportType_8;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::collectionIndex
int32_t ___collectionIndex_9;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::reportId
int32_t ___reportId_10;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::reportSizeInBits
int32_t ___reportSizeInBits_11;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::reportOffsetInBits
int32_t ___reportOffsetInBits_12;
// UnityEngine.InputSystem.HID.HID/HIDElementFlags UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::flags
int32_t ___flags_13;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::usageMin
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMin_14;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::usageMax
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMax_15;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.HID.HID/HIDElementDescriptor
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_pinvoke
{
int32_t ___usage_0;
int32_t ___usagePage_1;
int32_t ___unit_2;
int32_t ___unitExponent_3;
int32_t ___logicalMin_4;
int32_t ___logicalMax_5;
int32_t ___physicalMin_6;
int32_t ___physicalMax_7;
int32_t ___reportType_8;
int32_t ___collectionIndex_9;
int32_t ___reportId_10;
int32_t ___reportSizeInBits_11;
int32_t ___reportOffsetInBits_12;
int32_t ___flags_13;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMin_14;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMax_15;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.HID.HID/HIDElementDescriptor
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_com
{
int32_t ___usage_0;
int32_t ___usagePage_1;
int32_t ___unit_2;
int32_t ___unitExponent_3;
int32_t ___logicalMin_4;
int32_t ___logicalMax_5;
int32_t ___physicalMin_6;
int32_t ___physicalMax_7;
int32_t ___reportType_8;
int32_t ___collectionIndex_9;
int32_t ___reportId_10;
int32_t ___reportSizeInBits_11;
int32_t ___reportOffsetInBits_12;
int32_t ___flags_13;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMin_14;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMax_15;
};
// UnityEngine.InputSystem.HID.HIDParser/HIDReportData
struct HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F
{
// System.Int32 UnityEngine.InputSystem.HID.HIDParser/HIDReportData::reportId
int32_t ___reportId_0;
// UnityEngine.InputSystem.HID.HID/HIDReportType UnityEngine.InputSystem.HID.HIDParser/HIDReportData::reportType
int32_t ___reportType_1;
// System.Int32 UnityEngine.InputSystem.HID.HIDParser/HIDReportData::currentBitOffset
int32_t ___currentBitOffset_2;
};
// UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage
struct HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F
{
// UnityEngine.InputSystem.HID.HID/UsagePage UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage::page
int32_t ___page_0;
// System.Int32 UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage::usage
int32_t ___usage_1;
};
// UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator
struct Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46
{
// UnityEngine.InputSystem.LowLevel.IMECompositionString UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::m_CompositionString
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E ___m_CompositionString_0;
// System.Char UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::m_CurrentCharacter
Il2CppChar ___m_CurrentCharacter_1;
// System.Int32 UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::m_CurrentIndex
int32_t ___m_CurrentIndex_2;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator
struct Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshaled_pinvoke
{
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke ___m_CompositionString_0;
uint8_t ___m_CurrentCharacter_1;
int32_t ___m_CurrentIndex_2;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator
struct Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshaled_com
{
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com ___m_CompositionString_0;
uint8_t ___m_CurrentCharacter_1;
int32_t ___m_CurrentIndex_2;
};
// UnityEngine.InputSystem.InputControlExtensions/InputEventControlCollection
struct InputEventControlCollection_t63B58F806FC82F1D8E18E88557E8FCC26388F3BE
{
// UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputControlExtensions/InputEventControlCollection::m_Device
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___m_Device_0;
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.InputControlExtensions/InputEventControlCollection::m_EventPtr
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___m_EventPtr_1;
// UnityEngine.InputSystem.InputControlExtensions/Enumerate UnityEngine.InputSystem.InputControlExtensions/InputEventControlCollection::m_Flags
int32_t ___m_Flags_2;
// System.Single UnityEngine.InputSystem.InputControlExtensions/InputEventControlCollection::m_MagnitudeThreshold
float ___m_MagnitudeThreshold_3;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputControlExtensions/InputEventControlCollection
struct InputEventControlCollection_t63B58F806FC82F1D8E18E88557E8FCC26388F3BE_marshaled_pinvoke
{
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___m_Device_0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___m_EventPtr_1;
int32_t ___m_Flags_2;
float ___m_MagnitudeThreshold_3;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.InputControlExtensions/InputEventControlCollection
struct InputEventControlCollection_t63B58F806FC82F1D8E18E88557E8FCC26388F3BE_marshaled_com
{
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___m_Device_0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___m_EventPtr_1;
int32_t ___m_Flags_2;
float ___m_MagnitudeThreshold_3;
};
// UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator
struct InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB
{
// UnityEngine.InputSystem.InputControlExtensions/Enumerate UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::m_Flags
int32_t ___m_Flags_0;
// UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::m_Device
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___m_Device_1;
// System.UInt32[] UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::m_StateOffsetToControlIndex
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___m_StateOffsetToControlIndex_2;
// System.Int32 UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::m_StateOffsetToControlIndexLength
int32_t ___m_StateOffsetToControlIndexLength_3;
// UnityEngine.InputSystem.InputControl[] UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::m_AllControls
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___m_AllControls_4;
// System.Byte* UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::m_DefaultState
uint8_t* ___m_DefaultState_5;
// System.Byte* UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::m_CurrentState
uint8_t* ___m_CurrentState_6;
// System.Byte* UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::m_NoiseMask
uint8_t* ___m_NoiseMask_7;
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::m_EventPtr
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___m_EventPtr_8;
// UnityEngine.InputSystem.InputControl UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::m_CurrentControl
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___m_CurrentControl_9;
// System.Int32 UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::m_CurrentIndexInStateOffsetToControlIndexMap
int32_t ___m_CurrentIndexInStateOffsetToControlIndexMap_10;
// System.UInt32 UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::m_CurrentControlStateBitOffset
uint32_t ___m_CurrentControlStateBitOffset_11;
// System.Byte* UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::m_EventState
uint8_t* ___m_EventState_12;
// System.UInt32 UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::m_CurrentBitOffset
uint32_t ___m_CurrentBitOffset_13;
// System.UInt32 UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::m_EndBitOffset
uint32_t ___m_EndBitOffset_14;
// System.Single UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::m_MagnitudeThreshold
float ___m_MagnitudeThreshold_15;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator
struct InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB_marshaled_pinvoke
{
int32_t ___m_Flags_0;
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___m_Device_1;
Il2CppSafeArray/*NONE*/* ___m_StateOffsetToControlIndex_2;
int32_t ___m_StateOffsetToControlIndexLength_3;
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___m_AllControls_4;
uint8_t* ___m_DefaultState_5;
uint8_t* ___m_CurrentState_6;
uint8_t* ___m_NoiseMask_7;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___m_EventPtr_8;
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___m_CurrentControl_9;
int32_t ___m_CurrentIndexInStateOffsetToControlIndexMap_10;
uint32_t ___m_CurrentControlStateBitOffset_11;
uint8_t* ___m_EventState_12;
uint32_t ___m_CurrentBitOffset_13;
uint32_t ___m_EndBitOffset_14;
float ___m_MagnitudeThreshold_15;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator
struct InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB_marshaled_com
{
int32_t ___m_Flags_0;
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___m_Device_1;
Il2CppSafeArray/*NONE*/* ___m_StateOffsetToControlIndex_2;
int32_t ___m_StateOffsetToControlIndexLength_3;
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___m_AllControls_4;
uint8_t* ___m_DefaultState_5;
uint8_t* ___m_CurrentState_6;
uint8_t* ___m_NoiseMask_7;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___m_EventPtr_8;
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___m_CurrentControl_9;
int32_t ___m_CurrentIndexInStateOffsetToControlIndexMap_10;
uint32_t ___m_CurrentControlStateBitOffset_11;
uint8_t* ___m_EventState_12;
uint32_t ___m_CurrentBitOffset_13;
uint32_t ___m_EndBitOffset_14;
float ___m_MagnitudeThreshold_15;
};
// UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController
struct ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C : public RuntimeObject
{
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::<finished>k__BackingField
bool ___U3CfinishedU3Ek__BackingField_0;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::<paused>k__BackingField
bool ___U3CpausedU3Ek__BackingField_1;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::<position>k__BackingField
int32_t ___U3CpositionU3Ek__BackingField_2;
// UnityEngine.InputSystem.LowLevel.InputEventTrace UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_EventTrace
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* ___m_EventTrace_3;
// UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_Enumerator
Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* ___m_Enumerator_4;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>> UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_DeviceIDMappings
InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43 ___m_DeviceIDMappings_5;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_CreateNewDevices
bool ___m_CreateNewDevices_6;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputDevice> UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_CreatedDevices
InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C ___m_CreatedDevices_7;
// System.Action UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_OnFinished
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___m_OnFinished_8;
// System.Action`1<UnityEngine.InputSystem.LowLevel.InputEventPtr> UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_OnEvent
Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* ___m_OnEvent_9;
// System.Double UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_StartTimeAsPerFirstEvent
double ___m_StartTimeAsPerFirstEvent_10;
// System.Double UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_StartTimeAsPerRuntime
double ___m_StartTimeAsPerRuntime_11;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_AllEventsByTimeIndex
int32_t ___m_AllEventsByTimeIndex_12;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.LowLevel.InputEventPtr> UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_AllEventsByTime
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* ___m_AllEventsByTime_13;
};
// UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D
{
// UnityEngine.InputSystem.LowLevel.InputUpdateType UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::updateMask
int32_t ___updateMask_0;
// UnityEngine.InputSystem.EnhancedTouch.Finger[] UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::fingers
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* ___fingers_1;
// UnityEngine.InputSystem.EnhancedTouch.Finger[] UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::activeFingers
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* ___activeFingers_2;
// UnityEngine.InputSystem.EnhancedTouch.Touch[] UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::activeTouches
TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354* ___activeTouches_3;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::activeFingerCount
int32_t ___activeFingerCount_4;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::activeTouchCount
int32_t ___activeTouchCount_5;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::totalFingerCount
int32_t ___totalFingerCount_6;
// System.UInt32 UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::lastId
uint32_t ___lastId_7;
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::haveBuiltActiveTouches
bool ___haveBuiltActiveTouches_8;
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::haveActiveTouchesNeedingRefreshNextUpdate
bool ___haveActiveTouchesNeedingRefreshNextUpdate_9;
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState> UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::activeTouchState
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___activeTouchState_10;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke
{
int32_t ___updateMask_0;
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* ___fingers_1;
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* ___activeFingers_2;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke* ___activeTouches_3;
int32_t ___activeFingerCount_4;
int32_t ___activeTouchCount_5;
int32_t ___totalFingerCount_6;
uint32_t ___lastId_7;
int32_t ___haveBuiltActiveTouches_8;
int32_t ___haveActiveTouchesNeedingRefreshNextUpdate_9;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___activeTouchState_10;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com
{
int32_t ___updateMask_0;
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* ___fingers_1;
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* ___activeFingers_2;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com* ___activeTouches_3;
int32_t ___activeFingerCount_4;
int32_t ___activeTouchCount_5;
int32_t ___totalFingerCount_6;
uint32_t ___lastId_7;
int32_t ___haveBuiltActiveTouches_8;
int32_t ___haveActiveTouchesNeedingRefreshNextUpdate_9;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___activeTouchState_10;
};
// System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>
struct Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B : public MulticastDelegate_t
{
};
// System.Action`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>
struct Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C : public MulticastDelegate_t
{
};
// System.Action`1<UnityEngine.InputSystem.LowLevel.InputStateHistory/Record>
struct Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7 : public MulticastDelegate_t
{
};
// System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange>
struct Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333 : public MulticastDelegate_t
{
};
// System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice>
struct Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA : public MulticastDelegate_t
{
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>
struct Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>
struct Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED ____current_3;
};
// System.Func`2<UnityEngine.InputSystem.Android.LowLevel.AndroidAxis,System.String>
struct Func_2_t0825937F2E7F47B2A220EAB90DE0736AAEB5AE1D : public MulticastDelegate_t
{
};
// System.Func`3<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice,System.Boolean>
struct Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0 : public MulticastDelegate_t
{
};
// System.Func`3<UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Object,System.Boolean>
struct Func_3_t0072F82DFBE56A425CAA051639D6DF09CB126719 : public MulticastDelegate_t
{
};
// System.Func`4<UnityEngine.InputSystem.InputControl,System.Double,UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Boolean>
struct Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2 : public MulticastDelegate_t
{
};
// System.Action
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07 : public MulticastDelegate_t
{
};
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.String System.ArgumentException::_paramName
String_t* ____paramName_18;
};
// System.AsyncCallback
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C : public MulticastDelegate_t
{
};
// UnityEngine.Behaviour
struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
{
};
// UnityEngine.InputSystem.Processors.CompensateDirectionProcessor
struct CompensateDirectionProcessor_tD37E3634AA6A1D86A67B21CFFFF5BDD0F39183BE : public InputProcessor_1_t10DFF33E2326C9CB9E156D4E45DB2D85EFD54C7F
{
};
// UnityEngine.InputSystem.Processors.CompensateRotationProcessor
struct CompensateRotationProcessor_t1D14AFF56CF5C0B6615C8448470ABF88F7480D02 : public InputProcessor_1_t43B1AEC927E378D43D0207A4C031927E872280CE
{
};
// System.IO.IOException
struct IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// UnityEngine.InputSystem.InputControl
struct InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E : public RuntimeObject
{
// UnityEngine.InputSystem.LowLevel.InputStateBlock UnityEngine.InputSystem.InputControl::m_StateBlock
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 ___m_StateBlock_0;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.InputControl::m_Name
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___m_Name_1;
// System.String UnityEngine.InputSystem.InputControl::m_Path
String_t* ___m_Path_2;
// System.String UnityEngine.InputSystem.InputControl::m_DisplayName
String_t* ___m_DisplayName_3;
// System.String UnityEngine.InputSystem.InputControl::m_DisplayNameFromLayout
String_t* ___m_DisplayNameFromLayout_4;
// System.String UnityEngine.InputSystem.InputControl::m_ShortDisplayName
String_t* ___m_ShortDisplayName_5;
// System.String UnityEngine.InputSystem.InputControl::m_ShortDisplayNameFromLayout
String_t* ___m_ShortDisplayNameFromLayout_6;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.InputControl::m_Layout
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___m_Layout_7;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.InputControl::m_Variants
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___m_Variants_8;
// UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputControl::m_Device
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___m_Device_9;
// UnityEngine.InputSystem.InputControl UnityEngine.InputSystem.InputControl::m_Parent
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___m_Parent_10;
// System.Int32 UnityEngine.InputSystem.InputControl::m_UsageCount
int32_t ___m_UsageCount_11;
// System.Int32 UnityEngine.InputSystem.InputControl::m_UsageStartIndex
int32_t ___m_UsageStartIndex_12;
// System.Int32 UnityEngine.InputSystem.InputControl::m_AliasCount
int32_t ___m_AliasCount_13;
// System.Int32 UnityEngine.InputSystem.InputControl::m_AliasStartIndex
int32_t ___m_AliasStartIndex_14;
// System.Int32 UnityEngine.InputSystem.InputControl::m_ChildCount
int32_t ___m_ChildCount_15;
// System.Int32 UnityEngine.InputSystem.InputControl::m_ChildStartIndex
int32_t ___m_ChildStartIndex_16;
// UnityEngine.InputSystem.InputControl/ControlFlags UnityEngine.InputSystem.InputControl::m_ControlFlags
int32_t ___m_ControlFlags_17;
// UnityEngine.InputSystem.Utilities.PrimitiveValue UnityEngine.InputSystem.InputControl::m_DefaultState
PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4 ___m_DefaultState_18;
// UnityEngine.InputSystem.Utilities.PrimitiveValue UnityEngine.InputSystem.InputControl::m_MinValue
PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4 ___m_MinValue_19;
// UnityEngine.InputSystem.Utilities.PrimitiveValue UnityEngine.InputSystem.InputControl::m_MaxValue
PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4 ___m_MaxValue_20;
};
// UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate
struct InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809 : public MulticastDelegate_t
{
};
// UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate
struct InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A : public MulticastDelegate_t
{
};
// UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate
struct InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E : public MulticastDelegate_t
{
};
// UnityEngine.InputSystem.LowLevel.InputEvent
struct InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngineInternal.Input.NativeInputEvent UnityEngine.InputSystem.LowLevel.InputEvent::m_Event
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8 ___m_Event_5;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8 ___m_Event_5_forAlignmentOnly;
};
#pragma pack(pop, tp)
};
};
uint8_t InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5__padding[20];
};
};
// UnityEngine.InputSystem.LowLevel.InputEventBuffer
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE
{
// Unity.Collections.NativeArray`1<System.Byte> UnityEngine.InputSystem.LowLevel.InputEventBuffer::m_Buffer
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_Buffer_1;
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventBuffer::m_SizeInBytes
int64_t ___m_SizeInBytes_2;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventBuffer::m_EventCount
int32_t ___m_EventCount_3;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventBuffer::m_WeOwnTheBuffer
bool ___m_WeOwnTheBuffer_4;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.InputEventBuffer
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke
{
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_Buffer_1;
int64_t ___m_SizeInBytes_2;
int32_t ___m_EventCount_3;
int32_t ___m_WeOwnTheBuffer_4;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.InputEventBuffer
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com
{
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_Buffer_1;
int64_t ___m_SizeInBytes_2;
int32_t ___m_EventCount_3;
int32_t ___m_WeOwnTheBuffer_4;
};
// UnityEngine.InputSystem.InputSettings
struct InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF : public ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A
{
// System.String[] UnityEngine.InputSystem.InputSettings::m_SupportedDevices
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_SupportedDevices_4;
// UnityEngine.InputSystem.InputSettings/UpdateMode UnityEngine.InputSystem.InputSettings::m_UpdateMode
int32_t ___m_UpdateMode_5;
// System.Int32 UnityEngine.InputSystem.InputSettings::m_MaxEventBytesPerUpdate
int32_t ___m_MaxEventBytesPerUpdate_6;
// System.Int32 UnityEngine.InputSystem.InputSettings::m_MaxQueuedEventsPerUpdate
int32_t ___m_MaxQueuedEventsPerUpdate_7;
// System.Boolean UnityEngine.InputSystem.InputSettings::m_CompensateForScreenOrientation
bool ___m_CompensateForScreenOrientation_8;
// System.Boolean UnityEngine.InputSystem.InputSettings::m_FilterNoiseOnCurrent
bool ___m_FilterNoiseOnCurrent_9;
// UnityEngine.InputSystem.InputSettings/BackgroundBehavior UnityEngine.InputSystem.InputSettings::m_BackgroundBehavior
int32_t ___m_BackgroundBehavior_10;
// UnityEngine.InputSystem.InputSettings/EditorInputBehaviorInPlayMode UnityEngine.InputSystem.InputSettings::m_EditorInputBehaviorInPlayMode
int32_t ___m_EditorInputBehaviorInPlayMode_11;
// System.Single UnityEngine.InputSystem.InputSettings::m_DefaultDeadzoneMin
float ___m_DefaultDeadzoneMin_12;
// System.Single UnityEngine.InputSystem.InputSettings::m_DefaultDeadzoneMax
float ___m_DefaultDeadzoneMax_13;
// System.Single UnityEngine.InputSystem.InputSettings::m_DefaultButtonPressPoint
float ___m_DefaultButtonPressPoint_14;
// System.Single UnityEngine.InputSystem.InputSettings::m_ButtonReleaseThreshold
float ___m_ButtonReleaseThreshold_15;
// System.Single UnityEngine.InputSystem.InputSettings::m_DefaultTapTime
float ___m_DefaultTapTime_16;
// System.Single UnityEngine.InputSystem.InputSettings::m_DefaultSlowTapTime
float ___m_DefaultSlowTapTime_17;
// System.Single UnityEngine.InputSystem.InputSettings::m_DefaultHoldTime
float ___m_DefaultHoldTime_18;
// System.Single UnityEngine.InputSystem.InputSettings::m_TapRadius
float ___m_TapRadius_19;
// System.Single UnityEngine.InputSystem.InputSettings::m_MultiTapDelayTime
float ___m_MultiTapDelayTime_20;
// System.Boolean UnityEngine.InputSystem.InputSettings::m_DisableRedundantEventsMerging
bool ___m_DisableRedundantEventsMerging_21;
// System.Collections.Generic.HashSet`1<System.String> UnityEngine.InputSystem.InputSettings::m_FeatureFlags
HashSet_1_tEFC6605F7DE53F71946C33FD371E53C3100F2178* ___m_FeatureFlags_22;
};
// UnityEngine.InputSystem.LowLevel.InputStateHistory
struct InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480 : public RuntimeObject
{
// System.Action`1<UnityEngine.InputSystem.LowLevel.InputStateHistory/Record> UnityEngine.InputSystem.LowLevel.InputStateHistory::<onRecordAdded>k__BackingField
Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7* ___U3ConRecordAddedU3Ek__BackingField_1;
// System.Func`4<UnityEngine.InputSystem.InputControl,System.Double,UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Boolean> UnityEngine.InputSystem.LowLevel.InputStateHistory::<onShouldRecordStateChange>k__BackingField
Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2* ___U3ConShouldRecordStateChangeU3Ek__BackingField_2;
// UnityEngine.InputSystem.InputControl[] UnityEngine.InputSystem.LowLevel.InputStateHistory::m_Controls
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___m_Controls_3;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory::m_ControlCount
int32_t ___m_ControlCount_4;
// Unity.Collections.NativeArray`1<System.Byte> UnityEngine.InputSystem.LowLevel.InputStateHistory::m_RecordBuffer
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_RecordBuffer_5;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory::m_StateSizeInBytes
int32_t ___m_StateSizeInBytes_6;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory::m_RecordCount
int32_t ___m_RecordCount_7;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory::m_HistoryDepth
int32_t ___m_HistoryDepth_8;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory::m_ExtraMemoryPerRecord
int32_t ___m_ExtraMemoryPerRecord_9;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory::m_HeadIndex
int32_t ___m_HeadIndex_10;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateHistory::m_CurrentVersion
uint32_t ___m_CurrentVersion_11;
// System.Nullable`1<UnityEngine.InputSystem.LowLevel.InputUpdateType> UnityEngine.InputSystem.LowLevel.InputStateHistory::m_UpdateMask
Nullable_1_t01EA562E317937F4460711CFA1BFDE2AA35CBF20 ___m_UpdateMask_12;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputStateHistory::m_AddNewControls
bool ___m_AddNewControls_13;
};
// System.InvalidCastException
struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.NotImplementedException
struct NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder
struct HIDLayoutBuilder_t1B1FA825DFA02D93183E7C1B3C416D4A43D56553 : public RuntimeObject
{
// System.String UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder::displayName
String_t* ___displayName_0;
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder::hidDescriptor
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 ___hidDescriptor_1;
// System.String UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder::parentLayout
String_t* ___parentLayout_2;
// System.Type UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder::deviceType
Type_t* ___deviceType_3;
};
// UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState
struct GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A
{
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.Touchscreen> UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState::touchscreens
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 ___touchscreens_0;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState::historyLengthPerFinger
int32_t ___historyLengthPerFinger_1;
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>> UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState::onFingerDown
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerDown_2;
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>> UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState::onFingerMove
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerMove_3;
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>> UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState::onFingerUp
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerUp_4;
// UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState::playerState
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D ___playerState_5;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState
struct GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshaled_pinvoke
{
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 ___touchscreens_0;
int32_t ___historyLengthPerFinger_1;
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerDown_2;
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerMove_3;
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerUp_4;
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke ___playerState_5;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState
struct GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshaled_com
{
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 ___touchscreens_0;
int32_t ___historyLengthPerFinger_1;
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerDown_2;
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerMove_3;
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerUp_4;
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com ___playerState_5;
};
// UnityEngine.InputSystem.InputControl`1<System.Single>
struct InputControl_1_t7A35A4AF63A7AA94678E000D4F3265A1FD84288A : public InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E
{
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<TValue>> UnityEngine.InputSystem.InputControl`1::m_ProcessorStack
InlinedArray_1_t2A86A6C75E0160EE14310E053C5249518871D847 ___m_ProcessorStack_21;
};
// UnityEngine.InputSystem.InputControl`1<UnityEngine.InputSystem.LowLevel.TouchState>
struct InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3 : public InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E
{
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<TValue>> UnityEngine.InputSystem.InputControl`1::m_ProcessorStack
InlinedArray_1_tD4AEEFFEC2CBF49D196A92D16CE8DA15F1532FCD ___m_ProcessorStack_21;
};
// UnityEngine.InputSystem.InputControl`1<UnityEngine.Vector2>
struct InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66 : public InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E
{
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<TValue>> UnityEngine.InputSystem.InputControl`1::m_ProcessorStack
InlinedArray_1_tE5F1062E65707D24360CEAC52E03D32C6E5BA8BB ___m_ProcessorStack_21;
};
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState>
struct InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798 : public InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480
{
};
// UnityEngine.InputSystem.Utilities.SavedStructState`1<UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState>
struct SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B : public RuntimeObject
{
// T UnityEngine.InputSystem.Utilities.SavedStructState`1::m_State
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A ___m_State_0;
// UnityEngine.InputSystem.Utilities.SavedStructState`1/TypedRestore<T> UnityEngine.InputSystem.Utilities.SavedStructState`1::m_RestoreAction
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* ___m_RestoreAction_1;
// System.Action UnityEngine.InputSystem.Utilities.SavedStructState`1::m_StaticDisposeCurrentState
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___m_StaticDisposeCurrentState_2;
};
// UnityEngine.InputSystem.Utilities.SavedStructState`1/TypedRestore<UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState>
struct TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021 : public MulticastDelegate_t
{
};
// UnityEngine.InputSystem.LowLevel.ActionEvent
struct ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.ActionEvent::baseEvent
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_0;
};
#pragma pack(pop, tp)
struct
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ControlIndex_1_OffsetPadding[20];
// System.UInt16 UnityEngine.InputSystem.LowLevel.ActionEvent::m_ControlIndex
uint16_t ___m_ControlIndex_1;
};
#pragma pack(pop, tp)
struct
{
char ___m_ControlIndex_1_OffsetPadding_forAlignmentOnly[20];
uint16_t ___m_ControlIndex_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_BindingIndex_2_OffsetPadding[22];
// System.UInt16 UnityEngine.InputSystem.LowLevel.ActionEvent::m_BindingIndex
uint16_t ___m_BindingIndex_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_BindingIndex_2_OffsetPadding_forAlignmentOnly[22];
uint16_t ___m_BindingIndex_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_InteractionIndex_3_OffsetPadding[24];
// System.UInt16 UnityEngine.InputSystem.LowLevel.ActionEvent::m_InteractionIndex
uint16_t ___m_InteractionIndex_3;
};
#pragma pack(pop, tp)
struct
{
char ___m_InteractionIndex_3_OffsetPadding_forAlignmentOnly[24];
uint16_t ___m_InteractionIndex_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_StateIndex_4_OffsetPadding[26];
// System.Byte UnityEngine.InputSystem.LowLevel.ActionEvent::m_StateIndex
uint8_t ___m_StateIndex_4;
};
#pragma pack(pop, tp)
struct
{
char ___m_StateIndex_4_OffsetPadding_forAlignmentOnly[26];
uint8_t ___m_StateIndex_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_Phase_5_OffsetPadding[27];
// System.Byte UnityEngine.InputSystem.LowLevel.ActionEvent::m_Phase
uint8_t ___m_Phase_5;
};
#pragma pack(pop, tp)
struct
{
char ___m_Phase_5_OffsetPadding_forAlignmentOnly[27];
uint8_t ___m_Phase_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_StartTime_6_OffsetPadding[28];
// System.Double UnityEngine.InputSystem.LowLevel.ActionEvent::m_StartTime
double ___m_StartTime_6;
};
#pragma pack(pop, tp)
struct
{
char ___m_StartTime_6_OffsetPadding_forAlignmentOnly[28];
double ___m_StartTime_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ValueData_7_OffsetPadding[36];
// UnityEngine.InputSystem.LowLevel.ActionEvent/<m_ValueData>e__FixedBuffer UnityEngine.InputSystem.LowLevel.ActionEvent::m_ValueData
U3Cm_ValueDataU3Ee__FixedBuffer_t94746BF84FF1BD9ACDDDA17AE7155A9AA40DB97A ___m_ValueData_7;
};
#pragma pack(pop, tp)
struct
{
char ___m_ValueData_7_OffsetPadding_forAlignmentOnly[36];
U3Cm_ValueDataU3Ee__FixedBuffer_t94746BF84FF1BD9ACDDDA17AE7155A9AA40DB97A ___m_ValueData_7_forAlignmentOnly;
};
};
};
uint8_t ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444__padding[37];
};
};
// UnityEngine.InputSystem.Android.LowLevel.AndroidCompensateDirectionProcessor
struct AndroidCompensateDirectionProcessor_t6EC5E83645FC7DD5345A83BD314EB8672860E557 : public CompensateDirectionProcessor_tD37E3634AA6A1D86A67B21CFFFF5BDD0F39183BE
{
};
// UnityEngine.InputSystem.Android.LowLevel.AndroidCompensateRotationProcessor
struct AndroidCompensateRotationProcessor_tFDB308670A5D207966B1CF3BCA786D69D060F021 : public CompensateRotationProcessor_t1D14AFF56CF5C0B6615C8448470ABF88F7480D02
{
};
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
{
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
{
// System.Object System.ArgumentOutOfRangeException::_actualValue
RuntimeObject* ____actualValue_19;
};
// UnityEngine.InputSystem.LowLevel.DeltaStateEvent
struct DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.DeltaStateEvent::baseEvent
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_1;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_1_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateFormat_2_OffsetPadding[20];
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DeltaStateEvent::stateFormat
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___stateFormat_2;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateFormat_2_OffsetPadding_forAlignmentOnly[20];
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___stateFormat_2_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateOffset_3_OffsetPadding[24];
// System.UInt32 UnityEngine.InputSystem.LowLevel.DeltaStateEvent::stateOffset
uint32_t ___stateOffset_3;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateOffset_3_OffsetPadding_forAlignmentOnly[24];
uint32_t ___stateOffset_3_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateData_4_OffsetPadding[28];
// UnityEngine.InputSystem.LowLevel.DeltaStateEvent/<stateData>e__FixedBuffer UnityEngine.InputSystem.LowLevel.DeltaStateEvent::stateData
U3CstateDataU3Ee__FixedBuffer_t2D79C7E59F64E19D0450D36680F1A1B52CD89F84 ___stateData_4;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateData_4_OffsetPadding_forAlignmentOnly[28];
U3CstateDataU3Ee__FixedBuffer_t2D79C7E59F64E19D0450D36680F1A1B52CD89F84 ___stateData_4_forAlignmentOnly;
};
#pragma pack(pop, tp)
};
};
uint8_t DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859__padding[29];
};
};
// UnityEngine.InputSystem.LowLevel.DeviceConfigurationEvent
struct DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.DeviceConfigurationEvent::baseEvent
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_1;
};
#pragma pack(pop, tp)
struct
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_1_forAlignmentOnly;
};
};
};
uint8_t DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB__padding[20];
};
};
// UnityEngine.InputSystem.LowLevel.DeviceRemoveEvent
struct DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.DeviceRemoveEvent::baseEvent
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_1;
};
#pragma pack(pop, tp)
struct
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_1_forAlignmentOnly;
};
};
};
uint8_t DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9__padding[20];
};
};
// UnityEngine.InputSystem.LowLevel.DeviceResetEvent
struct DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.DeviceResetEvent::baseEvent
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_1;
};
#pragma pack(pop, tp)
struct
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___hardReset_2_OffsetPadding[8];
// System.Boolean UnityEngine.InputSystem.LowLevel.DeviceResetEvent::hardReset
bool ___hardReset_2;
};
#pragma pack(pop, tp)
struct
{
char ___hardReset_2_OffsetPadding_forAlignmentOnly[8];
bool ___hardReset_2_forAlignmentOnly;
};
};
};
uint8_t DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4__padding[20];
};
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.DeviceResetEvent
struct DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshaled_pinvoke
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_1;
};
#pragma pack(pop, tp)
struct
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___hardReset_2_OffsetPadding[8];
int32_t ___hardReset_2;
};
#pragma pack(pop, tp)
struct
{
char ___hardReset_2_OffsetPadding_forAlignmentOnly[8];
int32_t ___hardReset_2_forAlignmentOnly;
};
};
};
uint8_t DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4__padding[20];
};
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.DeviceResetEvent
struct DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshaled_com
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_1;
};
#pragma pack(pop, tp)
struct
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___hardReset_2_OffsetPadding[8];
int32_t ___hardReset_2;
};
#pragma pack(pop, tp)
struct
{
char ___hardReset_2_OffsetPadding_forAlignmentOnly[8];
int32_t ___hardReset_2_forAlignmentOnly;
};
};
};
uint8_t DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4__padding[20];
};
};
// UnityEngine.InputSystem.LowLevel.IMECompositionEvent
struct IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.IMECompositionEvent::baseEvent
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_2;
};
#pragma pack(pop, tp)
struct
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___compositionString_3_OffsetPadding[20];
// UnityEngine.InputSystem.LowLevel.IMECompositionString UnityEngine.InputSystem.LowLevel.IMECompositionEvent::compositionString
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E ___compositionString_3;
};
#pragma pack(pop, tp)
struct
{
char ___compositionString_3_OffsetPadding_forAlignmentOnly[20];
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E ___compositionString_3_forAlignmentOnly;
};
};
};
uint8_t IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55__padding[152];
};
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionEvent
struct IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshaled_pinvoke
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_2;
};
#pragma pack(pop, tp)
struct
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___compositionString_3_OffsetPadding[20];
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke ___compositionString_3;
};
#pragma pack(pop, tp)
struct
{
char ___compositionString_3_OffsetPadding_forAlignmentOnly[20];
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke ___compositionString_3_forAlignmentOnly;
};
};
};
uint8_t IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55__padding[152];
};
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionEvent
struct IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshaled_com
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_2;
};
#pragma pack(pop, tp)
struct
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___compositionString_3_OffsetPadding[20];
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com ___compositionString_3;
};
#pragma pack(pop, tp)
struct
{
char ___compositionString_3_OffsetPadding_forAlignmentOnly[20];
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com ___compositionString_3_forAlignmentOnly;
};
};
};
uint8_t IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55__padding[152];
};
};
// UnityEngine.InputSystem.InputDevice
struct InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B : public InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E
{
// UnityEngine.InputSystem.InputDevice/DeviceFlags UnityEngine.InputSystem.InputDevice::m_DeviceFlags
int32_t ___m_DeviceFlags_24;
// System.Int32 UnityEngine.InputSystem.InputDevice::m_DeviceId
int32_t ___m_DeviceId_25;
// System.Int32 UnityEngine.InputSystem.InputDevice::m_ParticipantId
int32_t ___m_ParticipantId_26;
// System.Int32 UnityEngine.InputSystem.InputDevice::m_DeviceIndex
int32_t ___m_DeviceIndex_27;
// UnityEngine.InputSystem.Layouts.InputDeviceDescription UnityEngine.InputSystem.InputDevice::m_Description
InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F ___m_Description_28;
// System.Double UnityEngine.InputSystem.InputDevice::m_LastUpdateTimeInternal
double ___m_LastUpdateTimeInternal_29;
// System.UInt32 UnityEngine.InputSystem.InputDevice::m_CurrentUpdateStepCount
uint32_t ___m_CurrentUpdateStepCount_30;
// UnityEngine.InputSystem.Utilities.InternedString[] UnityEngine.InputSystem.InputDevice::m_AliasesForEachControl
InternedStringU5BU5D_t0B851758733FC0B118D84BE83AED10A0404C18D5* ___m_AliasesForEachControl_31;
// UnityEngine.InputSystem.Utilities.InternedString[] UnityEngine.InputSystem.InputDevice::m_UsagesForEachControl
InternedStringU5BU5D_t0B851758733FC0B118D84BE83AED10A0404C18D5* ___m_UsagesForEachControl_32;
// UnityEngine.InputSystem.InputControl[] UnityEngine.InputSystem.InputDevice::m_UsageToControl
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___m_UsageToControl_33;
// UnityEngine.InputSystem.InputControl[] UnityEngine.InputSystem.InputDevice::m_ChildrenForEachControl
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___m_ChildrenForEachControl_34;
// System.UInt32[] UnityEngine.InputSystem.InputDevice::m_StateOffsetToControlMap
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___m_StateOffsetToControlMap_35;
};
// UnityEngine.InputSystem.LowLevel.InputEventStream
struct InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9
{
// UnityEngine.InputSystem.LowLevel.InputEventBuffer UnityEngine.InputSystem.LowLevel.InputEventStream::m_NativeBuffer
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE ___m_NativeBuffer_0;
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::m_CurrentNativeEventReadPtr
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentNativeEventReadPtr_1;
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::m_CurrentNativeEventWritePtr
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentNativeEventWritePtr_2;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventStream::m_RemainingNativeEventCount
int32_t ___m_RemainingNativeEventCount_3;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventStream::m_MaxAppendedEvents
int32_t ___m_MaxAppendedEvents_4;
// UnityEngine.InputSystem.LowLevel.InputEventBuffer UnityEngine.InputSystem.LowLevel.InputEventStream::m_AppendBuffer
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE ___m_AppendBuffer_5;
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::m_CurrentAppendEventReadPtr
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentAppendEventReadPtr_6;
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::m_CurrentAppendEventWritePtr
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentAppendEventWritePtr_7;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventStream::m_RemainingAppendEventCount
int32_t ___m_RemainingAppendEventCount_8;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventStream::m_NumEventsRetainedInBuffer
int32_t ___m_NumEventsRetainedInBuffer_9;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventStream::m_IsOpen
bool ___m_IsOpen_10;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.InputEventStream
struct InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshaled_pinvoke
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke ___m_NativeBuffer_0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentNativeEventReadPtr_1;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentNativeEventWritePtr_2;
int32_t ___m_RemainingNativeEventCount_3;
int32_t ___m_MaxAppendedEvents_4;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke ___m_AppendBuffer_5;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentAppendEventReadPtr_6;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentAppendEventWritePtr_7;
int32_t ___m_RemainingAppendEventCount_8;
int32_t ___m_NumEventsRetainedInBuffer_9;
int32_t ___m_IsOpen_10;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.InputEventStream
struct InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshaled_com
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com ___m_NativeBuffer_0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentNativeEventReadPtr_1;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentNativeEventWritePtr_2;
int32_t ___m_RemainingNativeEventCount_3;
int32_t ___m_MaxAppendedEvents_4;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com ___m_AppendBuffer_5;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentAppendEventReadPtr_6;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentAppendEventWritePtr_7;
int32_t ___m_RemainingAppendEventCount_8;
int32_t ___m_NumEventsRetainedInBuffer_9;
int32_t ___m_IsOpen_10;
};
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
{
};
// UnityEngine.InputSystem.LowLevel.StateEvent
struct StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.StateEvent::baseEvent
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_2;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_2_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateFormat_3_OffsetPadding[20];
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.StateEvent::stateFormat
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___stateFormat_3;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateFormat_3_OffsetPadding_forAlignmentOnly[20];
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___stateFormat_3_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateData_4_OffsetPadding[24];
// UnityEngine.InputSystem.LowLevel.StateEvent/<stateData>e__FixedBuffer UnityEngine.InputSystem.LowLevel.StateEvent::stateData
U3CstateDataU3Ee__FixedBuffer_t00ED1E0C66E396C0021CE2F46B671748BC5E5FEC ___stateData_4;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateData_4_OffsetPadding_forAlignmentOnly[24];
U3CstateDataU3Ee__FixedBuffer_t00ED1E0C66E396C0021CE2F46B671748BC5E5FEC ___stateData_4_forAlignmentOnly;
};
#pragma pack(pop, tp)
};
};
uint8_t StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F__padding[25];
};
};
// UnityEngine.InputSystem.EnhancedTouch.Touch
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70
{
// UnityEngine.InputSystem.EnhancedTouch.Finger UnityEngine.InputSystem.EnhancedTouch.Touch::m_Finger
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___m_Finger_0;
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState> UnityEngine.InputSystem.EnhancedTouch.Touch::m_TouchRecord
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 ___m_TouchRecord_1;
};
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields
{
// UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState UnityEngine.InputSystem.EnhancedTouch.Touch::s_GlobalState
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A ___s_GlobalState_2;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.EnhancedTouch.Touch
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke
{
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___m_Finger_0;
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 ___m_TouchRecord_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.EnhancedTouch.Touch
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com
{
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___m_Finger_0;
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 ___m_TouchRecord_1;
};
// UnityEngine.InputSystem.Controls.AxisControl
struct AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7 : public InputControl_1_t7A35A4AF63A7AA94678E000D4F3265A1FD84288A
{
// UnityEngine.InputSystem.Controls.AxisControl/Clamp UnityEngine.InputSystem.Controls.AxisControl::clamp
int32_t ___clamp_22;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::clampMin
float ___clampMin_23;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::clampMax
float ___clampMax_24;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::clampConstant
float ___clampConstant_25;
// System.Boolean UnityEngine.InputSystem.Controls.AxisControl::invert
bool ___invert_26;
// System.Boolean UnityEngine.InputSystem.Controls.AxisControl::normalize
bool ___normalize_27;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::normalizeMin
float ___normalizeMin_28;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::normalizeMax
float ___normalizeMax_29;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::normalizeZero
float ___normalizeZero_30;
// System.Boolean UnityEngine.InputSystem.Controls.AxisControl::scale
bool ___scale_31;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::scaleFactor
float ___scaleFactor_32;
};
// UnityEngine.InputSystem.Gamepad
struct Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C : public InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B
{
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<buttonWest>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CbuttonWestU3Ek__BackingField_39;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<buttonNorth>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CbuttonNorthU3Ek__BackingField_40;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<buttonSouth>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CbuttonSouthU3Ek__BackingField_41;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<buttonEast>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CbuttonEastU3Ek__BackingField_42;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<leftStickButton>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CleftStickButtonU3Ek__BackingField_43;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<rightStickButton>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CrightStickButtonU3Ek__BackingField_44;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<startButton>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CstartButtonU3Ek__BackingField_45;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<selectButton>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CselectButtonU3Ek__BackingField_46;
// UnityEngine.InputSystem.Controls.DpadControl UnityEngine.InputSystem.Gamepad::<dpad>k__BackingField
DpadControl_t517E87BF3EB22369B71EA1941648079B468A45AB* ___U3CdpadU3Ek__BackingField_47;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<leftShoulder>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CleftShoulderU3Ek__BackingField_48;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<rightShoulder>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CrightShoulderU3Ek__BackingField_49;
// UnityEngine.InputSystem.Controls.StickControl UnityEngine.InputSystem.Gamepad::<leftStick>k__BackingField
StickControl_t2608D1388A5015029123635B4B589AC7EE20C50B* ___U3CleftStickU3Ek__BackingField_50;
// UnityEngine.InputSystem.Controls.StickControl UnityEngine.InputSystem.Gamepad::<rightStick>k__BackingField
StickControl_t2608D1388A5015029123635B4B589AC7EE20C50B* ___U3CrightStickU3Ek__BackingField_51;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<leftTrigger>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CleftTriggerU3Ek__BackingField_52;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<rightTrigger>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CrightTriggerU3Ek__BackingField_53;
// UnityEngine.InputSystem.Haptics.DualMotorRumble UnityEngine.InputSystem.Gamepad::m_Rumble
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701 ___m_Rumble_55;
};
struct Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C_StaticFields
{
// UnityEngine.InputSystem.Gamepad UnityEngine.InputSystem.Gamepad::<current>k__BackingField
Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* ___U3CcurrentU3Ek__BackingField_54;
// System.Int32 UnityEngine.InputSystem.Gamepad::s_GamepadCount
int32_t ___s_GamepadCount_56;
// UnityEngine.InputSystem.Gamepad[] UnityEngine.InputSystem.Gamepad::s_Gamepads
GamepadU5BU5D_t907383551E67ACF51B8B4ECCC0E399DAE2AB3762* ___s_Gamepads_57;
};
// UnityEngine.InputSystem.HID.HID
struct HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D : public InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B
{
// System.Boolean UnityEngine.InputSystem.HID.HID::m_HaveParsedHIDDescriptor
bool ___m_HaveParsedHIDDescriptor_41;
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor UnityEngine.InputSystem.HID.HID::m_HIDDescriptor
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 ___m_HIDDescriptor_42;
};
// UnityEngine.InputSystem.InputManager
struct InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210 : public RuntimeObject
{
// System.Int32 UnityEngine.InputSystem.InputManager::m_LayoutRegistrationVersion
int32_t ___m_LayoutRegistrationVersion_0;
// System.Single UnityEngine.InputSystem.InputManager::m_PollingFrequency
float ___m_PollingFrequency_1;
// UnityEngine.InputSystem.Layouts.InputControlLayout/Collection UnityEngine.InputSystem.InputManager::m_Layouts
Collection_t6E9F85AD439CF26269683541C4DC58BA3B6756C5 ___m_Layouts_2;
// UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputManager::m_Processors
TypeTable_tEAC1ECAD849469DEA65DA2FC65B19C2D4739B67E ___m_Processors_3;
// UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputManager::m_Interactions
TypeTable_tEAC1ECAD849469DEA65DA2FC65B19C2D4739B67E ___m_Interactions_4;
// UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputManager::m_Composites
TypeTable_tEAC1ECAD849469DEA65DA2FC65B19C2D4739B67E ___m_Composites_5;
// System.Int32 UnityEngine.InputSystem.InputManager::m_DevicesCount
int32_t ___m_DevicesCount_6;
// UnityEngine.InputSystem.InputDevice[] UnityEngine.InputSystem.InputManager::m_Devices
InputDeviceU5BU5D_tA9AEFC6AF63557D3D5DCFB2B26DDA6F63147D548* ___m_Devices_7;
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.InputSystem.InputDevice> UnityEngine.InputSystem.InputManager::m_DevicesById
Dictionary_2_t0B4F40FB3850F8F8B487CCD9F64B8CF9ED139AB3* ___m_DevicesById_8;
// System.Int32 UnityEngine.InputSystem.InputManager::m_AvailableDeviceCount
int32_t ___m_AvailableDeviceCount_9;
// UnityEngine.InputSystem.InputManager/AvailableDevice[] UnityEngine.InputSystem.InputManager::m_AvailableDevices
AvailableDeviceU5BU5D_t47A5F4F158146E9E9066D29DB4494D96AF8F1DB5* ___m_AvailableDevices_10;
// System.Int32 UnityEngine.InputSystem.InputManager::m_DisconnectedDevicesCount
int32_t ___m_DisconnectedDevicesCount_11;
// UnityEngine.InputSystem.InputDevice[] UnityEngine.InputSystem.InputManager::m_DisconnectedDevices
InputDeviceU5BU5D_tA9AEFC6AF63557D3D5DCFB2B26DDA6F63147D548* ___m_DisconnectedDevices_12;
// UnityEngine.InputSystem.LowLevel.InputUpdateType UnityEngine.InputSystem.InputManager::m_UpdateMask
int32_t ___m_UpdateMask_13;
// UnityEngine.InputSystem.LowLevel.InputUpdateType UnityEngine.InputSystem.InputManager::m_CurrentUpdate
int32_t ___m_CurrentUpdate_14;
// UnityEngine.InputSystem.LowLevel.InputStateBuffers UnityEngine.InputSystem.InputManager::m_StateBuffers
InputStateBuffers_t338A1714D01276EEEF5F8CD6AE81DFED939D5968 ___m_StateBuffers_15;
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange>> UnityEngine.InputSystem.InputManager::m_DeviceChangeListeners
CallbackArray_1_t2CA72B1E4C1404A9DA6888410ADA4EAF32795333 ___m_DeviceChangeListeners_16;
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.LowLevel.InputEventPtr>> UnityEngine.InputSystem.InputManager::m_DeviceStateChangeListeners
CallbackArray_1_t6CDC364469641FDEFC50305004914224252C5C85 ___m_DeviceStateChangeListeners_17;
// UnityEngine.InputSystem.Utilities.CallbackArray`1<UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate> UnityEngine.InputSystem.InputManager::m_DeviceFindLayoutCallbacks
CallbackArray_1_t52995C3D8849483AA8BD7ABCDB6094548AF3BE8D ___m_DeviceFindLayoutCallbacks_18;
// UnityEngine.InputSystem.Utilities.CallbackArray`1<UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate> UnityEngine.InputSystem.InputManager::m_DeviceCommandCallbacks
CallbackArray_1_t7C2A86AF46E04B281542BEADE553C9DF6B1A0885 ___m_DeviceCommandCallbacks_19;
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`2<System.String,UnityEngine.InputSystem.InputControlLayoutChange>> UnityEngine.InputSystem.InputManager::m_LayoutChangeListeners
CallbackArray_1_t766EB5E63A2D3692C554B40CB077C80A0D3633CC ___m_LayoutChangeListeners_20;
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice>> UnityEngine.InputSystem.InputManager::m_EventListeners
CallbackArray_1_t85DCE036F5C6200B85D9AF68EE20A7675DD9AC37 ___m_EventListeners_21;
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action> UnityEngine.InputSystem.InputManager::m_BeforeUpdateListeners
CallbackArray_1_t346DB7B424423D4F14A14CFE2C0734F62447A529 ___m_BeforeUpdateListeners_22;
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action> UnityEngine.InputSystem.InputManager::m_AfterUpdateListeners
CallbackArray_1_t346DB7B424423D4F14A14CFE2C0734F62447A529 ___m_AfterUpdateListeners_23;
// UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action> UnityEngine.InputSystem.InputManager::m_SettingsChangedListeners
CallbackArray_1_t346DB7B424423D4F14A14CFE2C0734F62447A529 ___m_SettingsChangedListeners_24;
// System.Boolean UnityEngine.InputSystem.InputManager::m_NativeBeforeUpdateHooked
bool ___m_NativeBeforeUpdateHooked_25;
// System.Boolean UnityEngine.InputSystem.InputManager::m_HaveDevicesWithStateCallbackReceivers
bool ___m_HaveDevicesWithStateCallbackReceivers_26;
// System.Boolean UnityEngine.InputSystem.InputManager::m_HasFocus
bool ___m_HasFocus_27;
// UnityEngine.InputSystem.LowLevel.InputEventStream UnityEngine.InputSystem.InputManager::m_InputEventStream
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9 ___m_InputEventStream_28;
// UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate UnityEngine.InputSystem.InputManager::m_DeviceFindExecuteCommandDelegate
InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* ___m_DeviceFindExecuteCommandDelegate_29;
// System.Int32 UnityEngine.InputSystem.InputManager::m_DeviceFindExecuteCommandDeviceId
int32_t ___m_DeviceFindExecuteCommandDeviceId_30;
// UnityEngine.InputSystem.LowLevel.IInputRuntime UnityEngine.InputSystem.InputManager::m_Runtime
RuntimeObject* ___m_Runtime_31;
// UnityEngine.InputSystem.LowLevel.InputMetrics UnityEngine.InputSystem.InputManager::m_Metrics
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338 ___m_Metrics_32;
// UnityEngine.InputSystem.InputSettings UnityEngine.InputSystem.InputManager::m_Settings
InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF* ___m_Settings_33;
// UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice[] UnityEngine.InputSystem.InputManager::m_StateChangeMonitors
StateChangeMonitorsForDeviceU5BU5D_tA1D732EEFF09F568D8FDA6908633B6DAD38B61F4* ___m_StateChangeMonitors_34;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout> UnityEngine.InputSystem.InputManager::m_StateChangeMonitorTimeouts
InlinedArray_1_t63A16C5FE53708C13F492320BA02E124371662FA ___m_StateChangeMonitorTimeouts_35;
// UnityEngine.InputSystem.InputManager/DeviceState[] UnityEngine.InputSystem.InputManager::m_SavedDeviceStates
DeviceStateU5BU5D_t2FFF1D33A730514A6E6B9A88A22A1E5292442DD0* ___m_SavedDeviceStates_36;
// UnityEngine.InputSystem.InputManager/AvailableDevice[] UnityEngine.InputSystem.InputManager::m_SavedAvailableDevices
AvailableDeviceU5BU5D_t47A5F4F158146E9E9066D29DB4494D96AF8F1DB5* ___m_SavedAvailableDevices_37;
};
// UnityEngine.InputSystem.Joystick
struct Joystick_t2235B6B58C2C6BC3755C8E5852BC6BA9CFD0981C : public InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B
{
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Joystick::<trigger>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CtriggerU3Ek__BackingField_39;
// UnityEngine.InputSystem.Controls.StickControl UnityEngine.InputSystem.Joystick::<stick>k__BackingField
StickControl_t2608D1388A5015029123635B4B589AC7EE20C50B* ___U3CstickU3Ek__BackingField_40;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Joystick::<twist>k__BackingField
AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7* ___U3CtwistU3Ek__BackingField_41;
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Joystick::<hatswitch>k__BackingField
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* ___U3ChatswitchU3Ek__BackingField_42;
};
struct Joystick_t2235B6B58C2C6BC3755C8E5852BC6BA9CFD0981C_StaticFields
{
// UnityEngine.InputSystem.Joystick UnityEngine.InputSystem.Joystick::<current>k__BackingField
Joystick_t2235B6B58C2C6BC3755C8E5852BC6BA9CFD0981C* ___U3CcurrentU3Ek__BackingField_43;
// System.Int32 UnityEngine.InputSystem.Joystick::s_JoystickCount
int32_t ___s_JoystickCount_44;
// UnityEngine.InputSystem.Joystick[] UnityEngine.InputSystem.Joystick::s_Joysticks
JoystickU5BU5D_tF04167FBAEECAD6E2C47C144DD866A5B5790B8FD* ___s_Joysticks_45;
};
// UnityEngine.InputSystem.Pointer
struct Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A : public InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B
{
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Pointer::<position>k__BackingField
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* ___U3CpositionU3Ek__BackingField_39;
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Pointer::<delta>k__BackingField
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* ___U3CdeltaU3Ek__BackingField_40;
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Pointer::<radius>k__BackingField
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* ___U3CradiusU3Ek__BackingField_41;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Pointer::<pressure>k__BackingField
AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7* ___U3CpressureU3Ek__BackingField_42;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Pointer::<press>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CpressU3Ek__BackingField_43;
};
struct Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_StaticFields
{
// UnityEngine.InputSystem.Pointer UnityEngine.InputSystem.Pointer::<current>k__BackingField
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* ___U3CcurrentU3Ek__BackingField_44;
};
// UnityEngine.InputSystem.Sensor
struct Sensor_t8EF743F06C5B025B572E11A5B2CD0B23833D3FD4 : public InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B
{
};
// UnityEngine.InputSystem.Controls.TouchControl
struct TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079 : public InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3
{
// UnityEngine.InputSystem.Controls.TouchPressControl UnityEngine.InputSystem.Controls.TouchControl::<press>k__BackingField
TouchPressControl_tD5BD68D9FDEAC889591DD7A499864893A43C7CEB* ___U3CpressU3Ek__BackingField_22;
// UnityEngine.InputSystem.Controls.IntegerControl UnityEngine.InputSystem.Controls.TouchControl::<touchId>k__BackingField
IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB* ___U3CtouchIdU3Ek__BackingField_23;
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Controls.TouchControl::<position>k__BackingField
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* ___U3CpositionU3Ek__BackingField_24;
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Controls.TouchControl::<delta>k__BackingField
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* ___U3CdeltaU3Ek__BackingField_25;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Controls.TouchControl::<pressure>k__BackingField
AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7* ___U3CpressureU3Ek__BackingField_26;
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Controls.TouchControl::<radius>k__BackingField
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* ___U3CradiusU3Ek__BackingField_27;
// UnityEngine.InputSystem.Controls.TouchPhaseControl UnityEngine.InputSystem.Controls.TouchControl::<phase>k__BackingField
TouchPhaseControl_t4652C6E0EBFAFA85A31607769876B02C1C9FCAEC* ___U3CphaseU3Ek__BackingField_28;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Controls.TouchControl::<indirectTouch>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CindirectTouchU3Ek__BackingField_29;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Controls.TouchControl::<tap>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CtapU3Ek__BackingField_30;
// UnityEngine.InputSystem.Controls.IntegerControl UnityEngine.InputSystem.Controls.TouchControl::<tapCount>k__BackingField
IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB* ___U3CtapCountU3Ek__BackingField_31;
// UnityEngine.InputSystem.Controls.DoubleControl UnityEngine.InputSystem.Controls.TouchControl::<startTime>k__BackingField
DoubleControl_t3707A6260424A2F3636669A2BAFF5CB5E91D2486* ___U3CstartTimeU3Ek__BackingField_32;
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Controls.TouchControl::<startPosition>k__BackingField
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* ___U3CstartPositionU3Ek__BackingField_33;
};
// UnityEngine.InputSystem.EnhancedTouch.TouchSimulation
struct TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
{
// UnityEngine.InputSystem.Touchscreen UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::<simulatedTouchscreen>k__BackingField
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___U3CsimulatedTouchscreenU3Ek__BackingField_4;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::m_NumPointers
int32_t ___m_NumPointers_5;
// UnityEngine.InputSystem.Pointer[] UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::m_Pointers
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* ___m_Pointers_6;
// UnityEngine.Vector2[] UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::m_CurrentPositions
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* ___m_CurrentPositions_7;
// UnityEngine.InputSystem.Controls.ButtonControl[] UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::m_Touches
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* ___m_Touches_8;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::m_LastTouchId
int32_t ___m_LastTouchId_9;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::m_PrimaryTouchIndex
int32_t ___m_PrimaryTouchIndex_10;
// System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange> UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::m_OnDeviceChange
Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* ___m_OnDeviceChange_11;
// System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice> UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::m_OnEvent
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___m_OnEvent_12;
};
struct TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields
{
// UnityEngine.InputSystem.EnhancedTouch.TouchSimulation UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::s_Instance
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* ___s_Instance_13;
};
// UnityEngine.InputSystem.Controls.Vector2Control
struct Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432 : public InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66
{
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Controls.Vector2Control::<x>k__BackingField
AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7* ___U3CxU3Ek__BackingField_22;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Controls.Vector2Control::<y>k__BackingField
AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7* ___U3CyU3Ek__BackingField_23;
};
// UnityEngine.InputSystem.Accelerometer
struct Accelerometer_t9F891328DDA1A9CD745AC981AE5FA6BE9139B76E : public Sensor_t8EF743F06C5B025B572E11A5B2CD0B23833D3FD4
{
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.InputSystem.Accelerometer::<acceleration>k__BackingField
Vector3Control_t32D7E4836F56C2FDC61BF0D96ED455DEFA6C949A* ___U3CaccelerationU3Ek__BackingField_39;
};
struct Accelerometer_t9F891328DDA1A9CD745AC981AE5FA6BE9139B76E_StaticFields
{
// UnityEngine.InputSystem.Accelerometer UnityEngine.InputSystem.Accelerometer::<current>k__BackingField
Accelerometer_t9F891328DDA1A9CD745AC981AE5FA6BE9139B76E* ___U3CcurrentU3Ek__BackingField_40;
};
// UnityEngine.InputSystem.AmbientTemperatureSensor
struct AmbientTemperatureSensor_t76EBA3E167601D4CC695BC674983F15E4EEADAE8 : public Sensor_t8EF743F06C5B025B572E11A5B2CD0B23833D3FD4
{
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.AmbientTemperatureSensor::<ambientTemperature>k__BackingField
AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7* ___U3CambientTemperatureU3Ek__BackingField_39;
};
struct AmbientTemperatureSensor_t76EBA3E167601D4CC695BC674983F15E4EEADAE8_StaticFields
{
// UnityEngine.InputSystem.AmbientTemperatureSensor UnityEngine.InputSystem.AmbientTemperatureSensor::<current>k__BackingField
AmbientTemperatureSensor_t76EBA3E167601D4CC695BC674983F15E4EEADAE8* ___U3CcurrentU3Ek__BackingField_40;
};
// UnityEngine.InputSystem.Android.AndroidGamepad
struct AndroidGamepad_t786079AAF70FADAC9023B59E60BE8DB35903EF6E : public Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C
{
};
// UnityEngine.InputSystem.Android.AndroidJoystick
struct AndroidJoystick_t046CDCD28C85B087F639711DB5F651B6D469CA01 : public Joystick_t2235B6B58C2C6BC3755C8E5852BC6BA9CFD0981C
{
};
// UnityEngine.InputSystem.AttitudeSensor
struct AttitudeSensor_tA85F0C6E285FC1137DE8AB1CFB7357C7E8673906 : public Sensor_t8EF743F06C5B025B572E11A5B2CD0B23833D3FD4
{
// UnityEngine.InputSystem.Controls.QuaternionControl UnityEngine.InputSystem.AttitudeSensor::<attitude>k__BackingField
QuaternionControl_t18A2F742850FC2FD82A1F980A35C188A29F1A0B1* ___U3CattitudeU3Ek__BackingField_39;
};
struct AttitudeSensor_tA85F0C6E285FC1137DE8AB1CFB7357C7E8673906_StaticFields
{
// UnityEngine.InputSystem.AttitudeSensor UnityEngine.InputSystem.AttitudeSensor::<current>k__BackingField
AttitudeSensor_tA85F0C6E285FC1137DE8AB1CFB7357C7E8673906* ___U3CcurrentU3Ek__BackingField_40;
};
// UnityEngine.InputSystem.Controls.ButtonControl
struct ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF : public AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7
{
// System.Single UnityEngine.InputSystem.Controls.ButtonControl::pressPoint
float ___pressPoint_33;
};
struct ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_StaticFields
{
// System.Single UnityEngine.InputSystem.Controls.ButtonControl::s_GlobalDefaultButtonPressPoint
float ___s_GlobalDefaultButtonPressPoint_34;
// System.Single UnityEngine.InputSystem.Controls.ButtonControl::s_GlobalDefaultButtonReleaseThreshold
float ___s_GlobalDefaultButtonReleaseThreshold_35;
};
// UnityEngine.InputSystem.DualShock.DualShockGamepad
struct DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B : public Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C
{
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<touchpadButton>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CtouchpadButtonU3Ek__BackingField_58;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<optionsButton>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CoptionsButtonU3Ek__BackingField_59;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<shareButton>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CshareButtonU3Ek__BackingField_60;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<L1>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CL1U3Ek__BackingField_61;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<R1>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CR1U3Ek__BackingField_62;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<L2>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CL2U3Ek__BackingField_63;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<R2>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CR2U3Ek__BackingField_64;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<L3>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CL3U3Ek__BackingField_65;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<R3>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CR3U3Ek__BackingField_66;
};
struct DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_StaticFields
{
// UnityEngine.InputSystem.DualShock.DualShockGamepad UnityEngine.InputSystem.DualShock.DualShockGamepad::<current>k__BackingField
DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* ___U3CcurrentU3Ek__BackingField_67;
};
// UnityEngine.InputSystem.GravitySensor
struct GravitySensor_t46D8EBFF773EDB6F2E508444B02B972300EC43D5 : public Sensor_t8EF743F06C5B025B572E11A5B2CD0B23833D3FD4
{
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.InputSystem.GravitySensor::<gravity>k__BackingField
Vector3Control_t32D7E4836F56C2FDC61BF0D96ED455DEFA6C949A* ___U3CgravityU3Ek__BackingField_39;
};
struct GravitySensor_t46D8EBFF773EDB6F2E508444B02B972300EC43D5_StaticFields
{
// UnityEngine.InputSystem.GravitySensor UnityEngine.InputSystem.GravitySensor::<current>k__BackingField
GravitySensor_t46D8EBFF773EDB6F2E508444B02B972300EC43D5* ___U3CcurrentU3Ek__BackingField_40;
};
// UnityEngine.InputSystem.Gyroscope
struct Gyroscope_t07C58BC3D40B432CE9B1526B33487FD23EBB47D4 : public Sensor_t8EF743F06C5B025B572E11A5B2CD0B23833D3FD4
{
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.InputSystem.Gyroscope::<angularVelocity>k__BackingField
Vector3Control_t32D7E4836F56C2FDC61BF0D96ED455DEFA6C949A* ___U3CangularVelocityU3Ek__BackingField_39;
};
struct Gyroscope_t07C58BC3D40B432CE9B1526B33487FD23EBB47D4_StaticFields
{
// UnityEngine.InputSystem.Gyroscope UnityEngine.InputSystem.Gyroscope::<current>k__BackingField
Gyroscope_t07C58BC3D40B432CE9B1526B33487FD23EBB47D4* ___U3CcurrentU3Ek__BackingField_40;
};
// UnityEngine.InputSystem.HumiditySensor
struct HumiditySensor_t72BCA304940BF73377CB2B6CE2ACF7DCA6A97D03 : public Sensor_t8EF743F06C5B025B572E11A5B2CD0B23833D3FD4
{
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.HumiditySensor::<relativeHumidity>k__BackingField
AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7* ___U3CrelativeHumidityU3Ek__BackingField_39;
};
struct HumiditySensor_t72BCA304940BF73377CB2B6CE2ACF7DCA6A97D03_StaticFields
{
// UnityEngine.InputSystem.HumiditySensor UnityEngine.InputSystem.HumiditySensor::<current>k__BackingField
HumiditySensor_t72BCA304940BF73377CB2B6CE2ACF7DCA6A97D03* ___U3CcurrentU3Ek__BackingField_40;
};
// UnityEngine.InputSystem.LightSensor
struct LightSensor_t9B735ADB57990930D7E180C6BF93F450845CD554 : public Sensor_t8EF743F06C5B025B572E11A5B2CD0B23833D3FD4
{
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.LightSensor::<lightLevel>k__BackingField
AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7* ___U3ClightLevelU3Ek__BackingField_39;
};
struct LightSensor_t9B735ADB57990930D7E180C6BF93F450845CD554_StaticFields
{
// UnityEngine.InputSystem.LightSensor UnityEngine.InputSystem.LightSensor::<current>k__BackingField
LightSensor_t9B735ADB57990930D7E180C6BF93F450845CD554* ___U3CcurrentU3Ek__BackingField_40;
};
// UnityEngine.InputSystem.LinearAccelerationSensor
struct LinearAccelerationSensor_tE9FB374E1BBE28478D63F7A580BF74664411BE68 : public Sensor_t8EF743F06C5B025B572E11A5B2CD0B23833D3FD4
{
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.InputSystem.LinearAccelerationSensor::<acceleration>k__BackingField
Vector3Control_t32D7E4836F56C2FDC61BF0D96ED455DEFA6C949A* ___U3CaccelerationU3Ek__BackingField_39;
};
struct LinearAccelerationSensor_tE9FB374E1BBE28478D63F7A580BF74664411BE68_StaticFields
{
// UnityEngine.InputSystem.LinearAccelerationSensor UnityEngine.InputSystem.LinearAccelerationSensor::<current>k__BackingField
LinearAccelerationSensor_tE9FB374E1BBE28478D63F7A580BF74664411BE68* ___U3CcurrentU3Ek__BackingField_40;
};
// UnityEngine.InputSystem.MagneticFieldSensor
struct MagneticFieldSensor_tCC668B97017215736B7B7BDDB0AB4E690EF16C34 : public Sensor_t8EF743F06C5B025B572E11A5B2CD0B23833D3FD4
{
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.InputSystem.MagneticFieldSensor::<magneticField>k__BackingField
Vector3Control_t32D7E4836F56C2FDC61BF0D96ED455DEFA6C949A* ___U3CmagneticFieldU3Ek__BackingField_39;
};
struct MagneticFieldSensor_tCC668B97017215736B7B7BDDB0AB4E690EF16C34_StaticFields
{
// UnityEngine.InputSystem.MagneticFieldSensor UnityEngine.InputSystem.MagneticFieldSensor::<current>k__BackingField
MagneticFieldSensor_tCC668B97017215736B7B7BDDB0AB4E690EF16C34* ___U3CcurrentU3Ek__BackingField_40;
};
// UnityEngine.InputSystem.PressureSensor
struct PressureSensor_t0F29E50DD84E69A639F1BFDBE1B2BF70E117F603 : public Sensor_t8EF743F06C5B025B572E11A5B2CD0B23833D3FD4
{
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.PressureSensor::<atmosphericPressure>k__BackingField
AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7* ___U3CatmosphericPressureU3Ek__BackingField_39;
};
struct PressureSensor_t0F29E50DD84E69A639F1BFDBE1B2BF70E117F603_StaticFields
{
// UnityEngine.InputSystem.PressureSensor UnityEngine.InputSystem.PressureSensor::<current>k__BackingField
PressureSensor_t0F29E50DD84E69A639F1BFDBE1B2BF70E117F603* ___U3CcurrentU3Ek__BackingField_40;
};
// UnityEngine.InputSystem.ProximitySensor
struct ProximitySensor_tD3418A859057A9D7FFA0E099C00C403CD3916718 : public Sensor_t8EF743F06C5B025B572E11A5B2CD0B23833D3FD4
{
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.ProximitySensor::<distance>k__BackingField
AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7* ___U3CdistanceU3Ek__BackingField_39;
};
struct ProximitySensor_tD3418A859057A9D7FFA0E099C00C403CD3916718_StaticFields
{
// UnityEngine.InputSystem.ProximitySensor UnityEngine.InputSystem.ProximitySensor::<current>k__BackingField
ProximitySensor_tD3418A859057A9D7FFA0E099C00C403CD3916718* ___U3CcurrentU3Ek__BackingField_40;
};
// UnityEngine.InputSystem.StepCounter
struct StepCounter_t892F78E1286E3B4DF254DFB6A5D28F2618BD32B2 : public Sensor_t8EF743F06C5B025B572E11A5B2CD0B23833D3FD4
{
// UnityEngine.InputSystem.Controls.IntegerControl UnityEngine.InputSystem.StepCounter::<stepCounter>k__BackingField
IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB* ___U3CstepCounterU3Ek__BackingField_39;
};
struct StepCounter_t892F78E1286E3B4DF254DFB6A5D28F2618BD32B2_StaticFields
{
// UnityEngine.InputSystem.StepCounter UnityEngine.InputSystem.StepCounter::<current>k__BackingField
StepCounter_t892F78E1286E3B4DF254DFB6A5D28F2618BD32B2* ___U3CcurrentU3Ek__BackingField_40;
};
// UnityEngine.InputSystem.Touchscreen
struct Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE : public Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A
{
// UnityEngine.InputSystem.Controls.TouchControl UnityEngine.InputSystem.Touchscreen::<primaryTouch>k__BackingField
TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* ___U3CprimaryTouchU3Ek__BackingField_45;
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.Controls.TouchControl> UnityEngine.InputSystem.Touchscreen::<touches>k__BackingField
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E ___U3CtouchesU3Ek__BackingField_46;
};
struct Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_StaticFields
{
// UnityEngine.InputSystem.Touchscreen UnityEngine.InputSystem.Touchscreen::<current>k__BackingField
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___U3CcurrentU3Ek__BackingField_47;
// System.Single UnityEngine.InputSystem.Touchscreen::s_TapTime
float ___s_TapTime_48;
// System.Single UnityEngine.InputSystem.Touchscreen::s_TapDelayTime
float ___s_TapDelayTime_49;
// System.Single UnityEngine.InputSystem.Touchscreen::s_TapRadiusSquared
float ___s_TapRadiusSquared_50;
};
// UnityEngine.InputSystem.XInput.XInputController
struct XInputController_t8DB31CC6BD9BB1B280AB37DA697D0AF92E6A6B19 : public Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C
{
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.XInput.XInputController::<menu>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CmenuU3Ek__BackingField_58;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.XInput.XInputController::<view>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CviewU3Ek__BackingField_59;
// System.Boolean UnityEngine.InputSystem.XInput.XInputController::m_HaveParsedCapabilities
bool ___m_HaveParsedCapabilities_60;
// UnityEngine.InputSystem.XInput.XInputController/DeviceSubType UnityEngine.InputSystem.XInput.XInputController::m_SubType
int32_t ___m_SubType_61;
// UnityEngine.InputSystem.XInput.XInputController/DeviceFlags UnityEngine.InputSystem.XInput.XInputController::m_Flags
int32_t ___m_Flags_62;
};
// UnityEngine.InputSystem.Android.AndroidAccelerometer
struct AndroidAccelerometer_t424C7F249B02EEE2B4FC08EEEB8CCA17979C0152 : public Accelerometer_t9F891328DDA1A9CD745AC981AE5FA6BE9139B76E
{
};
// UnityEngine.InputSystem.Android.AndroidAmbientTemperature
struct AndroidAmbientTemperature_t708F5C6684A965DF4B1DB0FBCD468DDCCC718F85 : public AmbientTemperatureSensor_t76EBA3E167601D4CC695BC674983F15E4EEADAE8
{
};
// UnityEngine.InputSystem.Android.AndroidGamepadWithDpadAxes
struct AndroidGamepadWithDpadAxes_tF737215B337DB2EE82739556B7D49B9C47E1E0A6 : public AndroidGamepad_t786079AAF70FADAC9023B59E60BE8DB35903EF6E
{
};
// UnityEngine.InputSystem.Android.AndroidGamepadWithDpadButtons
struct AndroidGamepadWithDpadButtons_t62C4BA5D1E7EDAC25BF4540A84825D8F210121CA : public AndroidGamepad_t786079AAF70FADAC9023B59E60BE8DB35903EF6E
{
};
// UnityEngine.InputSystem.Android.AndroidGravitySensor
struct AndroidGravitySensor_t41E115E03C89B62509B2B088FA239E7DAFFF9695 : public GravitySensor_t46D8EBFF773EDB6F2E508444B02B972300EC43D5
{
};
// UnityEngine.InputSystem.Android.AndroidGyroscope
struct AndroidGyroscope_t0C9BB3F1F09F92AD929863225385D22D46C2D39D : public Gyroscope_t07C58BC3D40B432CE9B1526B33487FD23EBB47D4
{
};
// UnityEngine.InputSystem.Android.AndroidLightSensor
struct AndroidLightSensor_t555467EDE38119DBD9BADEFD8EB33EC2E44D120A : public LightSensor_t9B735ADB57990930D7E180C6BF93F450845CD554
{
};
// UnityEngine.InputSystem.Android.AndroidLinearAccelerationSensor
struct AndroidLinearAccelerationSensor_t970198FECD057A043BC8DDEE99C42928861CE5D9 : public LinearAccelerationSensor_tE9FB374E1BBE28478D63F7A580BF74664411BE68
{
};
// UnityEngine.InputSystem.Android.AndroidMagneticFieldSensor
struct AndroidMagneticFieldSensor_t1610FE66F3C8C0B079226776522B00876CD7307F : public MagneticFieldSensor_tCC668B97017215736B7B7BDDB0AB4E690EF16C34
{
};
// UnityEngine.InputSystem.Android.AndroidPressureSensor
struct AndroidPressureSensor_t35F3053D89964B2771F3C24CC0A3D3ACE7A64FFE : public PressureSensor_t0F29E50DD84E69A639F1BFDBE1B2BF70E117F603
{
};
// UnityEngine.InputSystem.Android.AndroidProximity
struct AndroidProximity_t0951C9819B491F6DA8066417FE24C750A409288F : public ProximitySensor_tD3418A859057A9D7FFA0E099C00C403CD3916718
{
};
// UnityEngine.InputSystem.Android.AndroidRelativeHumidity
struct AndroidRelativeHumidity_tBEFC71512766927C2BB2C95270C4E9938A3F3342 : public HumiditySensor_t72BCA304940BF73377CB2B6CE2ACF7DCA6A97D03
{
};
// UnityEngine.InputSystem.Android.AndroidRotationVector
struct AndroidRotationVector_tD623D1A57567CB6F21E37E60BBB5CE66042F1C3C : public AttitudeSensor_tA85F0C6E285FC1137DE8AB1CFB7357C7E8673906
{
};
// UnityEngine.InputSystem.Android.AndroidStepCounter
struct AndroidStepCounter_t60ECCD106CD8AD94CB740C46D212D1FA94DF38CD : public StepCounter_t892F78E1286E3B4DF254DFB6A5D28F2618BD32B2
{
};
// UnityEngine.InputSystem.Android.DualShock4GamepadAndroid
struct DualShock4GamepadAndroid_t12F04A138227E893CDB038399FFE400836152296 : public DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B
{
};
// UnityEngine.InputSystem.Android.XboxOneGamepadAndroid
struct XboxOneGamepadAndroid_t81C60ABAB05F8FA9762EBB7655043EFDCBCBC728 : public XInputController_t8DB31CC6BD9BB1B280AB37DA697D0AF92E6A6B19
{
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// UnityEngine.InputSystem.HID.HID/HIDElementDescriptor[]
struct HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D : public RuntimeArray
{
ALIGN_FIELD (8) HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED m_Items[1];
inline HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED value)
{
m_Items[index] = value;
}
};
// UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor[]
struct HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5 : public RuntimeArray
{
ALIGN_FIELD (8) HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 m_Items[1];
inline HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 value)
{
m_Items[index] = value;
}
};
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
{
ALIGN_FIELD (8) uint8_t m_Items[1];
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage[]
struct HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD : public RuntimeArray
{
ALIGN_FIELD (8) HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F m_Items[1];
inline HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F value)
{
m_Items[index] = value;
}
};
// UnityEngine.InputSystem.EnhancedTouch.Touch[]
struct TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354 : public RuntimeArray
{
ALIGN_FIELD (8) Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 m_Items[1];
inline Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Finger_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___m_TouchRecord_1))->___m_Owner_0), (void*)NULL);
#endif
}
inline Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Finger_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___m_TouchRecord_1))->___m_Owner_0), (void*)NULL);
#endif
}
};
// UnityEngine.InputSystem.EnhancedTouch.Finger[]
struct FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F : public RuntimeArray
{
ALIGN_FIELD (8) Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* m_Items[1];
inline Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
{
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.InputSystem.InputControl[]
struct InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17 : public RuntimeArray
{
ALIGN_FIELD (8) InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* m_Items[1];
inline InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.InputSystem.Pointer[]
struct PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5 : public RuntimeArray
{
ALIGN_FIELD (8) Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* m_Items[1];
inline Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.Vector2[]
struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA : public RuntimeArray
{
ALIGN_FIELD (8) Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 m_Items[1];
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 value)
{
m_Items[index] = value;
}
};
// UnityEngine.InputSystem.Controls.ButtonControl[]
struct ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7 : public RuntimeArray
{
ALIGN_FIELD (8) ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* m_Items[1];
inline ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.InputSystem.Android.LowLevel.AndroidAxis[]
struct AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847 : public RuntimeArray
{
ALIGN_FIELD (8) int32_t m_Items[1];
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
{
ALIGN_FIELD (8) String_t* m_Items[1];
inline String_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline String_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, String_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Single[]
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C : public RuntimeArray
{
ALIGN_FIELD (8) float m_Items[1];
inline float GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline float* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, float value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline float GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline float* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, float value)
{
m_Items[index] = value;
}
};
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
{
ALIGN_FIELD (8) Delegate_t* m_Items[1];
inline Delegate_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.InputSystem.LowLevel.GamepadButton[]
struct GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6 : public RuntimeArray
{
ALIGN_FIELD (8) int32_t m_Items[1];
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// UnityEngine.InputSystem.Key[]
struct KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A : public RuntimeArray
{
ALIGN_FIELD (8) int32_t m_Items[1];
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo[]
struct DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A : public RuntimeArray
{
ALIGN_FIELD (8) DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 m_Items[1];
inline DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Layout_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_FullLayoutJson_4), (void*)NULL);
#endif
}
inline DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Layout_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_FullLayoutJson_4), (void*)NULL);
#endif
}
};
// UnityEngine.InputSystem.HID.HIDParser/HIDReportData[]
struct HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955 : public RuntimeArray
{
ALIGN_FIELD (8) HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F m_Items[1];
inline HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F value)
{
m_Items[index] = value;
}
};
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : public RuntimeArray
{
ALIGN_FIELD (8) int32_t m_Items[1];
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
IL2CPP_EXTERN_C void HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshal_pinvoke(const HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED& unmarshaled, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshal_pinvoke_back(const HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_pinvoke& marshaled, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED& unmarshaled);
IL2CPP_EXTERN_C void HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshal_pinvoke_cleanup(HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshal_com(const HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED& unmarshaled, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_com& marshaled);
IL2CPP_EXTERN_C void HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshal_com_back(const HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_com& marshaled, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED& unmarshaled);
IL2CPP_EXTERN_C void HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshal_com_cleanup(HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_com& marshaled);
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_pinvoke(const FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D& unmarshaled, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_pinvoke_back(const FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke& marshaled, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D& unmarshaled);
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_pinvoke_cleanup(FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_com(const FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D& unmarshaled, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com& marshaled);
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_com_back(const FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com& marshaled, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D& unmarshaled);
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_com_cleanup(FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com& marshaled);
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_pinvoke(const Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70& unmarshaled, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_pinvoke_back(const Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke& marshaled, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70& unmarshaled);
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_pinvoke_cleanup(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_com(const Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70& unmarshaled, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com& marshaled);
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_com_back(const Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com& marshaled, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70& unmarshaled);
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_com_cleanup(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com& marshaled);
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke(const IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E& unmarshaled, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke_back(const IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke& marshaled, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E& unmarshaled);
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke_cleanup(IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com(const IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E& unmarshaled, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com& marshaled);
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com_back(const IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com& marshaled, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E& unmarshaled);
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com_cleanup(IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com& marshaled);
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke(const U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF& unmarshaled, U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke_back(const U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke& marshaled, U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF& unmarshaled);
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke_cleanup(U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com(const U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF& unmarshaled, U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com& marshaled);
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com_back(const U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com& marshaled, U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF& unmarshaled);
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com_cleanup(U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com& marshaled);
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke(const InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE& unmarshaled, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_back(const InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke& marshaled, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE& unmarshaled);
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_cleanup(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com(const InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE& unmarshaled, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com& marshaled);
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com_back(const InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com& marshaled, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE& unmarshaled);
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com_cleanup(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com& marshaled);
// T UnityEngine.JsonUtility::FromJson<UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor>(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 JsonUtility_FromJson_TisHIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_m606903A6B6AF076EAA11F3F733032BF631DA5FAD_gshared (String_t* ___json0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C_gshared (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60 List_1_GetEnumerator_mC605D61CAC954D4A3A8D348D5D221B814319A038_gshared (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEDB482ACA649331B5EF4524B9E1D4C3B9BCD1134_gshared (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED Enumerator_get_Current_m5EA592269528B338C04111C5D99C9FA016762671_gshared_inline (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mB9DC3D934804170CFD1F8B40AD171946368F5E8C_gshared (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_gshared_inline (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED ___item0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_gshared_inline (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC_gshared (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::set_Item(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822_gshared (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, int32_t ___index0, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED ___value1, const RuntimeMethod* method) ;
// T[] System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::ToArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B_gshared (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method) ;
// T[] System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::ToArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8_gshared (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HIDParser/HIDReportData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m12163A5ACF7868965793C27BB4086FA446FE4082_gshared (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m2193302E2DBF37D55C25EE317E0BDE040BE5CB52_gshared (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.Int32>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4339FB05BC7860D417DA2CDFFD8B356B9DF262B0_gshared_inline (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m8E820017C1FBE8A372423716AE53545CD6BA9F39_gshared_inline (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 ___item0, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 List_1_get_Item_mAA78D7E536ED334B3A2ACF6807CC5CFFD12A1F04_gshared (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::set_Item(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m62F2D5DF7AD292BC7D658B73628876B1EFDE0EB2_gshared (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, int32_t ___index0, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 ___value1, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HIDParser/HIDReportData>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434_gshared (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Int32>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Int32>::GetValueOrDefault(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_gshared (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___defaultValue0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HIDParser/HIDReportData>::set_Item(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_mF8C569EAE11C005E295F2F7CFD63AF6107206290_gshared (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, int32_t ___index0, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F ___value1, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8 List_1_GetEnumerator_mEFED85B7C6AF40AEC5B34E6C11C3C18BF631B3B5_gshared (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE6025392536B1B57D5D39AD09482558157C4CBAA_gshared (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 Enumerator_get_Current_m61FE609D85AF8173D12BD2876CCD1039024B4F54_gshared_inline (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m6FBB9F9F70B0D21E92C7D13E26DDC8EA5A70ACB3_gshared (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8* __this, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Int32>::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_gshared (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HIDParser/HIDReportData>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_gshared_inline (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HIDParser/HIDReportData>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m1FD2135A63F0BDE6E3127763ACDA2591AFC774F4_gshared_inline (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F ___item0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int32>::Clear()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int32>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___item0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Int32>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<System.Int32>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___index0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<TValue> UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage>::op_Implicit(TValue[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7 ReadOnlyArray_1_op_Implicit_mA22B8A64D028BB26629945A20BB233B21108C0C0_gshared (HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* ___array0, const RuntimeMethod* method) ;
// TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage>::ToArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* ReadOnlyArray_1_ToArray_m7C4848AF221AD3A11F95E50E61A49B4AA1FB58FE_gshared (ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7* __this, const RuntimeMethod* method) ;
// TValue UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyArray_1_get_Item_m20907EA946F72D55FC8BD8031EA4F9BF13AE164D_gshared (ReadOnlyArray_1_t40B8DDDCD6ACBA3B2C0AF1387BE23D68DAEF77B5* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Boolean System.Linq.Enumerable::Contains<UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage>(System.Collections.Generic.IEnumerable`1<TSource>,TSource)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerable_Contains_TisHIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F_mB26F4731F210BE498011E27E6DD428518C90CDD5_gshared (RuntimeObject* ___source0, HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F ___value1, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<System.Object>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlyArray_1_get_Count_m37AE229E2BFB74375A7BD545982B745F982762F8_gshared_inline (ReadOnlyArray_1_t40B8DDDCD6ACBA3B2C0AF1387BE23D68DAEF77B5* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<System.Object>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method) ;
// System.Void System.Action`2<System.Object,System.Int32Enum>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m6DEC13F96CE9CD74561DCCA7017E450079C96942_gshared (Action_2_t9C4E97D0565650F0AEF7C72077EB8A0F9326E40B* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator<TValue> UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t13B0EDB01F0A85A952803970AFD1073D96A46C94 ReadOnlyArray_1_GetEnumerator_mE43A032C7C67896D9F8377C6C1C863C22F3044B6_gshared (ReadOnlyArray_1_t40B8DDDCD6ACBA3B2C0AF1387BE23D68DAEF77B5* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m041721B53AC187277BACB4EA9C86E299322EB0AB_gshared (Enumerator_t13B0EDB01F0A85A952803970AFD1073D96A46C94* __this, const RuntimeMethod* method) ;
// TValue UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator<System.Object>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_mC38F33A423715DE1D9EAD3EADE1C8C03C52E4465_gshared (Enumerator_t13B0EDB01F0A85A952803970AFD1073D96A46C94* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m95272BAC87E97D7B862DB72A8639565003BD244B_gshared (Enumerator_t13B0EDB01F0A85A952803970AFD1073D96A46C94* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<TValue> UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888_gshared (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState>::.ctor(UnityEngine.InputSystem.InputControl`1<TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateHistory_1__ctor_mF238AB65ADBA9D960A9B86F6AA208AA315B42435_gshared (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3* ___control0, const RuntimeMethod* method) ;
// System.Int32 Unity.Collections.LowLevel.Unsafe.UnsafeUtility::SizeOf<UnityEngine.InputSystem.EnhancedTouch.Touch/ExtraDataPerTouchState>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_mA2C7B854E9A67DF24154B9668CE5EA1C21575E61_gshared (const RuntimeMethod* method) ;
// System.Void System.Action`1<UnityEngine.InputSystem.LowLevel.InputStateHistory/Record>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mFC28914555AB84FBEB1AC628C66364244967933B_gshared (Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void System.Func`4<System.Object,System.Double,UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Boolean>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_4__ctor_m2A54891CCBC7DDDF0FEC2524D81F59613A51DF93_gshared (Func_4_t71673974799A3C352F89909BA77E8B33929F2A32* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// TValue UnityEngine.InputSystem.InputControl`1<UnityEngine.InputSystem.LowLevel.TouchState>::ReadValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 InputControl_1_ReadValue_m360BE6DCDE6FE778516FC63F909BC88CA1D8A484_gshared (InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<TValue> UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState>::RecordStateChange(UnityEngine.InputSystem.InputControl`1<TValue>,TValue,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 InputStateHistory_1_RecordStateChange_mD873C4A092DA5D5E86088B221B90A4B5B05F5840_gshared (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3* ___control0, TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 ___value1, double ___time2, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.DelegateHelpers::InvokeCallbacksSafe<System.Object>(UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`1<TValue>>&,TValue,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_TisRuntimeObject_mBD945A94E90504C3D91B5372714E5E1EE95F35CB_gshared (CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411* ___callbacks0, RuntimeObject* ___argument1, String_t* ___callbackName2, RuntimeObject* ___context3, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerator`1<UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<TValue>> UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputStateHistory_1_GetEnumerator_m7589AE5E798BAFF50EF3C3BC3539FFDFF5DFCF59_gshared (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, const RuntimeMethod* method) ;
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::GetUnsafeExtraMemoryPtrUnchecked()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* Record_GetUnsafeExtraMemoryPtrUnchecked_m43B2E6AC3AF2307D2DDF2C92E90A629666277F66_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1<TValue> UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::get_owner()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* Record_get_owner_mE1A451C654D70DF2754170FA45A6A19AD3483471_gshared_inline (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::get_index()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Record_get_index_m8BF5DBF4C267EED76E3802B249F2856F29DAD8A6_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<TValue> UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::get_previous()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::GetUnsafeMemoryPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::get_valid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
// System.Double UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::get_time()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Record_get_time_m5976C10C2C3A2A2089D57F1DF9AE5557C10DF47E_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::GetUnsafeExtraMemoryPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* Record_GetUnsafeExtraMemoryPtr_mF305A3D8857DFF297E9FB6573684E4B9BF82022C_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.EnhancedTouch.Touch>::.ctor(TValue[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArray_1__ctor_m9C297EC68F90BE1CBFDC80B0D94420BF2B905455_gshared (ReadOnlyArray_1_t3D5F71F2FAC15E8E7413E1B4BDCCA92D49962E72* __this, TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<System.Object>::.ctor(TValue[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArray_1__ctor_m2C5D5E2909635889EDB94C381385ED5D6128612F_gshared (ReadOnlyArray_1_t40B8DDDCD6ACBA3B2C0AF1387BE23D68DAEF77B5* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Object>::AddCallback(TDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackArray_1_AddCallback_mB86EC6413C0AB2C12A88FA8141E3ACDA83DA2C6D_gshared (CallbackArray_1_t70C9B62D06582BEAC403C9259B541A2D8D4B4A1F* __this, RuntimeObject* ___dlg0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Object>::RemoveCallback(TDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackArray_1_RemoveCallback_mDEEFD791C9654F4EE7C2586BD7DED83F74D897B2_gshared (CallbackArray_1_t70C9B62D06582BEAC403C9259B541A2D8D4B4A1F* __this, RuntimeObject* ___dlg0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::Equals(UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Record_Equals_m17C216CDC45654F53F8191093F3404478DB16B69_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 ___other0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Record_GetHashCode_m94F8E34331A3B0253C5448B7E9B23BFE0F1B04A8_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.Utilities.InputArrayExtensions::ContainsReference<System.Object>(UnityEngine.InputSystem.Utilities.InlinedArray`1<TValue>,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputArrayExtensions_ContainsReference_TisRuntimeObject_m3ACEAB66FE80649889EEDD31E80882720C55B6C5_gshared (InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4 ___array0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Object>::AppendWithCapacity(TValue,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InlinedArray_1_AppendWithCapacity_m9862A91090391A77B2DCC2428616248FC176C180_gshared (InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4* __this, RuntimeObject* ___value0, int32_t ___capacityIncrement1, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.InputArrayExtensions::IndexOfReference<System.Object>(UnityEngine.InputSystem.Utilities.InlinedArray`1<TValue>,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputArrayExtensions_IndexOfReference_TisRuntimeObject_m2AD328E9127CDAE7CD18763468F70348E0DC9181_gshared (InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4 ___array0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Object>::RemoveAtWithCapacity(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InlinedArray_1_RemoveAtWithCapacity_mE12D4976DF40F114BA2B56DE9EA9C66F248F466C_gshared (InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.SavedStructState`1/TypedRestore<UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypedRestore__ctor_mA8D10118E8FDB2DDFBF5EC33A5A7183E01348EAE_gshared (TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.SavedStructState`1<UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState>::.ctor(T&,UnityEngine.InputSystem.Utilities.SavedStructState`1/TypedRestore<T>,System.Action)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SavedStructState_1__ctor_m3C152C71C4CF020B00FFFDB88B7A667A8192389B_gshared (SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B* __this, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A* ___state0, TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* ___restoreAction1, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___staticDisposeCurrentState2, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EnsureCapacity<System.Object>(TValue[]&,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_EnsureCapacity_TisRuntimeObject_mC9F24EFE64BC40F5812BE63FA90136AE9E4F3F28_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918** ___array0, int32_t ___count1, int32_t ___capacity2, int32_t ___capacityIncrement3, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::AppendWithCapacity<System.Object>(TValue[]&,System.Int32&,TValue,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_AppendWithCapacity_TisRuntimeObject_m19BAAE7AED4E89978DEEE09ABC0C60F705B0C01E_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918** ___array0, int32_t* ___count1, RuntimeObject* ___value2, int32_t ___capacityIncrement3, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EraseSliceWithCapacity<System.Object>(TValue[]&,System.Int32&,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_EraseSliceWithCapacity_TisRuntimeObject_m1BAF231F10A3874157A421B4591F5766F60AF3E7_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918** ___array0, int32_t* ___length1, int32_t ___index2, int32_t ___count3, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState>::.ctor(System.Nullable`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateHistory_1__ctor_m760ABD5FDD38AF6C3FF42B641B3FC8383E4A91DB_gshared (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___maxStateSizeInBytes0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::Clear<System.Object>(TValue[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_Clear_TisRuntimeObject_mF57508CDC3BFB8C60A7F92A012CB8270FE1E2B6A_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___array0, const RuntimeMethod* method) ;
// System.Int32 Unity.Collections.LowLevel.Unsafe.UnsafeUtility::SizeOf<UnityEngine.InputSystem.LowLevel.TouchState>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_m69FCD3C12AF3FB3E4C75D033E34648DED186489F_gshared (const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::.ctor(UnityEngine.InputSystem.LowLevel.InputStateHistory`1<TValue>,System.Int32,UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Record__ctor_m1CACECB022FDAACE6482C208E6552F7614445895_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___owner0, int32_t ___index1, RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* ___header2, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::InsertAtWithCapacity<UnityEngine.InputSystem.EnhancedTouch.Touch>(TValue[]&,System.Int32&,System.Int32,TValue,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_InsertAtWithCapacity_TisTouch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_m96BFF397234C618FAA34CAA72DE6AD4F4113819B_gshared (TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354** ___array0, int32_t* ___count1, int32_t ___index2, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 ___value3, int32_t ___capacityIncrement4, const RuntimeMethod* method) ;
// T UnityEngine.GameObject::AddComponent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GameObject_AddComponent_TisRuntimeObject_m69B93700FACCF372F5753371C6E8FB780800B824_gshared (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.Utilities.ArrayHelpers::ContainsReference<System.Object,System.Object>(TFirst[],System.Int32,TSecond)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ArrayHelpers_ContainsReference_TisRuntimeObject_TisRuntimeObject_mC2DDC1925FD740225C65414FD19F7F925C9D533A_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___array0, int32_t ___count1, RuntimeObject* ___value2, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::AppendWithCapacity<UnityEngine.Vector2>(TValue[]&,System.Int32&,TValue,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_AppendWithCapacity_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m68E6FD9C5D608130BCBB593660420B8C744A7459_gshared (Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA** ___array0, int32_t* ___count1, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value2, int32_t ___capacityIncrement3, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::IndexOfReference<System.Object,System.Object>(TFirst[],TSecond,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_IndexOfReference_TisRuntimeObject_TisRuntimeObject_m535F7C167C2FB8369A26267BF3D4454FBC57E4B4_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___array0, RuntimeObject* ___value1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EraseAtWithCapacity<System.Object>(TValue[],System.Int32&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_EraseAtWithCapacity_TisRuntimeObject_m31C5903A40AF94CC05C2609206AD1727A4A128B5_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___array0, int32_t* ___count1, int32_t ___index2, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EraseAtWithCapacity<UnityEngine.Vector2>(TValue[],System.Int32&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_EraseAtWithCapacity_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m89DBB1BBEAA8E9BDFB918291668D52A0FB6B971E_gshared (Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* ___array0, int32_t* ___count1, int32_t ___index2, const RuntimeMethod* method) ;
// TValue UnityEngine.InputSystem.InputControl`1<UnityEngine.Vector2>::ReadValueFromState(System.Void*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 InputControl_1_ReadValueFromState_m90076063D4500290705DBD1D85DA8743D4652C37_gshared (InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66* __this, void* ___statePtr0, const RuntimeMethod* method) ;
// TValue UnityEngine.InputSystem.InputControl`1<System.Single>::ReadValueFromState(System.Void*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float InputControl_1_ReadValueFromState_m1748B48FE53C7B329B8138F43857E231AC6FC24E_gshared (InputControl_1_t7A35A4AF63A7AA94678E000D4F3265A1FD84288A* __this, void* ___statePtr0, const RuntimeMethod* method) ;
// TDevice UnityEngine.InputSystem.InputSystem::AddDevice<System.Object>(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputSystem_AddDevice_TisRuntimeObject_m14C010215A2038F4F2CE809FFDD57319F89A30F9_gshared (String_t* ___name0, const RuntimeMethod* method) ;
// System.Void System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mFC80A1D3B6BA1009B9779F59B49347FEEE827FB6_gshared (Action_2_tD987B97B18D27B9920365359C46BC12702AD4F7D* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::Clear<System.Object>(TValue[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_Clear_TisRuntimeObject_mA3CCCA603577D1A7C9B9D32B8968E5D61636335E_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___array0, int32_t ___count1, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputState::Change<UnityEngine.InputSystem.LowLevel.TouchState>(UnityEngine.InputSystem.InputControl,TState,UnityEngine.InputSystem.LowLevel.InputUpdateType,UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputState_Change_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_mEA3F7DC352CCBD2270034CD741750CF21CB93F75_gshared (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control0, TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 ___state1, int32_t ___updateType2, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___eventPtr3, const RuntimeMethod* method) ;
// TControl UnityEngine.InputSystem.InputControl::GetChildControl<System.Object>(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputControl_GetChildControl_TisRuntimeObject_m5E81C3A512C444426EB15097CCF01D73CF1C614C_gshared (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, String_t* ___path0, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_gshared (Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C* __this, InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputSystem::RegisterProcessor<System.Object>(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_RegisterProcessor_TisRuntimeObject_m5D6C22A7FCA8F09B7D1BEA7D8260EEDC19DAA2D6_gshared (String_t* ___name0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher::WithCapability<System.Int32Enum>(System.String,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 InputDeviceMatcher_WithCapability_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m4A67202AF9C2A8C61DFB904499B8E52F3E8969D8_gshared (InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* __this, String_t* ___path0, int32_t ___value1, const RuntimeMethod* method) ;
// System.Boolean System.Linq.Enumerable::Contains<System.Int32Enum>(System.Collections.Generic.IEnumerable`1<TSource>,TSource)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerable_Contains_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_mCF235BF6055957FECC7BC52DB8F433FB3CE7C643_gshared (RuntimeObject* ___source0, int32_t ___value1, const RuntimeMethod* method) ;
// T UnityEngine.JsonUtility::FromJson<UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities>(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D JsonUtility_FromJson_TisAndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_m459CC1D300860AF774BDDD62715981659FA9F1A6_gshared (String_t* ___json0, const RuntimeMethod* method) ;
// System.Void System.Func`2<System.Int32Enum,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m889D430A5EE74DDF6971773B4D8C48ACF923ECCF_gshared (Func_2_tF12503C33FD184E465546C31F324F4C344B8975A* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Select<System.Int32Enum,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Select_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_TisRuntimeObject_mB68A29291EEC0750C0CF0A2F8C07FA4C51494367_gshared (RuntimeObject* ___source0, Func_2_tF12503C33FD184E465546C31F324F4C344B8975A* ___selector1, const RuntimeMethod* method) ;
// TSource[] System.Linq.Enumerable::ToArray<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Enumerable_ToArray_TisRuntimeObject_m6B1F26FB2B3EA7B18B82FC81035440AAAEFCE924_gshared (RuntimeObject* ___source0, const RuntimeMethod* method) ;
// T UnityEngine.JsonUtility::FromJson<UnityEngine.InputSystem.Android.LowLevel.AndroidSensorCapabilities>(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F JsonUtility_FromJson_TisAndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F_mCD18DC17AC85C3CA6C4702C4E3D2AECD8A591211_gshared (String_t* ___json0, const RuntimeMethod* method) ;
// System.Int64 UnityEngine.InputSystem.InputDevice::ExecuteCommand<UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand>(TCommand&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A_gshared (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* __this, DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E* ___command0, const RuntimeMethod* method) ;
// System.Void Unity.Collections.NativeArray`1<System.Byte>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method) ;
// System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafePtr<System.Byte>(Unity.Collections.NativeArray`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m65FA1E123815CA621B3659034958C4213DF274CD_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___nativeArray0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::IsA<UnityEngine.InputSystem.LowLevel.ActionEvent>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_IsA_TisActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444_m2F2591754A98F71A8E950E17F45153089F5B2D10_gshared (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::IsA<UnityEngine.InputSystem.LowLevel.DeltaStateEvent>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_gshared (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// System.Boolean Unity.Collections.NativeArray`1<System.Byte>::get_IsCreated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method) ;
// System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafeBufferPointerWithoutChecks<System.Byte>(Unity.Collections.NativeArray`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___nativeArray0, const RuntimeMethod* method) ;
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<System.Byte>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m43F0AE90A986A434C9B62B82562A021E0B5065C0_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method) ;
// System.Void Unity.Collections.NativeArray`1<System.Byte>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method) ;
// System.Void Unity.Collections.NativeArray`1<System.Byte>::CopyFrom(Unity.Collections.NativeArray`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_CopyFrom_mCF4D43C37F14A2904C5BA14973DDE501D965DA89_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___array0, const RuntimeMethod* method) ;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InlinedArray_1_get_Item_m36DBC031029BD3E52C31E50BE0B84DA3990A6021_gshared (InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::IsA<UnityEngine.InputSystem.LowLevel.StateEvent>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_IsA_TisStateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F_mA9BDDBB4B234A924F74AB0343F6F3CFDBFF70327_gshared (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<TValue> UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo>::op_Implicit(TValue[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570 ReadOnlyArray_1_op_Implicit_m1291C740F5550F006C2001EAF01E1EF009677B22_gshared (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* ___array0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::LengthSafe<UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo>(TValue[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_LengthSafe_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m23FEE5388406AABEE411B02BE7EB7F6CFB9B5DFF_gshared (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* ___array0, const RuntimeMethod* method) ;
// System.Int32 Unity.Collections.LowLevel.Unsafe.UnsafeUtility::SizeOf<UnityEngine.InputSystem.LowLevel.InputEvent>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisInputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5_mE272E24745A5A5359FDC77837068A5C4B9421E75_gshared (const RuntimeMethod* method) ;
// TResult System.Func`3<UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Object,System.Boolean>::Invoke(T1,T2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Func_3_Invoke_m0F49563C5B847FD0AA5D523797CC38C4C1476D8F_gshared_inline (Func_3_t0072F82DFBE56A425CAA051639D6DF09CB126719* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___arg10, RuntimeObject* ___arg21, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::Append<UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo>(TValue[]&,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_Append_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m50A8921FF90F5A6E5BA2D15D6D58D486B3D882BC_gshared (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A** ___array0, DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 ___value1, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Object>::get_length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CallbackArray_1_get_length_m81CB1E446FBEF126C2096B08E643D63ACDDBD0F1_gshared (CallbackArray_1_t70C9B62D06582BEAC403C9259B541A2D8D4B4A1F* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.DelegateHelpers::InvokeCallbacksSafe<UnityEngine.InputSystem.LowLevel.InputEventPtr>(UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`1<TValue>>&,TValue,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_m4EA8E60C61F02A061BF6D95B1411AC917E54A074_gshared (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* ___callbacks0, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___argument1, String_t* ___callbackName2, RuntimeObject* ___context3, const RuntimeMethod* method) ;
// System.String UnityEngine.JsonUtility::ToJson(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonUtility_ToJson_mA7B20656D12861446AAA157DF6E9ACBBD78EC0AC (RuntimeObject* ___obj0, bool ___prettyPrint1, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::ToJson()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HIDDeviceDescriptor_ToJson_mF1F8181F21DFC7786988C6B5B24592ED60C97C68 (HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* __this, const RuntimeMethod* method) ;
// T UnityEngine.JsonUtility::FromJson<UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor>(System.String)
inline HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 JsonUtility_FromJson_TisHIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_m606903A6B6AF076EAA11F3F733032BF631DA5FAD (String_t* ___json0, const RuntimeMethod* method)
{
return (( HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 (*) (String_t*, const RuntimeMethod*))JsonUtility_FromJson_TisHIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_m606903A6B6AF076EAA11F3F733032BF631DA5FAD_gshared)(___json0, method);
}
// System.Void UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::.ctor(UnityEngine.InputSystem.HID.HID/UsagePage,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDDeviceDescriptorBuilder__ctor_mB72574F6CACA0E638DAA7437168EABD2F32B9C07 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___usagePage0, int32_t ___usage1, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::.ctor(UnityEngine.InputSystem.HID.HID/GenericDesktop)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDDeviceDescriptorBuilder__ctor_mA089E89EDBAA54275A999D4BEC12B0A47562D9B4 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___usage0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::StartReport(UnityEngine.InputSystem.HID.HID/HIDReportType,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_StartReport_mA82F406CEAB8AA31436EC6041A88E9F9D21A4438 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___reportType0, int32_t ___reportId1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::.ctor()
inline void List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*, const RuntimeMethod*))List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C_gshared)(__this, method);
}
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::GetEnumerator()
inline Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60 List_1_GetEnumerator_mC605D61CAC954D4A3A8D348D5D221B814319A038 (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method)
{
return (( Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60 (*) (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*, const RuntimeMethod*))List_1_GetEnumerator_mC605D61CAC954D4A3A8D348D5D221B814319A038_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::Dispose()
inline void Enumerator_Dispose_mEDB482ACA649331B5EF4524B9E1D4C3B9BCD1134 (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60*, const RuntimeMethod*))Enumerator_Dispose_mEDB482ACA649331B5EF4524B9E1D4C3B9BCD1134_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::get_Current()
inline HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED Enumerator_get_Current_m5EA592269528B338C04111C5D99C9FA016762671_inline (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60* __this, const RuntimeMethod* method)
{
return (( HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED (*) (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60*, const RuntimeMethod*))Enumerator_get_Current_m5EA592269528B338C04111C5D99C9FA016762671_gshared_inline)(__this, method);
}
// System.String System.String::Format(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806 (String_t* ___format0, RuntimeObject* ___arg01, RuntimeObject* ___arg12, const RuntimeMethod* method) ;
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::MoveNext()
inline bool Enumerator_MoveNext_mB9DC3D934804170CFD1F8B40AD171946368F5E8C (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60*, const RuntimeMethod*))Enumerator_MoveNext_mB9DC3D934804170CFD1F8B40AD171946368F5E8C_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::Add(T)
inline void List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_inline (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED, const RuntimeMethod*))List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_gshared_inline)(__this, ___item0, method);
}
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::AddElement(UnityEngine.InputSystem.HID.HID/UsagePage,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_AddElement_mD994613C265EE2137E086C3BD8A028E81763647E (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___usagePage0, int32_t ___usage1, int32_t ___sizeInBits2, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::AddElement(UnityEngine.InputSystem.HID.HID/GenericDesktop,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_AddElement_mE95BE338E6B215AA1CA6B97AAD9A135A6A85B417 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___usage0, int32_t ___sizeInBits1, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::get_Count()
inline int32_t List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_inline (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*, const RuntimeMethod*))List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_gshared_inline)(__this, method);
}
// T System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::get_Item(System.Int32)
inline HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED (*) (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*, int32_t, const RuntimeMethod*))List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC_gshared)(__this, ___index0, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::set_Item(System.Int32,T)
inline void List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822 (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, int32_t ___index0, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*, int32_t, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED, const RuntimeMethod*))List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822_gshared)(__this, ___index0, ___value1, method);
}
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::WithPhysicalMinMax(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_WithPhysicalMinMax_m58B0FD4DA13242CD7B1D7F67FFB664E344A0270A (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___min0, int32_t ___max1, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::WithLogicalMinMax(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_WithLogicalMinMax_m3B81BFABC8C577FFF03F61E1B205DF09B921B5C1 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___min0, int32_t ___max1, const RuntimeMethod* method) ;
// T[] System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>::ToArray()
inline HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method)
{
return (( HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* (*) (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*, const RuntimeMethod*))List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B_gshared)(__this, method);
}
// T[] System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::ToArray()
inline HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8 (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method)
{
return (( HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* (*) (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*, const RuntimeMethod*))List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8_gshared)(__this, method);
}
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::Finish()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 HIDDeviceDescriptorBuilder_Finish_m552FCC29177FEA550ED85A2AFA420F1A338F561B (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, const RuntimeMethod* method) ;
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Layouts.InputControlLayout UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder::Build()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D* HIDLayoutBuilder_Build_mA8F12656656BF3BC1D6D6C51B87E030309C9D8A9 (HIDLayoutBuilder_t1B1FA825DFA02D93183E7C1B3C416D4A43D56553* __this, const RuntimeMethod* method) ;
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___paramName0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.HID.HIDParser::ParseReportDescriptor(System.Byte*,System.Int32,UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HIDParser_ParseReportDescriptor_m85537E64BCBC4FAEF2406CCCA1AC50C52BB37336 (uint8_t* ___bufferPtr0, int32_t ___bufferLength1, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* ___deviceDescriptor2, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HIDParser/HIDReportData>::.ctor()
inline void List_1__ctor_m12163A5ACF7868965793C27BB4086FA446FE4082 (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6*, const RuntimeMethod*))List_1__ctor_m12163A5ACF7868965793C27BB4086FA446FE4082_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::.ctor()
inline void List_1__ctor_m2193302E2DBF37D55C25EE317E0BDE040BE5CB52 (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*, const RuntimeMethod*))List_1__ctor_m2193302E2DBF37D55C25EE317E0BDE040BE5CB52_gshared)(__this, method);
}
// System.Void System.NotImplementedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_m8339D1A685E8D77CAC9D3260C06B38B5C7CA7742 (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.HID.HIDParser::ReadData(System.Int32,System.Byte*,System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDParser_ReadData_mE60D1996BC434AA4226CF2755FD14C379D5E18D2 (int32_t ___itemSize0, uint8_t* ___currentPtr1, uint8_t* ___endPtr2, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.Int32>::.ctor(T)
inline void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703 (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, int32_t, const RuntimeMethod*))Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared)(__this, ___value0, method);
}
// System.Void UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::SetUsage(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDItemStateLocal_SetUsage_mF18CA9692FAAB72115B8E30B671F75642F0CEF26 (HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::get_Count()
inline int32_t List_1_get_Count_m4339FB05BC7860D417DA2CDFFD8B356B9DF262B0_inline (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*, const RuntimeMethod*))List_1_get_Count_m4339FB05BC7860D417DA2CDFFD8B356B9DF262B0_gshared_inline)(__this, method);
}
// UnityEngine.InputSystem.HID.HID/UsagePage UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::GetUsagePage(System.Int32,UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDItemStateGlobal_GetUsagePage_m2730AFF3A621069D5CA7B93423F53AF9145D5B92 (HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* __this, int32_t ___index0, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* ___localItemState1, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::GetUsage(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDItemStateLocal_GetUsage_m12B69C95479759524D12DBC0EED1737B2A758DBA (HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::Add(T)
inline void List_1_Add_m8E820017C1FBE8A372423716AE53545CD6BA9F39_inline (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7, const RuntimeMethod*))List_1_Add_m8E820017C1FBE8A372423716AE53545CD6BA9F39_gshared_inline)(__this, ___item0, method);
}
// System.Void UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::Reset(UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDItemStateLocal_Reset_m41DEFAD3D3126B6AE8690A51E12F9EB71AF36942 (HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* ___state0, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::get_Item(System.Int32)
inline HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 List_1_get_Item_mAA78D7E536ED334B3A2ACF6807CC5CFFD12A1F04 (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 (*) (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*, int32_t, const RuntimeMethod*))List_1_get_Item_mAA78D7E536ED334B3A2ACF6807CC5CFFD12A1F04_gshared)(__this, ___index0, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::set_Item(System.Int32,T)
inline void List_1_set_Item_m62F2D5DF7AD292BC7D658B73628876B1EFDE0EB2 (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, int32_t ___index0, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*, int32_t, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7, const RuntimeMethod*))List_1_set_Item_m62F2D5DF7AD292BC7D658B73628876B1EFDE0EB2_gshared)(__this, ___index0, ___value1, method);
}
// System.Int32 UnityEngine.InputSystem.HID.HIDParser/HIDReportData::FindOrAddReport(System.Nullable`1<System.Int32>,UnityEngine.InputSystem.HID.HID/HIDReportType,System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HIDParser/HIDReportData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDReportData_FindOrAddReport_mFB72068FEB4E2C0EC335AA6829B41D15B943D3FF (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportId0, int32_t ___reportType1, List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* ___reports2, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HIDParser/HIDReportData>::get_Item(System.Int32)
inline HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434 (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F (*) (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6*, int32_t, const RuntimeMethod*))List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434_gshared)(__this, ___index0, method);
}
// System.Boolean System.Nullable`1<System.Int32>::get_HasValue()
inline bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, const RuntimeMethod*))Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline)(__this, method);
}
// T System.Nullable`1<System.Int32>::GetValueOrDefault(T)
inline int32_t Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9 (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___defaultValue0, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, int32_t, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_gshared)(__this, ___defaultValue0, method);
}
// System.Int32 UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::GetPhysicalMin()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDItemStateGlobal_GetPhysicalMin_m024C068044E6BCAF50A7B916DEE32027CBCBFE0A (HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::GetPhysicalMax()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDItemStateGlobal_GetPhysicalMax_mC33E0323DB7C0817C2951AD435D56E151D705490 (HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HIDParser/HIDReportData>::set_Item(System.Int32,T)
inline void List_1_set_Item_mF8C569EAE11C005E295F2F7CFD63AF6107206290 (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, int32_t ___index0, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6*, int32_t, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F, const RuntimeMethod*))List_1_set_Item_mF8C569EAE11C005E295F2F7CFD63AF6107206290_gshared)(__this, ___index0, ___value1, method);
}
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::GetEnumerator()
inline Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8 List_1_GetEnumerator_mEFED85B7C6AF40AEC5B34E6C11C3C18BF631B3B5 (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method)
{
return (( Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8 (*) (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*, const RuntimeMethod*))List_1_GetEnumerator_mEFED85B7C6AF40AEC5B34E6C11C3C18BF631B3B5_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::Dispose()
inline void Enumerator_Dispose_mE6025392536B1B57D5D39AD09482558157C4CBAA (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8*, const RuntimeMethod*))Enumerator_Dispose_mE6025392536B1B57D5D39AD09482558157C4CBAA_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::get_Current()
inline HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 Enumerator_get_Current_m61FE609D85AF8173D12BD2876CCD1039024B4F54_inline (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8* __this, const RuntimeMethod* method)
{
return (( HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 (*) (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8*, const RuntimeMethod*))Enumerator_get_Current_m61FE609D85AF8173D12BD2876CCD1039024B4F54_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>::MoveNext()
inline bool Enumerator_MoveNext_m6FBB9F9F70B0D21E92C7D13E26DDC8EA5A70ACB3 (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8*, const RuntimeMethod*))Enumerator_MoveNext_m6FBB9F9F70B0D21E92C7D13E26DDC8EA5A70ACB3_gshared)(__this, method);
}
// System.Void UnityEngine.Debug::Assert(System.Boolean,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806 (bool ___condition0, String_t* ___message1, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Int32>::get_Value()
inline int32_t Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, const RuntimeMethod*))Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_gshared)(__this, method);
}
// System.Int32 System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HIDParser/HIDReportData>::get_Count()
inline int32_t List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_inline (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6*, const RuntimeMethod*))List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HIDParser/HIDReportData>::Add(T)
inline void List_1_Add_m1FD2135A63F0BDE6E3127763ACDA2591AFC774F4_inline (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6*, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F, const RuntimeMethod*))List_1_Add_m1FD2135A63F0BDE6E3127763ACDA2591AFC774F4_gshared_inline)(__this, ___item0, method);
}
// System.Void System.Collections.Generic.List`1<System.Int32>::Clear()
inline void List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor()
inline void List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Int32>::Add(T)
inline void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline)(__this, ___item0, method);
}
// System.Int32 System.Collections.Generic.List`1<System.Int32>::get_Count()
inline int32_t List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_gshared_inline)(__this, method);
}
// T System.Collections.Generic.List`1<System.Int32>::get_Item(System.Int32)
inline int32_t List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_gshared)(__this, ___index0, method);
}
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<TValue> UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage>::op_Implicit(TValue[])
inline ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7 ReadOnlyArray_1_op_Implicit_mA22B8A64D028BB26629945A20BB233B21108C0C0 (HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* ___array0, const RuntimeMethod* method)
{
return (( ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7 (*) (HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD*, const RuntimeMethod*))ReadOnlyArray_1_op_Implicit_mA22B8A64D028BB26629945A20BB233B21108C0C0_gshared)(___array0, method);
}
// TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage>::ToArray()
inline HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* ReadOnlyArray_1_ToArray_m7C4848AF221AD3A11F95E50E61A49B4AA1FB58FE (ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7* __this, const RuntimeMethod* method)
{
return (( HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* (*) (ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7*, const RuntimeMethod*))ReadOnlyArray_1_ToArray_m7C4848AF221AD3A11F95E50E61A49B4AA1FB58FE_gshared)(__this, method);
}
// System.Void UnityEngine.InputSystem.InputManager::AddAvailableDevicesThatAreNowRecognized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_AddAvailableDevicesThatAreNowRecognized_mE0F489C5F28E922D0E4BCBBD115C57037E47BAD3 (InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.InputDevice> UnityEngine.InputSystem.InputSystem::get_devices()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA InputSystem_get_devices_m92D52284ABC0BCE6CF46CB98EB870F2AA3890BF8 (const RuntimeMethod* method) ;
// TValue UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.InputDevice>::get_Item(System.Int32)
inline InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ReadOnlyArray_1_get_Item_mCB4626E80069288BC1EEF0F558B1B806F59DAE43 (ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* (*) (ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA*, int32_t, const RuntimeMethod*))ReadOnlyArray_1_get_Item_m20907EA946F72D55FC8BD8031EA4F9BF13AE164D_gshared)(__this, ___index0, method);
}
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor UnityEngine.InputSystem.HID.HID::get_hidDescriptor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 HID_get_hidDescriptor_mC184D46A5FBDBA93CEA647FE529637230B01928D (HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage::.ctor(UnityEngine.InputSystem.HID.HID/UsagePage,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDPageUsage__ctor_m6371674E595E66213116FCAC5B07337261F69783 (HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F* __this, int32_t ___page0, int32_t ___usage1, const RuntimeMethod* method) ;
// System.Boolean System.Linq.Enumerable::Contains<UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage>(System.Collections.Generic.IEnumerable`1<TSource>,TSource)
inline bool Enumerable_Contains_TisHIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F_mB26F4731F210BE498011E27E6DD428518C90CDD5 (RuntimeObject* ___source0, HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F ___value1, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F, const RuntimeMethod*))Enumerable_Contains_TisHIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F_mB26F4731F210BE498011E27E6DD428518C90CDD5_gshared)(___source0, ___value1, method);
}
// System.String UnityEngine.InputSystem.InputControl::get_layout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputControl_get_layout_mE6054F87BB94A1F1D06355E137A1840B2EFF7971 (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputSystem::RemoveLayout(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_RemoveLayout_m7AA59AD8EC2AA0BAA64FAA37B96CF00C2DA27A4D (String_t* ___name0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.InputDevice>::get_Count()
inline int32_t ReadOnlyArray_1_get_Count_mB20295F7CC546835AD75D4880A2A81DABB6BE29C_inline (ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA*, const RuntimeMethod*))ReadOnlyArray_1_get_Count_m37AE229E2BFB74375A7BD545982B745F982762F8_gshared_inline)(__this, method);
}
// System.Void UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage::.ctor(UnityEngine.InputSystem.HID.HID/GenericDesktop)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDPageUsage__ctor_mFFC7DE365DEC0C75BC6E9155D2BDECEC6EAAE96B (HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F* __this, int32_t ___usage0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.HID.HID>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisHID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D_m386AEFB411C8CB4ECEEE863719FED4611062B85E (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceFindControlLayoutDelegate__ctor_mFF49E8C46111B03A6B9AEBDA66C309EF6FACFB78 (InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputSystem::add_onFindLayoutForDevice(UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_add_onFindLayoutForDevice_m5BC51D1D5A33186A539F58F2A5429A7252ED8BAF (InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E* ___value0, const RuntimeMethod* method) ;
// System.Void System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange>::.ctor(System.Object,System.IntPtr)
inline void Action_2__ctor_m23A4911D82F290811EDC6BFC315C339857526804 (Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_2__ctor_m6DEC13F96CE9CD74561DCCA7017E450079C96942_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::add_onDeviceChange(System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_add_onDeviceChange_m029F558DF1CF7BE38BCC050CC4FBD6A9EA2C2C35 (Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* ___value0, const RuntimeMethod* method) ;
// System.Void System.Action::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputSystem::add_onBeforeUpdate(System.Action)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_add_onBeforeUpdate_mB479D148F4C1684B66FB64B79C9331813A596ECD (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputSystem::add_onSettingsChange(System.Action)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_add_onSettingsChange_mD6A699F56A58024436C7DAD2C9038F6102CFD324 (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::SetUpState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_SetUpState_m8F07286BA422305AD55FDF4FB592F052A8EC2F15 (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::get_enabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnhancedTouchSupport_get_enabled_m4568C73CDE721BA254AF5E780F966F5F3B059B2F (const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputSystem::remove_onDeviceChange(System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_remove_onDeviceChange_m772CFE26B5D7C6DBBC8F8DBA78E327EC4CF6C930 (Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputSystem::remove_onBeforeUpdate(System.Action)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_remove_onBeforeUpdate_mBF0659BB33E2FD7874CD45067CEFF08C3A7A9EE4 (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputSystem::remove_onSettingsChange(System.Action)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_remove_onSettingsChange_m696F1E8E291877B7C6FC3B00DC3C0AB28872F745 (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::TearDownState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_TearDownState_mA6DC4026E6D18B6326403C3C7B5A8C41451C26B3 (const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::Destroy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_Destroy_mA11DBC6D12D70F40AA14283E65322FAFC602572B (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.InputSettings UnityEngine.InputSystem.InputSystem::get_settings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF* InputSystem_get_settings_mFAFDCA4665DFE068CEBBBB379972A390BD0E45C7 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.InputSettings/UpdateMode UnityEngine.InputSystem.InputSettings::get_updateMode()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputSettings_get_updateMode_mD37EABFC0678912846EABBC3CF31AC82E4ACE79E_inline (InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator<TValue> UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.InputDevice>::GetEnumerator()
inline Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C (ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA* __this, const RuntimeMethod* method)
{
return (( Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B (*) (ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA*, const RuntimeMethod*))ReadOnlyArray_1_GetEnumerator_mE43A032C7C67896D9F8377C6C1C863C22F3044B6_gshared)(__this, method);
}
// System.Void UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator<UnityEngine.InputSystem.InputDevice>::Dispose()
inline void Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB (Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B*, const RuntimeMethod*))Enumerator_Dispose_m041721B53AC187277BACB4EA9C86E299322EB0AB_gshared)(__this, method);
}
// TValue UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator<UnityEngine.InputSystem.InputDevice>::get_Current()
inline InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945 (Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B* __this, const RuntimeMethod* method)
{
return (( InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* (*) (Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B*, const RuntimeMethod*))Enumerator_get_Current_mC38F33A423715DE1D9EAD3EADE1C8C03C52E4465_gshared)(__this, method);
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::OnDeviceChange(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_OnDeviceChange_mAF845A948AFFB9419953242B144E4B50971F0100 (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, int32_t ___change1, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.Utilities.ReadOnlyArray`1/Enumerator<UnityEngine.InputSystem.InputDevice>::MoveNext()
inline bool Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC (Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B*, const RuntimeMethod*))Enumerator_MoveNext_m95272BAC87E97D7B862DB72A8639565003BD244B_gshared)(__this, method);
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch::AddTouchscreen(UnityEngine.InputSystem.Touchscreen)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_AddTouchscreen_m9E1BDBA572E0E293E5D19B04D662B4F942E5A68A (Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___screen0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch::RemoveTouchscreen(UnityEngine.InputSystem.Touchscreen)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_RemoveTouchscreen_m9B8A41313A046A1A6215D004B81502EC9B3865D4 (Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___screen0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.EnhancedTouch.Touch UnityEngine.InputSystem.EnhancedTouch.Finger::get_currentTouch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 Finger_get_currentTouch_m53721DA3C8AB5C0D600499C33CCD5854E757890D (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch::get_valid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.EnhancedTouch.Touch UnityEngine.InputSystem.EnhancedTouch.Finger::get_lastTouch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 Finger_get_lastTouch_mE5E27445009AB9A9AD2B33496A4BDBE8016771A8 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.InputSystem.EnhancedTouch.Touch::get_screenPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_screenPosition_mAEBB428F1E62308A2C3E32A56CBEFCA9F7530B03 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputStateHistory_get_Count_m23DF78272A6C97F6C8782A953482772CDF6FFA81_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<TValue> UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState>::get_Item(System.Int32)
inline Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888 (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 (*) (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*, int32_t, const RuntimeMethod*))InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888_gshared)(__this, ___index0, method);
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch::.ctor(UnityEngine.InputSystem.EnhancedTouch.Finger,UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch__ctor_mD4F3EE89F869C4A4C4ED358943FC508EED0F0728 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___finger0, Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 ___touchRecord1, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch::get_isInProgress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_isInProgress_mBAB5B9955091386836522092465FD4692100F670 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// System.UInt32 UnityEngine.InputSystem.EnhancedTouch.Touch::get_updateStepCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Touch_get_updateStepCount_m9550F17AC3135450BB378D0A44A7FD4762EFD01D (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchHistory::.ctor(UnityEngine.InputSystem.EnhancedTouch.Finger,UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState>,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchHistory__ctor_m3416A30524B233DED1F8C753398436191ED44814 (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___finger0, InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___history1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.Controls.TouchControl> UnityEngine.InputSystem.Touchscreen::get_touches()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline (Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* __this, const RuntimeMethod* method) ;
// TValue UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.Controls.TouchControl>::get_Item(System.Int32)
inline TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C (ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* (*) (ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E*, int32_t, const RuntimeMethod*))ReadOnlyArray_1_get_Item_m20907EA946F72D55FC8BD8031EA4F9BF13AE164D_gshared)(__this, ___index0, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState>::.ctor(UnityEngine.InputSystem.InputControl`1<TValue>)
inline void InputStateHistory_1__ctor_mF238AB65ADBA9D960A9B86F6AA208AA315B42435 (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3* ___control0, const RuntimeMethod* method)
{
(( void (*) (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*, InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3*, const RuntimeMethod*))InputStateHistory_1__ctor_mF238AB65ADBA9D960A9B86F6AA208AA315B42435_gshared)(__this, ___control0, method);
}
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Touch::get_maxHistoryLengthPerFinger()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_maxHistoryLengthPerFinger_m13F1BDECA1D88E4247BA7F1ED17106F3075CEBE3 (const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputStateHistory::set_historyDepth(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateHistory_set_historyDepth_mE520A08E8510340C919BA638230AFCCB1C8BA34D (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Int32 Unity.Collections.LowLevel.Unsafe.UnsafeUtility::SizeOf<UnityEngine.InputSystem.EnhancedTouch.Touch/ExtraDataPerTouchState>()
inline int32_t UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_mA2C7B854E9A67DF24154B9668CE5EA1C21575E61 (const RuntimeMethod* method)
{
return (( int32_t (*) (const RuntimeMethod*))UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_mA2C7B854E9A67DF24154B9668CE5EA1C21575E61_gshared)(method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputStateHistory::set_extraMemoryPerRecord(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateHistory_set_extraMemoryPerRecord_m6907893F41CB2EB06B4C04B2E8B35E0E5E800786 (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Action`1<UnityEngine.InputSystem.LowLevel.InputStateHistory/Record>::.ctor(System.Object,System.IntPtr)
inline void Action_1__ctor_mFC28914555AB84FBEB1AC628C66364244967933B (Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_1__ctor_mFC28914555AB84FBEB1AC628C66364244967933B_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputStateHistory::set_onRecordAdded(System.Action`1<UnityEngine.InputSystem.LowLevel.InputStateHistory/Record>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputStateHistory_set_onRecordAdded_m6F35EA7B2352BE8359FD22FE803E6AAC1CD2E93A_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7* ___value0, const RuntimeMethod* method) ;
// System.Void System.Func`4<UnityEngine.InputSystem.InputControl,System.Double,UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Boolean>::.ctor(System.Object,System.IntPtr)
inline void Func_4__ctor_m6556C926BADAE76C28D39818A7980EC2CF196024 (Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_4__ctor_m2A54891CCBC7DDDF0FEC2524D81F59613A51DF93_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputStateHistory::set_onShouldRecordStateChange(System.Func`4<UnityEngine.InputSystem.InputControl,System.Double,UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Boolean>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputStateHistory_set_onShouldRecordStateChange_m4553C7A82A01BE25B5F1D0D2567B70FCE375F30E_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputStateHistory::set_updateMask(UnityEngine.InputSystem.LowLevel.InputUpdateType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateHistory_set_updateMask_m5059363750CB5899C77D67BD05419563F703A3F7 (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputStateHistory::StartRecording()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateHistory_StartRecording_mF4D22DFFB38256D8C147A098282110A961D7030C (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.Controls.TouchControl::get_isInProgress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchControl_get_isInProgress_m453C4D3C5AD0AEE956EDFC6B54E452C3D61100F0 (TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* __this, const RuntimeMethod* method) ;
// TValue UnityEngine.InputSystem.InputControl`1<UnityEngine.InputSystem.LowLevel.TouchState>::ReadValue()
inline TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 InputControl_1_ReadValue_m360BE6DCDE6FE778516FC63F909BC88CA1D8A484 (InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3* __this, const RuntimeMethod* method)
{
return (( TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 (*) (InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3*, const RuntimeMethod*))InputControl_1_ReadValue_m360BE6DCDE6FE778516FC63F909BC88CA1D8A484_gshared)(__this, method);
}
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<TValue> UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState>::RecordStateChange(UnityEngine.InputSystem.InputControl`1<TValue>,TValue,System.Double)
inline Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 InputStateHistory_1_RecordStateChange_mD873C4A092DA5D5E86088B221B90A4B5B05F5840 (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3* ___control0, TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 ___value1, double ___time2, const RuntimeMethod* method)
{
return (( Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 (*) (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*, InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3*, TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97, double, const RuntimeMethod*))InputStateHistory_1_RecordStateChange_mD873C4A092DA5D5E86088B221B90A4B5B05F5840_gshared)(__this, ___control0, ___value1, ___time2, method);
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::get_valid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// System.Void* UnityEngine.InputSystem.InputControl::get_currentStatePtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* InputControl_get_currentStatePtr_m77D2900EEE4AAB505C98292AF8538DDCF44F8C3C (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputStateBlock UnityEngine.InputSystem.InputControl::get_stateBlock()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 InputControl_get_stateBlock_mCAE31879EDC6621B35B368B4916219D30EAA0B0B_inline (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, const RuntimeMethod* method) ;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::get_byteOffset()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_byteOffset_m6EADE5C9C8B346D38E543E38777ED67ED2AEA0AC_inline (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_isTapRelease()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isTapRelease_m2330F3A5BFF42425B21423B2257619666A05CE7D (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory/Record::get_recordIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Record_get_recordIndex_m58EE017D7611A35971E68B5B5A4A7802F79920A1 (Record_tF7FF07DC502355356B48CE78337FB16B196E2EE0* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader* UnityEngine.InputSystem.LowLevel.InputStateHistory::GetRecordUnchecked(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* InputStateHistory_GetRecordUnchecked_m569EB10E4D93B81BEA6699746C15C720F48E42F6 (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Byte* UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader::get_statePtrWithoutControlIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* RecordHeader_get_statePtrWithoutControlIndex_m06FC191CB4801F442A0B972DA23B48ECE629922C (RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory::get_bytesPerRecord()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputStateHistory_get_bytesPerRecord_mAF516CE1E45E3EBA46EDFFF2923908D6B672D114 (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.TouchPhase UnityEngine.InputSystem.LowLevel.TouchState::get_phase()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory::get_historyDepth()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputStateHistory_get_historyDepth_mBAFA4592E170099C0E8BB360B148A854517AA561_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.Vector2::op_Subtraction(UnityEngine.Vector2,UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Subtraction_m664419831773D5BBF06D9DE4E515F6409B2F92B8_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___b1, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_beganInSameFrame()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_beganInSameFrame_mC72ACA3EBA9BE5426C6B19ED7130F7A1CE177320 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.TouchState::set_beganInSameFrame(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_beganInSameFrame_m46F1C71775E825310242C59E608D5F20908A8D39 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.DelegateHelpers::InvokeCallbacksSafe<UnityEngine.InputSystem.EnhancedTouch.Finger>(UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`1<TValue>>&,TValue,System.String,System.Object)
inline void DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m4153D51E2445D2C899F268C65D1C858A092C7206 (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* ___callbacks0, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___argument1, String_t* ___callbackName2, RuntimeObject* ___context3, const RuntimeMethod* method)
{
(( void (*) (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B*, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A*, String_t*, RuntimeObject*, const RuntimeMethod*))DelegateHelpers_InvokeCallbacksSafe_TisRuntimeObject_mBD945A94E90504C3D91B5372714E5E1EE95F35CB_gshared)(___callbacks0, ___argument1, ___callbackName2, ___context3, method);
}
// System.Collections.Generic.IEnumerator`1<UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<TValue>> UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState>::GetEnumerator()
inline RuntimeObject* InputStateHistory_1_GetEnumerator_m7589AE5E798BAFF50EF3C3BC3539FFDFF5DFCF59 (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*, const RuntimeMethod*))InputStateHistory_1_GetEnumerator_m7589AE5E798BAFF50EF3C3BC3539FFDFF5DFCF59_gshared)(__this, method);
}
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::GetUnsafeExtraMemoryPtrUnchecked()
inline void* Record_GetUnsafeExtraMemoryPtrUnchecked_m43B2E6AC3AF2307D2DDF2C92E90A629666277F66 (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
{
return (( void* (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_GetUnsafeExtraMemoryPtrUnchecked_m43B2E6AC3AF2307D2DDF2C92E90A629666277F66_gshared)(__this, method);
}
// UnityEngine.InputSystem.EnhancedTouch.Finger UnityEngine.InputSystem.EnhancedTouch.Touch::get_finger()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* Touch_get_finger_m414E1AF302CAC737C934AF1FB24FC869873B8420_inline (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.Debug::Assert(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Assert_mC95931BE797761A2D7800908C0BA4B41D68B3216 (bool ___condition0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1<TValue> UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::get_owner()
inline InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* Record_get_owner_mE1A451C654D70DF2754170FA45A6A19AD3483471_inline (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
{
return (( InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_get_owner_mE1A451C654D70DF2754170FA45A6A19AD3483471_gshared_inline)(__this, method);
}
// System.UInt32 UnityEngine.InputSystem.EnhancedTouch.Touch::get_uniqueId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Touch_get_uniqueId_m2B7B006E32B62D82346541BCBDACE83EC98D4AF0 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.EnhancedTouch.Touch UnityEngine.InputSystem.EnhancedTouch.Finger::FindTouch(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 Finger_FindTouch_m1A910BF69B21B5D02A79698B5590C2706FE601B3 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, uint32_t ___uniqueId0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Touch::get_touchId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_touchId_m497B1531A3C206C36EBDA56C54CCF91D90AB3F8F (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::get_index()
inline int32_t Record_get_index_m8BF5DBF4C267EED76E3802B249F2856F29DAD8A6 (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_get_index_m8BF5DBF4C267EED76E3802B249F2856F29DAD8A6_gshared)(__this, method);
}
// UnityEngine.InputSystem.TouchPhase UnityEngine.InputSystem.EnhancedTouch.Touch::get_phase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<TValue> UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::get_previous()
inline Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
{
return (( Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F_gshared)(__this, method);
}
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::GetUnsafeMemoryPtr()
inline void* Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069 (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
{
return (( void* (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069_gshared)(__this, method);
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::get_valid()
inline bool Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
{
return (( bool (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C_gshared)(__this, method);
}
// UnityEngine.InputSystem.LowLevel.TouchState& UnityEngine.InputSystem.EnhancedTouch.Touch::get_state()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch::get_began()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_began_m592AA9F7AE5ED0AA23C971BD90703F1BBFD778C6 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch::get_inProgress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_inProgress_m6CF6BD1C7AFE8099AD35393829264FDE0C723CAA (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch::get_ended()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_ended_m96B6BBDF371E26C6AE4B89CB7F89861D6B0C462F (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// System.Single UnityEngine.InputSystem.EnhancedTouch.Touch::get_pressure()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Touch_get_pressure_mDA228CAA389D14F6139507A304A97FE07EAE9DD3 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.InputSystem.EnhancedTouch.Touch::get_radius()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_radius_m8FCEEC69D77C94A4D8CBA662E5514AD7D894E8F4 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// System.Double UnityEngine.InputSystem.EnhancedTouch.Touch::get_startTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Touch_get_startTime_m9778C4C818DD69BAC47D10B7567233E5316264CB (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// System.Double UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::get_time()
inline double Record_get_time_m5976C10C2C3A2A2089D57F1DF9AE5557C10DF47E (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
{
return (( double (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_get_time_m5976C10C2C3A2A2089D57F1DF9AE5557C10DF47E_gshared)(__this, method);
}
// System.Double UnityEngine.InputSystem.EnhancedTouch.Touch::get_time()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Touch_get_time_m1E3EA9FB3DF10246B7BBF100663BAA3030714F17 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Touchscreen UnityEngine.InputSystem.EnhancedTouch.Finger::get_screen()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* Finger_get_screen_mBA2D1364604CB55F7386EFB844B12B7CFA7EE744_inline (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Touchscreen UnityEngine.InputSystem.EnhancedTouch.Touch::get_screen()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* Touch_get_screen_m88071A10D5E186573E2694E47DD660AC4FAD2E00 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.InputSystem.EnhancedTouch.Touch::get_startScreenPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_startScreenPosition_mAF62C4C8C812B9E36855A6CB63B8493F8ED3E0C7 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.InputSystem.EnhancedTouch.Touch::get_delta()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_delta_m845008E2AF42561313DA002985D85150329B9BCC (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Touch::get_tapCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_tapCount_m06A6261A941A678FAA29419D7B8F07B16EF07F75 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_isTap()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isTap_m6C2D3CC78A3AA9705CBFD2A9E817FCFD8AB25EFB (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch::get_isTap()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_isTap_m48E7409F15259BE6D04C66ADDA71F6037E4AD4B3 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.EnhancedTouch.Touch/ExtraDataPerTouchState& UnityEngine.InputSystem.EnhancedTouch.Touch::get_extraData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* Touch_get_extraData_mF845BF57832677EEEB41E5BF0E0F732D4D11D686 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::GetUnsafeExtraMemoryPtr()
inline void* Record_GetUnsafeExtraMemoryPtr_mF305A3D8857DFF297E9FB6573684E4B9BF82022C (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
{
return (( void* (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_GetUnsafeExtraMemoryPtr_mF305A3D8857DFF297E9FB6573684E4B9BF82022C_gshared)(__this, method);
}
// UnityEngine.InputSystem.EnhancedTouch.TouchHistory UnityEngine.InputSystem.EnhancedTouch.Finger::GetTouchHistory(UnityEngine.InputSystem.EnhancedTouch.Touch)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 Finger_GetTouchHistory_m8A13B55D4B1B1B77F1262B46F73A603A33E5D80C (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 ___touch0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.EnhancedTouch.TouchHistory UnityEngine.InputSystem.EnhancedTouch.Touch::get_history()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 Touch_get_history_m1B049B5EB482493F9CFE5B260DACEAE9B0119BB6 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::CheckEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_CheckEnabled_m3FC2364507836124CB8E289D66CA0B2CF3F8B10C (const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::UpdateActiveTouches()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_UpdateActiveTouches_m48D632ECA4B568270B458D9CED54AC591FBFBF43 (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.EnhancedTouch.Touch>::.ctor(TValue[],System.Int32,System.Int32)
inline void ReadOnlyArray_1__ctor_m9C297EC68F90BE1CBFDC80B0D94420BF2B905455 (ReadOnlyArray_1_t3D5F71F2FAC15E8E7413E1B4BDCCA92D49962E72* __this, TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
(( void (*) (ReadOnlyArray_1_t3D5F71F2FAC15E8E7413E1B4BDCCA92D49962E72*, TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354*, int32_t, int32_t, const RuntimeMethod*))ReadOnlyArray_1__ctor_m9C297EC68F90BE1CBFDC80B0D94420BF2B905455_gshared)(__this, ___array0, ___index1, ___length2, method);
}
// System.Void UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.EnhancedTouch.Finger>::.ctor(TValue[],System.Int32,System.Int32)
inline void ReadOnlyArray_1__ctor_m5CD4C576598DB61EBF1B99DFD3900020A951738F (ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36* __this, FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
(( void (*) (ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36*, FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F*, int32_t, int32_t, const RuntimeMethod*))ReadOnlyArray_1__ctor_m2C5D5E2909635889EDB94C381385ED5D6128612F_gshared)(__this, ___array0, ___index1, ___length2, method);
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::UpdateActiveFingers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_UpdateActiveFingers_m21F725BF5EC6E4953C44FFBA63F4C7ABFA0FBE49 (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>>::AddCallback(TDelegate)
inline void CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22 (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* __this, Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___dlg0, const RuntimeMethod* method)
{
(( void (*) (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B*, Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B*, const RuntimeMethod*))CallbackArray_1_AddCallback_mB86EC6413C0AB2C12A88FA8141E3ACDA83DA2C6D_gshared)(__this, ___dlg0, method);
}
// System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>>::RemoveCallback(TDelegate)
inline void CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87 (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* __this, Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___dlg0, const RuntimeMethod* method)
{
(( void (*) (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B*, Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B*, const RuntimeMethod*))CallbackArray_1_RemoveCallback_mDEEFD791C9654F4EE7C2586BD7DED83F74D897B2_gshared)(__this, ___dlg0, method);
}
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Finger::get_index()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Finger_get_index_mB409A9B5711767D3A6046AEAA4931A0B3633934C_inline (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method) ;
// System.String System.String::Format(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m74FC0A1259DFA02F3DF6538FC7F3ACF3E1AF0C55 (String_t* ___format0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.EnhancedTouch.Touch::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Touch_ToString_m641EEB738A7722EE7A2F90630BB3A5A1880F3B2F (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// System.Boolean System.Object::Equals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_Equals_mF52C7AEB4AA9F136C3EA31AE3C1FD200B831B3D1 (RuntimeObject* ___objA0, RuntimeObject* ___objB1, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::Equals(UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<TValue>)
inline bool Record_Equals_m17C216CDC45654F53F8191093F3404478DB16B69 (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 ___other0, const RuntimeMethod* method)
{
return (( bool (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4, const RuntimeMethod*))Record_Equals_m17C216CDC45654F53F8191093F3404478DB16B69_gshared)(__this, ___other0, method);
}
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch::Equals(UnityEngine.InputSystem.EnhancedTouch.Touch)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_Equals_m5A9195C1D656529EFF984AD9060ECA7257ACFDC4 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 ___other0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_Equals_mA91A1937A740538D62AF4998D332AAB464B47E1E (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::GetHashCode()
inline int32_t Record_GetHashCode_m94F8E34331A3B0253C5448B7E9B23BFE0F1B04A8 (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_GetHashCode_m94F8E34331A3B0253C5448B7E9B23BFE0F1B04A8_gshared)(__this, method);
}
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Touch::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_GetHashCode_m73B534C7CAA38FE313674A0133B66431E7DF233A (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.Utilities.InputArrayExtensions::ContainsReference<UnityEngine.InputSystem.Touchscreen>(UnityEngine.InputSystem.Utilities.InlinedArray`1<TValue>,TValue)
inline bool InputArrayExtensions_ContainsReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m2B94D6633F1987FDAE5DA91FFFA304203910D13D (InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 ___array0, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___value1, const RuntimeMethod* method)
{
return (( bool (*) (InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*, const RuntimeMethod*))InputArrayExtensions_ContainsReference_TisRuntimeObject_m3ACEAB66FE80649889EEDD31E80882720C55B6C5_gshared)(___array0, ___value1, method);
}
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.Touchscreen>::AppendWithCapacity(TValue,System.Int32)
inline int32_t InlinedArray_1_AppendWithCapacity_m4D609EB991E007436EB5BFA3784373529E098771 (InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___value0, int32_t ___capacityIncrement1, const RuntimeMethod* method)
{
return (( int32_t (*) (InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3*, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*, int32_t, const RuntimeMethod*))InlinedArray_1_AppendWithCapacity_m9862A91090391A77B2DCC2428616248FC176C180_gshared)(__this, ___value0, ___capacityIncrement1, method);
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::AddFingers(UnityEngine.InputSystem.Touchscreen)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_AddFingers_m6A1B4053B31CEFE25B8F1DA4CE10312134F15888 (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___screen0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.InputArrayExtensions::IndexOfReference<UnityEngine.InputSystem.Touchscreen>(UnityEngine.InputSystem.Utilities.InlinedArray`1<TValue>,TValue)
inline int32_t InputArrayExtensions_IndexOfReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m7AEB481A05BC589B8BDC49DF286A77491A2ABE8D (InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 ___array0, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___value1, const RuntimeMethod* method)
{
return (( int32_t (*) (InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*, const RuntimeMethod*))InputArrayExtensions_IndexOfReference_TisRuntimeObject_m2AD328E9127CDAE7CD18763468F70348E0DC9181_gshared)(___array0, ___value1, method);
}
// System.Void UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.Touchscreen>::RemoveAtWithCapacity(System.Int32)
inline void InlinedArray_1_RemoveAtWithCapacity_mB93190E8A814A079EA1D711D1CE53DA0953D325D (InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3*, int32_t, const RuntimeMethod*))InlinedArray_1_RemoveAtWithCapacity_mE12D4976DF40F114BA2B56DE9EA9C66F248F466C_gshared)(__this, ___index0, method);
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::RemoveFingers(UnityEngine.InputSystem.Touchscreen)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_RemoveFingers_m04B1A6EE0792D7E9BF46E26950D2B15931BE8F99 (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___screen0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.SavedStructState`1/TypedRestore<UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState>::.ctor(System.Object,System.IntPtr)
inline void TypedRestore__ctor_mA8D10118E8FDB2DDFBF5EC33A5A7183E01348EAE (TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021*, RuntimeObject*, intptr_t, const RuntimeMethod*))TypedRestore__ctor_mA8D10118E8FDB2DDFBF5EC33A5A7183E01348EAE_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.InputSystem.Utilities.SavedStructState`1<UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState>::.ctor(T&,UnityEngine.InputSystem.Utilities.SavedStructState`1/TypedRestore<T>,System.Action)
inline void SavedStructState_1__ctor_m3C152C71C4CF020B00FFFDB88B7A667A8192389B (SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B* __this, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A* ___state0, TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* ___restoreAction1, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___staticDisposeCurrentState2, const RuntimeMethod* method)
{
(( void (*) (SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B*, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A*, TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))SavedStructState_1__ctor_m3C152C71C4CF020B00FFFDB88B7A667A8192389B_gshared)(__this, ___state0, ___restoreAction1, ___staticDisposeCurrentState2, method);
}
// UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState UnityEngine.InputSystem.EnhancedTouch.Touch::CreateGlobalState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A Touch_CreateGlobalState_m77947D40BFC8B8FC12799B716EC970A21B004F74 (const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.Controls.TouchControl>::get_Count()
inline int32_t ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_inline (ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E*, const RuntimeMethod*))ReadOnlyArray_1_get_Count_m37AE229E2BFB74375A7BD545982B745F982762F8_gshared_inline)(__this, method);
}
// System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EnsureCapacity<UnityEngine.InputSystem.EnhancedTouch.Finger>(TValue[]&,System.Int32,System.Int32,System.Int32)
inline void ArrayHelpers_EnsureCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m971DE1F66935BC99FA38DD3DA860BD52628087A1 (FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F** ___array0, int32_t ___count1, int32_t ___capacity2, int32_t ___capacityIncrement3, const RuntimeMethod* method)
{
(( void (*) (FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F**, int32_t, int32_t, int32_t, const RuntimeMethod*))ArrayHelpers_EnsureCapacity_TisRuntimeObject_mC9F24EFE64BC40F5812BE63FA90136AE9E4F3F28_gshared)(___array0, ___count1, ___capacity2, ___capacityIncrement3, method);
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Finger::.ctor(UnityEngine.InputSystem.Touchscreen,System.Int32,UnityEngine.InputSystem.LowLevel.InputUpdateType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Finger__ctor_m9D9ED2014F12F2FA245E5C04043F02D16B296505 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___screen0, int32_t ___index1, int32_t ___updateMask2, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::AppendWithCapacity<UnityEngine.InputSystem.EnhancedTouch.Finger>(TValue[]&,System.Int32&,TValue,System.Int32)
inline int32_t ArrayHelpers_AppendWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mA0F243DCF6B46AF4F8BF3C2129CC386433A13ECC (FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F** ___array0, int32_t* ___count1, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___value2, int32_t ___capacityIncrement3, const RuntimeMethod* method)
{
return (( int32_t (*) (FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F**, int32_t*, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A*, int32_t, const RuntimeMethod*))ArrayHelpers_AppendWithCapacity_TisRuntimeObject_m19BAAE7AED4E89978DEEE09ABC0C60F705B0C01E_gshared)(___array0, ___count1, ___value2, ___capacityIncrement3, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputStateHistory::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateHistory_Dispose_m7DD7D063D0D205BB33BBCBA682F7BB98884CCE15 (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EraseSliceWithCapacity<UnityEngine.InputSystem.EnhancedTouch.Finger>(TValue[]&,System.Int32&,System.Int32,System.Int32)
inline void ArrayHelpers_EraseSliceWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m349F0F46D2A4FAC0A03FEAB5730B615633E0FDE4 (FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F** ___array0, int32_t* ___length1, int32_t ___index2, int32_t ___count3, const RuntimeMethod* method)
{
(( void (*) (FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F**, int32_t*, int32_t, int32_t, const RuntimeMethod*))ArrayHelpers_EraseSliceWithCapacity_TisRuntimeObject_m1BAF231F10A3874157A421B4591F5766F60AF3E7_gshared)(___array0, ___length1, ___index2, ___count3, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState>::.ctor(System.Nullable`1<System.Int32>)
inline void InputStateHistory_1__ctor_m760ABD5FDD38AF6C3FF42B641B3FC8383E4A91DB (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___maxStateSizeInBytes0, const RuntimeMethod* method)
{
(( void (*) (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28, const RuntimeMethod*))InputStateHistory_1__ctor_m760ABD5FDD38AF6C3FF42B641B3FC8383E4A91DB_gshared)(__this, ___maxStateSizeInBytes0, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputStateHistory::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateHistory_Clear_m7B9A241840171E7224D0A01969F36CF294D227F3 (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::Clear<UnityEngine.InputSystem.InputControl>(TValue[])
inline void ArrayHelpers_Clear_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_m7D9C926B759FBD5D6ED532FC4C0E82C39B00A223 (InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___array0, const RuntimeMethod* method)
{
(( void (*) (InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17*, const RuntimeMethod*))ArrayHelpers_Clear_TisRuntimeObject_mF57508CDC3BFB8C60A7F92A012CB8270FE1E2B6A_gshared)(___array0, method);
}
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory::UserIndexToRecordIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputStateHistory_UserIndexToRecordIndex_m81D4D6EE19ED80607BAAA31F3159168AC3B5B678 (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory::get_extraMemoryPerRecord()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputStateHistory_get_extraMemoryPerRecord_m4E4C9D89BC37B9CD7E6AFFD58D95A9030F92E653_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.InputExtensions::IsEndedOrCanceled(UnityEngine.InputSystem.TouchPhase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputExtensions_IsEndedOrCanceled_m125C963DFE3F2D378F914029AC3E602CB14E2AAB (int32_t ___phase0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.TouchState::set_phase(UnityEngine.InputSystem.TouchPhase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_phase_mCC48A355F50B41E745BDCE383BD083A69BD8644A (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, int32_t ___value0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader* UnityEngine.InputSystem.LowLevel.InputStateHistory::AllocateRecord(System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* InputStateHistory_AllocateRecord_mAD0E7626ECD9E937BBD46B8E84DEE7E247A8B707 (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, int32_t* ___index0, const RuntimeMethod* method) ;
// System.Byte* UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader::get_statePtrWithControlIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* RecordHeader_get_statePtrWithControlIndex_m68BBA8402AF00318B40229E5121F9C5132A3B655 (RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.InputControl> UnityEngine.InputSystem.LowLevel.InputStateHistory::get_controls()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_tA1DF7A256AD2BF17FB155224CB2611ED215EFCD3 InputStateHistory_get_controls_m2B1056A5B21F2A8CFAAEE9136E24D27C4BFF31CC (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
// TValue UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.InputControl>::get_Item(System.Int32)
inline InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ReadOnlyArray_1_get_Item_mF7217A9697E8EAA3A574FCDCB611597EC9C1836A (ReadOnlyArray_1_tA1DF7A256AD2BF17FB155224CB2611ED215EFCD3* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* (*) (ReadOnlyArray_1_tA1DF7A256AD2BF17FB155224CB2611ED215EFCD3*, int32_t, const RuntimeMethod*))ReadOnlyArray_1_get_Item_m20907EA946F72D55FC8BD8031EA4F9BF13AE164D_gshared)(__this, ___index0, method);
}
// System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::AppendWithCapacity<UnityEngine.InputSystem.InputControl>(TValue[]&,System.Int32&,TValue,System.Int32)
inline int32_t ArrayHelpers_AppendWithCapacity_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_mC5BF2128B73357928D460A8F53B4AEEE75704DEB (InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17** ___array0, int32_t* ___count1, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___value2, int32_t ___capacityIncrement3, const RuntimeMethod* method)
{
return (( int32_t (*) (InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17**, int32_t*, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E*, int32_t, const RuntimeMethod*))ArrayHelpers_AppendWithCapacity_TisRuntimeObject_m19BAAE7AED4E89978DEEE09ABC0C60F705B0C01E_gshared)(___array0, ___count1, ___value2, ___capacityIncrement3, method);
}
// System.Int32 Unity.Collections.LowLevel.Unsafe.UnsafeUtility::SizeOf<UnityEngine.InputSystem.LowLevel.TouchState>()
inline int32_t UnsafeUtility_SizeOf_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_m69FCD3C12AF3FB3E4C75D033E34648DED186489F (const RuntimeMethod* method)
{
return (( int32_t (*) (const RuntimeMethod*))UnsafeUtility_SizeOf_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_m69FCD3C12AF3FB3E4C75D033E34648DED186489F_gshared)(method);
}
// System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::MemCpy(System.Void*,System.Void*,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeUtility_MemCpy_m019E657B952C27F705607F0F3D371EEE526B716B (void* ___destination0, void* ___source1, int64_t ___size2, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>::.ctor(UnityEngine.InputSystem.LowLevel.InputStateHistory`1<TValue>,System.Int32,UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader*)
inline void Record__ctor_m1CACECB022FDAACE6482C208E6552F7614445895 (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___owner0, int32_t ___index1, RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* ___header2, const RuntimeMethod* method)
{
(( void (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*, int32_t, RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*, const RuntimeMethod*))Record__ctor_m1CACECB022FDAACE6482C208E6552F7614445895_gshared)(__this, ___owner0, ___index1, ___header2, method);
}
// System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::InsertAtWithCapacity<UnityEngine.InputSystem.EnhancedTouch.Touch>(TValue[]&,System.Int32&,System.Int32,TValue,System.Int32)
inline void ArrayHelpers_InsertAtWithCapacity_TisTouch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_m96BFF397234C618FAA34CAA72DE6AD4F4113819B (TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354** ___array0, int32_t* ___count1, int32_t ___index2, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 ___value3, int32_t ___capacityIncrement4, const RuntimeMethod* method)
{
(( void (*) (TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354**, int32_t*, int32_t, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70, int32_t, const RuntimeMethod*))ArrayHelpers_InsertAtWithCapacity_TisTouch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_m96BFF397234C618FAA34CAA72DE6AD4F4113819B_gshared)(___array0, ___count1, ___index2, ___value3, ___capacityIncrement4, method);
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mE31C1F868AE383042EB223A7961315337C794275 (U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6* __this, const RuntimeMethod* method) ;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateHistory::get_version()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateHistory_get_version_m89DDB085F1210A84797C85822792F5FBF73C25F0_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchHistory/Enumerator::.ctor(UnityEngine.InputSystem.EnhancedTouch.TouchHistory)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m74864CB6B9CA6B01970FD5A8A88A9F68A00C6D72 (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* __this, TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 ___owner0, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerator`1<UnityEngine.InputSystem.EnhancedTouch.Touch> UnityEngine.InputSystem.EnhancedTouch.TouchHistory::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TouchHistory_GetEnumerator_mA49607C32F33B1D33F460C0E3882161F18001B7E (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method) ;
// System.Collections.IEnumerator UnityEngine.InputSystem.EnhancedTouch.TouchHistory::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TouchHistory_System_Collections_IEnumerable_GetEnumerator_m4337DC86FF76C3ACE3E301937F383D911A8D20C5 (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.TouchHistory::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TouchHistory_get_Count_mDEFAFCC5D44BE56B17E0949448CE3C48E9DC3277_inline (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchHistory::CheckValid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchHistory_CheckValid_m16A4AC2BB2AA62C738B2A9F916002454F83C2038 (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method) ;
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.EnhancedTouch.Touch UnityEngine.InputSystem.EnhancedTouch.TouchHistory::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 TouchHistory_get_Item_m2CF5BFE3F5263F361E7CBFD083E7449DA4F42BBF (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, int32_t ___index0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.EnhancedTouch.Touch UnityEngine.InputSystem.EnhancedTouch.TouchHistory/Enumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 Enumerator_get_Current_m063D55945EB78459BBDCE1AF96021395F5E873A6 (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.EnhancedTouch.TouchSimulation UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::get_instance()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* TouchSimulation_get_instance_m709E6C7D760D03ABF44C3CA7AB6CD38B70145C85_inline (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___x0, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___y1, const RuntimeMethod* method) ;
// System.Void UnityEngine.GameObject::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject__ctor_m7D0340DE160786E6EFA8DABD39EC3B694DA30AAD (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.GameObject::SetActive(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.Object::set_hideFlags(UnityEngine.HideFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_set_hideFlags_mACB8BFC903FB3B01BBD427753E791BF28B5E33D4 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* __this, int32_t ___value0, const RuntimeMethod* method) ;
// T UnityEngine.GameObject::AddComponent<UnityEngine.InputSystem.EnhancedTouch.TouchSimulation>()
inline TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* GameObject_AddComponent_TisTouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_m3332B854D47D58542E9A5D19442054BDFC92FD85 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method)
{
return (( TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))GameObject_AddComponent_TisRuntimeObject_m69B93700FACCF372F5753371C6E8FB780800B824_gshared)(__this, method);
}
// UnityEngine.GameObject UnityEngine.Component::get_gameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.Behaviour::set_enabled(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Behaviour_set_enabled_mF1DCFE60EB09E0529FE9476CA804A3AA2D72B16A (Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___x0, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___y1, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::Disable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_Disable_m66EC1AE8ECDFFBDF6E929D164A1A1C58E3307557 (const RuntimeMethod* method) ;
// System.Void UnityEngine.Object::Destroy(UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Destroy_mFCDAE6333522488F60597AF019EA90BB1207A5AA (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___obj0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.Utilities.ArrayHelpers::ContainsReference<UnityEngine.InputSystem.Pointer,UnityEngine.InputSystem.Pointer>(TFirst[],System.Int32,TSecond)
inline bool ArrayHelpers_ContainsReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m8EB37E781A7A5D954305A6264CC1CBC77CFE01E6 (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* ___array0, int32_t ___count1, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* ___value2, const RuntimeMethod* method)
{
return (( bool (*) (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5*, int32_t, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A*, const RuntimeMethod*))ArrayHelpers_ContainsReference_TisRuntimeObject_TisRuntimeObject_mC2DDC1925FD740225C65414FD19F7F925C9D533A_gshared)(___array0, ___count1, ___value2, method);
}
// System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::AppendWithCapacity<UnityEngine.InputSystem.Pointer>(TValue[]&,System.Int32&,TValue,System.Int32)
inline int32_t ArrayHelpers_AppendWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m3E7EA1BC4C9A50C286CED7589BFB84378410F71E (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5** ___array0, int32_t* ___count1, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* ___value2, int32_t ___capacityIncrement3, const RuntimeMethod* method)
{
return (( int32_t (*) (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5**, int32_t*, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A*, int32_t, const RuntimeMethod*))ArrayHelpers_AppendWithCapacity_TisRuntimeObject_m19BAAE7AED4E89978DEEE09ABC0C60F705B0C01E_gshared)(___array0, ___count1, ___value2, ___capacityIncrement3, method);
}
// System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::AppendWithCapacity<UnityEngine.Vector2>(TValue[]&,System.Int32&,TValue,System.Int32)
inline int32_t ArrayHelpers_AppendWithCapacity_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m68E6FD9C5D608130BCBB593660420B8C744A7459 (Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA** ___array0, int32_t* ___count1, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value2, int32_t ___capacityIncrement3, const RuntimeMethod* method)
{
return (( int32_t (*) (Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA**, int32_t*, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t, const RuntimeMethod*))ArrayHelpers_AppendWithCapacity_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m68E6FD9C5D608130BCBB593660420B8C744A7459_gshared)(___array0, ___count1, ___value2, ___capacityIncrement3, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::DisableDevice(UnityEngine.InputSystem.InputDevice,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_DisableDevice_mCF493689C4A216291F0D9CD387A30733BF266167 (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, bool ___keepSendingEvents1, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::IndexOfReference<UnityEngine.InputSystem.Pointer,UnityEngine.InputSystem.Pointer>(TFirst[],TSecond,System.Int32)
inline int32_t ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_mA905115B7F581BBE35AF535DCE9A0AC2F53F5EF5 (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* ___array0, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* ___value1, int32_t ___count2, const RuntimeMethod* method)
{
return (( int32_t (*) (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5*, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A*, int32_t, const RuntimeMethod*))ArrayHelpers_IndexOfReference_TisRuntimeObject_TisRuntimeObject_m535F7C167C2FB8369A26267BF3D4454FBC57E4B4_gshared)(___array0, ___value1, ___count2, method);
}
// UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputControl::get_device()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* InputControl_get_device_mAB3E013F566CF3407B8C36BC781EBD751DFAB324_inline (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::UpdateTouch(System.Int32,System.Int32,UnityEngine.InputSystem.TouchPhase,UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_UpdateTouch_mFC046EBC56223C3DAED35D7BB52C39C1B11450CE (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, int32_t ___touchIndex0, int32_t ___pointerIndex1, int32_t ___phase2, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___eventPtr3, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EraseAtWithCapacity<UnityEngine.InputSystem.Pointer>(TValue[],System.Int32&,System.Int32)
inline void ArrayHelpers_EraseAtWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m2179F91C32ADB02EDFAD572124793CE03CD33447 (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* ___array0, int32_t* ___count1, int32_t ___index2, const RuntimeMethod* method)
{
(( void (*) (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5*, int32_t*, int32_t, const RuntimeMethod*))ArrayHelpers_EraseAtWithCapacity_TisRuntimeObject_m31C5903A40AF94CC05C2609206AD1727A4A128B5_gshared)(___array0, ___count1, ___index2, method);
}
// System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EraseAtWithCapacity<UnityEngine.Vector2>(TValue[],System.Int32&,System.Int32)
inline void ArrayHelpers_EraseAtWithCapacity_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m89DBB1BBEAA8E9BDFB918291668D52A0FB6B971E (Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* ___array0, int32_t* ___count1, int32_t ___index2, const RuntimeMethod* method)
{
(( void (*) (Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA*, int32_t*, int32_t, const RuntimeMethod*))ArrayHelpers_EraseAtWithCapacity_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m89DBB1BBEAA8E9BDFB918291668D52A0FB6B971E_gshared)(___array0, ___count1, ___index2, method);
}
// System.Boolean UnityEngine.InputSystem.InputDevice::get_added()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_get_added_m27CF78B0777E142AAF9139ABFD88F67BBAABA15C (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputSystem::EnableDevice(UnityEngine.InputSystem.InputDevice)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_EnableDevice_mCC281C30B26FC810ED36637A7A0040D2842350F3 (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::IndexOfReference<UnityEngine.InputSystem.Pointer,UnityEngine.InputSystem.InputDevice>(TFirst[],TSecond,System.Int32)
inline int32_t ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisInputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B_m7E90E70DE1BE6505096E9B1FE7E8E4B72C0EAB61 (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* ___array0, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___value1, int32_t ___count2, const RuntimeMethod* method)
{
return (( int32_t (*) (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5*, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*, int32_t, const RuntimeMethod*))ArrayHelpers_IndexOfReference_TisRuntimeObject_TisRuntimeObject_m535F7C167C2FB8369A26267BF3D4454FBC57E4B4_gshared)(___array0, ___value1, ___count2, method);
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventPtr::get_type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.Utilities.FourCC::op_Implicit(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED FourCC_op_Implicit_mE034DF02D6986EFBFA80055EC94936D958CBEF66 (int32_t ___i0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.Utilities.FourCC::op_Inequality(UnityEngine.InputSystem.Utilities.FourCC,UnityEngine.InputSystem.Utilities.FourCC)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FourCC_op_Inequality_mD7122B2F4332BFE2AA18A50FC62C071E8CB7FDB2 (FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___left0, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___right1, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Pointer::get_position()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* Pointer_get_position_m4286004169788483EEDA6AF833CEFDB04FEDF3D8_inline (Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* __this, const RuntimeMethod* method) ;
// System.Void* UnityEngine.InputSystem.InputControlExtensions::GetStatePtrFromStateEventUnchecked(UnityEngine.InputSystem.InputControl,UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.Utilities.FourCC)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* InputControlExtensions_GetStatePtrFromStateEventUnchecked_m55CB68F641C5CA778AAEC813075F7907013C31C6 (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control0, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___eventPtr1, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___eventType2, const RuntimeMethod* method) ;
// TValue UnityEngine.InputSystem.InputControl`1<UnityEngine.Vector2>::ReadValueFromState(System.Void*)
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 InputControl_1_ReadValueFromState_m90076063D4500290705DBD1D85DA8743D4652C37 (InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66* __this, void* ___statePtr0, const RuntimeMethod* method)
{
return (( Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 (*) (InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66*, void*, const RuntimeMethod*))InputControl_1_ReadValueFromState_m90076063D4500290705DBD1D85DA8743D4652C37_gshared)(__this, ___statePtr0, method);
}
// TValue UnityEngine.InputSystem.InputControl`1<System.Single>::ReadValueFromState(System.Void*)
inline float InputControl_1_ReadValueFromState_m1748B48FE53C7B329B8138F43857E231AC6FC24E (InputControl_1_t7A35A4AF63A7AA94678E000D4F3265A1FD84288A* __this, void* ___statePtr0, const RuntimeMethod* method)
{
return (( float (*) (InputControl_1_t7A35A4AF63A7AA94678E000D4F3265A1FD84288A*, void*, const RuntimeMethod*))InputControl_1_ReadValueFromState_m1748B48FE53C7B329B8138F43857E231AC6FC24E_gshared)(__this, ___statePtr0, method);
}
// UnityEngine.InputSystem.InputControlExtensions/InputEventControlCollection UnityEngine.InputSystem.InputControlExtensions::EnumerateControls(UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputControlExtensions/Enumerate,UnityEngine.InputSystem.InputDevice,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventControlCollection_t63B58F806FC82F1D8E18E88557E8FCC26388F3BE InputControlExtensions_EnumerateControls_m50F1E0C984607480089BECD072A12DB0F3C858E8 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___eventPtr0, int32_t ___flags1, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device2, float ___magnitudeThreshold3, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator UnityEngine.InputSystem.InputControlExtensions/InputEventControlCollection::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB InputEventControlCollection_GetEnumerator_m04011F47500AE715F1268E93152514FBE4209869 (InputEventControlCollection_t63B58F806FC82F1D8E18E88557E8FCC26388F3BE* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventControlEnumerator_Dispose_mE7168656062DFF53F7C09478087ADAA636EA2FAB (InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.InputControl UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* InputEventControlEnumerator_get_Current_mD0540A0B5BE8EC847B80D28B66BA8389A1AF17BB_inline (InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.InputControl::get_isButton()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputControl_get_isButton_m4634F4F40450AA969DA851B73E2A2226239F3BEF (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::IndexOfReference<UnityEngine.InputSystem.Controls.ButtonControl,UnityEngine.InputSystem.InputControl>(TFirst[],TSecond,System.Int32)
inline int32_t ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_m80E0602C0A8BF5D7EFA613CFEA7AF5EED6492EB0 (ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* ___array0, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___value1, int32_t ___count2, const RuntimeMethod* method)
{
return (( int32_t (*) (ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7*, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E*, int32_t, const RuntimeMethod*))ArrayHelpers_IndexOfReference_TisRuntimeObject_TisRuntimeObject_m535F7C167C2FB8369A26267BF3D4454FBC57E4B4_gshared)(___array0, ___value1, ___count2, method);
}
// System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::IndexOfReference<UnityEngine.InputSystem.Controls.ButtonControl,UnityEngine.InputSystem.Controls.ButtonControl>(TFirst[],TSecond,System.Int32)
inline int32_t ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m7F202185A312FF5654544DCE9CF8EBB5CB163760 (ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* ___array0, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value1, int32_t ___count2, const RuntimeMethod* method)
{
return (( int32_t (*) (ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7*, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF*, int32_t, const RuntimeMethod*))ArrayHelpers_IndexOfReference_TisRuntimeObject_TisRuntimeObject_m535F7C167C2FB8369A26267BF3D4454FBC57E4B4_gshared)(___array0, ___value1, ___count2, method);
}
// System.Boolean UnityEngine.InputSystem.InputControlExtensions/InputEventControlEnumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventControlEnumerator_MoveNext_m0A9182DFD78818A01CC3B038519B8B9ACCC55107 (InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_handled(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_handled_m855A75D4B98470B0A814FB8627608595FC9E9EF0 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, bool ___value0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Touchscreen UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::get_simulatedTouchscreen()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::AddPointer(UnityEngine.InputSystem.Pointer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_AddPointer_mAF311DF959277CE67860C36E4650A3EE734194C1 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* ___pointer0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::RemovePointer(UnityEngine.InputSystem.Pointer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_RemovePointer_m787BDB97748ADD4B28C3AFB85304B6A938889B42 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* ___pointer0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputSystem::AddDevice(UnityEngine.InputSystem.InputDevice)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_AddDevice_mF58D6D79B51A54FFAE32C7CBA504EE00ECE18E55 (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputSystem::GetDevice(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* InputSystem_GetDevice_mF0085C3DDC203E8277766C071927C0E353B9427F (String_t* ___nameOrLayout0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::set_simulatedTouchscreen(UnityEngine.InputSystem.Touchscreen)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TouchSimulation_set_simulatedTouchscreen_m59218EBAFC13C1FF0019F59F12378749620C9EEF_inline (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___value0, const RuntimeMethod* method) ;
// TDevice UnityEngine.InputSystem.InputSystem::AddDevice<UnityEngine.InputSystem.Touchscreen>(System.String)
inline Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* InputSystem_AddDevice_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m775D9156EA7C89373C733037CEEDE590B34385CE (String_t* ___name0, const RuntimeMethod* method)
{
return (( Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* (*) (String_t*, const RuntimeMethod*))InputSystem_AddDevice_TisRuntimeObject_m14C010215A2038F4F2CE809FFDD57319F89A30F9_gshared)(___name0, method);
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::OnDeviceChange(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_OnDeviceChange_mBBFFE124D77C484CF2AFC391E9A53C408F4689B7 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, int32_t ___change1, const RuntimeMethod* method) ;
// System.Void System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice>::.ctor(System.Object,System.IntPtr)
inline void Action_2__ctor_m43B5BA62418FAB32773B12CEFF46A46855BF5B10 (Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_2__ctor_mFC80A1D3B6BA1009B9779F59B49347FEEE827FB6_gshared)(__this, ___object0, ___method1, method);
}
// UnityEngine.InputSystem.LowLevel.InputEventListener UnityEngine.InputSystem.InputSystem::get_onEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D InputSystem_get_onEvent_m69B71DB23BBEE4E244701D3A5A42D962C791AD18 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEventListener UnityEngine.InputSystem.LowLevel.InputEventListener::op_Addition(UnityEngine.InputSystem.LowLevel.InputEventListener,System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D InputEventListener_op_Addition_m122B39C12D9ADEDFA730C3B3A0B2530AA23172A2 (InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D ____0, Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___callback1, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputSystem::set_onEvent(UnityEngine.InputSystem.LowLevel.InputEventListener)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_set_onEvent_m6B177A8A8F08BE00B5409F0C3136BE803316A4B5 (InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputSystem::RemoveDevice(UnityEngine.InputSystem.InputDevice)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_RemoveDevice_m41F154CEBE1EB94090D2980BEA684E58799EA8B3 (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::Clear<UnityEngine.InputSystem.Pointer>(TValue[],System.Int32)
inline void ArrayHelpers_Clear_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m75DA9B4408B934504135E39F0169061B763484F1 (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* ___array0, int32_t ___count1, const RuntimeMethod* method)
{
(( void (*) (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5*, int32_t, const RuntimeMethod*))ArrayHelpers_Clear_TisRuntimeObject_mA3CCCA603577D1A7C9B9D32B8968E5D61636335E_gshared)(___array0, ___count1, method);
}
// System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::Clear<UnityEngine.InputSystem.Controls.ButtonControl>(TValue[])
inline void ArrayHelpers_Clear_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m9FD4CFA77DBA7687E309C7E824110DA0601CEA9A (ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* ___array0, const RuntimeMethod* method)
{
(( void (*) (ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7*, const RuntimeMethod*))ArrayHelpers_Clear_TisRuntimeObject_mF57508CDC3BFB8C60A7F92A012CB8270FE1E2B6A_gshared)(___array0, method);
}
// UnityEngine.InputSystem.LowLevel.InputEventListener UnityEngine.InputSystem.LowLevel.InputEventListener::op_Subtraction(UnityEngine.InputSystem.LowLevel.InputEventListener,System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D InputEventListener_op_Subtraction_m64F5559B543948C414AC7A0D3E7BA1FE95743328 (InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D ____0, Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___callback1, const RuntimeMethod* method) ;
// System.Double UnityEngine.InputSystem.LowLevel.InputState::get_currentTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputState_get_currentTime_m5AF6706449C88C5440DD613C83DBC88EC57CC40F (const RuntimeMethod* method) ;
// System.Double UnityEngine.InputSystem.LowLevel.InputEventPtr::get_time()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEventPtr_get_time_mD2C90C66C334E767E2F9B5B9A3711B500027B185 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.TouchState::set_isPrimaryTouch(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isPrimaryTouch_m6BB43521B2EDD8EFD435C5890590A51DE183AAA6 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_isPrimaryTouch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isPrimaryTouch_mC8E83D45028722D5456CB65A19C9DBB2B1DC8615 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
// System.Single UnityEngine.Vector2::get_sqrMagnitude()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.TouchState::set_isTap(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isTap_m31B4AEE4DC8A6CE2174728244C0A1D1539D30B15 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___value0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Controls.TouchControl UnityEngine.InputSystem.Touchscreen::get_primaryTouch()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* Touchscreen_get_primaryTouch_mABAC4C0F1DBA6A718B83682A91DF40FD3563F413_inline (Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputState::Change<UnityEngine.InputSystem.LowLevel.TouchState>(UnityEngine.InputSystem.InputControl,TState,UnityEngine.InputSystem.LowLevel.InputUpdateType,UnityEngine.InputSystem.LowLevel.InputEventPtr)
inline void InputState_Change_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_mEA3F7DC352CCBD2270034CD741750CF21CB93F75 (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control0, TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 ___state1, int32_t ___updateType2, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___eventPtr3, const RuntimeMethod* method)
{
(( void (*) (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E*, TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97, int32_t, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0, const RuntimeMethod*))InputState_Change_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_mEA3F7DC352CCBD2270034CD741750CF21CB93F75_gshared)(___control0, ___state1, ___updateType2, ___eventPtr3, method);
}
// System.Void UnityEngine.MonoBehaviour::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E (MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Gamepad::MakeCurrent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gamepad_MakeCurrent_m78B45631A8F9D2189CDABC3E67C1E849166748BA (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_current(UnityEngine.InputSystem.DualShock.DualShockGamepad)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_current_mBD60E097751CCEB0D6E05FD0F46F43D0AA0A5856_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Gamepad::OnRemoved()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gamepad_OnRemoved_m3B43B26E9BA2751108CFAEAFD9581F2C674EF6AF (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.DualShock.DualShockGamepad UnityEngine.InputSystem.DualShock.DualShockGamepad::get_current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* DualShockGamepad_get_current_m554DD5CB50BDBEABFC161A1EDE8F28B061882C17_inline (const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Gamepad::FinishSetup()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gamepad_FinishSetup_m8D639C19146BC2138F31DCEA1B03BC0B4390DAC7 (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
// TControl UnityEngine.InputSystem.InputControl::GetChildControl<UnityEngine.InputSystem.Controls.ButtonControl>(System.String)
inline ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* InputControl_GetChildControl_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m37B3269440E54D5C867480E334993426D47F9044 (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, String_t* ___path0, const RuntimeMethod* method)
{
return (( ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* (*) (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E*, String_t*, const RuntimeMethod*))InputControl_GetChildControl_TisRuntimeObject_m5E81C3A512C444426EB15097CCF01D73CF1C614C_gshared)(__this, ___path0, method);
}
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_touchpadButton(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_touchpadButton_m85056E5E5A92D34208235FB409393690A472601D_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::get_startButton()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_startButton_m29450F01D3AC6A6377DD6820C1E8A19E3FB257B1_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_optionsButton(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_optionsButton_m1FE2766F3657D92F605EB85A030FE7C89D0DD580_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::get_selectButton()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_selectButton_mE20183D2C1EBD7B7EF87EE29C24E56F1731E85BE_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_shareButton(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_shareButton_mE3EF1DF6E0E1B8EFF21AC7DD493CC0494AEC6155_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::get_leftShoulder()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_leftShoulder_m2522E913D1A9361FE16FE01D717BF49D3B1632AE_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_L1(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_L1_m53A630A39C6EA91CD8A806D739D51782A7062D8E_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::get_rightShoulder()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_rightShoulder_m221A61E28BDBABD1B1E51A0E325D9A55BB5E347A_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_R1(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_R1_m578DFA09EC86DB70693B666AC53AE39E97C6F22C_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::get_leftTrigger()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_leftTrigger_mE19F2FCA9A7F195107FA0C14293732C0F3075A38_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_L2(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_L2_m944079645ACBBB274527C169EE5670D1ED142616_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::get_rightTrigger()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_rightTrigger_mD1587CDED475B78A56BE8B6FC493EDA08AE6F3A6_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_R2(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_R2_mCCFF64B80DC2E5DA8920AB9B9A9CEB61AB8C0079_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::get_leftStickButton()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_leftStickButton_mEACF0F726788DA012905DCD7A44AA88DF91593ED_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_L3(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_L3_mD8C16E42401A03362170FB255D0F2E0A70F36531_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::get_rightStickButton()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_rightStickButton_m9A8377135FDA7EA2EA6219A715092F0E62ADBC55_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_R3(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_R3_mF4834C8E3EB76B2C7C91F874D6022770604A5CDC_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Gamepad::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gamepad__ctor_m91DEC6DDDA705B1A49C7964389CA1880CBFD9748 (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.DualShock.DualShockGamepad>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisDualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_m36DC2FEC3F1EB796BFF08D7E9404F22241C6644D (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.Android.AndroidGamepad::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidGamepad__ctor_mF564EB5AD49D1583A33554EDF3C2AF3F0179CFA3 (AndroidGamepad_t786079AAF70FADAC9023B59E60BE8DB35903EF6E* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Joystick::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Joystick__ctor_mF6DC050063C12FB0092B84BF78B558114B07949D (Joystick_t2235B6B58C2C6BC3755C8E5852BC6BA9CFD0981C* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad__ctor_mFF8B00E0E1592EA1F5A104826CD996F936732733 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.XInput.XInputController::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XInputController__ctor_m8BAA58FA967BC76A7850D0AE1BD3A6DB9D6B40B4 (XInputController_t8DB31CC6BD9BB1B280AB37DA697D0AF92E6A6B19* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Accelerometer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Accelerometer__ctor_mAD6F8371491B501EB909ECF2D691D8C6340D8185 (Accelerometer_t9F891328DDA1A9CD745AC981AE5FA6BE9139B76E* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.MagneticFieldSensor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MagneticFieldSensor__ctor_m9F0B990BF6FEDB6DEE8698F8BCC767CABB034F70 (MagneticFieldSensor_tCC668B97017215736B7B7BDDB0AB4E690EF16C34* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Gyroscope::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gyroscope__ctor_m12C4E168E60E3CD7B59BD6BD869A6936BD62B2BF (Gyroscope_t07C58BC3D40B432CE9B1526B33487FD23EBB47D4* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LightSensor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LightSensor__ctor_mC7986AC99BC44780090B3EFB87E88AB98FFB2167 (LightSensor_t9B735ADB57990930D7E180C6BF93F450845CD554* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.PressureSensor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PressureSensor__ctor_m2B29729259753AFB41AD4571D85C4EBA46203938 (PressureSensor_t0F29E50DD84E69A639F1BFDBE1B2BF70E117F603* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.ProximitySensor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProximitySensor__ctor_mA952A5C659286F7FC73BA6133ABA5C2217EE1D13 (ProximitySensor_tD3418A859057A9D7FFA0E099C00C403CD3916718* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.GravitySensor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GravitySensor__ctor_m07FFC5C414FA8011459DE55CB8C167B94FE02F15 (GravitySensor_t46D8EBFF773EDB6F2E508444B02B972300EC43D5* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LinearAccelerationSensor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LinearAccelerationSensor__ctor_m76A83D04015451084C606FEF007E4A7614B31DE1 (LinearAccelerationSensor_tE9FB374E1BBE28478D63F7A580BF74664411BE68* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.AttitudeSensor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttitudeSensor__ctor_m4BC22DA0C424808E1AAE9DE7C1B13D7EE171D1E1 (AttitudeSensor_tA85F0C6E285FC1137DE8AB1CFB7357C7E8673906* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.HumiditySensor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HumiditySensor__ctor_m3F7357F775B09D089A4687C9F7AEF07DAA759B75 (HumiditySensor_t72BCA304940BF73377CB2B6CE2ACF7DCA6A97D03* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.AmbientTemperatureSensor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AmbientTemperatureSensor__ctor_mC28BAE6F66E1E9C3227D347CEE4640B1EE21669A (AmbientTemperatureSensor_t76EBA3E167601D4CC695BC674983F15E4EEADAE8* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.StepCounter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StepCounter__ctor_m909C35DAF37F65943CB8B238B88B5BD8F161D0C4 (StepCounter_t892F78E1286E3B4DF254DFB6A5D28F2618BD32B2* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher::WithInterface(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 InputDeviceMatcher_WithInterface_m58A8A1CF9A77598D0F904E13A86F48B3464725E4 (InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* __this, String_t* ___pattern0, bool ___supportRegex1, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher::WithDeviceClass(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 InputDeviceMatcher_WithDeviceClass_m303C68EE7902057FB7C4DA6CCAEC4A95B1BEB193 (InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* __this, String_t* ___pattern0, bool ___supportRegex1, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>::.ctor(T)
inline void Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB (Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C* __this, InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C*, InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555, const RuntimeMethod*))Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_gshared)(__this, ___value0, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.AndroidGamepad>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisAndroidGamepad_t786079AAF70FADAC9023B59E60BE8DB35903EF6E_m7EEC589523FCF3B8359D12070CA407255586F447 (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.AndroidJoystick>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisAndroidJoystick_t046CDCD28C85B087F639711DB5F651B6D469CA01_m1BD3D66CCAC5FF1B6BBB5B38AE0B85E38B2D2B31 (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.DualShock4GamepadAndroid>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisDualShock4GamepadAndroid_t12F04A138227E893CDB038399FFE400836152296_m4C98F825FBCEC3B44C364CF79D3AE5393518480E (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.XboxOneGamepadAndroid>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisXboxOneGamepadAndroid_t81C60ABAB05F8FA9762EBB7655043EFDCBCBC728_m7B15F9E1E73C6FB9FDAE2E9A348D90AED10098D4 (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.AndroidGamepadWithDpadAxes>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisAndroidGamepadWithDpadAxes_tF737215B337DB2EE82739556B7D49B9C47E1E0A6_mF87B21488883753F2AB3BA8A3958EF55B7F0611D (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.AndroidGamepadWithDpadButtons>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisAndroidGamepadWithDpadButtons_t62C4BA5D1E7EDAC25BF4540A84825D8F210121CA_mD2C4FEB7BA984C4A4B36675C8913FEBAB361F764 (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterProcessor<UnityEngine.InputSystem.Android.LowLevel.AndroidCompensateDirectionProcessor>(System.String)
inline void InputSystem_RegisterProcessor_TisAndroidCompensateDirectionProcessor_t6EC5E83645FC7DD5345A83BD314EB8672860E557_m7FB80E4B8116918152685B15C67A1A26EE8DD327 (String_t* ___name0, const RuntimeMethod* method)
{
(( void (*) (String_t*, const RuntimeMethod*))InputSystem_RegisterProcessor_TisRuntimeObject_m5D6C22A7FCA8F09B7D1BEA7D8260EEDC19DAA2D6_gshared)(___name0, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterProcessor<UnityEngine.InputSystem.Android.LowLevel.AndroidCompensateRotationProcessor>(System.String)
inline void InputSystem_RegisterProcessor_TisAndroidCompensateRotationProcessor_tFDB308670A5D207966B1CF3BCA786D69D060F021_mFBA82B492DEE7FAB37A6222E0F14C4ED1983B6E0 (String_t* ___name0, const RuntimeMethod* method)
{
(( void (*) (String_t*, const RuntimeMethod*))InputSystem_RegisterProcessor_TisRuntimeObject_m5D6C22A7FCA8F09B7D1BEA7D8260EEDC19DAA2D6_gshared)(___name0, method);
}
// UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher::WithCapability<UnityEngine.InputSystem.Android.LowLevel.AndroidSensorType>(System.String,TValue)
inline InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5 (InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* __this, String_t* ___path0, int32_t ___value1, const RuntimeMethod* method)
{
return (( InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 (*) (InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555*, String_t*, int32_t, const RuntimeMethod*))InputDeviceMatcher_WithCapability_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m4A67202AF9C2A8C61DFB904499B8E52F3E8969D8_gshared)(__this, ___path0, ___value1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.AndroidAccelerometer>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisAndroidAccelerometer_t424C7F249B02EEE2B4FC08EEEB8CCA17979C0152_m1A38F9810255A13478FD3C3CF264D16A541EB4E3 (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.AndroidMagneticFieldSensor>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisAndroidMagneticFieldSensor_t1610FE66F3C8C0B079226776522B00876CD7307F_m92E13D5070D1F25D1CBD64670A3F5DAA70CC5F40 (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.AndroidGyroscope>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisAndroidGyroscope_t0C9BB3F1F09F92AD929863225385D22D46C2D39D_m06AECBB2E664188BF622D1EE82E3D1E9ED224803 (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.AndroidLightSensor>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisAndroidLightSensor_t555467EDE38119DBD9BADEFD8EB33EC2E44D120A_m891E7CFB540B01E715BC6F92E789788AACA779C9 (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.AndroidPressureSensor>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisAndroidPressureSensor_t35F3053D89964B2771F3C24CC0A3D3ACE7A64FFE_mB00F579AA1A164599771BDEB14EC38270BA5CB1C (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.AndroidProximity>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisAndroidProximity_t0951C9819B491F6DA8066417FE24C750A409288F_m0579CB26ACF2AE8BCB5E0B752ECE3DBCC50920B5 (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.AndroidGravitySensor>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisAndroidGravitySensor_t41E115E03C89B62509B2B088FA239E7DAFFF9695_mFB7169F7A18BD1ED1DE79D6E8AE0C4A83CD43FB8 (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.AndroidLinearAccelerationSensor>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisAndroidLinearAccelerationSensor_t970198FECD057A043BC8DDEE99C42928861CE5D9_m0E1C1D4ADE8497F71EBE54E75F3D7923531D8E66 (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.AndroidRotationVector>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisAndroidRotationVector_tD623D1A57567CB6F21E37E60BBB5CE66042F1C3C_m02EBEE8A9A9B7358D3EDB31E90EBC6F9BF17CD9C (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.AndroidRelativeHumidity>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisAndroidRelativeHumidity_tBEFC71512766927C2BB2C95270C4E9938A3F3342_m1C4E8C33132041BF2304D793F6681ED7DAAC1B68 (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.AndroidAmbientTemperature>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisAndroidAmbientTemperature_t708F5C6684A965DF4B1DB0FBCD468DDCCC718F85_m9D24CE3A04058CA2A287CC24EBC1E7FB5F1CCC0F (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Void UnityEngine.InputSystem.InputSystem::RegisterLayout<UnityEngine.InputSystem.Android.AndroidStepCounter>(System.String,System.Nullable`1<UnityEngine.InputSystem.Layouts.InputDeviceMatcher>)
inline void InputSystem_RegisterLayout_TisAndroidStepCounter_t60ECCD106CD8AD94CB740C46D212D1FA94DF38CD_mB0A266FC14B8DBE737B1B44FC1BA101E6B30A56D (String_t* ___name0, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___matches1, const RuntimeMethod* method)
{
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m813B86BCE0AFC470691B88D57FB3281A47DF4913_gshared)(___name0, ___matches1, method);
}
// System.Boolean System.String::IsNullOrEmpty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A (String_t* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.String::op_Inequality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_interfaceName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_interfaceName_m087CF7E83BAF1E6C6375B3F16A9FAA3A71717D07_inline (InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* __this, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_capabilities()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_capabilities_mEBF36ED5663709FCA039D1AEA87F6B6C404E76CD_inline (InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* __this, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_deviceClass()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_deviceClass_m59E89FD7B104B4E23CB6AA979500CD0330FFBF26_inline (InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* __this, const RuntimeMethod* method) ;
// System.Boolean System.String::op_Equality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities::FromJson(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D AndroidDeviceCapabilities_FromJson_mA71F4880BD35D6541D70A08607FDA510FBAB2615 (String_t* ___json0, const RuntimeMethod* method) ;
// System.Boolean System.Linq.Enumerable::Contains<UnityEngine.InputSystem.Android.LowLevel.AndroidAxis>(System.Collections.Generic.IEnumerable`1<TSource>,TSource)
inline bool Enumerable_Contains_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_m3A90F2A6B53FFE9AFE2BECEB27CB51257ADC2E38 (RuntimeObject* ___source0, int32_t ___value1, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, int32_t, const RuntimeMethod*))Enumerable_Contains_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_mCF235BF6055957FECC7BC52DB8F433FB3CE7C643_gshared)(___source0, ___value1, method);
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AndroidGameControllerState_get_format_mB52CB7E3D1E55F0048A096CF307B7B289599CA6E (AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState::WithButton(UnityEngine.InputSystem.Android.LowLevel.AndroidKeyCode,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38 AndroidGameControllerState_WithButton_mDB37C4C60EE0B9203393FE078D02CE624FC25615 (AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38* __this, int32_t ___code0, bool ___value1, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState::WithAxis(UnityEngine.InputSystem.Android.LowLevel.AndroidAxis,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38 AndroidGameControllerState_WithAxis_mCA410B8767961A5E2D2F534CC936DA98BCCD8A2C (AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38* __this, int32_t ___axis0, float ___value1, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.FourCC::.ctor(System.Char,System.Char,System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F (FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED* __this, Il2CppChar ___a0, Il2CppChar ___b1, Il2CppChar ___c2, Il2CppChar ___d3, const RuntimeMethod* method) ;
// System.String UnityEngine.JsonUtility::ToJson(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonUtility_ToJson_mD0FB24DC5A8621A2473FC208E9B15AF43944EBCD (RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities::ToJson()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AndroidDeviceCapabilities_ToJson_m78FD90AE0C1F01386D56286CAB693855D7E38206 (AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D* __this, const RuntimeMethod* method) ;
// T UnityEngine.JsonUtility::FromJson<UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities>(System.String)
inline AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D JsonUtility_FromJson_TisAndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_m459CC1D300860AF774BDDD62715981659FA9F1A6 (String_t* ___json0, const RuntimeMethod* method)
{
return (( AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D (*) (String_t*, const RuntimeMethod*))JsonUtility_FromJson_TisAndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_m459CC1D300860AF774BDDD62715981659FA9F1A6_gshared)(___json0, method);
}
// System.Void System.Func`2<UnityEngine.InputSystem.Android.LowLevel.AndroidAxis,System.String>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m3E421952949ED21CD62790848B7D6120ED568A31 (Func_2_t0825937F2E7F47B2A220EAB90DE0736AAEB5AE1D* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t0825937F2E7F47B2A220EAB90DE0736AAEB5AE1D*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m889D430A5EE74DDF6971773B4D8C48ACF923ECCF_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Select<UnityEngine.InputSystem.Android.LowLevel.AndroidAxis,System.String>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TResult>)
inline RuntimeObject* Enumerable_Select_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_TisString_t_mFF4D6A3B07A9821C08DE0D6B5EE2E5D62DD31F59 (RuntimeObject* ___source0, Func_2_t0825937F2E7F47B2A220EAB90DE0736AAEB5AE1D* ___selector1, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, Func_2_t0825937F2E7F47B2A220EAB90DE0736AAEB5AE1D*, const RuntimeMethod*))Enumerable_Select_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_TisRuntimeObject_mB68A29291EEC0750C0CF0A2F8C07FA4C51494367_gshared)(___source0, ___selector1, method);
}
// TSource[] System.Linq.Enumerable::ToArray<System.String>(System.Collections.Generic.IEnumerable`1<TSource>)
inline StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* Enumerable_ToArray_TisString_t_mCD2BC789CBFF834E06F00948FC47E15E720936DC (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToArray_TisRuntimeObject_m6B1F26FB2B3EA7B18B82FC81035440AAAEFCE924_gshared)(___source0, method);
}
// System.String System.String::Join(System.String,System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Join_mE405D676C6881553258F8BAD40A20B462D611068 (String_t* ___separator0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___value1, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AndroidDeviceCapabilities_ToString_m06087F8B903F8416AD580B6A118348E51DED9434 (AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m276C9790A057CE489E59DD0F64F2128DD614DB46 (U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B* __this, const RuntimeMethod* method) ;
// System.String System.Enum::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.Android.LowLevel.AndroidSensorCapabilities::ToJson()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AndroidSensorCapabilities_ToJson_m0571F760689CFBE9ADADB783BD9684AA8936E15B (AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F* __this, const RuntimeMethod* method) ;
// T UnityEngine.JsonUtility::FromJson<UnityEngine.InputSystem.Android.LowLevel.AndroidSensorCapabilities>(System.String)
inline AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F JsonUtility_FromJson_TisAndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F_mCD18DC17AC85C3CA6C4702C4E3D2AECD8A591211 (String_t* ___json0, const RuntimeMethod* method)
{
return (( AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F (*) (String_t*, const RuntimeMethod*))JsonUtility_FromJson_TisAndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F_mCD18DC17AC85C3CA6C4702C4E3D2AECD8A591211_gshared)(___json0, method);
}
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.Android.LowLevel.AndroidSensorCapabilities::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AndroidSensorCapabilities_ToString_mB5171E0B493195F31D2583F384F9FD33A8FA6831 (AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Android.LowLevel.AndroidSensorState UnityEngine.InputSystem.Android.LowLevel.AndroidSensorState::WithData(System.Single[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29 AndroidSensorState_WithData_m5CA936E024B49BFA51E35E17643A7A1393427101 (AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___data0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.Android.LowLevel.AndroidSensorState::get_format()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AndroidSensorState_get_format_m31BF80D110BEEF071B7795ED0D2D05664B42379F_inline (AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Vector3::op_Multiply(UnityEngine.Vector3,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Multiply_m516FE285F5342F922C6EB3FCB33197E9017FF484_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___a0, float ___d1, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.InputSystem.Processors.CompensateDirectionProcessor::Process(UnityEngine.Vector3,UnityEngine.InputSystem.InputControl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 CompensateDirectionProcessor_Process_m65E2A36B937F4314BF9994F5F596CA2B6DE5DD5E (CompensateDirectionProcessor_tD37E3634AA6A1D86A67B21CFFFF5BDD0F39183BE* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___value0, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control1, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Processors.CompensateDirectionProcessor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompensateDirectionProcessor__ctor_m42B87D375F4FA715B337F5B91B9991EF868C4690 (CompensateDirectionProcessor_tD37E3634AA6A1D86A67B21CFFFF5BDD0F39183BE* __this, const RuntimeMethod* method) ;
// UnityEngine.Quaternion UnityEngine.InputSystem.Processors.CompensateRotationProcessor::Process(UnityEngine.Quaternion,UnityEngine.InputSystem.InputControl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 CompensateRotationProcessor_Process_m90DD75229C55116B45B17FD5402AC9889CA1C1D4 (CompensateRotationProcessor_t1D14AFF56CF5C0B6615C8448470ABF88F7480D02* __this, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___value0, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control1, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Processors.CompensateRotationProcessor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompensateRotationProcessor__ctor_mDB2550681A4A78D2CFEE0B6E363EE14DBF015D79 (CompensateRotationProcessor_t1D14AFF56CF5C0B6615C8448470ABF88F7480D02* __this, const RuntimeMethod* method) ;
// System.Single UnityEngine.InputSystem.Haptics.DualMotorRumble::get_lowFrequencyMotorSpeed()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DualMotorRumble_get_lowFrequencyMotorSpeed_m510597E97F499185330B45B4691421807F5199E6_inline (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Haptics.DualMotorRumble::set_lowFrequencyMotorSpeed(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualMotorRumble_set_lowFrequencyMotorSpeed_m9872E9EFA5CD0E26E2E9F55E759D5B17FD0BC843_inline (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, float ___value0, const RuntimeMethod* method) ;
// System.Single UnityEngine.InputSystem.Haptics.DualMotorRumble::get_highFrequencyMotorSpeed()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DualMotorRumble_get_highFrequencyMotorSpeed_mDF2890FFAEBCEE59E02E02845139481E8442073A_inline (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Haptics.DualMotorRumble::set_highFrequencyMotorSpeed(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualMotorRumble_set_highFrequencyMotorSpeed_mBE076CAE63721822E1B23B6CBB52836CBEAF3107_inline (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, float ___value0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Mathf::Approximately(System.Single,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mathf_Approximately_m1C8DD0BB6A2D22A7DCF09AD7F8EE9ABD12D3F620_inline (float ___a0, float ___b1, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.Haptics.DualMotorRumble::get_isRumbling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DualMotorRumble_get_isRumbling_m90556798E2C7AEC56E8AA6AA434095916F1127AC (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand::Create(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E DualMotorRumbleCommand_Create_m39FB8F9BFBF8A3B303AE1CDB953AABD4E840CE53 (float ___lowFrequency0, float ___highFrequency1, const RuntimeMethod* method) ;
// System.Int64 UnityEngine.InputSystem.InputDevice::ExecuteCommand<UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand>(TCommand&)
inline int64_t InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* __this, DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E* ___command0, const RuntimeMethod* method)
{
return (( int64_t (*) (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*, DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E*, const RuntimeMethod*))InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A_gshared)(__this, ___command0, method);
}
// System.Void UnityEngine.InputSystem.Haptics.DualMotorRumble::PauseHaptics(UnityEngine.InputSystem.InputDevice)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_PauseHaptics_m3BE8E2167226A3C37799E19743D4F8DAD232E31A (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Haptics.DualMotorRumble::SetMotorSpeeds(UnityEngine.InputSystem.InputDevice,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_SetMotorSpeeds_m59E9BDD10561248589656B578B7D741DA3931A59 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, float ___lowFrequency1, float ___highFrequency2, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Haptics.DualMotorRumble::ResumeHaptics(UnityEngine.InputSystem.InputDevice)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_ResumeHaptics_mECD40150D2AAB95F7FA25BC7BD146E0C28B76E56 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Haptics.DualMotorRumble::ResetHaptics(UnityEngine.InputSystem.InputDevice)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_ResetHaptics_m0589143821BBBA3DEA22D4F88027063057FBADA5 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, const RuntimeMethod* method) ;
// System.Single UnityEngine.Mathf::Clamp(System.Single,System.Single,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp_m154E404AF275A3B2EC99ECAA3879B4CB9F0606DC_inline (float ___value0, float ___min1, float ___max2, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DisableDeviceCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DisableDeviceCommand_get_Type_m80CDDBDC299E1D2FA4CA56BF7079CD719D64D941 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DisableDeviceCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DisableDeviceCommand_get_typeStatic_m41138589716445D66360A9FB80B7B5BB451F4E74 (DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputDeviceCommand::.ctor(UnityEngine.InputSystem.Utilities.FourCC,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01 (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___type0, int32_t ___sizeInBytes1, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.EnableDeviceCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableDeviceCommand_get_Type_m92803D3F093178D71567E147E1E63F48A2B97085 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.EnableDeviceCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableDeviceCommand_get_typeStatic_m54D173AC3F000FB3483D520998D28FFFA9F25599 (EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.EnableIMECompositionCommand::get_imeEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnableIMECompositionCommand_get_imeEnabled_mD0CCBB77A6E533FDF6DE036CBA010D0CA0E9A3DA (EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.EnableIMECompositionCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableIMECompositionCommand_get_Type_mCDF475616357B4BFA3609AD399EC4DA5935F76CC (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.EnableIMECompositionCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableIMECompositionCommand_get_typeStatic_m6F293C39B7AC6A01CCD65F74029AFB07189A588A (EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InitiateUserAccountPairingCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InitiateUserAccountPairingCommand_get_Type_mCBFC8A590A35CE4B5484DB198686E7E19BCBBE3B (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InitiateUserAccountPairingCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InitiateUserAccountPairingCommand_get_typeStatic_m7A6A7BEE8AC36FB548934F7D6E8DDE333D9BEC50 (InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputDeviceCommand::get_payloadSizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputDeviceCommand_get_payloadSizeInBytes_m65597C869B0A3AF1D1B928605A06216AB6897D11 (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* __this, const RuntimeMethod* method) ;
// System.Void* UnityEngine.InputSystem.LowLevel.InputDeviceCommand::get_payloadPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* InputDeviceCommand_get_payloadPtr_mCE339E6458B03F15067C3ADE7D22EEBAE4D29982 (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* __this, const RuntimeMethod* method) ;
// System.Void Unity.Collections.NativeArray`1<System.Byte>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
inline void NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_gshared)(__this, ___length0, ___allocator1, ___options2, method);
}
// System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafePtr<System.Byte>(Unity.Collections.NativeArray`1<T>)
inline void* NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m65FA1E123815CA621B3659034958C4213DF274CD (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___nativeArray0, const RuntimeMethod* method)
{
return (( void* (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF, const RuntimeMethod*))NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m65FA1E123815CA621B3659034958C4213DF274CD_gshared)(___nativeArray0, method);
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputDeviceCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputDeviceCommand_get_typeStatic_m50C7C954EE7CA7B20757F2874C08D0FFF675ACE4 (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryCanRunInBackground_get_Type_mFC27916EA86FE85920A40C5BA4B734BED5C18CD2 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryCanRunInBackground_get_typeStatic_m18F466F00C744F3136183AD33D6E562F161A594D (QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryDimensionsCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryDimensionsCommand_get_Type_m4C7101BD127B6AE8B0FFB39D3F3B452D961E14AF (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryDimensionsCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryDimensionsCommand_get_typeStatic_mDCF9B62F3BF35868211DAC4674B20B649F199141 (QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryEnabledStateCommand_get_Type_m76FAED08D055671FD4139A4A073B4E1ED7258E07 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryEnabledStateCommand_get_typeStatic_m4CE8116E064CBD6A470B8F043F1869E362216744 (QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4* __this, const RuntimeMethod* method) ;
// System.Void System.IntPtr::.ctor(System.Void*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline (intptr_t* __this, void* ___value0, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.Utilities.StringHelpers::ReadStringFromBuffer(System.IntPtr,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringHelpers_ReadStringFromBuffer_m9DF460E736D154E45E56EF8549D05E54DEF3FA30 (intptr_t ___buffer0, int32_t ___bufferSize1, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand::ReadLayoutName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryKeyboardLayoutCommand_ReadLayoutName_m69F50E3BC9B964A8EE56924846F0292AD4330FDE (QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.Utilities.StringHelpers::WriteStringToBuffer(System.String,System.IntPtr,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringHelpers_WriteStringToBuffer_mEAB944B4E01DA060BBAE7EB5043042D1594EE0C3 (String_t* ___text0, intptr_t ___buffer1, int32_t ___bufferSizeInCharacters2, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand::WriteLayoutName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryKeyboardLayoutCommand_WriteLayoutName_mBB1067A2E35ED994C8AAF1E8C250FADBAA4AD6AE (QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* __this, String_t* ___name0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyboardLayoutCommand_get_Type_m193550A417104FB03791F13D5D07AE5FAA3F0C4D (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyboardLayoutCommand_get_typeStatic_mF9D6B9C2C598C7AA595CFC38B830112CF6389C0F (QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* __this, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand::ReadKeyName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryKeyNameCommand_ReadKeyName_mE3442B7FD9CC5B3889A5908F2F87F215FF70A61E (QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyNameCommand_get_Type_mFFD411151F819BB97D94CD7FA81AD243BC1FF015 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyNameCommand_get_typeStatic_mF2D528451EEEC0E93933CF425037F4851EC1ECB3 (QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* __this, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::get_id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryPairedUserAccountCommand_get_id_mB52BF2DC2C2B3C63661056A1F9AAB47C0E7CDFCB (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, const RuntimeMethod* method) ;
// System.Int32 System.String::get_Length()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
// System.Void System.ArgumentException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::set_id(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryPairedUserAccountCommand_set_id_mCA44A798D70E7F0EB7BA347652F4341221A5BDAE (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::get_name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryPairedUserAccountCommand_get_name_m405A615F44272337724373D19F46B1258C18C856 (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::set_name(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryPairedUserAccountCommand_set_name_m4C8CBE6D10186933B46DB10B494E21213805B37A (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, String_t* ___value0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryPairedUserAccountCommand_get_Type_m6BBF2400CA4975751E780516D777A985378FEC49 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryPairedUserAccountCommand_get_typeStatic_mD6966C188315C0D8C6AF75D21C3FA053ED4EF3CC (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QuerySamplingFrequencyCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QuerySamplingFrequencyCommand_get_Type_m7E6F864E789782370D5E2F090AF118205AB8742D (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QuerySamplingFrequencyCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QuerySamplingFrequencyCommand_get_typeStatic_mC6E13673C19A972E625C2B37AD3881354663F096 (QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA* __this, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.LowLevel.QueryUserIdCommand::ReadId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryUserIdCommand_ReadId_m3BB974A34A9905F046569754836F889575C349AF (QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryUserIdCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryUserIdCommand_get_Type_m17AFF926AD76D01CA5FDFF9CE0BF2DC8C7C851DB (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryUserIdCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryUserIdCommand_get_typeStatic_mC5794F2A38D12A8E38BD4EF3B30B6604AE183793 (QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.RequestResetCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestResetCommand_get_Type_m581C42072F816159E675C108BB84438D38C909C4 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.RequestResetCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestResetCommand_get_typeStatic_m682DBD857C38B26B39B9679C35C98A2AE5B3C0DC (RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.RequestSyncCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestSyncCommand_get_Type_m2D56783B844AB1CCF1339DF4B3010F6DD3031B37 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.RequestSyncCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestSyncCommand_get_typeStatic_m27687F65BCDB472A0D9BE03B1D60C602913172A2 (RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.SetIMECursorPositionCommand::get_position()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 SetIMECursorPositionCommand_get_position_m50765F077E0164B5205064B7A1B141F2C81C085C (SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.SetIMECursorPositionCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetIMECursorPositionCommand_get_Type_mD27C8ABE8BDE9A79A6D2F1C4AEA7975EA789F36E (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.SetIMECursorPositionCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetIMECursorPositionCommand_get_typeStatic_m99FCCDF1E9DA6575073F31F84C0B670340281D02 (SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.SetSamplingFrequencyCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetSamplingFrequencyCommand_get_Type_mCE6CD574C303B439A0303C432EED93CDF3F6317C (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.SetSamplingFrequencyCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetSamplingFrequencyCommand_get_typeStatic_mD878C128408D8125024D0C962C3AE58BBF44780A (SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.WarpMousePositionCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED WarpMousePositionCommand_get_Type_m31B381E388EACF6D09D1795D9DBB49C3FD79DEF5 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.WarpMousePositionCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED WarpMousePositionCommand_get_typeStatic_m7C173947D66A532E7F49ED7B48898BEB1529E56A (WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.GamepadState::get_Format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GamepadState_get_Format_m01D43FE212B94EA3D325119104D50D1F6A9349E9 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.GamepadState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GamepadState_get_format_mF617D1EE8D57686B6BAEAA2AF8BF1F6BDAC5E1CF (GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.GamepadState::.ctor(UnityEngine.InputSystem.LowLevel.GamepadButton[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GamepadState__ctor_mD69F20EFA852648DFB4A97AC8B91692FBA793373 (GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* __this, GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6* ___buttons0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.GamepadState UnityEngine.InputSystem.LowLevel.GamepadState::WithButton(UnityEngine.InputSystem.LowLevel.GamepadButton,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1 GamepadState_WithButton_m61BE4689DE621A285913BC0BD69D0560DBBD91DF (GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* __this, int32_t ___button0, bool ___value1, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DualMotorRumbleCommand_get_Type_mC82FE52885743BC0F2622ADCA6655F6B8CE10DD2 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DualMotorRumbleCommand_get_typeStatic_mEDF2C976B44C2BB0C0C0271CC56391992AF37C2D (DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.JoystickState::get_kFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED JoystickState_get_kFormat_m6F7C1EA95FEA162E32F9EC8CE9DACFFA63A854A0 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.JoystickState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED JoystickState_get_format_mEDDE745E9821149E8287DA5EA621814B832088E2 (JoystickState_t03D95BB2BA3497FA34F7F2C395126FE079DBAD23* __this, const RuntimeMethod* method) ;
// System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::MemClear(System.Void*,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeUtility_MemClear_m0535B03E39A2A8CF84AE517549902F0025F67460 (void* ___destination0, int64_t ___size1, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.MemoryHelpers::WriteSingleBit(System.Void*,System.UInt32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryHelpers_WriteSingleBit_m72417937A056A756E474BC8D72A84C45B4DEA1E8 (void* ___ptr0, uint32_t ___bitOffset1, bool ___value2, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.KeyboardState::.ctor(UnityEngine.InputSystem.Key[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState__ctor_m06346BD84C3DE0C9392359B3ABC584E7B0ED9E0C (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A* ___pressedKeys0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.KeyboardState::Set(UnityEngine.InputSystem.Key,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState_Set_m0F5B5B6EC7F702F695F0F03B71E19EF450EC3D9C (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, int32_t ___key0, bool ___state1, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.KeyboardState::Press(UnityEngine.InputSystem.Key)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState_Press_mB5882428AD8FD1CCD5A238215551DFEC3BA577A0 (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, int32_t ___key0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.KeyboardState::Release(UnityEngine.InputSystem.Key)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState_Release_m779EAACE3BB019436503948C3DEBAB7F7B7BCE1A (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, int32_t ___key0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.KeyboardState::get_Format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED KeyboardState_get_Format_m2CBD8A21ED82E50BF9DD51CE3911DAB9DB9CB22F (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.KeyboardState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED KeyboardState_get_format_mD8CB0AA30DC616A09DC3152ED0342B2945DC43C9 (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.MouseState UnityEngine.InputSystem.LowLevel.MouseState::WithButton(UnityEngine.InputSystem.LowLevel.MouseButton,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1 MouseState_WithButton_m97B000A09778AED62A2DB09058C31318CFDA479E (MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1* __this, int32_t ___button0, bool ___state1, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.MouseState::get_Format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED MouseState_get_Format_mC8FE106B1DB7B4DEB6D2D4A0A7C3F4554444FF58 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.MouseState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED MouseState_get_format_m4E1CACEDD70E431F2B4F122FBF9790D61523E160 (MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.PenState UnityEngine.InputSystem.LowLevel.PenState::WithButton(UnityEngine.InputSystem.PenButton,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144 PenState_WithButton_mE073BEA72B2BF7B87BC1E31B171A71207A876652 (PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144* __this, int32_t ___button0, bool ___state1, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.PenState::get_Format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PenState_get_Format_m0529C36475CD4DC72F1FA80E2EC539C8F909BF40 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.PenState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PenState_get_format_m8B58953CF86A69E6AEAD9670C02822A400FB2DCF (PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.PointerState::get_kFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PointerState_get_kFormat_mD3D9DD8DFECE28346B9BA006875B46DED7EB82D8 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.PointerState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PointerState_get_format_mC5180FCEAE996C3D5E43E1A77174886E49F4EBEA (PointerState_t3BD79772D06D5CC227EBE757B27F8262EB46A919* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.AccelerometerState::get_kFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AccelerometerState_get_kFormat_mBA355243468D23EA29B3C5E9C1DF9C873EC3231A (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.AccelerometerState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AccelerometerState_get_format_m8417A35B21D4D21382BAA3E099EB81FA6A681290 (AccelerometerState_tBC7006B5431DF59DC2A9AF2E08FD06674EA8372A* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.GyroscopeState::get_kFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GyroscopeState_get_kFormat_mF8E8DCCB15E1EF561C016AC0C947DD6EC62F0378 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.GyroscopeState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GyroscopeState_get_format_m04C008EEC0A8E98488D68D7DB508D03F4D40CB6D (GyroscopeState_t6C1BC700557D943111882E3634CA7411EE531B87* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.GravityState::get_kFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GravityState_get_kFormat_mCA9A74D9F09262A4490427938A53819A04D0B3B1 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.GravityState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GravityState_get_format_mACAC4174A37C72A4229268A765EA95B60CD1EE1D (GravityState_tD607A716F9E0D00477CECC5C019929633E66ACFF* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.AttitudeState::get_kFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AttitudeState_get_kFormat_m10BE3C5F5F50046C253023D1ADB40494A1EF6798 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.AttitudeState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AttitudeState_get_format_mE181225DD179C3C77FBE1996F22C2B858C2620A8 (AttitudeState_tE01F02CAD17A08F2D35660E017437AC72BC45745* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.LinearAccelerationState::get_kFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED LinearAccelerationState_get_kFormat_m45CB5EAAB0F8B58C2321E6B669AD9DB4C1599F45 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.LinearAccelerationState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED LinearAccelerationState_get_format_m082958E987DDE7BCF30BEB84C1A2C8F2EB0D2A8A (LinearAccelerationState_tD14025B444097A9A3CA0B3ADBA153C775A316F24* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_isNoneEndedOrCanceled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isNoneEndedOrCanceled_mC2000BF710D7EDFC3590D18253215FCA67E3F464 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_isInProgress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isInProgress_mF14BA2786F207B08DA487C4FD9F010F85107D902 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_isOrphanedPrimaryTouch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isOrphanedPrimaryTouch_m692F6F3BB4886A4ADC7578416BDA2CF43190CEF5 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.TouchState::set_isOrphanedPrimaryTouch(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isOrphanedPrimaryTouch_m2610EBB9B4DB8D920EC53D3785CD88C1537957D7 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_isIndirectTouch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isIndirectTouch_m5059A78582DBB4534309A43F49BD7DDC86DCB912 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.TouchState::set_isIndirectTouch(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isIndirectTouch_m76D60019EA3E6AE3D32D41D7918E2F4D874D1CF4 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_isTapPress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isTapPress_m76B3B03716530BC461CCDEE942D80B797A82D1FE (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.TouchState::set_isTapPress(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isTapPress_m42BC799213916CA303DCE59FFCF3F39DF43F5642 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.TouchState::set_isTapRelease(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isTapRelease_m8CECE48CDFD6955A73D24CB052BF1BD8E506E178 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___value0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.TouchState::get_Format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchState_get_Format_m7CC6E861439BED7A84B4073D006CF211C13AE7A7 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.TouchState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchState_get_format_m27F8D5F420FE4D7F11C4676B5FD94FAF08586AE5 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.LowLevel.TouchState::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TouchState_ToString_mEA29180E6539B2C38587D293C96E5E56728E661D (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.TouchState* UnityEngine.InputSystem.LowLevel.TouchscreenState::get_primaryTouch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* TouchscreenState_get_primaryTouch_m2F7795A41B5BD5B36686E513EB0626BEB94F03FB (TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.TouchState* UnityEngine.InputSystem.LowLevel.TouchscreenState::get_touches()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* TouchscreenState_get_touches_m58B38F7D585C7D053B2D6C9B17B9AB36F6E6D14F (TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.TouchscreenState::get_Format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchscreenState_get_Format_m3AA6138EA268995D25A3B3F06D1CD883860D7E72 (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.TouchscreenState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchscreenState_get_format_m599BFB770E5FFC16A3AF0BBD32473D89B9F6F0A0 (TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* __this, const RuntimeMethod* method) ;
// System.Double UnityEngine.InputSystem.LowLevel.ActionEvent::get_startTime()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double ActionEvent_get_startTime_mFC441D783C0FF36A0DCF844F6CB4C51F7B507DC9_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.ActionEvent::set_startTime(System.Double)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ActionEvent_set_startTime_m421136E6914BF478860D9A2A4C302A8E5C0128F2_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, double ___value0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.InputActionPhase UnityEngine.InputSystem.LowLevel.ActionEvent::get_phase()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionEvent_get_phase_mA5D0A72C4C5DD7D0F562AAC03812667D7D467AC9_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.ActionEvent::set_phase(UnityEngine.InputSystem.InputActionPhase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_phase_mF8ACF6B2396E2351BA691A53450A4013BD011A9F (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Byte* UnityEngine.InputSystem.LowLevel.ActionEvent::get_valueData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* ActionEvent_get_valueData_m90D8EEC0EBFC775772BCF3FCB60FCBFA282D3E4C (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputEvent::get_sizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.ActionEvent::get_valueSizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_get_valueSizeInBytes_m76C6A128C9C3E3747FE7917EA1760B74647FD19C (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.ActionEvent::get_stateIndex()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionEvent_get_stateIndex_m9B25D23E723CFD517FEA65A61D0D3587E4205450_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
// System.Void System.NotSupportedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.ActionEvent::set_stateIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_stateIndex_m6A5B88C7CD64D3BC75B8211484AF25280C5E520B (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.ActionEvent::get_controlIndex()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionEvent_get_controlIndex_m6AD8C96BCD3A38D6FFC823F98673549CAADB1715_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.ActionEvent::set_controlIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_controlIndex_m2AC91D48B3CCA9C73415A1F85648CB93B05711E7 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.ActionEvent::get_bindingIndex()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionEvent_get_bindingIndex_m95BC43710F538E6E696644A9CABD5EC4FAA97400_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.ActionEvent::set_bindingIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_bindingIndex_mF620F2E875C9E6EC9B51271D6E8F469C4E855708 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.ActionEvent::get_interactionIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_get_interactionIndex_m5609EC04CE26D86650CF0829F907D478A209286E (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.ActionEvent::set_interactionIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_interactionIndex_m8369A717B14FE2DE5CC74F55A1764EFE2DCE0546 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::.ctor(UnityEngine.InputSystem.LowLevel.InputEvent*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.ActionEvent::ToEventPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ActionEvent_ToEventPtr_m6CED2BDDEBD88B4CC9E6D9A5500CBBC46867AD61 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.ActionEvent::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ActionEvent_get_Type_m9F3447357BECD4F2C13E4C0299C45BEE5CBB471D (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.ActionEvent::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ActionEvent_get_typeStatic_mDA18771F922C2C34EC407D7EA68A8735E516819D (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::IsA<UnityEngine.InputSystem.LowLevel.ActionEvent>()
inline bool InputEventPtr_IsA_TisActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444_m2F2591754A98F71A8E950E17F45153089F5B2D10 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
return (( bool (*) (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*, const RuntimeMethod*))InputEventPtr_IsA_TisActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444_m2F2591754A98F71A8E950E17F45153089F5B2D10_gshared)(__this, method);
}
// System.String System.String::Format(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30 (String_t* ___format0, RuntimeObject* ___arg01, const RuntimeMethod* method) ;
// System.Void System.InvalidCastException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644 (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* __this, String_t* ___message0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::get_data()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// System.UInt32 UnityEngine.InputSystem.LowLevel.DeltaStateEvent::get_deltaStateSizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t DeltaStateEvent_get_deltaStateSizeInBytes_mF3F45D7A54B74C0B5403C5B4A6B42B31A78331E2 (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* __this, const RuntimeMethod* method) ;
// System.Void* UnityEngine.InputSystem.LowLevel.DeltaStateEvent::get_deltaState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* DeltaStateEvent_get_deltaState_m02220C78569A9CC26843EB8A3AF289019195DA9E (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DeltaStateEvent::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeltaStateEvent_get_typeStatic_m78864C357A995118D8E55ABE491ACAF3ED2F846D (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.DeltaStateEvent::ToEventPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeltaStateEvent_ToEventPtr_mF514DA9E913E367842C4FE6E87768C406A6ACA2C (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::IsA<UnityEngine.InputSystem.LowLevel.DeltaStateEvent>()
inline bool InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
return (( bool (*) (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*, const RuntimeMethod*))InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_gshared)(__this, method);
}
// UnityEngine.InputSystem.LowLevel.DeltaStateEvent* UnityEngine.InputSystem.LowLevel.DeltaStateEvent::FromUnchecked(UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* DeltaStateEvent_FromUnchecked_m1E21FABAEA84C5B974E15AF1B91E09094A16EBC6 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___ptr0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::get_format()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputStateBlock_get_format_mA393354EDC4A58DDCBE0990902A49E0A22F15F86_inline (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* __this, const RuntimeMethod* method) ;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::get_alignedSizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_alignedSizeInBytes_mF360E8CFBEE9BE05FC7DFA3533E069A5A96827F5 (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* __this, const RuntimeMethod* method) ;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::get_bitOffset()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_bitOffset_m3165625FF638183247012307A8AC012AEA3D1143_inline (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.InputDevice::get_deviceId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputDevice_get_deviceId_mC65E69E6117B78DB2F4963F5CF9BF031488AD588_inline (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEvent::.ctor(UnityEngine.InputSystem.Utilities.FourCC,System.Int32,System.Int32,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___type0, int32_t ___sizeInBytes1, int32_t ___deviceId2, double ___time3, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DeviceConfigurationEvent::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceConfigurationEvent_get_typeStatic_m28C6393CDEE9100331345A72749DBA842080C362 (DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.DeviceConfigurationEvent::ToEventPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeviceConfigurationEvent_ToEventPtr_m26A12C8D7BF50B9AF36FB0E766AFF8F3811AC613 (DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DeviceRemoveEvent::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceRemoveEvent_get_typeStatic_m59A7E2127F8EFF45674F801535EC27E3032CCDA0 (DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.DeviceRemoveEvent::ToEventPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeviceRemoveEvent_ToEventPtr_m72F38FDBB8F566525666CF67430E68B03EFEEAD3 (DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DeviceResetEvent::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceResetEvent_get_typeStatic_mE19FE21C422385DCF217144DFDA30FB09886E88B (DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.IMECompositionEvent::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED IMECompositionEvent_get_typeStatic_m89F47A231652E2AF8A050C95C8E4795838787531 (IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.IMECompositionString::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMECompositionString__ctor_m3E5D1159993102E7687C901BCDB3277EC23C2619 (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, String_t* ___characters0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.IMECompositionString::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t IMECompositionString_get_Count_m118217BDAE905FA6F01D5F61D3D1A85319A5AA1D_inline (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method) ;
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___paramName0, const RuntimeMethod* method) ;
// System.Char UnityEngine.InputSystem.LowLevel.IMECompositionString::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar IMECompositionString_get_Item_mAD02BEFBDF102BC3A61859E112F62473431FD9C7 (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Char System.String::get_Chars(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.String System.String::CreateString(System.Char*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m3F8794FEB452558B8A68C65E1F0B603B3D94E0E2 (String_t* __this, Il2CppChar* ___value0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.LowLevel.IMECompositionString::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IMECompositionString_ToString_mC08E0929E54A40011881459D00A154F17FD3B373 (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::.ctor(UnityEngine.InputSystem.LowLevel.IMECompositionString)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m6073ACAAEF55A25B11BB1120B7C2F24F5807DE9C (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E ___compositionString0, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerator`1<System.Char> UnityEngine.InputSystem.LowLevel.IMECompositionString::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* IMECompositionString_GetEnumerator_mF49F36051CC98738D33E385073C4CA47FA4A64DE (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method) ;
// System.Collections.IEnumerator UnityEngine.InputSystem.LowLevel.IMECompositionString::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* IMECompositionString_System_Collections_IEnumerable_GetEnumerator_mEF9DC84BC5B93C39EAD3A9F4AB51627CE4F82C63 (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD35FCA6EB88EDE4D99E482FCF3338CBD78C327CE (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_mEE829E33AF06A2FEDB9994AFBF5BCFC0FF7ABBB0 (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4FBC50139C59E472BF6C0544FAA09858F98D860E (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method) ;
// System.Char UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar Enumerator_get_Current_m52C5B2EFD3B6598435E54801806413118B0C7F40_inline (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method) ;
// System.Object UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_m86A42D2AB14107F270FCE9B0D8C40254A62572AD (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.Utilities.FourCC::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FourCC__ctor_mE761C8779BB6DC85BA1662DC9ECEC39D62ED9A56 (FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED* __this, int32_t ___code0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEvent::get_type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEvent_get_type_m43737750FDCCFDF4FC208C9AFFCB5E9D2672733D (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.FourCC::op_Implicit(UnityEngine.InputSystem.Utilities.FourCC)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FourCC_op_Implicit_m754D657392DC63F1F125F3391002C84ABD26144A (FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___fourCC0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_type(UnityEngine.InputSystem.Utilities.FourCC)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_type_mA12F3F32108A0B88A4EE7BCA8AE7F2972F8E9740 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___value0, const RuntimeMethod* method) ;
// System.String System.UInt16::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt16_ToString_m57629B7E74D92A54414073D5C27D6827C93A4DD5 (uint16_t* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_sizeInBytes(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_sizeInBytes_m0F44793DDA0884B427B82447CE1106FC4E6F691C (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, uint32_t ___value0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEvent::get_eventId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEvent_get_eventId_mD480444BF28136F8FF8288C83C4489B9A6B992A0 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_eventId(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_eventId_mD95C6CF817314B3C83EA67E5B7A2898ADEE8BE74 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEvent::get_deviceId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEvent_get_deviceId_m42DC07D2AB46922D79E0A3B9E31FA31E0FD90B6C (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_deviceId(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_deviceId_mED2CE48AD37BA360710E9C5B48D46D2A18A4BDDF (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Double UnityEngine.InputSystem.LowLevel.InputEvent::get_time()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEvent_get_time_mD4A6C01A2B7BFB9ECAD089197C573886E3F70ADB (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_time(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_time_m210F97B604C0EEB53FC6CC4D57A10373FC081A0F (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, double ___value0, const RuntimeMethod* method) ;
// System.Double UnityEngine.InputSystem.LowLevel.InputEvent::get_internalTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEvent_get_internalTime_m6EBE99BC7B0CD35B2B3670A9B5DE003AB3FDA708 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_internalTime(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_internalTime_m914C4E1111E2A886D56B9D0A888ECE911F894980 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, double ___value0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEvent::get_handled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEvent_get_handled_m354E53F68FA517142B4A53287BF738545F792468 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_handled(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_handled_mF2F5A1872BA2D7F585F1275825B622342EB93A16 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, bool ___value0, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.LowLevel.InputEvent::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputEvent_ToString_mA533C298897220B7CC970408EDBAB35D9870B27C (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method) ;
// System.UInt32 UnityEngine.InputSystem.Utilities.NumberHelpers::AlignToMultipleOf(System.UInt32,System.UInt32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t NumberHelpers_AlignToMultipleOf_mEB8F85FE2BA604AC7B15C1FA171ECDF1A5D107C2_inline (uint32_t ___number0, uint32_t ___alignment1, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventBuffer::Contains(UnityEngine.InputSystem.LowLevel.InputEvent*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventBuffer_Contains_mEF30027B0EE35896B8D4FA411A32F2EA3721B54F (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, const RuntimeMethod* method) ;
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_sizeInBytes()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_inline (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
// System.Int32 Unity.Collections.LowLevel.Unsafe.UnsafeUtility::MemCmp(System.Void*,System.Void*,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnsafeUtility_MemCmp_mB5CB8C7A8AD66A3B48114DB7DBCF3BEE80046689 (void* ___ptr10, void* ___ptr21, int64_t ___size2, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_eventCount()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputEventBuffer_get_eventCount_mD120699C5A1CEBA76C878BC37DB2E39458F56C8E_inline (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
// System.Boolean Unity.Collections.NativeArray`1<System.Byte>::get_IsCreated()
inline bool NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method)
{
return (( bool (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, const RuntimeMethod*))NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_gshared)(__this, method);
}
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_capacityInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventBuffer_get_capacityInBytes_m880911F29058AFF745E74D509EB224261374089B (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
// Unity.Collections.NativeArray`1<System.Byte> UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_data()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
// System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafeBufferPointerWithoutChecks<System.Byte>(Unity.Collections.NativeArray`1<T>)
inline void* NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___nativeArray0, const RuntimeMethod* method)
{
return (( void* (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF, const RuntimeMethod*))NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_gshared)(___nativeArray0, method);
}
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventPtr::op_Implicit(UnityEngine.InputSystem.LowLevel.InputEvent*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventPtr_op_Implicit_m599D70C2004FF6B28F13469EDB1421224095F432 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_bufferPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventBuffer_get_bufferPtr_m7C5E03ED8F0433B3CD4F019DFADDE3983472DACB (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<System.Byte>(System.Void*,System.Int32,Unity.Collections.Allocator)
inline NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m43F0AE90A986A434C9B62B82562A021E0B5065C0 (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
return (( NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m43F0AE90A986A434C9B62B82562A021E0B5065C0_gshared)(___dataPointer0, ___length1, ___allocator2, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::.ctor(UnityEngine.InputSystem.LowLevel.InputEvent*,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer__ctor_mC9DC5120D654A771A3E7B8B21E89EE6071DD01C3 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, int32_t ___eventCount1, int32_t ___sizeInBytes2, int32_t ___capacityInBytes3, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::.ctor(Unity.Collections.NativeArray`1<System.Byte>,System.Int32,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer__ctor_mE2DE130D019FEE1A6E4DE07D0EDA233F7008D50B (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___buffer0, int32_t ___eventCount1, int32_t ___sizeInBytes2, bool ___transferNativeArrayOwnership3, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventBuffer::AllocateEvent(System.Int32,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventBuffer_AllocateEvent_m8B8C57E4A0764F048F9FC7D61B9E1329A6A2BC7C (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, int32_t ___sizeInBytes0, int32_t ___capacityIncrementInBytes1, int32_t ___allocator2, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::AppendEvent(UnityEngine.InputSystem.LowLevel.InputEvent*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_AppendEvent_mAEC914B9C5C5534378199FF5C35D7EB57215E011 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, int32_t ___capacityIncrementInBytes1, int32_t ___allocator2, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.NumberHelpers::AlignToMultipleOf(System.Int32,System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t NumberHelpers_AlignToMultipleOf_mC0AB871E2290467B6E6661572B87E57888FB36E0_inline (int32_t ___number0, int32_t ___alignment1, const RuntimeMethod* method) ;
// System.Int64 UnityEngine.InputSystem.Utilities.NumberHelpers::AlignToMultipleOf(System.Int64,System.Int64)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t NumberHelpers_AlignToMultipleOf_m645FD7986206E11C0148F37E59E84ADB693022D3_inline (int64_t ___number0, int64_t ___alignment1, const RuntimeMethod* method) ;
// System.Void Unity.Collections.NativeArray`1<System.Byte>::Dispose()
inline void NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, const RuntimeMethod*))NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_gshared)(__this, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_Reset_m9E41B3CE9C7556C62AFC55772D7D4FBA8A99360B (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEvent::GetNextInMemoryChecked(UnityEngine.InputSystem.LowLevel.InputEvent*,UnityEngine.InputSystem.LowLevel.InputEventBuffer&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEvent_GetNextInMemoryChecked_mE6034EBF4B5766E3C5E9CE6470319451BE6BD6DB (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___currentPtr0, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___buffer1, const RuntimeMethod* method) ;
// System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::MemMove(System.Void*,System.Void*,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeUtility_MemMove_mAF0E5DFE1A5A2AE587152991DAA57D1C06881D47 (void* ___destination0, void* ___source1, int64_t ___size2, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::AdvanceToNextEvent(UnityEngine.InputSystem.LowLevel.InputEvent*&,UnityEngine.InputSystem.LowLevel.InputEvent*&,System.Int32&,System.Int32&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_AdvanceToNextEvent_m2A711A2AA87D26A027FFE4EFD01EBD296EE0B283 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** ___currentReadPos0, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** ___currentWritePos1, int32_t* ___numEventsRetainedInBuffer2, int32_t* ___numRemainingEvents3, bool ___leaveEventInBuffer4, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::.ctor(UnityEngine.InputSystem.LowLevel.InputEventBuffer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m7E8F2DD4EF823AAE6BED80246AB47FA28D6CBF25 (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE ___buffer0, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerator`1<UnityEngine.InputSystem.LowLevel.InputEventPtr> UnityEngine.InputSystem.LowLevel.InputEventBuffer::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventBuffer_GetEnumerator_m8E92BD380FD5C4F755EA09A6F29503A96063B8E9 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
// System.Collections.IEnumerator UnityEngine.InputSystem.LowLevel.InputEventBuffer::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventBuffer_System_Collections_IEnumerable_GetEnumerator_mFBF67C909C77C7FF68058E221AC01ED74CB2D340 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_Dispose_mC0CD0CC5F58859A221221F1A3FAE84B8EFB5CFF3 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
// System.Void Unity.Collections.NativeArray`1<System.Byte>::CopyFrom(Unity.Collections.NativeArray`1<T>)
inline void NativeArray_1_CopyFrom_mCF4D43C37F14A2904C5BA14973DDE501D965DA89 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___array0, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF, const RuntimeMethod*))NativeArray_1_CopyFrom_mCF4D43C37F14A2904C5BA14973DDE501D965DA89_gshared)(__this, ___array0, method);
}
// UnityEngine.InputSystem.LowLevel.InputEventBuffer UnityEngine.InputSystem.LowLevel.InputEventBuffer::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE InputEventBuffer_Clone_mA9E1A893CAF0F4715708C5F20FDEA611F318433E (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
// System.Object UnityEngine.InputSystem.LowLevel.InputEventBuffer::System.ICloneable.Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventBuffer_System_ICloneable_Clone_m561F47611001D3FD27F0EFE00F6B35419588FE8E (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::op_Implicit(UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_op_Implicit_m404BDC6FF1FB748C1365FFEA330CDDD6579A2E6A (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___eventPtr0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEvent::GetNextInMemory(UnityEngine.InputSystem.LowLevel.InputEvent*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEvent_GetNextInMemory_m236F5B3C61DB3F992C08B3A8366AE0BD9EDE2FAA (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___currentPtr0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mC216F4A5B10FB25897447B0160DFA944959645DB (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m15A8D8A03F18E0BBFEB037431DF8AEA7DD13AB9A (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mAA913AB7EB32CD2968F0CE0F6419415E4DB4CC61 (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 Enumerator_get_Current_mA52496728906BA25D2755DD0668DE3D249015C6C (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method) ;
// System.Object UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_m165767DDDDCC3984D08238C5201A8D4230A18364 (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method) ;
// System.Void System.Threading.Monitor::Exit(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9 (RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4 (RuntimeObject* ___obj0, bool* ___lockTaken1, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputManager::add_onEvent(System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_add_onEvent_mFC20DA985A46A223DE9A1ADFFD39A5DB0083130C (InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* __this, Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.InputManager::remove_onEvent(System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_remove_onEvent_mA84D2D17A18F63251F21D05802E2F75BC811E8DD (InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* __this, Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventListener/ObserverState::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObserverState__ctor_mAFCE13C0DF1AE39D4F4E72779FF84824706A48B2 (ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1<System.IObserver`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>>::AppendWithCapacity(TValue,System.Int32)
inline int32_t InlinedArray_1_AppendWithCapacity_m7D120AE2B1401CD22AEE9DC9662CCC0DC84BBB60 (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* __this, RuntimeObject* ___value0, int32_t ___capacityIncrement1, const RuntimeMethod* method)
{
return (( int32_t (*) (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5*, RuntimeObject*, int32_t, const RuntimeMethod*))InlinedArray_1_AppendWithCapacity_m9862A91090391A77B2DCC2428616248FC176C180_gshared)(__this, ___value0, ___capacityIncrement1, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventListener/DisposableObserver::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DisposableObserver__ctor_mAF66BFE27ECE1AFC1C6B2E29B29AF9359C25926F (DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73* __this, const RuntimeMethod* method) ;
// System.IDisposable UnityEngine.InputSystem.LowLevel.InputEventListener::Subscribe(System.IObserver`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventListener_Subscribe_m3ADB3B6392CD85DA61E506AA7D698D4F2E7585D0 (InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D* __this, RuntimeObject* ___observer0, const RuntimeMethod* method) ;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1<System.IObserver`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>>::get_Item(System.Int32)
inline RuntimeObject* InlinedArray_1_get_Item_m9028E5429BC2E916894F7F533B18E2D628C53CD9 (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5*, int32_t, const RuntimeMethod*))InlinedArray_1_get_Item_m36DBC031029BD3E52C31E50BE0B84DA3990A6021_gshared)(__this, ___index0, method);
}
// System.Int32 UnityEngine.InputSystem.Utilities.InputArrayExtensions::IndexOfReference<System.IObserver`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>>(UnityEngine.InputSystem.Utilities.InlinedArray`1<TValue>,TValue)
inline int32_t InputArrayExtensions_IndexOfReference_TisIObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5_mF3D43CA41C7D31102F3943B9522A3FC16074AA15 (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5 ___array0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
return (( int32_t (*) (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5, RuntimeObject*, const RuntimeMethod*))InputArrayExtensions_IndexOfReference_TisRuntimeObject_m2AD328E9127CDAE7CD18763468F70348E0DC9181_gshared)(___array0, ___value1, method);
}
// System.Void UnityEngine.InputSystem.Utilities.InlinedArray`1<System.IObserver`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>>::RemoveAtWithCapacity(System.Int32)
inline void InlinedArray_1_RemoveAtWithCapacity_m8C65A9998195061436978BFFC7624D99DFAA3976 (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5*, int32_t, const RuntimeMethod*))InlinedArray_1_RemoveAtWithCapacity_mE12D4976DF40F114BA2B56DE9EA9C66F248F466C_gshared)(__this, ___index0, method);
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::get_handled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_get_handled_m6981E3A01858EB383B2420DA720DE82BF7A8ADFF (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_get_id_mED485DFF0A720B0A27201BAFD554D42A8FE527FB (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_id(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_id_m8CCBE3CAF92578F56613E99AAA4334BCCFCFD40B (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_sizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_sizeInBytes_mE060F5A7176AAF8ED749DB4A3DC7976249716597 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_deviceId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_get_deviceId_mD8B68EDC37D90A69EE67A47B3E17F4D80D4620D3 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_deviceId(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_deviceId_mDC5B90109CDEECE63A5F1310379DB8B1B31D2B97 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_time(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_time_m6058E3EFFAC41CA39B2F16CB8F184F03CDEE6E13 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, double ___value0, const RuntimeMethod* method) ;
// System.Double UnityEngine.InputSystem.LowLevel.InputEventPtr::get_internalTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEventPtr_get_internalTime_mB0A20BAF50AC9842691B0495A766A18B05CB4781 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_internalTime(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_internalTime_mBD0B465C6882DD13F5FA3AAE487C0FA8A68E3810 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, double ___value0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.Utilities.FourCC::op_Equality(UnityEngine.InputSystem.Utilities.FourCC,UnityEngine.InputSystem.Utilities.FourCC)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FourCC_op_Equality_m1C2BB96D1AAB9E1D1B04D444F33C960D2502B674 (FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___left0, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___right1, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.StateEvent* UnityEngine.InputSystem.LowLevel.StateEvent::FromUnchecked(UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* StateEvent_FromUnchecked_mED4304E6B802FC734B206A997DDC49B12FEBB29D (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___ptr0, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.LowLevel.InputEventPtr::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputEventPtr_ToString_m0A7FB7472629B3197AEF7DEEE9DD69A4A6989BC6 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventPtr::get_stateFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventPtr_get_stateFormat_m664BD225A799818C59844F7749CF52A0F588D9B4 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::IsA<UnityEngine.InputSystem.LowLevel.StateEvent>()
inline bool InputEventPtr_IsA_TisStateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F_mA9BDDBB4B234A924F74AB0343F6F3CFDBFF70327 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
return (( bool (*) (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*, const RuntimeMethod*))InputEventPtr_IsA_TisStateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F_mA9BDDBB4B234A924F74AB0343F6F3CFDBFF70327_gshared)(__this, method);
}
// UnityEngine.InputSystem.LowLevel.StateEvent* UnityEngine.InputSystem.LowLevel.StateEvent::From(UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* StateEvent_From_m166403F2FFBE599A37B2D54799E2F27FE38331A9 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___ptr0, const RuntimeMethod* method) ;
// System.UInt32 UnityEngine.InputSystem.LowLevel.StateEvent::get_stateSizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t StateEvent_get_stateSizeInBytes_m07E8E8D19DA4D9B58A23DC19680794764AE8FA21 (StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.DeltaStateEvent* UnityEngine.InputSystem.LowLevel.DeltaStateEvent::From(UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* DeltaStateEvent_From_mC63B48B86DC2A4699F37521D347FBC89A07C6E8F (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___ptr0, const RuntimeMethod* method) ;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_stateSizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_stateSizeInBytes_m4C0F58AF9A43543102B597F3ACDCAED40D2B95AB (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_stateOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_stateOffset_mDB68F2BF9E2D3B80A98ED6B8DE02F1C3C55D69E4 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventPtr::Next()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventPtr_Next_m401E057F7E6DAB9468F04D705173539E8876809D (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::ToPointer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_ToPointer_m2DE1A988A02CC6E632A5262095B719513F166CA6 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEvent::Equals(UnityEngine.InputSystem.LowLevel.InputEvent*,UnityEngine.InputSystem.LowLevel.InputEvent*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEvent_Equals_mB65BE566EA32A48CF40237611DC5E3C278C4C3CF (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___first0, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___second1, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::Equals(UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_Equals_mCFEB98EADAE1C3EAA45E6C0406EC31CEEEB0FC92 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___other0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_Equals_m4B42D08FF9450733C111417BC49A24257F211DD8 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventPtr::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_GetHashCode_m97B532D8E6CD524F78323A2F079F1267DB296D1E (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventStream::get_isOpen()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool InputEventStream_get_isOpen_mEE33B97DA48F80B43BCE58D08FCAE51958E6459D_inline (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventStream::get_remainingEventCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventStream_get_remainingEventCount_mFA68F507B5BF80A3E88C89C9DC973B17B61E2CE8 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventStream::get_numEventsRetainedInBuffer()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputEventStream_get_numEventsRetainedInBuffer_m4656DA6E9272986459D283EE8B8F74773C2D130A_inline (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::get_currentEventPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_get_currentEventPtr_mE13C48ED3B452218CF8517F2DDDF0ACDF2C342B1 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method) ;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputEventStream::get_numBytesRetainedInBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventStream_get_numBytesRetainedInBuffer_mF899CE61DF44A43CACFD8BA969EF31A6BDAA6BDF (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventStream::.ctor(UnityEngine.InputSystem.LowLevel.InputEventBuffer&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream__ctor_m52AB2424A03D286B202C0E69BF8392C3AFB2D604 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___eventBuffer0, int32_t ___maxAppendedEvents1, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventStream::Close(UnityEngine.InputSystem.LowLevel.InputEventBuffer&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_Close_m1111A4CFB8F92C63C3A0138A92D2B74F3722D691 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___eventBuffer0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventStream::CleanUpAfterException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_CleanUpAfterException_m1025CADD374BCE7F4A96D5A6CD78AFAB3F253011 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.Debug::LogError(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_m059825802BB6AF7EA9693FEBEEB0D85F59A3E38E (RuntimeObject* ___message0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventStream::Write(UnityEngine.InputSystem.LowLevel.InputEvent*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_Write_m1F494325BF10678460D41D7A07333DB17F64487E (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::Advance(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_Advance_mD8B6B308674E69472F69AA65F3F1D49FBE7A13F1 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, bool ___leaveEventInBuffer0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::Peek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_Peek_m315B9E86A362176249564F94D8590ECFD4089120 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method) ;
// System.Byte* UnityEngine.InputSystem.LowLevel.InputEventTrace::get_m_EventBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<TValue> UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo>::op_Implicit(TValue[])
inline ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570 ReadOnlyArray_1_op_Implicit_m1291C740F5550F006C2001EAF01E1EF009677B22 (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* ___array0, const RuntimeMethod* method)
{
return (( ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570 (*) (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A*, const RuntimeMethod*))ReadOnlyArray_1_op_Implicit_m1291C740F5550F006C2001EAF01E1EF009677B22_gshared)(___array0, method);
}
// System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>>::AddCallback(TDelegate)
inline void CallbackArray_1_AddCallback_m3952EFDAB87F62F3748292CDF90AB17DFB3BC72B (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* __this, Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* ___dlg0, const RuntimeMethod* method)
{
(( void (*) (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477*, Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C*, const RuntimeMethod*))CallbackArray_1_AddCallback_mB86EC6413C0AB2C12A88FA8141E3ACDA83DA2C6D_gshared)(__this, ___dlg0, method);
}
// System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>>::RemoveCallback(TDelegate)
inline void CallbackArray_1_RemoveCallback_m193ADCFAE914FE65AB4E5206FA645A02CDC9890D (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* __this, Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* ___dlg0, const RuntimeMethod* method)
{
(( void (*) (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477*, Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C*, const RuntimeMethod*))CallbackArray_1_RemoveCallback_mDEEFD791C9654F4EE7C2586BD7DED83F74D897B2_gshared)(__this, ___dlg0, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::.ctor(System.Int64,System.Boolean,System.Int64,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace__ctor_m33E71735CDB4DEC9D50431B1DF90CA88BD532AB3 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, int64_t ___bufferSizeInBytes0, bool ___growBuffer1, int64_t ___maxBufferSizeInBytes2, int64_t ___growIncrementSizeInBytes3, const RuntimeMethod* method) ;
// System.IO.FileStream System.IO.File::OpenWrite(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* File_OpenWrite_m6B0534629A4C3130AA4B611FFB492D3905081D69 (String_t* ___path0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::WriteTo(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_WriteTo_mCCAB194CB8909F1BEC6854A0CA39FF87160629D7 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, const RuntimeMethod* method) ;
// System.Void System.IO.BinaryWriter::.ctor(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter__ctor_mF2F1235E378C3EC493A8C816597BCEB4205A9CA0 (BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___output0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventTrace::get_kFileFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventTrace_get_kFileFormat_m100D583854AC0253CD6C32A04AB729C55AB7D46F (const RuntimeMethod* method) ;
// UnityEngine.RuntimePlatform UnityEngine.Application::get_platform()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Application_get_platform_m1AB34E71D9885B120F6021EB2B11DCB28CD6008D (const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerator`1<UnityEngine.InputSystem.LowLevel.InputEventPtr> UnityEngine.InputSystem.LowLevel.InputEventTrace::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventTrace_GetEnumerator_mEB8437D4B14D194CBA901FB9DD034AB0BD1015E3 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::LengthSafe<UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo>(TValue[])
inline int32_t ArrayHelpers_LengthSafe_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m23FEE5388406AABEE411B02BE7EB7F6CFB9B5DFF (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* ___array0, const RuntimeMethod* method)
{
return (( int32_t (*) (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A*, const RuntimeMethod*))ArrayHelpers_LengthSafe_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m23FEE5388406AABEE411B02BE7EB7F6CFB9B5DFF_gshared)(___array0, method);
}
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::get_deviceId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DeviceInfo_get_deviceId_m1F56DCC1850CA1B775C357DA6D521F04EA74F0C6_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::get_layout()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DeviceInfo_get_layout_mC531D6400FCF8EE7CCBE96D0DC9328BC0A5AC24C_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::get_stateFormat()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceInfo_get_stateFormat_mA04A926E1277535752AC4117996C3B0F89D26916_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::get_stateSizeInBytes()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DeviceInfo_get_stateSizeInBytes_mD21A7DBF02B25079F7A1F1482AC2EFE5A86F5C9C_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method) ;
// System.IO.FileStream System.IO.File::OpenRead(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* File_OpenRead_m32C8C37542B7A02A2F643E3B816D16ABE690FF50 (String_t* ___path0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::ReadFrom(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, const RuntimeMethod* method) ;
// System.Void System.IO.BinaryReader::.ctor(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryReader__ctor_m898732FE0DBEDD480B24F6DE45A9AC696E44CC0F (BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___input0, const RuntimeMethod* method) ;
// System.Void System.IO.IOException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOException__ctor_mE0612A16064F93C7EBB468D6874777BD70CB50CA (IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void* Unity.Collections.LowLevel.Unsafe.UnsafeUtility::Malloc(System.Int64,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* UnsafeUtility_Malloc_mA79BF3D6FC86F67D4354A6C8481DB0F13FD6777B (int64_t ___size0, int32_t ___alignment1, int32_t ___allocator2, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::set_deviceId(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_deviceId_m76EE4AFBA1FA3FFACF2E017498621E66A819DEBD_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::set_layout(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_layout_mB0175279434FFE48B744FE2CA4800A1EF24B2D69_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::set_stateFormat(UnityEngine.InputSystem.Utilities.FourCC)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_stateFormat_mFC8581D56C34FFCBF8264CFD61BA12CE56755478_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::set_stateSizeInBytes(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_stateSizeInBytes_m7D7507BD0D817A86E99E3E44E216B31855ED06B3_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_m_EventBuffer(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBuffer_m9E277FFE218D8DB8738E10166B8685AAEBF20A56 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, uint8_t* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_m_EventBufferHead(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, uint8_t* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_m_EventBufferTail(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, uint8_t* ___value0, const RuntimeMethod* method) ;
// System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::Free(System.Void*,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeUtility_Free_mA951B190894E1755DE821FCBD35F7AD9FB388F18 (void* ___memory0, int32_t ___allocator1, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.LowLevel.InputEventTrace UnityEngine.InputSystem.LowLevel.InputEventTrace::LoadFrom(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* InputEventTrace_LoadFrom_mE21BD1BF696EB9B7756199C143AE32FBEBDFB49C (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Disable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Disable_m58CF35DBD23C6091AEE498C2DFC14E40D51BA8D9 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::.ctor(UnityEngine.InputSystem.LowLevel.InputEventTrace)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReplayController__ctor_mFACECC15923550957D306EF31786A98FD37F1F03 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* ___trace0, const RuntimeMethod* method) ;
// System.Byte* UnityEngine.InputSystem.LowLevel.InputEventTrace::get_m_EventBufferHead()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::GetNextEvent(UnityEngine.InputSystem.LowLevel.InputEventPtr&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_GetNextEvent_mDF7ED13DD6F42BA87EDE532CAB99BB697C8B108A (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* ___current0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Allocate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Allocate_mDF187B47860B3630C655626FC6745DA0CC927E9D (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method) ;
// System.Byte* UnityEngine.InputSystem.LowLevel.InputEventTrace::get_m_EventBufferTail()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator::.ctor(UnityEngine.InputSystem.LowLevel.InputEventTrace)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m4F5637FFD01430441D557749B2443A43E2E52575 (Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* __this, InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* ___trace0, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Release()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Release_m07D09F2199EA12E1DA722C54B84C4E1398081D01 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Clear_mA0F23B4A934720A074AF146EDC4B1758BE341ED2 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventTrace::get_FrameMarkerEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventTrace_get_FrameMarkerEvent_m2AABF936DE8A85187532D4A6B98B41DDB9955561 (const RuntimeMethod* method) ;
// System.Int32 Unity.Collections.LowLevel.Unsafe.UnsafeUtility::SizeOf<UnityEngine.InputSystem.LowLevel.InputEvent>()
inline int32_t UnsafeUtility_SizeOf_TisInputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5_mE272E24745A5A5359FDC77837068A5C4B9421E75 (const RuntimeMethod* method)
{
return (( int32_t (*) (const RuntimeMethod*))UnsafeUtility_SizeOf_TisInputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5_mE272E24745A5A5359FDC77837068A5C4B9421E75_gshared)(method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::OnInputEvent(UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_OnInputEvent_m119567393F344B8F53888E8564191B1280414AC8 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___inputEvent0, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device1, const RuntimeMethod* method) ;
// TResult System.Func`3<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice,System.Boolean>::Invoke(T1,T2)
inline bool Func_3_Invoke_mF26F7E74E56162E7527FB17F4A83729B04772C55_inline (Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___arg10, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___arg21, const RuntimeMethod* method)
{
return (( bool (*) (Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0*, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*, const RuntimeMethod*))Func_3_Invoke_m0F49563C5B847FD0AA5D523797CC38C4C1476D8F_gshared_inline)(__this, ___arg10, ___arg21, method);
}
// System.Void UnityEngine.Profiling.Profiler::BeginSample(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Profiler_BeginSample_mA836D6E554511CBEAD80F55EE41AAA5D1B26B3DE_inline (String_t* ___name0, const RuntimeMethod* method) ;
// System.Int64 System.Math::Max(System.Int64,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Math_Max_mA040C488C0D1F062F109992835E8498A7D24EFA5 (int64_t ___val10, int64_t ___val21, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::Resize(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_Resize_m0319AC81996595EBA1C5C16A7C2C2EB24310DB0A (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, int64_t ___newBufferSize0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::IsGeneratedLayout(UnityEngine.InputSystem.Utilities.InternedString)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Collection_IsGeneratedLayout_mAD9527FC1D6FA3C9075ACAF2F0215E3B5C0C359C (Collection_t6E9F85AD439CF26269683541C4DC58BA3B6756C5* __this, InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___layout0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Layouts.InputControlLayout UnityEngine.InputSystem.InputSystem::LoadLayout(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D* InputSystem_LoadLayout_mA58ABD2C31E63EC4E2F47F9E2B7F08A6185366FC (String_t* ___name0, const RuntimeMethod* method) ;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout::ToJson()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputControlLayout_ToJson_mC3A56BD729D0884D80D6215145CBB99BBB3AE358 (InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::Append<UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo>(TValue[]&,TValue)
inline int32_t ArrayHelpers_Append_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m50A8921FF90F5A6E5BA2D15D6D58D486B3D882BC (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A** ___array0, DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 ___value1, const RuntimeMethod* method)
{
return (( int32_t (*) (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A**, DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52, const RuntimeMethod*))ArrayHelpers_Append_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m50A8921FF90F5A6E5BA2D15D6D58D486B3D882BC_gshared)(___array0, ___value1, method);
}
// System.Int32 UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>>::get_length()
inline int32_t CallbackArray_1_get_length_m096E657BAB53406356BABE16CE03C92212CF5A52 (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477*, const RuntimeMethod*))CallbackArray_1_get_length_m81CB1E446FBEF126C2096B08E643D63ACDDBD0F1_gshared)(__this, method);
}
// System.Void UnityEngine.InputSystem.Utilities.DelegateHelpers::InvokeCallbacksSafe<UnityEngine.InputSystem.LowLevel.InputEventPtr>(UnityEngine.InputSystem.Utilities.CallbackArray`1<System.Action`1<TValue>>&,TValue,System.String,System.Object)
inline void DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_m4EA8E60C61F02A061BF6D95B1411AC917E54A074 (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* ___callbacks0, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___argument1, String_t* ___callbackName2, RuntimeObject* ___context3, const RuntimeMethod* method)
{
(( void (*) (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477*, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0, String_t*, RuntimeObject*, const RuntimeMethod*))DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_m4EA8E60C61F02A061BF6D95B1411AC917E54A074_gshared)(___callbacks0, ___argument1, ___callbackName2, ___context3, method);
}
// System.Void UnityEngine.Profiling.Profiler::EndSample()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Profiler_EndSample_m450653E4210CC1B4E1210C29F62FC48F8F250437 (const RuntimeMethod* method) ;
// System.Void UnityEngine.Vector2::.ctor(System.Single,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___x0, float ___y1, const RuntimeMethod* method) ;
// System.Void UnityEngine.Vector3::.ctor(System.Single,System.Single,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, float ___x0, float ___y1, float ___z2, const RuntimeMethod* method) ;
// System.Single UnityEngine.Mathf::Max(System.Single,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Max_mA9DCA91E87D6D27034F56ABA52606A9090406016_inline (float ___a0, float ___b1, const RuntimeMethod* method) ;
// System.Void UnityEngine.Profiling.Profiler::ValidateArguments(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Profiler_ValidateArguments_m732E71FF4C28CBEDD8D4CD51DA409198224ED395_inline (String_t* ___name0, const RuntimeMethod* method) ;
// System.Void UnityEngine.Profiling.Profiler::BeginSampleImpl(System.String,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Profiler_BeginSampleImpl_m11DCED1F062EEB6A07FE36224080BAEDC65D5A87 (String_t* ___name0, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___targetObject1, const RuntimeMethod* method) ;
// System.Void System.Array::Clear(System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m48B57EC27CADC3463CA98A33373D557DA587FF1B (RuntimeArray* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor
IL2CPP_EXTERN_C void HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshal_pinvoke(const HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59& unmarshaled, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshaled_pinvoke& marshaled)
{
Exception_t* ___elements_7Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'elements' of type 'HIDDeviceDescriptor'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___elements_7Exception, NULL);
}
IL2CPP_EXTERN_C void HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshal_pinvoke_back(const HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshaled_pinvoke& marshaled, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59& unmarshaled)
{
Exception_t* ___elements_7Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'elements' of type 'HIDDeviceDescriptor'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___elements_7Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor
IL2CPP_EXTERN_C void HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshal_pinvoke_cleanup(HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor
IL2CPP_EXTERN_C void HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshal_com(const HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59& unmarshaled, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshaled_com& marshaled)
{
Exception_t* ___elements_7Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'elements' of type 'HIDDeviceDescriptor'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___elements_7Exception, NULL);
}
IL2CPP_EXTERN_C void HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshal_com_back(const HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshaled_com& marshaled, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59& unmarshaled)
{
Exception_t* ___elements_7Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'elements' of type 'HIDDeviceDescriptor'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___elements_7Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor
IL2CPP_EXTERN_C void HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshal_com_cleanup(HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshaled_com& marshaled)
{
}
// System.String UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::ToJson()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HIDDeviceDescriptor_ToJson_mF1F8181F21DFC7786988C6B5B24592ED60C97C68 (HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
// return JsonUtility.ToJson(this, true);
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_0 = (*(HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59*)__this);
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_1 = L_0;
RuntimeObject* L_2 = Box(HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_il2cpp_TypeInfo_var, &L_1);
String_t* L_3;
L_3 = JsonUtility_ToJson_mA7B20656D12861446AAA157DF6E9ACBBD78EC0AC(L_2, (bool)1, NULL);
V_0 = L_3;
goto IL_0015;
}
IL_0015:
{
// }
String_t* L_4 = V_0;
return L_4;
}
}
IL2CPP_EXTERN_C String_t* HIDDeviceDescriptor_ToJson_mF1F8181F21DFC7786988C6B5B24592ED60C97C68_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59*>(__this + _offset);
String_t* _returnValue;
_returnValue = HIDDeviceDescriptor_ToJson_mF1F8181F21DFC7786988C6B5B24592ED60C97C68(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::FromJson(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 HIDDeviceDescriptor_FromJson_m3A3B6FA5752E884ABDFDD8D896EBDAF0884EA8B9 (String_t* ___json0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonUtility_FromJson_TisHIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_m606903A6B6AF076EAA11F3F733032BF631DA5FAD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// return JsonUtility.FromJson<HIDDeviceDescriptor>(json);
String_t* L_0 = ___json0;
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_1;
L_1 = JsonUtility_FromJson_TisHIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_m606903A6B6AF076EAA11F3F733032BF631DA5FAD(L_0, JsonUtility_FromJson_TisHIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_m606903A6B6AF076EAA11F3F733032BF631DA5FAD_RuntimeMethod_var);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
// }
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder
IL2CPP_EXTERN_C void HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshal_pinvoke(const HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C& unmarshaled, HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_Elements_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Elements' of type 'HIDDeviceDescriptorBuilder'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Elements_5Exception, NULL);
}
IL2CPP_EXTERN_C void HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshal_pinvoke_back(const HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshaled_pinvoke& marshaled, HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C& unmarshaled)
{
Exception_t* ___m_Elements_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Elements' of type 'HIDDeviceDescriptorBuilder'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Elements_5Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder
IL2CPP_EXTERN_C void HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshal_pinvoke_cleanup(HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder
IL2CPP_EXTERN_C void HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshal_com(const HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C& unmarshaled, HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshaled_com& marshaled)
{
Exception_t* ___m_Elements_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Elements' of type 'HIDDeviceDescriptorBuilder'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Elements_5Exception, NULL);
}
IL2CPP_EXTERN_C void HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshal_com_back(const HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshaled_com& marshaled, HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C& unmarshaled)
{
Exception_t* ___m_Elements_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Elements' of type 'HIDDeviceDescriptorBuilder'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Elements_5Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder
IL2CPP_EXTERN_C void HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshal_com_cleanup(HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshaled_com& marshaled)
{
}
// System.Void UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::.ctor(UnityEngine.InputSystem.HID.HID/UsagePage,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDDeviceDescriptorBuilder__ctor_mB72574F6CACA0E638DAA7437168EABD2F32B9C07 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___usagePage0, int32_t ___usage1, const RuntimeMethod* method)
{
{
// : this()
il2cpp_codegen_initobj(__this, sizeof(HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C));
// this.usagePage = usagePage;
int32_t L_0 = ___usagePage0;
__this->___usagePage_0 = L_0;
// this.usage = usage;
int32_t L_1 = ___usage1;
__this->___usage_1 = L_1;
// }
return;
}
}
IL2CPP_EXTERN_C void HIDDeviceDescriptorBuilder__ctor_mB72574F6CACA0E638DAA7437168EABD2F32B9C07_AdjustorThunk (RuntimeObject* __this, int32_t ___usagePage0, int32_t ___usage1, const RuntimeMethod* method)
{
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*>(__this + _offset);
HIDDeviceDescriptorBuilder__ctor_mB72574F6CACA0E638DAA7437168EABD2F32B9C07(_thisAdjusted, ___usagePage0, ___usage1, method);
}
// System.Void UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::.ctor(UnityEngine.InputSystem.HID.HID/GenericDesktop)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDDeviceDescriptorBuilder__ctor_mA089E89EDBAA54275A999D4BEC12B0A47562D9B4 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___usage0, const RuntimeMethod* method)
{
{
// : this(UsagePage.GenericDesktop, (int)usage)
int32_t L_0 = ___usage0;
HIDDeviceDescriptorBuilder__ctor_mB72574F6CACA0E638DAA7437168EABD2F32B9C07(__this, 1, L_0, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void HIDDeviceDescriptorBuilder__ctor_mA089E89EDBAA54275A999D4BEC12B0A47562D9B4_AdjustorThunk (RuntimeObject* __this, int32_t ___usage0, const RuntimeMethod* method)
{
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*>(__this + _offset);
HIDDeviceDescriptorBuilder__ctor_mA089E89EDBAA54275A999D4BEC12B0A47562D9B4(_thisAdjusted, ___usage0, method);
}
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::StartReport(UnityEngine.InputSystem.HID.HID/HIDReportType,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_StartReport_mA82F406CEAB8AA31436EC6041A88E9F9D21A4438 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___reportType0, int32_t ___reportId1, const RuntimeMethod* method)
{
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C V_0;
memset((&V_0), 0, sizeof(V_0));
{
// m_CurrentReportId = reportId;
int32_t L_0 = ___reportId1;
__this->___m_CurrentReportId_2 = L_0;
// m_CurrentReportType = reportType;
int32_t L_1 = ___reportType0;
__this->___m_CurrentReportType_3 = L_1;
// m_CurrentReportOffsetInBits = 8; // Report ID.
__this->___m_CurrentReportOffsetInBits_4 = 8;
// return this;
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C L_2 = (*(HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*)__this);
V_0 = L_2;
goto IL_001f;
}
IL_001f:
{
// }
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C L_3 = V_0;
return L_3;
}
}
IL2CPP_EXTERN_C HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_StartReport_mA82F406CEAB8AA31436EC6041A88E9F9D21A4438_AdjustorThunk (RuntimeObject* __this, int32_t ___reportType0, int32_t ___reportId1, const RuntimeMethod* method)
{
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*>(__this + _offset);
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C _returnValue;
_returnValue = HIDDeviceDescriptorBuilder_StartReport_mA82F406CEAB8AA31436EC6041A88E9F9D21A4438(_thisAdjusted, ___reportType0, ___reportId1, method);
return _returnValue;
}
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::AddElement(UnityEngine.InputSystem.HID.HID/UsagePage,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_AddElement_mD994613C265EE2137E086C3BD8A028E81763647E (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___usagePage0, int32_t ___usage1, int32_t ___sizeInBits2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mEDB482ACA649331B5EF4524B9E1D4C3B9BCD1134_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mB9DC3D934804170CFD1F8B40AD171946368F5E8C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m5EA592269528B338C04111C5D99C9FA016762671_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mC605D61CAC954D4A3A8D348D5D221B814319A038_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t66029D02EA129D03A082E470EB98C85812301A0C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60 V_1;
memset((&V_1), 0, sizeof(V_1));
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED V_2;
memset((&V_2), 0, sizeof(V_2));
bool V_3 = false;
bool V_4 = false;
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED V_5;
memset((&V_5), 0, sizeof(V_5));
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C V_6;
memset((&V_6), 0, sizeof(V_6));
int32_t G_B7_0 = 0;
int32_t G_B12_0 = 0;
{
// if (m_Elements == null)
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_0 = __this->___m_Elements_5;
V_0 = (bool)((((RuntimeObject*)(List_1_t66029D02EA129D03A082E470EB98C85812301A0C*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0020;
}
}
{
// m_Elements = new List<HIDElementDescriptor>();
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_2 = (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*)il2cpp_codegen_object_new(List_1_t66029D02EA129D03A082E470EB98C85812301A0C_il2cpp_TypeInfo_var);
NullCheck(L_2);
List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C(L_2, List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C_RuntimeMethod_var);
__this->___m_Elements_5 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Elements_5), (void*)L_2);
goto IL_00b4;
}
IL_0020:
{
// foreach (var element in m_Elements)
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_3 = __this->___m_Elements_5;
NullCheck(L_3);
Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60 L_4;
L_4 = List_1_GetEnumerator_mC605D61CAC954D4A3A8D348D5D221B814319A038(L_3, List_1_GetEnumerator_mC605D61CAC954D4A3A8D348D5D221B814319A038_RuntimeMethod_var);
V_1 = L_4;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00a4:
{// begin finally (depth: 1)
Enumerator_Dispose_mEDB482ACA649331B5EF4524B9E1D4C3B9BCD1134((&V_1), Enumerator_Dispose_mEDB482ACA649331B5EF4524B9E1D4C3B9BCD1134_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0099_1;
}
IL_0030_1:
{
// foreach (var element in m_Elements)
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_5;
L_5 = Enumerator_get_Current_m5EA592269528B338C04111C5D99C9FA016762671_inline((&V_1), Enumerator_get_Current_m5EA592269528B338C04111C5D99C9FA016762671_RuntimeMethod_var);
V_2 = L_5;
// if (element.reportId != m_CurrentReportId || element.reportType != m_CurrentReportType)
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_6 = V_2;
int32_t L_7 = L_6.___reportId_10;
int32_t L_8 = __this->___m_CurrentReportId_2;
if ((!(((uint32_t)L_7) == ((uint32_t)L_8))))
{
goto IL_005a_1;
}
}
{
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_9 = V_2;
int32_t L_10 = L_9.___reportType_8;
int32_t L_11 = __this->___m_CurrentReportType_3;
G_B7_0 = ((((int32_t)((((int32_t)L_10) == ((int32_t)L_11))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_005b_1;
}
IL_005a_1:
{
G_B7_0 = 1;
}
IL_005b_1:
{
V_3 = (bool)G_B7_0;
bool L_12 = V_3;
if (!L_12)
{
goto IL_0061_1;
}
}
{
// continue;
goto IL_0099_1;
}
IL_0061_1:
{
// if (element.usagePage == usagePage && element.usage == usage)
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_13 = V_2;
int32_t L_14 = L_13.___usagePage_1;
int32_t L_15 = ___usagePage0;
if ((!(((uint32_t)L_14) == ((uint32_t)L_15))))
{
goto IL_0075_1;
}
}
{
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_16 = V_2;
int32_t L_17 = L_16.___usage_0;
int32_t L_18 = ___usage1;
G_B12_0 = ((((int32_t)L_17) == ((int32_t)L_18))? 1 : 0);
goto IL_0076_1;
}
IL_0075_1:
{
G_B12_0 = 0;
}
IL_0076_1:
{
V_4 = (bool)G_B12_0;
bool L_19 = V_4;
if (!L_19)
{
goto IL_0098_1;
}
}
{
// throw new InvalidOperationException(
// $"Cannot add two elements with the same usage page '{usagePage}' and usage '0x{usage:X} the to same device");
int32_t L_20 = ___usagePage0;
int32_t L_21 = L_20;
RuntimeObject* L_22 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UsagePage_t6EF545F107AB1DED99B07C377BD0B8457DC6F7B8_il2cpp_TypeInfo_var)), &L_21);
int32_t L_23 = ___usage1;
int32_t L_24 = L_23;
RuntimeObject* L_25 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_24);
String_t* L_26;
L_26 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral98BC550B25E41B9B00C9D21EF0AD0291FE9A85CC)), L_22, L_25, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_27 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_27);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_27, L_26, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HIDDeviceDescriptorBuilder_AddElement_mD994613C265EE2137E086C3BD8A028E81763647E_RuntimeMethod_var)));
}
IL_0098_1:
{
}
IL_0099_1:
{
// foreach (var element in m_Elements)
bool L_28;
L_28 = Enumerator_MoveNext_mB9DC3D934804170CFD1F8B40AD171946368F5E8C((&V_1), Enumerator_MoveNext_mB9DC3D934804170CFD1F8B40AD171946368F5E8C_RuntimeMethod_var);
if (L_28)
{
goto IL_0030_1;
}
}
{
goto IL_00b3;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00b3:
{
}
IL_00b4:
{
// m_Elements.Add(new HIDElementDescriptor
// {
// usage = usage,
// usagePage = usagePage,
// reportOffsetInBits = m_CurrentReportOffsetInBits,
// reportSizeInBits = sizeInBits,
// reportType = m_CurrentReportType,
// reportId = m_CurrentReportId
// });
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_29 = __this->___m_Elements_5;
il2cpp_codegen_initobj((&V_5), sizeof(HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED));
int32_t L_30 = ___usage1;
(&V_5)->___usage_0 = L_30;
int32_t L_31 = ___usagePage0;
(&V_5)->___usagePage_1 = L_31;
int32_t L_32 = __this->___m_CurrentReportOffsetInBits_4;
(&V_5)->___reportOffsetInBits_12 = L_32;
int32_t L_33 = ___sizeInBits2;
(&V_5)->___reportSizeInBits_11 = L_33;
int32_t L_34 = __this->___m_CurrentReportType_3;
(&V_5)->___reportType_8 = L_34;
int32_t L_35 = __this->___m_CurrentReportId_2;
(&V_5)->___reportId_10 = L_35;
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_36 = V_5;
NullCheck(L_29);
List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_inline(L_29, L_36, List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_RuntimeMethod_var);
// m_CurrentReportOffsetInBits += sizeInBits;
int32_t L_37 = __this->___m_CurrentReportOffsetInBits_4;
int32_t L_38 = ___sizeInBits2;
__this->___m_CurrentReportOffsetInBits_4 = ((int32_t)il2cpp_codegen_add(L_37, L_38));
// return this;
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C L_39 = (*(HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*)__this);
V_6 = L_39;
goto IL_0121;
}
IL_0121:
{
// }
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C L_40 = V_6;
return L_40;
}
}
IL2CPP_EXTERN_C HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_AddElement_mD994613C265EE2137E086C3BD8A028E81763647E_AdjustorThunk (RuntimeObject* __this, int32_t ___usagePage0, int32_t ___usage1, int32_t ___sizeInBits2, const RuntimeMethod* method)
{
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*>(__this + _offset);
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C _returnValue;
_returnValue = HIDDeviceDescriptorBuilder_AddElement_mD994613C265EE2137E086C3BD8A028E81763647E(_thisAdjusted, ___usagePage0, ___usage1, ___sizeInBits2, method);
return _returnValue;
}
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::AddElement(UnityEngine.InputSystem.HID.HID/GenericDesktop,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_AddElement_mE95BE338E6B215AA1CA6B97AAD9A135A6A85B417 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___usage0, int32_t ___sizeInBits1, const RuntimeMethod* method)
{
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C V_0;
memset((&V_0), 0, sizeof(V_0));
{
// return AddElement(UsagePage.GenericDesktop, (int)usage, sizeInBits);
int32_t L_0 = ___usage0;
int32_t L_1 = ___sizeInBits1;
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C L_2;
L_2 = HIDDeviceDescriptorBuilder_AddElement_mD994613C265EE2137E086C3BD8A028E81763647E(__this, 1, L_0, L_1, NULL);
V_0 = L_2;
goto IL_000d;
}
IL_000d:
{
// }
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C L_3 = V_0;
return L_3;
}
}
IL2CPP_EXTERN_C HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_AddElement_mE95BE338E6B215AA1CA6B97AAD9A135A6A85B417_AdjustorThunk (RuntimeObject* __this, int32_t ___usage0, int32_t ___sizeInBits1, const RuntimeMethod* method)
{
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*>(__this + _offset);
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C _returnValue;
_returnValue = HIDDeviceDescriptorBuilder_AddElement_mE95BE338E6B215AA1CA6B97AAD9A135A6A85B417(_thisAdjusted, ___usage0, ___sizeInBits1, method);
return _returnValue;
}
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::WithPhysicalMinMax(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_WithPhysicalMinMax_m58B0FD4DA13242CD7B1D7F67FFB664E344A0270A (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___min0, int32_t ___max1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED V_1;
memset((&V_1), 0, sizeof(V_1));
bool V_2 = false;
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C V_3;
memset((&V_3), 0, sizeof(V_3));
{
// var index = m_Elements.Count - 1;
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_0 = __this->___m_Elements_5;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_inline(L_0, List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_RuntimeMethod_var);
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
// if (index < 0)
int32_t L_2 = V_0;
V_2 = (bool)((((int32_t)L_2) < ((int32_t)0))? 1 : 0);
bool L_3 = V_2;
if (!L_3)
{
goto IL_0022;
}
}
{
// throw new InvalidOperationException("No element has been added to the descriptor yet");
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_4 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_4);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral82D598CE3B93B20E038CBF5D5EE6829297E22B95)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HIDDeviceDescriptorBuilder_WithPhysicalMinMax_m58B0FD4DA13242CD7B1D7F67FFB664E344A0270A_RuntimeMethod_var)));
}
IL_0022:
{
// var element = m_Elements[index];
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_5 = __this->___m_Elements_5;
int32_t L_6 = V_0;
NullCheck(L_5);
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_7;
L_7 = List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC(L_5, L_6, List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC_RuntimeMethod_var);
V_1 = L_7;
// element.physicalMin = min;
int32_t L_8 = ___min0;
(&V_1)->___physicalMin_6 = L_8;
// element.physicalMax = max;
int32_t L_9 = ___max1;
(&V_1)->___physicalMax_7 = L_9;
// m_Elements[index] = element;
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_10 = __this->___m_Elements_5;
int32_t L_11 = V_0;
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_12 = V_1;
NullCheck(L_10);
List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822(L_10, L_11, L_12, List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822_RuntimeMethod_var);
// return this;
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C L_13 = (*(HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*)__this);
V_3 = L_13;
goto IL_0056;
}
IL_0056:
{
// }
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C L_14 = V_3;
return L_14;
}
}
IL2CPP_EXTERN_C HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_WithPhysicalMinMax_m58B0FD4DA13242CD7B1D7F67FFB664E344A0270A_AdjustorThunk (RuntimeObject* __this, int32_t ___min0, int32_t ___max1, const RuntimeMethod* method)
{
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*>(__this + _offset);
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C _returnValue;
_returnValue = HIDDeviceDescriptorBuilder_WithPhysicalMinMax_m58B0FD4DA13242CD7B1D7F67FFB664E344A0270A(_thisAdjusted, ___min0, ___max1, method);
return _returnValue;
}
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::WithLogicalMinMax(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_WithLogicalMinMax_m3B81BFABC8C577FFF03F61E1B205DF09B921B5C1 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___min0, int32_t ___max1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED V_1;
memset((&V_1), 0, sizeof(V_1));
bool V_2 = false;
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C V_3;
memset((&V_3), 0, sizeof(V_3));
{
// var index = m_Elements.Count - 1;
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_0 = __this->___m_Elements_5;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_inline(L_0, List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_RuntimeMethod_var);
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
// if (index < 0)
int32_t L_2 = V_0;
V_2 = (bool)((((int32_t)L_2) < ((int32_t)0))? 1 : 0);
bool L_3 = V_2;
if (!L_3)
{
goto IL_0022;
}
}
{
// throw new InvalidOperationException("No element has been added to the descriptor yet");
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_4 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_4);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral82D598CE3B93B20E038CBF5D5EE6829297E22B95)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HIDDeviceDescriptorBuilder_WithLogicalMinMax_m3B81BFABC8C577FFF03F61E1B205DF09B921B5C1_RuntimeMethod_var)));
}
IL_0022:
{
// var element = m_Elements[index];
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_5 = __this->___m_Elements_5;
int32_t L_6 = V_0;
NullCheck(L_5);
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_7;
L_7 = List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC(L_5, L_6, List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC_RuntimeMethod_var);
V_1 = L_7;
// element.logicalMin = min;
int32_t L_8 = ___min0;
(&V_1)->___logicalMin_4 = L_8;
// element.logicalMax = max;
int32_t L_9 = ___max1;
(&V_1)->___logicalMax_5 = L_9;
// m_Elements[index] = element;
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_10 = __this->___m_Elements_5;
int32_t L_11 = V_0;
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_12 = V_1;
NullCheck(L_10);
List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822(L_10, L_11, L_12, List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822_RuntimeMethod_var);
// return this;
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C L_13 = (*(HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*)__this);
V_3 = L_13;
goto IL_0056;
}
IL_0056:
{
// }
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C L_14 = V_3;
return L_14;
}
}
IL2CPP_EXTERN_C HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_WithLogicalMinMax_m3B81BFABC8C577FFF03F61E1B205DF09B921B5C1_AdjustorThunk (RuntimeObject* __this, int32_t ___min0, int32_t ___max1, const RuntimeMethod* method)
{
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*>(__this + _offset);
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C _returnValue;
_returnValue = HIDDeviceDescriptorBuilder_WithLogicalMinMax_m3B81BFABC8C577FFF03F61E1B205DF09B921B5C1(_thisAdjusted, ___min0, ___max1, method);
return _returnValue;
}
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::Finish()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 HIDDeviceDescriptorBuilder_Finish_m552FCC29177FEA550ED85A2AFA420F1A338F561B (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 V_0;
memset((&V_0), 0, sizeof(V_0));
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 V_1;
memset((&V_1), 0, sizeof(V_1));
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 V_2;
memset((&V_2), 0, sizeof(V_2));
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* G_B2_0 = NULL;
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* G_B2_1 = NULL;
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* G_B1_0 = NULL;
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* G_B1_1 = NULL;
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* G_B3_0 = NULL;
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* G_B3_1 = NULL;
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* G_B5_0 = NULL;
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* G_B5_1 = NULL;
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* G_B4_0 = NULL;
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* G_B4_1 = NULL;
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* G_B6_0 = NULL;
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* G_B6_1 = NULL;
{
// var descriptor = new HIDDeviceDescriptor
// {
// usage = usage,
// usagePage = usagePage,
// elements = m_Elements?.ToArray(),
// collections = m_Collections?.ToArray(),
// };
il2cpp_codegen_initobj((&V_1), sizeof(HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59));
int32_t L_0 = __this->___usage_1;
(&V_1)->___usage_2 = L_0;
int32_t L_1 = __this->___usagePage_0;
(&V_1)->___usagePage_3 = L_1;
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_2 = __this->___m_Elements_5;
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_3 = L_2;
G_B1_0 = L_3;
G_B1_1 = (&V_1);
if (L_3)
{
G_B2_0 = L_3;
G_B2_1 = (&V_1);
goto IL_0032;
}
}
{
G_B3_0 = ((HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D*)(NULL));
G_B3_1 = G_B1_1;
goto IL_0037;
}
IL_0032:
{
NullCheck(G_B2_0);
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* L_4;
L_4 = List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B(G_B2_0, List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B_RuntimeMethod_var);
G_B3_0 = L_4;
G_B3_1 = G_B2_1;
}
IL_0037:
{
G_B3_1->___elements_7 = G_B3_0;
Il2CppCodeGenWriteBarrier((void**)(&G_B3_1->___elements_7), (void*)G_B3_0);
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_5 = __this->___m_Collections_6;
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_6 = L_5;
G_B4_0 = L_6;
G_B4_1 = (&V_1);
if (L_6)
{
G_B5_0 = L_6;
G_B5_1 = (&V_1);
goto IL_004b;
}
}
{
G_B6_0 = ((HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5*)(NULL));
G_B6_1 = G_B4_1;
goto IL_0050;
}
IL_004b:
{
NullCheck(G_B5_0);
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* L_7;
L_7 = List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8(G_B5_0, List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8_RuntimeMethod_var);
G_B6_0 = L_7;
G_B6_1 = G_B5_1;
}
IL_0050:
{
G_B6_1->___collections_8 = G_B6_0;
Il2CppCodeGenWriteBarrier((void**)(&G_B6_1->___collections_8), (void*)G_B6_0);
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_8 = V_1;
V_0 = L_8;
// return descriptor;
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_9 = V_0;
V_2 = L_9;
goto IL_005b;
}
IL_005b:
{
// }
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_10 = V_2;
return L_10;
}
}
IL2CPP_EXTERN_C HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 HIDDeviceDescriptorBuilder_Finish_m552FCC29177FEA550ED85A2AFA420F1A338F561B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*>(__this + _offset);
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 _returnValue;
_returnValue = HIDDeviceDescriptorBuilder_Finish_m552FCC29177FEA550ED85A2AFA420F1A338F561B(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.HID.HID/<>c__DisplayClass12_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass12_0__ctor_m526AB929DE1B687528F2EA02AC75EB45BDE5F54A (U3CU3Ec__DisplayClass12_0_t128E165E956D7BC338F305A5B22EF50246D796A3* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// UnityEngine.InputSystem.Layouts.InputControlLayout UnityEngine.InputSystem.HID.HID/<>c__DisplayClass12_0::<OnFindLayoutForDevice>b__0()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D* U3CU3Ec__DisplayClass12_0_U3COnFindLayoutForDeviceU3Eb__0_mAF93694D64D950710D68DE5E04AA785F781EBADC (U3CU3Ec__DisplayClass12_0_t128E165E956D7BC338F305A5B22EF50246D796A3* __this, const RuntimeMethod* method)
{
{
// InputSystem.RegisterLayoutBuilder(() => layout.Build(),
HIDLayoutBuilder_t1B1FA825DFA02D93183E7C1B3C416D4A43D56553* L_0 = __this->___layout_0;
NullCheck(L_0);
InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D* L_1;
L_1 = HIDLayoutBuilder_Build_mA8F12656656BF3BC1D6D6C51B87E030309C9D8A9(L_0, NULL);
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean UnityEngine.InputSystem.HID.HIDParser::ParseReportDescriptor(System.Byte[],UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HIDParser_ParseReportDescriptor_m8BAEFF5CA7C34524902608293523E165920C800A (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* ___deviceDescriptor1, const RuntimeMethod* method)
{
bool V_0 = false;
uint8_t* V_1 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_2 = NULL;
bool V_3 = false;
{
// if (buffer == null)
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___buffer0;
V_0 = (bool)((((RuntimeObject*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0014;
}
}
{
// throw new ArgumentNullException(nameof(buffer));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC263EA29ADF3548CFEBC57B532EED28451A56C10)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HIDParser_ParseReportDescriptor_m8BAEFF5CA7C34524902608293523E165920C800A_RuntimeMethod_var)));
}
IL_0014:
{
// fixed(byte* bufferPtr = buffer)
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___buffer0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = L_3;
V_2 = L_4;
if (!L_4)
{
goto IL_001e;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = V_2;
NullCheck(L_5);
if (((int32_t)(((RuntimeArray*)L_5)->max_length)))
{
goto IL_0023;
}
}
IL_001e:
{
V_1 = (uint8_t*)((uintptr_t)0);
goto IL_002c;
}
IL_0023:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = V_2;
NullCheck(L_6);
V_1 = (uint8_t*)((uintptr_t)((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_002c:
{
// return ParseReportDescriptor(bufferPtr, buffer.Length, ref deviceDescriptor);
uint8_t* L_7 = V_1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = ___buffer0;
NullCheck(L_8);
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* L_9 = ___deviceDescriptor1;
bool L_10;
L_10 = HIDParser_ParseReportDescriptor_m85537E64BCBC4FAEF2406CCCA1AC50C52BB37336(L_7, ((int32_t)(((RuntimeArray*)L_8)->max_length)), L_9, NULL);
V_3 = L_10;
goto IL_003a;
}
IL_003a:
{
// }
bool L_11 = V_3;
return L_11;
}
}
// System.Boolean UnityEngine.InputSystem.HID.HIDParser::ParseReportDescriptor(System.Byte*,System.Int32,UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HIDParser_ParseReportDescriptor_m85537E64BCBC4FAEF2406CCCA1AC50C52BB37336 (uint8_t* ___bufferPtr0, int32_t ___bufferLength1, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* ___deviceDescriptor2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mE6025392536B1B57D5D39AD09482558157C4CBAA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m6FBB9F9F70B0D21E92C7D13E26DDC8EA5A70ACB3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m61FE609D85AF8173D12BD2876CCD1039024B4F54_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m8E820017C1FBE8A372423716AE53545CD6BA9F39_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mEFED85B7C6AF40AEC5B34E6C11C3C18BF631B3B5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m12163A5ACF7868965793C27BB4086FA446FE4082_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m2193302E2DBF37D55C25EE317E0BDE040BE5CB52_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m4339FB05BC7860D417DA2CDFFD8B356B9DF262B0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mAA78D7E536ED334B3A2ACF6807CC5CFFD12A1F04_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m62F2D5DF7AD292BC7D658B73628876B1EFDE0EB2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_mF8C569EAE11C005E295F2F7CFD63AF6107206290_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t268ADAE63E623B42094720668F8DB571CF6085E6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t66029D02EA129D03A082E470EB98C85812301A0C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B V_0;
memset((&V_0), 0, sizeof(V_0));
HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1 V_1;
memset((&V_1), 0, sizeof(V_1));
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* V_2 = NULL;
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* V_3 = NULL;
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* V_4 = NULL;
int32_t V_5 = 0;
uint8_t* V_6 = NULL;
uint8_t* V_7 = NULL;
uint8_t V_8 = 0x0;
uint8_t V_9 = 0x0;
uint8_t V_10 = 0x0;
bool V_11 = false;
int32_t V_12 = 0;
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 V_13;
memset((&V_13), 0, sizeof(V_13));
int32_t V_14 = 0;
int32_t V_15 = 0;
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F V_16;
memset((&V_16), 0, sizeof(V_16));
int32_t V_17 = 0;
int32_t V_18 = 0;
uint8_t V_19 = 0x0;
uint8_t V_20 = 0x0;
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 V_21;
memset((&V_21), 0, sizeof(V_21));
bool V_22 = false;
bool V_23 = false;
bool V_24 = false;
int32_t V_25 = 0;
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED V_26;
memset((&V_26), 0, sizeof(V_26));
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED V_27;
memset((&V_27), 0, sizeof(V_27));
bool V_28 = false;
bool V_29 = false;
bool V_30 = false;
Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8 V_31;
memset((&V_31), 0, sizeof(V_31));
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 V_32;
memset((&V_32), 0, sizeof(V_32));
bool V_33 = false;
int32_t G_B67_0 = 0;
int32_t G_B69_0 = 0;
int32_t G_B72_0 = 0;
int32_t G_B88_0 = 0;
{
// var localItemState = new HIDItemStateLocal();
il2cpp_codegen_initobj((&V_0), sizeof(HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B));
// var globalItemState = new HIDItemStateGlobal();
il2cpp_codegen_initobj((&V_1), sizeof(HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1));
// var reports = new List<HIDReportData>();
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_0 = (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6*)il2cpp_codegen_object_new(List_1_t268ADAE63E623B42094720668F8DB571CF6085E6_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m12163A5ACF7868965793C27BB4086FA446FE4082(L_0, List_1__ctor_m12163A5ACF7868965793C27BB4086FA446FE4082_RuntimeMethod_var);
V_2 = L_0;
// var elements = new List<HID.HIDElementDescriptor>();
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_1 = (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*)il2cpp_codegen_object_new(List_1_t66029D02EA129D03A082E470EB98C85812301A0C_il2cpp_TypeInfo_var);
NullCheck(L_1);
List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C(L_1, List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C_RuntimeMethod_var);
V_3 = L_1;
// var collections = new List<HID.HIDCollectionDescriptor>();
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_2 = (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*)il2cpp_codegen_object_new(List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A_il2cpp_TypeInfo_var);
NullCheck(L_2);
List_1__ctor_m2193302E2DBF37D55C25EE317E0BDE040BE5CB52(L_2, List_1__ctor_m2193302E2DBF37D55C25EE317E0BDE040BE5CB52_RuntimeMethod_var);
V_4 = L_2;
// var currentCollection = -1;
V_5 = (-1);
// var endPtr = bufferPtr + bufferLength;
uint8_t* L_3 = ___bufferPtr0;
int32_t L_4 = ___bufferLength1;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, L_4));
// var currentPtr = bufferPtr;
uint8_t* L_5 = ___bufferPtr0;
V_7 = L_5;
goto IL_058b;
}
IL_0034:
{
// var firstByte = *currentPtr;
uint8_t* L_6 = V_7;
int32_t L_7 = *((uint8_t*)L_6);
V_8 = (uint8_t)L_7;
// if (firstByte == 0xFE)
uint8_t L_8 = V_8;
V_11 = (bool)((((int32_t)L_8) == ((int32_t)((int32_t)254)))? 1 : 0);
bool L_9 = V_11;
if (!L_9)
{
goto IL_0054;
}
}
{
// throw new NotImplementedException("long item support");
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_10 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var)));
NullCheck(L_10);
NotImplementedException__ctor_m8339D1A685E8D77CAC9D3260C06B38B5C7CA7742(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3BA4C63055FA6CF5A2214085C6E3F3F666044A57)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HIDParser_ParseReportDescriptor_m85537E64BCBC4FAEF2406CCCA1AC50C52BB37336_RuntimeMethod_var)));
}
IL_0054:
{
// var itemSize = (byte)(firstByte & 0x3);
uint8_t L_11 = V_8;
V_9 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_11&3)));
// var itemTypeAndTag = (byte)(firstByte & 0xFC);
uint8_t L_12 = V_8;
V_10 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_12&((int32_t)252))));
// ++currentPtr;
uint8_t* L_13 = V_7;
V_7 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, 1));
// switch (itemTypeAndTag)
uint8_t L_14 = V_10;
V_20 = L_14;
uint8_t L_15 = V_20;
V_19 = L_15;
uint8_t L_16 = V_19;
if ((!(((uint32_t)L_16) <= ((uint32_t)((int32_t)84)))))
{
goto IL_00f8;
}
}
{
uint8_t L_17 = V_19;
if ((!(((uint32_t)L_17) <= ((uint32_t)((int32_t)24)))))
{
goto IL_00b5;
}
}
{
uint8_t L_18 = V_19;
if ((!(((uint32_t)L_18) <= ((uint32_t)8))))
{
goto IL_009c;
}
}
{
uint8_t L_19 = V_19;
if ((((int32_t)L_19) == ((int32_t)4)))
{
goto IL_0191;
}
}
{
goto IL_008f;
}
IL_008f:
{
uint8_t L_20 = V_19;
if ((((int32_t)L_20) == ((int32_t)8)))
{
goto IL_02a9;
}
}
{
goto IL_0570;
}
IL_009c:
{
uint8_t L_21 = V_19;
if ((((int32_t)L_21) == ((int32_t)((int32_t)20))))
{
goto IL_0201;
}
}
{
goto IL_00a7;
}
IL_00a7:
{
uint8_t L_22 = V_19;
if ((((int32_t)L_22) == ((int32_t)((int32_t)24))))
{
goto IL_02c1;
}
}
{
goto IL_0570;
}
IL_00b5:
{
uint8_t L_23 = V_19;
if ((!(((uint32_t)L_23) <= ((uint32_t)((int32_t)40)))))
{
goto IL_00d4;
}
}
{
uint8_t L_24 = V_19;
if ((((int32_t)L_24) == ((int32_t)((int32_t)36))))
{
goto IL_021d;
}
}
{
goto IL_00c6;
}
IL_00c6:
{
uint8_t L_25 = V_19;
if ((((int32_t)L_25) == ((int32_t)((int32_t)40))))
{
goto IL_02dd;
}
}
{
goto IL_0570;
}
IL_00d4:
{
uint8_t L_26 = V_19;
if ((((int32_t)L_26) == ((int32_t)((int32_t)52))))
{
goto IL_0239;
}
}
{
goto IL_00df;
}
IL_00df:
{
uint8_t L_27 = V_19;
if ((((int32_t)L_27) == ((int32_t)((int32_t)68))))
{
goto IL_0255;
}
}
{
goto IL_00ea;
}
IL_00ea:
{
uint8_t L_28 = V_19;
if ((((int32_t)L_28) == ((int32_t)((int32_t)84))))
{
goto IL_0271;
}
}
{
goto IL_0570;
}
IL_00f8:
{
uint8_t L_29 = V_19;
if ((!(((uint32_t)L_29) <= ((uint32_t)((int32_t)132)))))
{
goto IL_013f;
}
}
{
uint8_t L_30 = V_19;
if ((!(((uint32_t)L_30) <= ((uint32_t)((int32_t)116)))))
{
goto IL_0120;
}
}
{
uint8_t L_31 = V_19;
if ((((int32_t)L_31) == ((int32_t)((int32_t)100))))
{
goto IL_028d;
}
}
{
goto IL_0112;
}
IL_0112:
{
uint8_t L_32 = V_19;
if ((((int32_t)L_32) == ((int32_t)((int32_t)116))))
{
goto IL_01c9;
}
}
{
goto IL_0570;
}
IL_0120:
{
uint8_t L_33 = V_19;
if ((((int32_t)L_33) == ((int32_t)((int32_t)128))))
{
goto IL_03c2;
}
}
{
goto IL_012e;
}
IL_012e:
{
uint8_t L_34 = V_19;
if ((((int32_t)L_34) == ((int32_t)((int32_t)132))))
{
goto IL_01e5;
}
}
{
goto IL_0570;
}
IL_013f:
{
uint8_t L_35 = V_19;
if ((!(((uint32_t)L_35) <= ((uint32_t)((int32_t)148)))))
{
goto IL_0164;
}
}
{
uint8_t L_36 = V_19;
if ((((int32_t)L_36) == ((int32_t)((int32_t)144))))
{
goto IL_03c2;
}
}
{
goto IL_0156;
}
IL_0156:
{
uint8_t L_37 = V_19;
if ((((int32_t)L_37) == ((int32_t)((int32_t)148))))
{
goto IL_01ad;
}
}
{
goto IL_0570;
}
IL_0164:
{
uint8_t L_38 = V_19;
if ((((int32_t)L_38) == ((int32_t)((int32_t)160))))
{
goto IL_02f9;
}
}
{
goto IL_0172;
}
IL_0172:
{
uint8_t L_39 = V_19;
if ((((int32_t)L_39) == ((int32_t)((int32_t)176))))
{
goto IL_03c2;
}
}
{
goto IL_0180;
}
IL_0180:
{
uint8_t L_40 = V_19;
if ((((int32_t)L_40) == ((int32_t)((int32_t)192))))
{
goto IL_036d;
}
}
{
goto IL_0570;
}
IL_0191:
{
// globalItemState.usagePage = ReadData(itemSize, currentPtr, endPtr);
uint8_t L_41 = V_9;
uint8_t* L_42 = V_7;
uint8_t* L_43 = V_6;
int32_t L_44;
L_44 = HIDParser_ReadData_mE60D1996BC434AA4226CF2755FD14C379D5E18D2(L_41, L_42, L_43, NULL);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_45;
memset((&L_45), 0, sizeof(L_45));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_45), L_44, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
(&V_1)->___usagePage_0 = L_45;
// break;
goto IL_0570;
}
IL_01ad:
{
// globalItemState.reportCount = ReadData(itemSize, currentPtr, endPtr);
uint8_t L_46 = V_9;
uint8_t* L_47 = V_7;
uint8_t* L_48 = V_6;
int32_t L_49;
L_49 = HIDParser_ReadData_mE60D1996BC434AA4226CF2755FD14C379D5E18D2(L_46, L_47, L_48, NULL);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_50;
memset((&L_50), 0, sizeof(L_50));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_50), L_49, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
(&V_1)->___reportCount_8 = L_50;
// break;
goto IL_0570;
}
IL_01c9:
{
// globalItemState.reportSize = ReadData(itemSize, currentPtr, endPtr);
uint8_t L_51 = V_9;
uint8_t* L_52 = V_7;
uint8_t* L_53 = V_6;
int32_t L_54;
L_54 = HIDParser_ReadData_mE60D1996BC434AA4226CF2755FD14C379D5E18D2(L_51, L_52, L_53, NULL);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_55;
memset((&L_55), 0, sizeof(L_55));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_55), L_54, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
(&V_1)->___reportSize_7 = L_55;
// break;
goto IL_0570;
}
IL_01e5:
{
// globalItemState.reportId = ReadData(itemSize, currentPtr, endPtr);
uint8_t L_56 = V_9;
uint8_t* L_57 = V_7;
uint8_t* L_58 = V_6;
int32_t L_59;
L_59 = HIDParser_ReadData_mE60D1996BC434AA4226CF2755FD14C379D5E18D2(L_56, L_57, L_58, NULL);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_60;
memset((&L_60), 0, sizeof(L_60));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_60), L_59, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
(&V_1)->___reportId_9 = L_60;
// break;
goto IL_0570;
}
IL_0201:
{
// globalItemState.logicalMinimum = ReadData(itemSize, currentPtr, endPtr);
uint8_t L_61 = V_9;
uint8_t* L_62 = V_7;
uint8_t* L_63 = V_6;
int32_t L_64;
L_64 = HIDParser_ReadData_mE60D1996BC434AA4226CF2755FD14C379D5E18D2(L_61, L_62, L_63, NULL);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_65;
memset((&L_65), 0, sizeof(L_65));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_65), L_64, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
(&V_1)->___logicalMinimum_1 = L_65;
// break;
goto IL_0570;
}
IL_021d:
{
// globalItemState.logicalMaximum = ReadData(itemSize, currentPtr, endPtr);
uint8_t L_66 = V_9;
uint8_t* L_67 = V_7;
uint8_t* L_68 = V_6;
int32_t L_69;
L_69 = HIDParser_ReadData_mE60D1996BC434AA4226CF2755FD14C379D5E18D2(L_66, L_67, L_68, NULL);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_70;
memset((&L_70), 0, sizeof(L_70));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_70), L_69, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
(&V_1)->___logicalMaximum_2 = L_70;
// break;
goto IL_0570;
}
IL_0239:
{
// globalItemState.physicalMinimum = ReadData(itemSize, currentPtr, endPtr);
uint8_t L_71 = V_9;
uint8_t* L_72 = V_7;
uint8_t* L_73 = V_6;
int32_t L_74;
L_74 = HIDParser_ReadData_mE60D1996BC434AA4226CF2755FD14C379D5E18D2(L_71, L_72, L_73, NULL);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_75;
memset((&L_75), 0, sizeof(L_75));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_75), L_74, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
(&V_1)->___physicalMinimum_3 = L_75;
// break;
goto IL_0570;
}
IL_0255:
{
// globalItemState.physicalMaximum = ReadData(itemSize, currentPtr, endPtr);
uint8_t L_76 = V_9;
uint8_t* L_77 = V_7;
uint8_t* L_78 = V_6;
int32_t L_79;
L_79 = HIDParser_ReadData_mE60D1996BC434AA4226CF2755FD14C379D5E18D2(L_76, L_77, L_78, NULL);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_80;
memset((&L_80), 0, sizeof(L_80));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_80), L_79, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
(&V_1)->___physicalMaximum_4 = L_80;
// break;
goto IL_0570;
}
IL_0271:
{
// globalItemState.unitExponent = ReadData(itemSize, currentPtr, endPtr);
uint8_t L_81 = V_9;
uint8_t* L_82 = V_7;
uint8_t* L_83 = V_6;
int32_t L_84;
L_84 = HIDParser_ReadData_mE60D1996BC434AA4226CF2755FD14C379D5E18D2(L_81, L_82, L_83, NULL);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_85;
memset((&L_85), 0, sizeof(L_85));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_85), L_84, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
(&V_1)->___unitExponent_5 = L_85;
// break;
goto IL_0570;
}
IL_028d:
{
// globalItemState.unit = ReadData(itemSize, currentPtr, endPtr);
uint8_t L_86 = V_9;
uint8_t* L_87 = V_7;
uint8_t* L_88 = V_6;
int32_t L_89;
L_89 = HIDParser_ReadData_mE60D1996BC434AA4226CF2755FD14C379D5E18D2(L_86, L_87, L_88, NULL);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_90;
memset((&L_90), 0, sizeof(L_90));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_90), L_89, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
(&V_1)->___unit_6 = L_90;
// break;
goto IL_0570;
}
IL_02a9:
{
// localItemState.SetUsage(ReadData(itemSize, currentPtr, endPtr));
uint8_t L_91 = V_9;
uint8_t* L_92 = V_7;
uint8_t* L_93 = V_6;
int32_t L_94;
L_94 = HIDParser_ReadData_mE60D1996BC434AA4226CF2755FD14C379D5E18D2(L_91, L_92, L_93, NULL);
HIDItemStateLocal_SetUsage_mF18CA9692FAAB72115B8E30B671F75642F0CEF26((&V_0), L_94, NULL);
// break;
goto IL_0570;
}
IL_02c1:
{
// localItemState.usageMinimum = ReadData(itemSize, currentPtr, endPtr);
uint8_t L_95 = V_9;
uint8_t* L_96 = V_7;
uint8_t* L_97 = V_6;
int32_t L_98;
L_98 = HIDParser_ReadData_mE60D1996BC434AA4226CF2755FD14C379D5E18D2(L_95, L_96, L_97, NULL);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_99;
memset((&L_99), 0, sizeof(L_99));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_99), L_98, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
(&V_0)->___usageMinimum_1 = L_99;
// break;
goto IL_0570;
}
IL_02dd:
{
// localItemState.usageMaximum = ReadData(itemSize, currentPtr, endPtr);
uint8_t L_100 = V_9;
uint8_t* L_101 = V_7;
uint8_t* L_102 = V_6;
int32_t L_103;
L_103 = HIDParser_ReadData_mE60D1996BC434AA4226CF2755FD14C379D5E18D2(L_100, L_101, L_102, NULL);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_104;
memset((&L_104), 0, sizeof(L_104));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_104), L_103, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
(&V_0)->___usageMaximum_2 = L_104;
// break;
goto IL_0570;
}
IL_02f9:
{
// var parentCollection = currentCollection;
int32_t L_105 = V_5;
V_12 = L_105;
// currentCollection = collections.Count;
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_106 = V_4;
NullCheck(L_106);
int32_t L_107;
L_107 = List_1_get_Count_m4339FB05BC7860D417DA2CDFFD8B356B9DF262B0_inline(L_106, List_1_get_Count_m4339FB05BC7860D417DA2CDFFD8B356B9DF262B0_RuntimeMethod_var);
V_5 = L_107;
// collections.Add(new HID.HIDCollectionDescriptor
// {
// type = (HID.HIDCollectionType)ReadData(itemSize, currentPtr, endPtr),
// parent = parentCollection,
// usagePage = globalItemState.GetUsagePage(0, ref localItemState),
// usage = localItemState.GetUsage(0),
// firstChild = elements.Count
// });
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_108 = V_4;
il2cpp_codegen_initobj((&V_21), sizeof(HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7));
uint8_t L_109 = V_9;
uint8_t* L_110 = V_7;
uint8_t* L_111 = V_6;
int32_t L_112;
L_112 = HIDParser_ReadData_mE60D1996BC434AA4226CF2755FD14C379D5E18D2(L_109, L_110, L_111, NULL);
(&V_21)->___type_0 = L_112;
int32_t L_113 = V_12;
(&V_21)->___parent_3 = L_113;
int32_t L_114;
L_114 = HIDItemStateGlobal_GetUsagePage_m2730AFF3A621069D5CA7B93423F53AF9145D5B92((&V_1), 0, (&V_0), NULL);
(&V_21)->___usagePage_2 = L_114;
int32_t L_115;
L_115 = HIDItemStateLocal_GetUsage_m12B69C95479759524D12DBC0EED1737B2A758DBA((&V_0), 0, NULL);
(&V_21)->___usage_1 = L_115;
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_116 = V_3;
NullCheck(L_116);
int32_t L_117;
L_117 = List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_inline(L_116, List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_RuntimeMethod_var);
(&V_21)->___firstChild_5 = L_117;
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_118 = V_21;
NullCheck(L_108);
List_1_Add_m8E820017C1FBE8A372423716AE53545CD6BA9F39_inline(L_108, L_118, List_1_Add_m8E820017C1FBE8A372423716AE53545CD6BA9F39_RuntimeMethod_var);
// HIDItemStateLocal.Reset(ref localItemState);
HIDItemStateLocal_Reset_m41DEFAD3D3126B6AE8690A51E12F9EB71AF36942((&V_0), NULL);
// break;
goto IL_0570;
}
IL_036d:
{
// if (currentCollection == -1)
int32_t L_119 = V_5;
V_22 = (bool)((((int32_t)L_119) == ((int32_t)(-1)))? 1 : 0);
bool L_120 = V_22;
if (!L_120)
{
goto IL_0380;
}
}
{
// return false;
V_23 = (bool)0;
goto IL_0623;
}
IL_0380:
{
// var collection = collections[currentCollection];
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_121 = V_4;
int32_t L_122 = V_5;
NullCheck(L_121);
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_123;
L_123 = List_1_get_Item_mAA78D7E536ED334B3A2ACF6807CC5CFFD12A1F04(L_121, L_122, List_1_get_Item_mAA78D7E536ED334B3A2ACF6807CC5CFFD12A1F04_RuntimeMethod_var);
V_13 = L_123;
// collection.childCount = elements.Count - collection.firstChild;
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_124 = V_3;
NullCheck(L_124);
int32_t L_125;
L_125 = List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_inline(L_124, List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_RuntimeMethod_var);
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_126 = V_13;
int32_t L_127 = L_126.___firstChild_5;
(&V_13)->___childCount_4 = ((int32_t)il2cpp_codegen_subtract(L_125, L_127));
// collections[currentCollection] = collection;
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_128 = V_4;
int32_t L_129 = V_5;
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_130 = V_13;
NullCheck(L_128);
List_1_set_Item_m62F2D5DF7AD292BC7D658B73628876B1EFDE0EB2(L_128, L_129, L_130, List_1_set_Item_m62F2D5DF7AD292BC7D658B73628876B1EFDE0EB2_RuntimeMethod_var);
// currentCollection = collection.parent;
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_131 = V_13;
int32_t L_132 = L_131.___parent_3;
V_5 = L_132;
// HIDItemStateLocal.Reset(ref localItemState);
HIDItemStateLocal_Reset_m41DEFAD3D3126B6AE8690A51E12F9EB71AF36942((&V_0), NULL);
// break;
goto IL_0570;
}
IL_03c2:
{
// var reportType = itemTypeAndTag == (int)HIDItemTypeAndTag.Input
// ? HID.HIDReportType.Input
// : itemTypeAndTag == (int)HIDItemTypeAndTag.Output
// ? HID.HIDReportType.Output
// : HID.HIDReportType.Feature;
uint8_t L_133 = V_10;
if ((((int32_t)L_133) == ((int32_t)((int32_t)128))))
{
goto IL_03da;
}
}
{
uint8_t L_134 = V_10;
if ((((int32_t)L_134) == ((int32_t)((int32_t)144))))
{
goto IL_03d7;
}
}
{
G_B67_0 = 3;
goto IL_03d8;
}
IL_03d7:
{
G_B67_0 = 2;
}
IL_03d8:
{
G_B69_0 = G_B67_0;
goto IL_03db;
}
IL_03da:
{
G_B69_0 = 1;
}
IL_03db:
{
V_14 = G_B69_0;
// var reportIndex = HIDReportData.FindOrAddReport(globalItemState.reportId, reportType, reports);
HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1 L_135 = V_1;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_136 = L_135.___reportId_9;
int32_t L_137 = V_14;
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_138 = V_2;
int32_t L_139;
L_139 = HIDReportData_FindOrAddReport_mFB72068FEB4E2C0EC335AA6829B41D15B943D3FF(L_136, L_137, L_138, NULL);
V_15 = L_139;
// var report = reports[reportIndex];
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_140 = V_2;
int32_t L_141 = V_15;
NullCheck(L_140);
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_142;
L_142 = List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434(L_140, L_141, List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434_RuntimeMethod_var);
V_16 = L_142;
// if (report.currentBitOffset == 0 && globalItemState.reportId.HasValue)
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_143 = V_16;
int32_t L_144 = L_143.___currentBitOffset_2;
if (L_144)
{
goto IL_040e;
}
}
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_145 = (&(&V_1)->___reportId_9);
bool L_146;
L_146 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_145, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
G_B72_0 = ((int32_t)(L_146));
goto IL_040f;
}
IL_040e:
{
G_B72_0 = 0;
}
IL_040f:
{
V_24 = (bool)G_B72_0;
bool L_147 = V_24;
if (!L_147)
{
goto IL_041d;
}
}
{
// report.currentBitOffset = 8;
(&V_16)->___currentBitOffset_2 = 8;
}
IL_041d:
{
// var reportCount = globalItemState.reportCount.GetValueOrDefault(1);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_148 = (&(&V_1)->___reportCount_8);
int32_t L_149;
L_149 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_148, 1, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
V_17 = L_149;
// var flags = ReadData(itemSize, currentPtr, endPtr);
uint8_t L_150 = V_9;
uint8_t* L_151 = V_7;
uint8_t* L_152 = V_6;
int32_t L_153;
L_153 = HIDParser_ReadData_mE60D1996BC434AA4226CF2755FD14C379D5E18D2(L_150, L_151, L_152, NULL);
V_18 = L_153;
// for (var i = 0; i < reportCount; ++i)
V_25 = 0;
goto IL_054c;
}
IL_0441:
{
// var element = new HID.HIDElementDescriptor
// {
// usage = localItemState.GetUsage(i) & 0xFFFF, // Mask off usage page, if set.
// usagePage = globalItemState.GetUsagePage(i, ref localItemState),
// reportType = reportType,
// reportSizeInBits = globalItemState.reportSize.GetValueOrDefault(8),
// reportOffsetInBits = report.currentBitOffset,
// reportId = globalItemState.reportId.GetValueOrDefault(1),
// flags = (HID.HIDElementFlags)flags,
// logicalMin = globalItemState.logicalMinimum.GetValueOrDefault(0),
// logicalMax = globalItemState.logicalMaximum.GetValueOrDefault(0),
// physicalMin = globalItemState.GetPhysicalMin(),
// physicalMax = globalItemState.GetPhysicalMax(),
// unitExponent = globalItemState.unitExponent.GetValueOrDefault(0),
// unit = globalItemState.unit.GetValueOrDefault(0),
// };
il2cpp_codegen_initobj((&V_27), sizeof(HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED));
int32_t L_154 = V_25;
int32_t L_155;
L_155 = HIDItemStateLocal_GetUsage_m12B69C95479759524D12DBC0EED1737B2A758DBA((&V_0), L_154, NULL);
(&V_27)->___usage_0 = ((int32_t)(L_155&((int32_t)65535)));
int32_t L_156 = V_25;
int32_t L_157;
L_157 = HIDItemStateGlobal_GetUsagePage_m2730AFF3A621069D5CA7B93423F53AF9145D5B92((&V_1), L_156, (&V_0), NULL);
(&V_27)->___usagePage_1 = L_157;
int32_t L_158 = V_14;
(&V_27)->___reportType_8 = L_158;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_159 = (&(&V_1)->___reportSize_7);
int32_t L_160;
L_160 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_159, 8, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
(&V_27)->___reportSizeInBits_11 = L_160;
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_161 = V_16;
int32_t L_162 = L_161.___currentBitOffset_2;
(&V_27)->___reportOffsetInBits_12 = L_162;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_163 = (&(&V_1)->___reportId_9);
int32_t L_164;
L_164 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_163, 1, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
(&V_27)->___reportId_10 = L_164;
int32_t L_165 = V_18;
(&V_27)->___flags_13 = L_165;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_166 = (&(&V_1)->___logicalMinimum_1);
int32_t L_167;
L_167 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_166, 0, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
(&V_27)->___logicalMin_4 = L_167;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_168 = (&(&V_1)->___logicalMaximum_2);
int32_t L_169;
L_169 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_168, 0, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
(&V_27)->___logicalMax_5 = L_169;
int32_t L_170;
L_170 = HIDItemStateGlobal_GetPhysicalMin_m024C068044E6BCAF50A7B916DEE32027CBCBFE0A((&V_1), NULL);
(&V_27)->___physicalMin_6 = L_170;
int32_t L_171;
L_171 = HIDItemStateGlobal_GetPhysicalMax_mC33E0323DB7C0817C2951AD435D56E151D705490((&V_1), NULL);
(&V_27)->___physicalMax_7 = L_171;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_172 = (&(&V_1)->___unitExponent_5);
int32_t L_173;
L_173 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_172, 0, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
(&V_27)->___unitExponent_3 = L_173;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_174 = (&(&V_1)->___unit_6);
int32_t L_175;
L_175 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_174, 0, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
(&V_27)->___unit_2 = L_175;
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_176 = V_27;
V_26 = L_176;
// report.currentBitOffset += element.reportSizeInBits;
int32_t* L_177 = (&(&V_16)->___currentBitOffset_2);
int32_t* L_178 = L_177;
int32_t L_179 = *((int32_t*)L_178);
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_180 = V_26;
int32_t L_181 = L_180.___reportSizeInBits_11;
*((int32_t*)L_178) = (int32_t)((int32_t)il2cpp_codegen_add(L_179, L_181));
// elements.Add(element);
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_182 = V_3;
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_183 = V_26;
NullCheck(L_182);
List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_inline(L_182, L_183, List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_RuntimeMethod_var);
// for (var i = 0; i < reportCount; ++i)
int32_t L_184 = V_25;
V_25 = ((int32_t)il2cpp_codegen_add(L_184, 1));
}
IL_054c:
{
// for (var i = 0; i < reportCount; ++i)
int32_t L_185 = V_25;
int32_t L_186 = V_17;
V_28 = (bool)((((int32_t)L_185) < ((int32_t)L_186))? 1 : 0);
bool L_187 = V_28;
if (L_187)
{
goto IL_0441;
}
}
{
// reports[reportIndex] = report;
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_188 = V_2;
int32_t L_189 = V_15;
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_190 = V_16;
NullCheck(L_188);
List_1_set_Item_mF8C569EAE11C005E295F2F7CFD63AF6107206290(L_188, L_189, L_190, List_1_set_Item_mF8C569EAE11C005E295F2F7CFD63AF6107206290_RuntimeMethod_var);
// HIDItemStateLocal.Reset(ref localItemState);
HIDItemStateLocal_Reset_m41DEFAD3D3126B6AE8690A51E12F9EB71AF36942((&V_0), NULL);
// break;
goto IL_0570;
}
IL_0570:
{
// if (itemSize == 3)
uint8_t L_191 = V_9;
V_29 = (bool)((((int32_t)L_191) == ((int32_t)3))? 1 : 0);
bool L_192 = V_29;
if (!L_192)
{
goto IL_0583;
}
}
{
// currentPtr += 4;
uint8_t* L_193 = V_7;
V_7 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_193, 4));
goto IL_058a;
}
IL_0583:
{
// currentPtr += itemSize;
uint8_t* L_194 = V_7;
uint8_t L_195 = V_9;
V_7 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_194, (int32_t)L_195));
}
IL_058a:
{
}
IL_058b:
{
// while (currentPtr < endPtr)
uint8_t* L_196 = V_7;
uint8_t* L_197 = V_6;
V_30 = (bool)((!(((uintptr_t)L_196) >= ((uintptr_t)L_197)))? 1 : 0);
bool L_198 = V_30;
if (L_198)
{
goto IL_0034;
}
}
{
// deviceDescriptor.elements = elements.ToArray();
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* L_199 = ___deviceDescriptor2;
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_200 = V_3;
NullCheck(L_200);
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* L_201;
L_201 = List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B(L_200, List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B_RuntimeMethod_var);
L_199->___elements_7 = L_201;
Il2CppCodeGenWriteBarrier((void**)(&L_199->___elements_7), (void*)L_201);
// deviceDescriptor.collections = collections.ToArray();
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* L_202 = ___deviceDescriptor2;
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_203 = V_4;
NullCheck(L_203);
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* L_204;
L_204 = List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8(L_203, List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8_RuntimeMethod_var);
L_202->___collections_8 = L_204;
Il2CppCodeGenWriteBarrier((void**)(&L_202->___collections_8), (void*)L_204);
// foreach (var collection in collections)
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_205 = V_4;
NullCheck(L_205);
Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8 L_206;
L_206 = List_1_GetEnumerator_mEFED85B7C6AF40AEC5B34E6C11C3C18BF631B3B5(L_205, List_1_GetEnumerator_mEFED85B7C6AF40AEC5B34E6C11C3C18BF631B3B5_RuntimeMethod_var);
V_31 = L_206;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_060f:
{// begin finally (depth: 1)
Enumerator_Dispose_mE6025392536B1B57D5D39AD09482558157C4CBAA((&V_31), Enumerator_Dispose_mE6025392536B1B57D5D39AD09482558157C4CBAA_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0604_1;
}
IL_05bf_1:
{
// foreach (var collection in collections)
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_207;
L_207 = Enumerator_get_Current_m61FE609D85AF8173D12BD2876CCD1039024B4F54_inline((&V_31), Enumerator_get_Current_m61FE609D85AF8173D12BD2876CCD1039024B4F54_RuntimeMethod_var);
V_32 = L_207;
// if (collection.parent == -1 && collection.type == HID.HIDCollectionType.Application)
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_208 = V_32;
int32_t L_209 = L_208.___parent_3;
if ((!(((uint32_t)L_209) == ((uint32_t)(-1)))))
{
goto IL_05df_1;
}
}
{
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_210 = V_32;
int32_t L_211 = L_210.___type_0;
G_B88_0 = ((((int32_t)L_211) == ((int32_t)1))? 1 : 0);
goto IL_05e0_1;
}
IL_05df_1:
{
G_B88_0 = 0;
}
IL_05e0_1:
{
V_33 = (bool)G_B88_0;
bool L_212 = V_33;
if (!L_212)
{
goto IL_0603_1;
}
}
{
// deviceDescriptor.usage = collection.usage;
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* L_213 = ___deviceDescriptor2;
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_214 = V_32;
int32_t L_215 = L_214.___usage_1;
L_213->___usage_2 = L_215;
// deviceDescriptor.usagePage = collection.usagePage;
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* L_216 = ___deviceDescriptor2;
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_217 = V_32;
int32_t L_218 = L_217.___usagePage_2;
L_216->___usagePage_3 = L_218;
// break;
goto IL_060d_1;
}
IL_0603_1:
{
}
IL_0604_1:
{
// foreach (var collection in collections)
bool L_219;
L_219 = Enumerator_MoveNext_m6FBB9F9F70B0D21E92C7D13E26DDC8EA5A70ACB3((&V_31), Enumerator_MoveNext_m6FBB9F9F70B0D21E92C7D13E26DDC8EA5A70ACB3_RuntimeMethod_var);
if (L_219)
{
goto IL_05bf_1;
}
}
IL_060d_1:
{
goto IL_061e;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_061e:
{
// return true;
V_23 = (bool)1;
goto IL_0623;
}
IL_0623:
{
// }
bool L_220 = V_23;
return L_220;
}
}
// System.Int32 UnityEngine.InputSystem.HID.HIDParser::ReadData(System.Int32,System.Byte*,System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDParser_ReadData_mE60D1996BC434AA4226CF2755FD14C379D5E18D2 (int32_t ___itemSize0, uint8_t* ___currentPtr1, uint8_t* ___endPtr2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral294B0EF262D645A4939BABCFB7C842F2BC2E20B1);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
uint8_t V_5 = 0x0;
uint8_t V_6 = 0x0;
bool V_7 = false;
bool V_8 = false;
uint8_t V_9 = 0x0;
uint8_t V_10 = 0x0;
uint8_t V_11 = 0x0;
uint8_t V_12 = 0x0;
bool V_13 = false;
{
// if (itemSize == 0)
int32_t L_0 = ___itemSize0;
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0010;
}
}
{
// return 0;
V_1 = 0;
goto IL_00bf;
}
IL_0010:
{
// if (itemSize == 1)
int32_t L_2 = ___itemSize0;
V_2 = (bool)((((int32_t)L_2) == ((int32_t)1))? 1 : 0);
bool L_3 = V_2;
if (!L_3)
{
goto IL_0033;
}
}
{
// if (currentPtr >= endPtr)
uint8_t* L_4 = ___currentPtr1;
uint8_t* L_5 = ___endPtr2;
V_3 = (bool)((((int32_t)((!(((uintptr_t)L_4) >= ((uintptr_t)L_5)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_6 = V_3;
if (!L_6)
{
goto IL_002b;
}
}
{
// return 0;
V_1 = 0;
goto IL_00bf;
}
IL_002b:
{
// return *currentPtr;
uint8_t* L_7 = ___currentPtr1;
int32_t L_8 = *((uint8_t*)L_7);
V_1 = L_8;
goto IL_00bf;
}
IL_0033:
{
// if (itemSize == 2)
int32_t L_9 = ___itemSize0;
V_4 = (bool)((((int32_t)L_9) == ((int32_t)2))? 1 : 0);
bool L_10 = V_4;
if (!L_10)
{
goto IL_0065;
}
}
{
// if (currentPtr + 2 >= endPtr)
uint8_t* L_11 = ___currentPtr1;
uint8_t* L_12 = ___endPtr2;
V_7 = (bool)((((int32_t)((!(((uintptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, 2))) >= ((uintptr_t)L_12)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_13 = V_7;
if (!L_13)
{
goto IL_0051;
}
}
{
// return 0;
V_1 = 0;
goto IL_00bf;
}
IL_0051:
{
// var data1 = *currentPtr;
uint8_t* L_14 = ___currentPtr1;
int32_t L_15 = *((uint8_t*)L_14);
V_5 = (uint8_t)L_15;
// var data2 = *(currentPtr + 1);
uint8_t* L_16 = ___currentPtr1;
int32_t L_17 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, 1)));
V_6 = (uint8_t)L_17;
// return (data2 << 8) | data1;
uint8_t L_18 = V_6;
uint8_t L_19 = V_5;
V_1 = ((int32_t)(((int32_t)((int32_t)L_18<<8))|(int32_t)L_19));
goto IL_00bf;
}
IL_0065:
{
// if (itemSize == 3) // Item size 3 means 4 bytes!
int32_t L_20 = ___itemSize0;
V_8 = (bool)((((int32_t)L_20) == ((int32_t)3))? 1 : 0);
bool L_21 = V_8;
if (!L_21)
{
goto IL_00af;
}
}
{
// if (currentPtr + 4 >= endPtr)
uint8_t* L_22 = ___currentPtr1;
uint8_t* L_23 = ___endPtr2;
V_13 = (bool)((((int32_t)((!(((uintptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_22, 4))) >= ((uintptr_t)L_23)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_24 = V_13;
if (!L_24)
{
goto IL_0083;
}
}
{
// return 0;
V_1 = 0;
goto IL_00bf;
}
IL_0083:
{
// var data1 = *currentPtr;
uint8_t* L_25 = ___currentPtr1;
int32_t L_26 = *((uint8_t*)L_25);
V_9 = (uint8_t)L_26;
// var data2 = *(currentPtr + 1);
uint8_t* L_27 = ___currentPtr1;
int32_t L_28 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_27, 1)));
V_10 = (uint8_t)L_28;
// var data3 = *(currentPtr + 2);
uint8_t* L_29 = ___currentPtr1;
int32_t L_30 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_29, 2)));
V_11 = (uint8_t)L_30;
// var data4 = *(currentPtr + 3);
uint8_t* L_31 = ___currentPtr1;
int32_t L_32 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, 3)));
V_12 = (uint8_t)L_32;
// return (data4 << 24) | (data3 << 24) | (data2 << 8) | data1;
uint8_t L_33 = V_12;
uint8_t L_34 = V_11;
uint8_t L_35 = V_10;
uint8_t L_36 = V_9;
V_1 = ((int32_t)(((int32_t)(((int32_t)(((int32_t)((int32_t)L_33<<((int32_t)24)))|((int32_t)((int32_t)L_34<<((int32_t)24)))))|((int32_t)((int32_t)L_35<<8))))|(int32_t)L_36));
goto IL_00bf;
}
IL_00af:
{
// Debug.Assert(false, "Should not reach here");
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806((bool)0, _stringLiteral294B0EF262D645A4939BABCFB7C842F2BC2E20B1, NULL);
// return 0;
V_1 = 0;
goto IL_00bf;
}
IL_00bf:
{
// }
int32_t L_37 = V_1;
return L_37;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 UnityEngine.InputSystem.HID.HIDParser/HIDReportData::FindOrAddReport(System.Nullable`1<System.Int32>,UnityEngine.InputSystem.HID.HID/HIDReportType,System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HIDParser/HIDReportData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDReportData_FindOrAddReport_mFB72068FEB4E2C0EC335AA6829B41D15B943D3FF (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportId0, int32_t ___reportType1, List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* ___reports2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m1FD2135A63F0BDE6E3127763ACDA2591AFC774F4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
int32_t V_2 = 0;
bool V_3 = false;
int32_t V_4 = 0;
bool V_5 = false;
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F V_6;
memset((&V_6), 0, sizeof(V_6));
int32_t G_B6_0 = 0;
{
// var id = 1;
V_0 = 1;
// if (reportId.HasValue)
bool L_0;
L_0 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&___reportId0), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
V_1 = L_0;
bool L_1 = V_1;
if (!L_1)
{
goto IL_0016;
}
}
{
// id = reportId.Value;
int32_t L_2;
L_2 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA((&___reportId0), Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
V_0 = L_2;
}
IL_0016:
{
// for (var i = 0; i < reports.Count; ++i)
V_2 = 0;
goto IL_004a;
}
IL_001a:
{
// if (reports[i].reportId == id && reports[i].reportType == reportType)
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_3 = ___reports2;
int32_t L_4 = V_2;
NullCheck(L_3);
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_5;
L_5 = List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434(L_3, L_4, List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434_RuntimeMethod_var);
int32_t L_6 = L_5.___reportId_0;
int32_t L_7 = V_0;
if ((!(((uint32_t)L_6) == ((uint32_t)L_7))))
{
goto IL_003b;
}
}
{
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_8 = ___reports2;
int32_t L_9 = V_2;
NullCheck(L_8);
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_10;
L_10 = List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434(L_8, L_9, List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434_RuntimeMethod_var);
int32_t L_11 = L_10.___reportType_1;
int32_t L_12 = ___reportType1;
G_B6_0 = ((((int32_t)L_11) == ((int32_t)L_12))? 1 : 0);
goto IL_003c;
}
IL_003b:
{
G_B6_0 = 0;
}
IL_003c:
{
V_3 = (bool)G_B6_0;
bool L_13 = V_3;
if (!L_13)
{
goto IL_0045;
}
}
{
// return i;
int32_t L_14 = V_2;
V_4 = L_14;
goto IL_0086;
}
IL_0045:
{
// for (var i = 0; i < reports.Count; ++i)
int32_t L_15 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_15, 1));
}
IL_004a:
{
// for (var i = 0; i < reports.Count; ++i)
int32_t L_16 = V_2;
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_17 = ___reports2;
NullCheck(L_17);
int32_t L_18;
L_18 = List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_inline(L_17, List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_RuntimeMethod_var);
V_5 = (bool)((((int32_t)L_16) < ((int32_t)L_18))? 1 : 0);
bool L_19 = V_5;
if (L_19)
{
goto IL_001a;
}
}
{
// reports.Add(new HIDReportData
// {
// reportId = id,
// reportType = reportType
// });
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_20 = ___reports2;
il2cpp_codegen_initobj((&V_6), sizeof(HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F));
int32_t L_21 = V_0;
(&V_6)->___reportId_0 = L_21;
int32_t L_22 = ___reportType1;
(&V_6)->___reportType_1 = L_22;
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_23 = V_6;
NullCheck(L_20);
List_1_Add_m1FD2135A63F0BDE6E3127763ACDA2591AFC774F4_inline(L_20, L_23, List_1_Add_m1FD2135A63F0BDE6E3127763ACDA2591AFC774F4_RuntimeMethod_var);
// return reports.Count - 1;
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_24 = ___reports2;
NullCheck(L_24);
int32_t L_25;
L_25 = List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_inline(L_24, List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_RuntimeMethod_var);
V_4 = ((int32_t)il2cpp_codegen_subtract(L_25, 1));
goto IL_0086;
}
IL_0086:
{
// }
int32_t L_26 = V_4;
return L_26;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal
IL2CPP_EXTERN_C void HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshal_pinvoke(const HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B& unmarshaled, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshaled_pinvoke& marshaled)
{
Exception_t* ___usage_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'usage' of type 'HIDItemStateLocal'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___usage_0Exception, NULL);
}
IL2CPP_EXTERN_C void HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshal_pinvoke_back(const HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshaled_pinvoke& marshaled, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B& unmarshaled)
{
Exception_t* ___usage_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'usage' of type 'HIDItemStateLocal'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___usage_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal
IL2CPP_EXTERN_C void HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshal_pinvoke_cleanup(HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal
IL2CPP_EXTERN_C void HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshal_com(const HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B& unmarshaled, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshaled_com& marshaled)
{
Exception_t* ___usage_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'usage' of type 'HIDItemStateLocal'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___usage_0Exception, NULL);
}
IL2CPP_EXTERN_C void HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshal_com_back(const HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshaled_com& marshaled, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B& unmarshaled)
{
Exception_t* ___usage_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'usage' of type 'HIDItemStateLocal'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___usage_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal
IL2CPP_EXTERN_C void HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshal_com_cleanup(HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshaled_com& marshaled)
{
}
// System.Void UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::Reset(UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDItemStateLocal_Reset_m41DEFAD3D3126B6AE8690A51E12F9EB71AF36942 (HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* V_0 = NULL;
bool V_1 = false;
{
// var usageList = state.usageList;
HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* L_0 = ___state0;
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_1 = L_0->___usageList_9;
V_0 = L_1;
// state = new HIDItemStateLocal();
HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* L_2 = ___state0;
il2cpp_codegen_initobj(L_2, sizeof(HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B));
// if (usageList != null)
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_3 = V_0;
V_1 = (bool)((!(((RuntimeObject*)(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_0027;
}
}
{
// usageList.Clear();
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_5 = V_0;
NullCheck(L_5);
List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_inline(L_5, List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var);
// state.usageList = usageList;
HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* L_6 = ___state0;
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_7 = V_0;
L_6->___usageList_9 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&L_6->___usageList_9), (void*)L_7);
}
IL_0027:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::SetUsage(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDItemStateLocal_SetUsage_mF18CA9692FAAB72115B8E30B671F75642F0CEF26 (HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
// if (usage.HasValue)
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_0 = (&__this->___usage_0);
bool L_1;
L_1 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_0, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0041;
}
}
{
// if (usageList == null)
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_3 = __this->___usageList_9;
V_1 = (bool)((((RuntimeObject*)(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)L_3) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_0029;
}
}
{
// usageList = new List<int>();
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_5 = (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cpp_codegen_object_new(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
NullCheck(L_5);
List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8(L_5, List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
__this->___usageList_9 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___usageList_9), (void*)L_5);
}
IL_0029:
{
// usageList.Add(usage.Value);
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_6 = __this->___usageList_9;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_7 = (&__this->___usage_0);
int32_t L_8;
L_8 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_7, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
NullCheck(L_6);
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_6, L_8, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
}
IL_0041:
{
// usage = value;
int32_t L_9 = ___value0;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_10;
memset((&L_10), 0, sizeof(L_10));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_10), L_9, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
__this->___usage_0 = L_10;
// }
return;
}
}
IL2CPP_EXTERN_C void HIDItemStateLocal_SetUsage_mF18CA9692FAAB72115B8E30B671F75642F0CEF26_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B*>(__this + _offset);
HIDItemStateLocal_SetUsage_mF18CA9692FAAB72115B8E30B671F75642F0CEF26(_thisAdjusted, ___value0, method);
}
// System.Int32 UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::GetUsage(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDItemStateLocal_GetUsage_m12B69C95479759524D12DBC0EED1737B2A758DBA (HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
bool V_4 = false;
int32_t V_5 = 0;
bool V_6 = false;
bool V_7 = false;
int32_t V_8 = 0;
bool V_9 = false;
bool V_10 = false;
int32_t G_B3_0 = 0;
int32_t G_B12_0 = 0;
{
// if (usageMinimum.HasValue && usageMaximum.HasValue)
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_0 = (&__this->___usageMinimum_1);
bool L_1;
L_1 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_0, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (!L_1)
{
goto IL_001b;
}
}
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_2 = (&__this->___usageMaximum_2);
bool L_3;
L_3 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_2, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
G_B3_0 = ((int32_t)(L_3));
goto IL_001c;
}
IL_001b:
{
G_B3_0 = 0;
}
IL_001c:
{
V_0 = (bool)G_B3_0;
bool L_4 = V_0;
if (!L_4)
{
goto IL_006b;
}
}
{
// var min = usageMinimum.Value;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_5 = (&__this->___usageMinimum_1);
int32_t L_6;
L_6 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_5, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
V_1 = L_6;
// var max = usageMaximum.Value;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_7 = (&__this->___usageMaximum_2);
int32_t L_8;
L_8 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_7, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
V_2 = L_8;
// var range = max - min;
int32_t L_9 = V_2;
int32_t L_10 = V_1;
V_3 = ((int32_t)il2cpp_codegen_subtract(L_9, L_10));
// if (range < 0)
int32_t L_11 = V_3;
V_4 = (bool)((((int32_t)L_11) < ((int32_t)0))? 1 : 0);
bool L_12 = V_4;
if (!L_12)
{
goto IL_004f;
}
}
{
// return 0;
V_5 = 0;
goto IL_00ea;
}
IL_004f:
{
// if (index >= range)
int32_t L_13 = ___index0;
int32_t L_14 = V_3;
V_6 = (bool)((((int32_t)((((int32_t)L_13) < ((int32_t)L_14))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_15 = V_6;
if (!L_15)
{
goto IL_0064;
}
}
{
// return max;
int32_t L_16 = V_2;
V_5 = L_16;
goto IL_00ea;
}
IL_0064:
{
// return min + index;
int32_t L_17 = V_1;
int32_t L_18 = ___index0;
V_5 = ((int32_t)il2cpp_codegen_add(L_17, L_18));
goto IL_00ea;
}
IL_006b:
{
// if (usageList != null && usageList.Count > 0)
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_19 = __this->___usageList_9;
if (!L_19)
{
goto IL_0083;
}
}
{
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_20 = __this->___usageList_9;
NullCheck(L_20);
int32_t L_21;
L_21 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_20, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
G_B12_0 = ((((int32_t)L_21) > ((int32_t)0))? 1 : 0);
goto IL_0084;
}
IL_0083:
{
G_B12_0 = 0;
}
IL_0084:
{
V_7 = (bool)G_B12_0;
bool L_22 = V_7;
if (!L_22)
{
goto IL_00c5;
}
}
{
// var usageCount = usageList.Count;
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_23 = __this->___usageList_9;
NullCheck(L_23);
int32_t L_24;
L_24 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_23, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
V_8 = L_24;
// if (index >= usageCount)
int32_t L_25 = ___index0;
int32_t L_26 = V_8;
V_9 = (bool)((((int32_t)((((int32_t)L_25) < ((int32_t)L_26))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_27 = V_9;
if (!L_27)
{
goto IL_00b5;
}
}
{
// return usage.Value;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_28 = (&__this->___usage_0);
int32_t L_29;
L_29 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_28, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
V_5 = L_29;
goto IL_00ea;
}
IL_00b5:
{
// return usageList[index];
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_30 = __this->___usageList_9;
int32_t L_31 = ___index0;
NullCheck(L_30);
int32_t L_32;
L_32 = List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D(L_30, L_31, List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
V_5 = L_32;
goto IL_00ea;
}
IL_00c5:
{
// if (usage.HasValue)
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_33 = (&__this->___usage_0);
bool L_34;
L_34 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_33, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
V_10 = L_34;
bool L_35 = V_10;
if (!L_35)
{
goto IL_00e5;
}
}
{
// return usage.Value;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_36 = (&__this->___usage_0);
int32_t L_37;
L_37 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_36, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
V_5 = L_37;
goto IL_00ea;
}
IL_00e5:
{
// return 0;
V_5 = 0;
goto IL_00ea;
}
IL_00ea:
{
// }
int32_t L_38 = V_5;
return L_38;
}
}
IL2CPP_EXTERN_C int32_t HIDItemStateLocal_GetUsage_m12B69C95479759524D12DBC0EED1737B2A758DBA_AdjustorThunk (RuntimeObject* __this, int32_t ___index0, const RuntimeMethod* method)
{
HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B*>(__this + _offset);
int32_t _returnValue;
_returnValue = HIDItemStateLocal_GetUsage_m12B69C95479759524D12DBC0EED1737B2A758DBA(_thisAdjusted, ___index0, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal
IL2CPP_EXTERN_C void HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshal_pinvoke(const HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1& unmarshaled, HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshaled_pinvoke& marshaled)
{
Exception_t* ___usagePage_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'usagePage' of type 'HIDItemStateGlobal'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___usagePage_0Exception, NULL);
}
IL2CPP_EXTERN_C void HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshal_pinvoke_back(const HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshaled_pinvoke& marshaled, HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1& unmarshaled)
{
Exception_t* ___usagePage_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'usagePage' of type 'HIDItemStateGlobal'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___usagePage_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal
IL2CPP_EXTERN_C void HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshal_pinvoke_cleanup(HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal
IL2CPP_EXTERN_C void HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshal_com(const HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1& unmarshaled, HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshaled_com& marshaled)
{
Exception_t* ___usagePage_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'usagePage' of type 'HIDItemStateGlobal'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___usagePage_0Exception, NULL);
}
IL2CPP_EXTERN_C void HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshal_com_back(const HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshaled_com& marshaled, HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1& unmarshaled)
{
Exception_t* ___usagePage_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'usagePage' of type 'HIDItemStateGlobal'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___usagePage_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal
IL2CPP_EXTERN_C void HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshal_com_cleanup(HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshaled_com& marshaled)
{
}
// UnityEngine.InputSystem.HID.HID/UsagePage UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::GetUsagePage(System.Int32,UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDItemStateGlobal_GetUsagePage_m2730AFF3A621069D5CA7B93423F53AF9145D5B92 (HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* __this, int32_t ___index0, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* ___localItemState1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
// if (!usagePage.HasValue)
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_0 = (&__this->___usagePage_0);
bool L_1;
L_1 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_0, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_0023;
}
}
{
// var usage = localItemState.GetUsage(index);
HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* L_3 = ___localItemState1;
int32_t L_4 = ___index0;
int32_t L_5;
L_5 = HIDItemStateLocal_GetUsage_m12B69C95479759524D12DBC0EED1737B2A758DBA(L_3, L_4, NULL);
V_1 = L_5;
// return (HID.UsagePage)(usage >> 16);
int32_t L_6 = V_1;
V_2 = ((int32_t)(L_6>>((int32_t)16)));
goto IL_0031;
}
IL_0023:
{
// return (HID.UsagePage)usagePage.Value;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_7 = (&__this->___usagePage_0);
int32_t L_8;
L_8 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_7, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
V_2 = L_8;
goto IL_0031;
}
IL_0031:
{
// }
int32_t L_9 = V_2;
return L_9;
}
}
IL2CPP_EXTERN_C int32_t HIDItemStateGlobal_GetUsagePage_m2730AFF3A621069D5CA7B93423F53AF9145D5B92_AdjustorThunk (RuntimeObject* __this, int32_t ___index0, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* ___localItemState1, const RuntimeMethod* method)
{
HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1*>(__this + _offset);
int32_t _returnValue;
_returnValue = HIDItemStateGlobal_GetUsagePage_m2730AFF3A621069D5CA7B93423F53AF9145D5B92(_thisAdjusted, ___index0, ___localItemState1, method);
return _returnValue;
}
// System.Int32 UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::GetPhysicalMin()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDItemStateGlobal_GetPhysicalMin_m024C068044E6BCAF50A7B916DEE32027CBCBFE0A (HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
int32_t G_B5_0 = 0;
int32_t G_B7_0 = 0;
{
// if (physicalMinimum == null || physicalMaximum == null ||
// (physicalMinimum.Value == 0 && physicalMaximum.Value == 0))
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_0 = (&__this->___physicalMinimum_3);
bool L_1;
L_1 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_0, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (!L_1)
{
goto IL_003b;
}
}
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_2 = (&__this->___physicalMaximum_4);
bool L_3;
L_3 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_2, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (!L_3)
{
goto IL_003b;
}
}
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_4 = (&__this->___physicalMinimum_3);
int32_t L_5;
L_5 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_4, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
if (L_5)
{
goto IL_0038;
}
}
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_6 = (&__this->___physicalMaximum_4);
int32_t L_7;
L_7 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_6, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
G_B5_0 = ((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
goto IL_0039;
}
IL_0038:
{
G_B5_0 = 0;
}
IL_0039:
{
G_B7_0 = G_B5_0;
goto IL_003c;
}
IL_003b:
{
G_B7_0 = 1;
}
IL_003c:
{
V_0 = (bool)G_B7_0;
bool L_8 = V_0;
if (!L_8)
{
goto IL_004f;
}
}
{
// return logicalMinimum.GetValueOrDefault(0);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_9 = (&__this->___logicalMinimum_1);
int32_t L_10;
L_10 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_9, 0, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
V_1 = L_10;
goto IL_005d;
}
IL_004f:
{
// return physicalMinimum.Value;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_11 = (&__this->___physicalMinimum_3);
int32_t L_12;
L_12 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_11, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
V_1 = L_12;
goto IL_005d;
}
IL_005d:
{
// }
int32_t L_13 = V_1;
return L_13;
}
}
IL2CPP_EXTERN_C int32_t HIDItemStateGlobal_GetPhysicalMin_m024C068044E6BCAF50A7B916DEE32027CBCBFE0A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1*>(__this + _offset);
int32_t _returnValue;
_returnValue = HIDItemStateGlobal_GetPhysicalMin_m024C068044E6BCAF50A7B916DEE32027CBCBFE0A(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::GetPhysicalMax()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDItemStateGlobal_GetPhysicalMax_mC33E0323DB7C0817C2951AD435D56E151D705490 (HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
int32_t G_B5_0 = 0;
int32_t G_B7_0 = 0;
{
// if (physicalMinimum == null || physicalMaximum == null ||
// (physicalMinimum.Value == 0 && physicalMaximum.Value == 0))
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_0 = (&__this->___physicalMinimum_3);
bool L_1;
L_1 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_0, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (!L_1)
{
goto IL_003b;
}
}
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_2 = (&__this->___physicalMaximum_4);
bool L_3;
L_3 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_2, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (!L_3)
{
goto IL_003b;
}
}
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_4 = (&__this->___physicalMinimum_3);
int32_t L_5;
L_5 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_4, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
if (L_5)
{
goto IL_0038;
}
}
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_6 = (&__this->___physicalMaximum_4);
int32_t L_7;
L_7 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_6, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
G_B5_0 = ((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
goto IL_0039;
}
IL_0038:
{
G_B5_0 = 0;
}
IL_0039:
{
G_B7_0 = G_B5_0;
goto IL_003c;
}
IL_003b:
{
G_B7_0 = 1;
}
IL_003c:
{
V_0 = (bool)G_B7_0;
bool L_8 = V_0;
if (!L_8)
{
goto IL_004f;
}
}
{
// return logicalMaximum.GetValueOrDefault(0);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_9 = (&__this->___logicalMaximum_2);
int32_t L_10;
L_10 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_9, 0, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
V_1 = L_10;
goto IL_005d;
}
IL_004f:
{
// return physicalMaximum.Value;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_11 = (&__this->___physicalMaximum_4);
int32_t L_12;
L_12 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_11, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
V_1 = L_12;
goto IL_005d;
}
IL_005d:
{
// }
int32_t L_13 = V_1;
return L_13;
}
}
IL2CPP_EXTERN_C int32_t HIDItemStateGlobal_GetPhysicalMax_mC33E0323DB7C0817C2951AD435D56E151D705490_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1*>(__this + _offset);
int32_t _returnValue;
_returnValue = HIDItemStateGlobal_GetPhysicalMax_mC33E0323DB7C0817C2951AD435D56E151D705490(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage> UnityEngine.InputSystem.HID.HIDSupport::get_supportedHIDUsages()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7 HIDSupport_get_supportedHIDUsages_m19CE9623FF0A5E412C705D9FB372CC1085D15733 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_op_Implicit_mA22B8A64D028BB26629945A20BB233B21108C0C0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => s_SupportedHIDUsages;
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* L_0 = ((HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_StaticFields*)il2cpp_codegen_static_fields_for(HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var))->___s_SupportedHIDUsages_0;
ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7 L_1;
L_1 = ReadOnlyArray_1_op_Implicit_mA22B8A64D028BB26629945A20BB233B21108C0C0(L_0, ReadOnlyArray_1_op_Implicit_mA22B8A64D028BB26629945A20BB233B21108C0C0_RuntimeMethod_var);
return L_1;
}
}
// System.Void UnityEngine.InputSystem.HID.HIDSupport::set_supportedHIDUsages(UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDSupport_set_supportedHIDUsages_m7136C035D890A68BCCF80EE3ADB67A689ED725E3 (ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Contains_TisHIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F_mB26F4731F210BE498011E27E6DD428518C90CDD5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_ToArray_m7C4848AF221AD3A11F95E50E61A49B4AA1FB58FE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Count_mB20295F7CC546835AD75D4880A2A81DABB6BE29C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Item_mCB4626E80069288BC1EEF0F558B1B806F59DAE43_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* V_1 = NULL;
HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D* V_2 = NULL;
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA V_3;
memset((&V_3), 0, sizeof(V_3));
bool V_4 = false;
bool V_5 = false;
int32_t G_B4_0 = 0;
{
// s_SupportedHIDUsages = value.ToArray();
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* L_0;
L_0 = ReadOnlyArray_1_ToArray_m7C4848AF221AD3A11F95E50E61A49B4AA1FB58FE((&___value0), ReadOnlyArray_1_ToArray_m7C4848AF221AD3A11F95E50E61A49B4AA1FB58FE_RuntimeMethod_var);
((HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_StaticFields*)il2cpp_codegen_static_fields_for(HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var))->___s_SupportedHIDUsages_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_StaticFields*)il2cpp_codegen_static_fields_for(HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var))->___s_SupportedHIDUsages_0), (void*)L_0);
// InputSystem.s_Manager.AddAvailableDevicesThatAreNowRecognized();
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_1 = ((InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var))->___s_Manager_2;
NullCheck(L_1);
InputManager_AddAvailableDevicesThatAreNowRecognized_mE0F489C5F28E922D0E4BCBBD115C57037E47BAD3(L_1, NULL);
// for (var i = 0; i < InputSystem.devices.Count; ++i)
V_0 = 0;
goto IL_007e;
}
IL_001c:
{
// var device = InputSystem.devices[i];
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA L_2;
L_2 = InputSystem_get_devices_m92D52284ABC0BCE6CF46CB98EB870F2AA3890BF8(NULL);
V_3 = L_2;
int32_t L_3 = V_0;
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_4;
L_4 = ReadOnlyArray_1_get_Item_mCB4626E80069288BC1EEF0F558B1B806F59DAE43((&V_3), L_3, ReadOnlyArray_1_get_Item_mCB4626E80069288BC1EEF0F558B1B806F59DAE43_RuntimeMethod_var);
V_1 = L_4;
// if (device is HID hid && !s_SupportedHIDUsages.Contains(new HIDPageUsage(hid.hidDescriptor.usagePage, hid.hidDescriptor.usage)))
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_5 = V_1;
V_2 = ((HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D*)IsInstClass((RuntimeObject*)L_5, HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D_il2cpp_TypeInfo_var));
HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D* L_6 = V_2;
if (!L_6)
{
goto IL_0060;
}
}
{
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* L_7 = ((HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_StaticFields*)il2cpp_codegen_static_fields_for(HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var))->___s_SupportedHIDUsages_0;
HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D* L_8 = V_2;
NullCheck(L_8);
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_9;
L_9 = HID_get_hidDescriptor_mC184D46A5FBDBA93CEA647FE529637230B01928D(L_8, NULL);
int32_t L_10 = L_9.___usagePage_3;
HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D* L_11 = V_2;
NullCheck(L_11);
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_12;
L_12 = HID_get_hidDescriptor_mC184D46A5FBDBA93CEA647FE529637230B01928D(L_11, NULL);
int32_t L_13 = L_12.___usage_2;
HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F L_14;
memset((&L_14), 0, sizeof(L_14));
HIDPageUsage__ctor_m6371674E595E66213116FCAC5B07337261F69783((&L_14), L_10, L_13, /*hidden argument*/NULL);
bool L_15;
L_15 = Enumerable_Contains_TisHIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F_mB26F4731F210BE498011E27E6DD428518C90CDD5((RuntimeObject*)L_7, L_14, Enumerable_Contains_TisHIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F_mB26F4731F210BE498011E27E6DD428518C90CDD5_RuntimeMethod_var);
G_B4_0 = ((((int32_t)L_15) == ((int32_t)0))? 1 : 0);
goto IL_0061;
}
IL_0060:
{
G_B4_0 = 0;
}
IL_0061:
{
V_4 = (bool)G_B4_0;
bool L_16 = V_4;
if (!L_16)
{
goto IL_0079;
}
}
{
// InputSystem.RemoveLayout(device.layout);
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_17 = V_1;
NullCheck(L_17);
String_t* L_18;
L_18 = InputControl_get_layout_mE6054F87BB94A1F1D06355E137A1840B2EFF7971(L_17, NULL);
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSystem_RemoveLayout_m7AA59AD8EC2AA0BAA64FAA37B96CF00C2DA27A4D(L_18, NULL);
// --i;
int32_t L_19 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_19, 1));
}
IL_0079:
{
// for (var i = 0; i < InputSystem.devices.Count; ++i)
int32_t L_20 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_20, 1));
}
IL_007e:
{
// for (var i = 0; i < InputSystem.devices.Count; ++i)
int32_t L_21 = V_0;
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA L_22;
L_22 = InputSystem_get_devices_m92D52284ABC0BCE6CF46CB98EB870F2AA3890BF8(NULL);
V_3 = L_22;
int32_t L_23;
L_23 = ReadOnlyArray_1_get_Count_mB20295F7CC546835AD75D4880A2A81DABB6BE29C_inline((&V_3), ReadOnlyArray_1_get_Count_mB20295F7CC546835AD75D4880A2A81DABB6BE29C_RuntimeMethod_var);
V_5 = (bool)((((int32_t)L_21) < ((int32_t)L_23))? 1 : 0);
bool L_24 = V_5;
if (L_24)
{
goto IL_001c;
}
}
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.HID.HIDSupport::Initialize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDSupport_Initialize_mE66B1CB6F394FD0D37A068C5F7B230387A7E63D4 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HID_OnFindLayoutForDevice_mF3ACB130B5ABABC1A68AD5594A4D6035BA2C04EE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisHID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D_m386AEFB411C8CB4ECEEE863719FED4611062B85E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C V_0;
memset((&V_0), 0, sizeof(V_0));
{
// s_SupportedHIDUsages = new[]
// {
// new HIDPageUsage(HID.GenericDesktop.Joystick),
// new HIDPageUsage(HID.GenericDesktop.Gamepad),
// new HIDPageUsage(HID.GenericDesktop.MultiAxisController),
// };
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* L_0 = (HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD*)(HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD*)SZArrayNew(HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD_il2cpp_TypeInfo_var, (uint32_t)3);
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* L_1 = L_0;
HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F L_2;
memset((&L_2), 0, sizeof(L_2));
HIDPageUsage__ctor_mFFC7DE365DEC0C75BC6E9155D2BDECEC6EAAE96B((&L_2), 4, /*hidden argument*/NULL);
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F)L_2);
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* L_3 = L_1;
HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F L_4;
memset((&L_4), 0, sizeof(L_4));
HIDPageUsage__ctor_mFFC7DE365DEC0C75BC6E9155D2BDECEC6EAAE96B((&L_4), 5, /*hidden argument*/NULL);
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F)L_4);
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* L_5 = L_3;
HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F L_6;
memset((&L_6), 0, sizeof(L_6));
HIDPageUsage__ctor_mFFC7DE365DEC0C75BC6E9155D2BDECEC6EAAE96B((&L_6), 8, /*hidden argument*/NULL);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F)L_6);
((HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_StaticFields*)il2cpp_codegen_static_fields_for(HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var))->___s_SupportedHIDUsages_0 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&((HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_StaticFields*)il2cpp_codegen_static_fields_for(HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var))->___s_SupportedHIDUsages_0), (void*)L_5);
// InputSystem.RegisterLayout<HID>();
il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C));
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_7 = V_0;
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSystem_RegisterLayout_TisHID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D_m386AEFB411C8CB4ECEEE863719FED4611062B85E((String_t*)NULL, L_7, InputSystem_RegisterLayout_TisHID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D_m386AEFB411C8CB4ECEEE863719FED4611062B85E_RuntimeMethod_var);
// InputSystem.onFindLayoutForDevice += HID.OnFindLayoutForDevice;
InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E* L_8 = (InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E*)il2cpp_codegen_object_new(InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E_il2cpp_TypeInfo_var);
NullCheck(L_8);
InputDeviceFindControlLayoutDelegate__ctor_mFF49E8C46111B03A6B9AEBDA66C309EF6FACFB78(L_8, NULL, (intptr_t)((void*)HID_OnFindLayoutForDevice_mF3ACB130B5ABABC1A68AD5594A4D6035BA2C04EE_RuntimeMethod_var), NULL);
InputSystem_add_onFindLayoutForDevice_m5BC51D1D5A33186A539F58F2A5429A7252ED8BAF(L_8, NULL);
// }
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage::.ctor(UnityEngine.InputSystem.HID.HID/UsagePage,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDPageUsage__ctor_m6371674E595E66213116FCAC5B07337261F69783 (HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F* __this, int32_t ___page0, int32_t ___usage1, const RuntimeMethod* method)
{
{
// this.page = page;
int32_t L_0 = ___page0;
__this->___page_0 = L_0;
// this.usage = usage;
int32_t L_1 = ___usage1;
__this->___usage_1 = L_1;
// }
return;
}
}
IL2CPP_EXTERN_C void HIDPageUsage__ctor_m6371674E595E66213116FCAC5B07337261F69783_AdjustorThunk (RuntimeObject* __this, int32_t ___page0, int32_t ___usage1, const RuntimeMethod* method)
{
HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F*>(__this + _offset);
HIDPageUsage__ctor_m6371674E595E66213116FCAC5B07337261F69783(_thisAdjusted, ___page0, ___usage1, method);
}
// System.Void UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage::.ctor(UnityEngine.InputSystem.HID.HID/GenericDesktop)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDPageUsage__ctor_mFFC7DE365DEC0C75BC6E9155D2BDECEC6EAAE96B (HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F* __this, int32_t ___usage0, const RuntimeMethod* method)
{
{
// page = HID.UsagePage.GenericDesktop;
__this->___page_0 = 1;
// this.usage = (int)usage;
int32_t L_0 = ___usage0;
__this->___usage_1 = L_0;
// }
return;
}
}
IL2CPP_EXTERN_C void HIDPageUsage__ctor_mFFC7DE365DEC0C75BC6E9155D2BDECEC6EAAE96B_AdjustorThunk (RuntimeObject* __this, int32_t ___usage0, const RuntimeMethod* method)
{
HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F*>(__this + _offset);
HIDPageUsage__ctor_mFFC7DE365DEC0C75BC6E9155D2BDECEC6EAAE96B(_thisAdjusted, ___usage0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::get_enabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnhancedTouchSupport_get_enabled_m4568C73CDE721BA254AF5E780F966F5F3B059B2F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static bool enabled => s_Enabled > 0;
int32_t L_0 = ((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_Enabled_0;
return (bool)((((int32_t)L_0) > ((int32_t)0))? 1 : 0);
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::Enable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_Enable_m3499C94737BB636112851899C283E1FCCC9E3C6E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_OnDeviceChange_mAF845A948AFFB9419953242B144E4B50971F0100_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_OnSettingsChange_m410D59C33D4CC6AE8EC12808F4DBAD66E5A265E9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_BeginUpdate_m3EDF005AF7A44CE6FE5EC0F00D8F21F6BE320834_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// ++s_Enabled;
int32_t L_0 = ((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_Enabled_0;
((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_Enabled_0 = ((int32_t)il2cpp_codegen_add(L_0, 1));
// if (s_Enabled > 1)
int32_t L_1 = ((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_Enabled_0;
V_0 = (bool)((((int32_t)L_1) > ((int32_t)1))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_001b;
}
}
{
// return;
goto IL_0057;
}
IL_001b:
{
// InputSystem.onDeviceChange += OnDeviceChange;
Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* L_3 = (Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333*)il2cpp_codegen_object_new(Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333_il2cpp_TypeInfo_var);
NullCheck(L_3);
Action_2__ctor_m23A4911D82F290811EDC6BFC315C339857526804(L_3, NULL, (intptr_t)((void*)EnhancedTouchSupport_OnDeviceChange_mAF845A948AFFB9419953242B144E4B50971F0100_RuntimeMethod_var), NULL);
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSystem_add_onDeviceChange_m029F558DF1CF7BE38BCC050CC4FBD6A9EA2C2C35(L_3, NULL);
// InputSystem.onBeforeUpdate += Touch.BeginUpdate;
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_4 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
NullCheck(L_4);
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_4, NULL, (intptr_t)((void*)Touch_BeginUpdate_m3EDF005AF7A44CE6FE5EC0F00D8F21F6BE320834_RuntimeMethod_var), NULL);
InputSystem_add_onBeforeUpdate_mB479D148F4C1684B66FB64B79C9331813A596ECD(L_4, NULL);
// InputSystem.onSettingsChange += OnSettingsChange;
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_5 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
NullCheck(L_5);
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_5, NULL, (intptr_t)((void*)EnhancedTouchSupport_OnSettingsChange_m410D59C33D4CC6AE8EC12808F4DBAD66E5A265E9_RuntimeMethod_var), NULL);
InputSystem_add_onSettingsChange_mD6A699F56A58024436C7DAD2C9038F6102CFD324(L_5, NULL);
// SetUpState();
EnhancedTouchSupport_SetUpState_m8F07286BA422305AD55FDF4FB592F052A8EC2F15(NULL);
}
IL_0057:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::Disable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_Disable_mDE96196C7171B1827FDFD8762A402D30A01975B6 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_OnDeviceChange_mAF845A948AFFB9419953242B144E4B50971F0100_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_OnSettingsChange_m410D59C33D4CC6AE8EC12808F4DBAD66E5A265E9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_BeginUpdate_m3EDF005AF7A44CE6FE5EC0F00D8F21F6BE320834_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
// if (!enabled)
bool L_0;
L_0 = EnhancedTouchSupport_get_enabled_m4568C73CDE721BA254AF5E780F966F5F3B059B2F(NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_000f;
}
}
{
// return;
goto IL_0065;
}
IL_000f:
{
// --s_Enabled;
int32_t L_2 = ((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_Enabled_0;
((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_Enabled_0 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
// if (s_Enabled > 0)
int32_t L_3 = ((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_Enabled_0;
V_1 = (bool)((((int32_t)L_3) > ((int32_t)0))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_0029;
}
}
{
// return;
goto IL_0065;
}
IL_0029:
{
// InputSystem.onDeviceChange -= OnDeviceChange;
Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* L_5 = (Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333*)il2cpp_codegen_object_new(Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333_il2cpp_TypeInfo_var);
NullCheck(L_5);
Action_2__ctor_m23A4911D82F290811EDC6BFC315C339857526804(L_5, NULL, (intptr_t)((void*)EnhancedTouchSupport_OnDeviceChange_mAF845A948AFFB9419953242B144E4B50971F0100_RuntimeMethod_var), NULL);
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSystem_remove_onDeviceChange_m772CFE26B5D7C6DBBC8F8DBA78E327EC4CF6C930(L_5, NULL);
// InputSystem.onBeforeUpdate -= Touch.BeginUpdate;
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_6 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
NullCheck(L_6);
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_6, NULL, (intptr_t)((void*)Touch_BeginUpdate_m3EDF005AF7A44CE6FE5EC0F00D8F21F6BE320834_RuntimeMethod_var), NULL);
InputSystem_remove_onBeforeUpdate_mBF0659BB33E2FD7874CD45067CEFF08C3A7A9EE4(L_6, NULL);
// InputSystem.onSettingsChange -= OnSettingsChange;
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_7 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
NullCheck(L_7);
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_7, NULL, (intptr_t)((void*)EnhancedTouchSupport_OnSettingsChange_m410D59C33D4CC6AE8EC12808F4DBAD66E5A265E9_RuntimeMethod_var), NULL);
InputSystem_remove_onSettingsChange_m696F1E8E291877B7C6FC3B00DC3C0AB28872F745(L_7, NULL);
// TearDownState();
EnhancedTouchSupport_TearDownState_mA6DC4026E6D18B6326403C3C7B5A8C41451C26B3(NULL);
}
IL_0065:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_Reset_m4F567C5F0DB05E21ACA15E175446FAA962B10B20 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// Touch.s_GlobalState.touchscreens = default;
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3* L_0 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___touchscreens_0);
il2cpp_codegen_initobj(L_0, sizeof(InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3));
// Touch.s_GlobalState.playerState.Destroy();
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_1 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
FingerAndTouchState_Destroy_mA11DBC6D12D70F40AA14283E65322FAFC602572B(L_1, NULL);
// Touch.s_GlobalState.playerState = default;
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_2 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
il2cpp_codegen_initobj(L_2, sizeof(FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D));
// s_Enabled = 0;
((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_Enabled_0 = 0;
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::SetUpState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_SetUpState_m8F07286BA422305AD55FDF4FB592F052A8EC2F15 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B V_0;
memset((&V_0), 0, sizeof(V_0));
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA V_1;
memset((&V_1), 0, sizeof(V_1));
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* V_2 = NULL;
{
// Touch.s_GlobalState.playerState.updateMask = InputUpdateType.Dynamic | InputUpdateType.Manual;
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_0 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
L_0->___updateMask_0 = ((int32_t)17);
// s_UpdateMode = InputSystem.settings.updateMode;
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF* L_1;
L_1 = InputSystem_get_settings_mFAFDCA4665DFE068CEBBBB379972A390BD0E45C7(NULL);
NullCheck(L_1);
int32_t L_2;
L_2 = InputSettings_get_updateMode_mD37EABFC0678912846EABBC3CF31AC82E4ACE79E_inline(L_1, NULL);
((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_UpdateMode_1 = L_2;
// foreach (var device in InputSystem.devices)
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA L_3;
L_3 = InputSystem_get_devices_m92D52284ABC0BCE6CF46CB98EB870F2AA3890BF8(NULL);
V_1 = L_3;
Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B L_4;
L_4 = ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C((&V_1), ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C_RuntimeMethod_var);
V_0 = L_4;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_004d:
{// begin finally (depth: 1)
Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB((&V_0), Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0042_1;
}
IL_0032_1:
{
// foreach (var device in InputSystem.devices)
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_5;
L_5 = Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945((&V_0), Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945_RuntimeMethod_var);
V_2 = L_5;
// OnDeviceChange(device, InputDeviceChange.Added);
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_6 = V_2;
EnhancedTouchSupport_OnDeviceChange_mAF845A948AFFB9419953242B144E4B50971F0100(L_6, 0, NULL);
}
IL_0042_1:
{
// foreach (var device in InputSystem.devices)
bool L_7;
L_7 = Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC((&V_0), Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC_RuntimeMethod_var);
if (L_7)
{
goto IL_0032_1;
}
}
{
goto IL_005c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_005c:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::TearDownState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_TearDownState_mA6DC4026E6D18B6326403C3C7B5A8C41451C26B3 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B V_0;
memset((&V_0), 0, sizeof(V_0));
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA V_1;
memset((&V_1), 0, sizeof(V_1));
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* V_2 = NULL;
{
// foreach (var device in InputSystem.devices)
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA L_0;
L_0 = InputSystem_get_devices_m92D52284ABC0BCE6CF46CB98EB870F2AA3890BF8(NULL);
V_1 = L_0;
Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B L_1;
L_1 = ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C((&V_1), ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C_RuntimeMethod_var);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_002d:
{// begin finally (depth: 1)
Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB((&V_0), Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0022_1;
}
IL_0012_1:
{
// foreach (var device in InputSystem.devices)
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_2;
L_2 = Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945((&V_0), Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945_RuntimeMethod_var);
V_2 = L_2;
// OnDeviceChange(device, InputDeviceChange.Removed);
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_3 = V_2;
EnhancedTouchSupport_OnDeviceChange_mAF845A948AFFB9419953242B144E4B50971F0100(L_3, 1, NULL);
}
IL_0022_1:
{
// foreach (var device in InputSystem.devices)
bool L_4;
L_4 = Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC((&V_0), Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC_RuntimeMethod_var);
if (L_4)
{
goto IL_0012_1;
}
}
{
goto IL_003c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_003c:
{
// Touch.s_GlobalState.playerState.Destroy();
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_5 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
FingerAndTouchState_Destroy_mA11DBC6D12D70F40AA14283E65322FAFC602572B(L_5, NULL);
// Touch.s_GlobalState.playerState = default;
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_6 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
il2cpp_codegen_initobj(L_6, sizeof(FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D));
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::OnDeviceChange(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_OnDeviceChange_mAF845A948AFFB9419953242B144E4B50971F0100 (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, int32_t ___change1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* V_2 = NULL;
bool V_3 = false;
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* V_4 = NULL;
bool V_5 = false;
{
// switch (change)
int32_t L_0 = ___change1;
V_1 = L_0;
int32_t L_1 = V_1;
V_0 = L_1;
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_0010;
}
}
{
goto IL_000a;
}
IL_000a:
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0029;
}
}
{
goto IL_0047;
}
IL_0010:
{
// if (device is Touchscreen touchscreen)
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_4 = ___device0;
V_2 = ((Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)IsInstClass((RuntimeObject*)L_4, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var));
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_5 = V_2;
V_3 = (bool)((!(((RuntimeObject*)(Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)L_5) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_6 = V_3;
if (!L_6)
{
goto IL_0027;
}
}
{
// Touch.AddTouchscreen(touchscreen);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_7 = V_2;
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
Touch_AddTouchscreen_m9E1BDBA572E0E293E5D19B04D662B4F942E5A68A(L_7, NULL);
}
IL_0027:
{
// break;
goto IL_0047;
}
IL_0029:
{
// if (device is Touchscreen touchscreen)
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_8 = ___device0;
V_4 = ((Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)IsInstClass((RuntimeObject*)L_8, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var));
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_9 = V_4;
V_5 = (bool)((!(((RuntimeObject*)(Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)L_9) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_10 = V_5;
if (!L_10)
{
goto IL_0045;
}
}
{
// Touch.RemoveTouchscreen(touchscreen);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_11 = V_4;
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
Touch_RemoveTouchscreen_m9B8A41313A046A1A6215D004B81502EC9B3865D4(L_11, NULL);
}
IL_0045:
{
// break;
goto IL_0047;
}
IL_0047:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::OnSettingsChange()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_OnSettingsChange_m410D59C33D4CC6AE8EC12808F4DBAD66E5A265E9 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
{
// var currentUpdateMode = InputSystem.settings.updateMode;
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF* L_0;
L_0 = InputSystem_get_settings_mFAFDCA4665DFE068CEBBBB379972A390BD0E45C7(NULL);
NullCheck(L_0);
int32_t L_1;
L_1 = InputSettings_get_updateMode_mD37EABFC0678912846EABBC3CF31AC82E4ACE79E_inline(L_0, NULL);
V_0 = L_1;
// if (s_UpdateMode == currentUpdateMode)
int32_t L_2 = ((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_UpdateMode_1;
int32_t L_3 = V_0;
V_1 = (bool)((((int32_t)L_2) == ((int32_t)L_3))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_001a;
}
}
{
// return;
goto IL_0026;
}
IL_001a:
{
// TearDownState();
EnhancedTouchSupport_TearDownState_mA6DC4026E6D18B6326403C3C7B5A8C41451C26B3(NULL);
// SetUpState();
EnhancedTouchSupport_SetUpState_m8F07286BA422305AD55FDF4FB592F052A8EC2F15(NULL);
}
IL_0026:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::CheckEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_CheckEnabled_m3FC2364507836124CB8E289D66CA0B2CF3F8B10C (const RuntimeMethod* method)
{
bool V_0 = false;
{
// if (!enabled)
bool L_0;
L_0 = EnhancedTouchSupport_get_enabled_m4568C73CDE721BA254AF5E780F966F5F3B059B2F(NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0018;
}
}
{
// throw new InvalidOperationException("EnhancedTouch API is not enabled; call EnhancedTouchSupport.Enable()");
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_2);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA0F65034D6B6BD3BB9E353144259AC585587137)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EnhancedTouchSupport_CheckEnabled_m3FC2364507836124CB8E289D66CA0B2CF3F8B10C_RuntimeMethod_var)));
}
IL_0018:
{
// }
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Touchscreen UnityEngine.InputSystem.EnhancedTouch.Finger::get_screen()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* Finger_get_screen_mBA2D1364604CB55F7386EFB844B12B7CFA7EE744 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
{
{
// public Touchscreen screen { get; }
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = __this->___U3CscreenU3Ek__BackingField_0;
return L_0;
}
}
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Finger::get_index()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Finger_get_index_mB409A9B5711767D3A6046AEAA4931A0B3633934C (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
{
{
// public int index { get; }
int32_t L_0 = __this->___U3CindexU3Ek__BackingField_1;
return L_0;
}
}
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Finger::get_isActive()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Finger_get_isActive_m3D320E6E9E42796240E9F9C811955822B81CD0D4 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public bool isActive => currentTouch.valid;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_0;
L_0 = Finger_get_currentTouch_m53721DA3C8AB5C0D600499C33CCD5854E757890D(__this, NULL);
V_0 = L_0;
bool L_1;
L_1 = Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044((&V_0), NULL);
return L_1;
}
}
// UnityEngine.Vector2 UnityEngine.InputSystem.EnhancedTouch.Finger::get_screenPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Finger_get_screenPosition_mF3F70A36EFEC6177A13C37B3A5B6CEB6AAEFF660 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_2;
memset((&V_2), 0, sizeof(V_2));
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_3;
memset((&V_3), 0, sizeof(V_3));
{
// var touch = lastTouch;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_0;
L_0 = Finger_get_lastTouch_mE5E27445009AB9A9AD2B33496A4BDBE8016771A8(__this, NULL);
V_0 = L_0;
// if (!touch.valid)
bool L_1;
L_1 = Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044((&V_0), NULL);
V_1 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
bool L_2 = V_1;
if (!L_2)
{
goto IL_0022;
}
}
{
// return default;
il2cpp_codegen_initobj((&V_2), sizeof(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7));
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = V_2;
V_3 = L_3;
goto IL_002c;
}
IL_0022:
{
// return touch.screenPosition;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
L_4 = Touch_get_screenPosition_mAEBB428F1E62308A2C3E32A56CBEFCA9F7530B03((&V_0), NULL);
V_3 = L_4;
goto IL_002c;
}
IL_002c:
{
// }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = V_3;
return L_5;
}
}
// UnityEngine.InputSystem.EnhancedTouch.Touch UnityEngine.InputSystem.EnhancedTouch.Finger::get_lastTouch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 Finger_get_lastTouch_mE5E27445009AB9A9AD2B33496A4BDBE8016771A8 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_2;
memset((&V_2), 0, sizeof(V_2));
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_3;
memset((&V_3), 0, sizeof(V_3));
{
// var count = m_StateHistory.Count;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_0 = __this->___m_StateHistory_2;
NullCheck(L_0);
int32_t L_1;
L_1 = InputStateHistory_get_Count_m23DF78272A6C97F6C8782A953482772CDF6FFA81_inline(L_0, NULL);
V_0 = L_1;
// if (count == 0)
int32_t L_2 = V_0;
V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_0021;
}
}
{
// return default;
il2cpp_codegen_initobj((&V_2), sizeof(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70));
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_4 = V_2;
V_3 = L_4;
goto IL_0038;
}
IL_0021:
{
// return new Touch(this, m_StateHistory[count - 1]);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_5 = __this->___m_StateHistory_2;
int32_t L_6 = V_0;
NullCheck(L_5);
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_7;
L_7 = InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888(L_5, ((int32_t)il2cpp_codegen_subtract(L_6, 1)), InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888_RuntimeMethod_var);
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_8;
memset((&L_8), 0, sizeof(L_8));
Touch__ctor_mD4F3EE89F869C4A4C4ED358943FC508EED0F0728((&L_8), __this, L_7, /*hidden argument*/NULL);
V_3 = L_8;
goto IL_0038;
}
IL_0038:
{
// }
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_9 = V_3;
return L_9;
}
}
// UnityEngine.InputSystem.EnhancedTouch.Touch UnityEngine.InputSystem.EnhancedTouch.Finger::get_currentTouch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 Finger_get_currentTouch_m53721DA3C8AB5C0D600499C33CCD5854E757890D (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_2;
memset((&V_2), 0, sizeof(V_2));
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_3;
memset((&V_3), 0, sizeof(V_3));
bool V_4 = false;
bool V_5 = false;
{
// var touch = lastTouch;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_0;
L_0 = Finger_get_lastTouch_mE5E27445009AB9A9AD2B33496A4BDBE8016771A8(__this, NULL);
V_0 = L_0;
// if (!touch.valid)
bool L_1;
L_1 = Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044((&V_0), NULL);
V_1 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
bool L_2 = V_1;
if (!L_2)
{
goto IL_0022;
}
}
{
// return default;
il2cpp_codegen_initobj((&V_2), sizeof(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70));
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_3 = V_2;
V_3 = L_3;
goto IL_0057;
}
IL_0022:
{
// if (touch.isInProgress)
bool L_4;
L_4 = Touch_get_isInProgress_mBAB5B9955091386836522092465FD4692100F670((&V_0), NULL);
V_4 = L_4;
bool L_5 = V_4;
if (!L_5)
{
goto IL_0033;
}
}
{
// return touch;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_6 = V_0;
V_3 = L_6;
goto IL_0057;
}
IL_0033:
{
// if (touch.updateStepCount == InputUpdate.s_UpdateStepCount)
uint32_t L_7;
L_7 = Touch_get_updateStepCount_m9550F17AC3135450BB378D0A44A7FD4762EFD01D((&V_0), NULL);
uint32_t L_8 = ((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_UpdateStepCount_0;
V_5 = (bool)((((int32_t)L_7) == ((int32_t)L_8))? 1 : 0);
bool L_9 = V_5;
if (!L_9)
{
goto IL_004b;
}
}
{
// return touch;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_10 = V_0;
V_3 = L_10;
goto IL_0057;
}
IL_004b:
{
// return default;
il2cpp_codegen_initobj((&V_2), sizeof(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70));
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_11 = V_2;
V_3 = L_11;
goto IL_0057;
}
IL_0057:
{
// }
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_12 = V_3;
return L_12;
}
}
// UnityEngine.InputSystem.EnhancedTouch.TouchHistory UnityEngine.InputSystem.EnhancedTouch.Finger::get_touchHistory()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 Finger_get_touchHistory_m9BE156C1B66DD2A7EC79C0D68BE3AA2B1D00DABE (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
{
{
// public TouchHistory touchHistory => new TouchHistory(this, m_StateHistory);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_0 = __this->___m_StateHistory_2;
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_1;
memset((&L_1), 0, sizeof(L_1));
TouchHistory__ctor_m3416A30524B233DED1F8C753398436191ED44814((&L_1), __this, L_0, (-1), (-1), /*hidden argument*/NULL);
return L_1;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Finger::.ctor(UnityEngine.InputSystem.Touchscreen,System.Int32,UnityEngine.InputSystem.LowLevel.InputUpdateType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Finger__ctor_m9D9ED2014F12F2FA245E5C04043F02D16B296505 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___screen0, int32_t ___index1, int32_t ___updateMask2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Finger_OnTouchRecorded_m242B4B22E53D86C6710D4D23C1455CF98B30B19F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Finger_ShouldRecordTouch_m2A7ED7057D66C551407600CECA628F04E156B94D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControl_1_ReadValue_m360BE6DCDE6FE778516FC63F909BC88CA1D8A484_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateHistory_1_RecordStateChange_mD873C4A092DA5D5E86088B221B90A4B5B05F5840_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateHistory_1__ctor_mF238AB65ADBA9D960A9B86F6AA208AA315B42435_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_mA2C7B854E9A67DF24154B9668CE5EA1C21575E61_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* V_0 = NULL;
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E V_1;
memset((&V_1), 0, sizeof(V_1));
bool V_2 = false;
{
// internal Finger(Touchscreen screen, int index, InputUpdateType updateMask)
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
// this.screen = screen;
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = ___screen0;
__this->___U3CscreenU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CscreenU3Ek__BackingField_0), (void*)L_0);
// this.index = index;
int32_t L_1 = ___index1;
__this->___U3CindexU3Ek__BackingField_1 = L_1;
// m_StateHistory = new InputStateHistory<TouchState>(screen.touches[index])
// {
// historyDepth = Touch.maxHistoryLengthPerFinger,
// extraMemoryPerRecord = UnsafeUtility.SizeOf<Touch.ExtraDataPerTouchState>(),
// onRecordAdded = OnTouchRecorded,
// onShouldRecordStateChange = ShouldRecordTouch,
// updateMask = updateMask,
// };
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_2 = ___screen0;
NullCheck(L_2);
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_3;
L_3 = Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline(L_2, NULL);
V_1 = L_3;
int32_t L_4 = ___index1;
TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* L_5;
L_5 = ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C((&V_1), L_4, ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C_RuntimeMethod_var);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_6 = (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*)il2cpp_codegen_object_new(InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798_il2cpp_TypeInfo_var);
NullCheck(L_6);
InputStateHistory_1__ctor_mF238AB65ADBA9D960A9B86F6AA208AA315B42435(L_6, L_5, InputStateHistory_1__ctor_mF238AB65ADBA9D960A9B86F6AA208AA315B42435_RuntimeMethod_var);
V_0 = L_6;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_7 = V_0;
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
int32_t L_8;
L_8 = Touch_get_maxHistoryLengthPerFinger_m13F1BDECA1D88E4247BA7F1ED17106F3075CEBE3(NULL);
NullCheck(L_7);
InputStateHistory_set_historyDepth_mE520A08E8510340C919BA638230AFCCB1C8BA34D(L_7, L_8, NULL);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_9 = V_0;
int32_t L_10;
L_10 = UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_mA2C7B854E9A67DF24154B9668CE5EA1C21575E61(UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_mA2C7B854E9A67DF24154B9668CE5EA1C21575E61_RuntimeMethod_var);
NullCheck(L_9);
InputStateHistory_set_extraMemoryPerRecord_m6907893F41CB2EB06B4C04B2E8B35E0E5E800786(L_9, L_10, NULL);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_11 = V_0;
Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7* L_12 = (Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7*)il2cpp_codegen_object_new(Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7_il2cpp_TypeInfo_var);
NullCheck(L_12);
Action_1__ctor_mFC28914555AB84FBEB1AC628C66364244967933B(L_12, __this, (intptr_t)((void*)Finger_OnTouchRecorded_m242B4B22E53D86C6710D4D23C1455CF98B30B19F_RuntimeMethod_var), NULL);
NullCheck(L_11);
InputStateHistory_set_onRecordAdded_m6F35EA7B2352BE8359FD22FE803E6AAC1CD2E93A_inline(L_11, L_12, NULL);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_13 = V_0;
Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2* L_14 = (Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2*)il2cpp_codegen_object_new(Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2_il2cpp_TypeInfo_var);
NullCheck(L_14);
Func_4__ctor_m6556C926BADAE76C28D39818A7980EC2CF196024(L_14, NULL, (intptr_t)((void*)Finger_ShouldRecordTouch_m2A7ED7057D66C551407600CECA628F04E156B94D_RuntimeMethod_var), NULL);
NullCheck(L_13);
InputStateHistory_set_onShouldRecordStateChange_m4553C7A82A01BE25B5F1D0D2567B70FCE375F30E_inline(L_13, L_14, NULL);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_15 = V_0;
int32_t L_16 = ___updateMask2;
NullCheck(L_15);
InputStateHistory_set_updateMask_m5059363750CB5899C77D67BD05419563F703A3F7(L_15, L_16, NULL);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_17 = V_0;
__this->___m_StateHistory_2 = L_17;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_StateHistory_2), (void*)L_17);
// m_StateHistory.StartRecording();
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_18 = __this->___m_StateHistory_2;
NullCheck(L_18);
InputStateHistory_StartRecording_mF4D22DFFB38256D8C147A098282110A961D7030C(L_18, NULL);
// if (screen.touches[index].isInProgress)
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_19 = ___screen0;
NullCheck(L_19);
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_20;
L_20 = Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline(L_19, NULL);
V_1 = L_20;
int32_t L_21 = ___index1;
TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* L_22;
L_22 = ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C((&V_1), L_21, ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C_RuntimeMethod_var);
NullCheck(L_22);
bool L_23;
L_23 = TouchControl_get_isInProgress_m453C4D3C5AD0AEE956EDFC6B54E452C3D61100F0(L_22, NULL);
V_2 = L_23;
bool L_24 = V_2;
if (!L_24)
{
goto IL_00d4;
}
}
{
// m_StateHistory.RecordStateChange(screen.touches[index], screen.touches[index].ReadValue());
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_25 = __this->___m_StateHistory_2;
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_26 = ___screen0;
NullCheck(L_26);
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_27;
L_27 = Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline(L_26, NULL);
V_1 = L_27;
int32_t L_28 = ___index1;
TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* L_29;
L_29 = ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C((&V_1), L_28, ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C_RuntimeMethod_var);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_30 = ___screen0;
NullCheck(L_30);
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_31;
L_31 = Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline(L_30, NULL);
V_1 = L_31;
int32_t L_32 = ___index1;
TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* L_33;
L_33 = ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C((&V_1), L_32, ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C_RuntimeMethod_var);
NullCheck(L_33);
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 L_34;
L_34 = InputControl_1_ReadValue_m360BE6DCDE6FE778516FC63F909BC88CA1D8A484(L_33, InputControl_1_ReadValue_m360BE6DCDE6FE778516FC63F909BC88CA1D8A484_RuntimeMethod_var);
NullCheck(L_25);
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_35;
L_35 = InputStateHistory_1_RecordStateChange_mD873C4A092DA5D5E86088B221B90A4B5B05F5840(L_25, L_29, L_34, (-1.0), InputStateHistory_1_RecordStateChange_mD873C4A092DA5D5E86088B221B90A4B5B05F5840_RuntimeMethod_var);
}
IL_00d4:
{
// }
return;
}
}
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Finger::ShouldRecordTouch(UnityEngine.InputSystem.InputControl,System.Double,UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Finger_ShouldRecordTouch_m2A7ED7057D66C551407600CECA628F04E156B94D (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control0, double ___time1, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___eventPtr2, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 V_3;
memset((&V_3), 0, sizeof(V_3));
bool V_4 = false;
{
// if (!eventPtr.valid)
bool L_0;
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012((&___eventPtr2), NULL);
V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_0013;
}
}
{
// return false;
V_2 = (bool)0;
goto IL_003e;
}
IL_0013:
{
// var currentTouchState = (TouchState*)((byte*)control.currentStatePtr + control.stateBlock.byteOffset);
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_2 = ___control0;
NullCheck(L_2);
void* L_3;
L_3 = InputControl_get_currentStatePtr_m77D2900EEE4AAB505C98292AF8538DDCF44F8C3C(L_2, NULL);
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_4 = ___control0;
NullCheck(L_4);
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 L_5;
L_5 = InputControl_get_stateBlock_mCAE31879EDC6621B35B368B4916219D30EAA0B0B_inline(L_4, NULL);
V_3 = L_5;
uint32_t L_6;
L_6 = InputStateBlock_get_byteOffset_m6EADE5C9C8B346D38E543E38777ED67ED2AEA0AC_inline((&V_3), NULL);
V_0 = (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)((void*)il2cpp_codegen_add((intptr_t)L_3, (intptr_t)((uintptr_t)L_6)));
// if (currentTouchState->isTapRelease)
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_7 = V_0;
bool L_8;
L_8 = TouchState_get_isTapRelease_m2330F3A5BFF42425B21423B2257619666A05CE7D((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_7, NULL);
V_4 = L_8;
bool L_9 = V_4;
if (!L_9)
{
goto IL_003a;
}
}
{
// return false;
V_2 = (bool)0;
goto IL_003e;
}
IL_003a:
{
// return true;
V_2 = (bool)1;
goto IL_003e;
}
IL_003e:
{
// }
bool L_10 = V_2;
return L_10;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Finger::OnTouchRecorded(UnityEngine.InputSystem.LowLevel.InputStateHistory/Record)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Finger_OnTouchRecorded_m242B4B22E53D86C6710D4D23C1455CF98B30B19F (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, Record_tF7FF07DC502355356B48CE78337FB16B196E2EE0 ___record0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m4153D51E2445D2C899F268C65D1C858A092C7206_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_mA2C7B854E9A67DF24154B9668CE5EA1C21575E61_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral413A93D2DA41C940A92CBF70746012937590610E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral79E7200C256B5A139CC2342D4CDC95E51A6DD366);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral822D2E2FACD5A075837EA460A85415C1BB4A5B00);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* V_1 = NULL;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* V_2 = NULL;
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* V_3 = NULL;
uint32_t V_4 = 0;
bool V_5 = false;
bool V_6 = false;
int32_t V_7 = 0;
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* V_8 = NULL;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* V_9 = NULL;
int32_t V_10 = 0;
int32_t V_11 = 0;
int32_t G_B5_0 = 0;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* G_B7_0 = NULL;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* G_B6_0 = NULL;
int32_t G_B8_0 = 0;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* G_B8_1 = NULL;
{
// var recordIndex = record.recordIndex;
int32_t L_0;
L_0 = Record_get_recordIndex_m58EE017D7611A35971E68B5B5A4A7802F79920A1((&___record0), NULL);
V_0 = L_0;
// var touchHeader = m_StateHistory.GetRecordUnchecked(recordIndex);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_1 = __this->___m_StateHistory_2;
int32_t L_2 = V_0;
NullCheck(L_1);
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_3;
L_3 = InputStateHistory_GetRecordUnchecked_m569EB10E4D93B81BEA6699746C15C720F48E42F6(L_1, L_2, NULL);
V_1 = L_3;
// var touchState = (TouchState*)touchHeader->statePtrWithoutControlIndex; // m_StateHistory is bound to a single TouchControl.
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_4 = V_1;
uint8_t* L_5;
L_5 = RecordHeader_get_statePtrWithoutControlIndex_m06FC191CB4801F442A0B972DA23B48ECE629922C((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)L_4, NULL);
V_2 = (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_5;
// touchState->updateStepCount = InputUpdate.s_UpdateStepCount;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_6 = V_2;
uint32_t L_7 = ((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_UpdateStepCount_0;
NullCheck(L_6);
L_6->___updateStepCount_10 = L_7;
// Touch.s_GlobalState.playerState.haveBuiltActiveTouches = false;
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_8 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
L_8->___haveBuiltActiveTouches_8 = (bool)0;
// var extraData = (Touch.ExtraDataPerTouchState*)((byte*)touchHeader + m_StateHistory.bytesPerRecord -
// UnsafeUtility.SizeOf<Touch.ExtraDataPerTouchState>());
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_9 = V_1;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_10 = __this->___m_StateHistory_2;
NullCheck(L_10);
int32_t L_11;
L_11 = InputStateHistory_get_bytesPerRecord_mAF516CE1E45E3EBA46EDFFF2923908D6B672D114(L_10, NULL);
int32_t L_12;
L_12 = UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_mA2C7B854E9A67DF24154B9668CE5EA1C21575E61(UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_mA2C7B854E9A67DF24154B9668CE5EA1C21575E61_RuntimeMethod_var);
V_3 = (ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4*)((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)il2cpp_codegen_subtract((intptr_t)((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)il2cpp_codegen_add((intptr_t)L_9, L_11)), L_12));
// extraData->uniqueId = ++Touch.s_GlobalState.playerState.lastId;
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* L_13 = V_3;
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_14 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
uint32_t* L_15 = (&L_14->___lastId_7);
uint32_t* L_16 = L_15;
int32_t L_17 = *((uint32_t*)L_16);
V_4 = ((int32_t)il2cpp_codegen_add(L_17, 1));
uint32_t L_18 = V_4;
*((int32_t*)L_16) = (int32_t)L_18;
uint32_t L_19 = V_4;
NullCheck(L_13);
L_13->___uniqueId_1 = L_19;
// extraData->accumulatedDelta = touchState->delta;
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* L_20 = V_3;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_21 = V_2;
NullCheck(L_21);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_22 = L_21->___delta_3;
NullCheck(L_20);
L_20->___accumulatedDelta_0 = L_22;
// if (touchState->phase != TouchPhase.Began)
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_23 = V_2;
int32_t L_24;
L_24 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_23, NULL);
V_5 = (bool)((((int32_t)((((int32_t)L_24) == ((int32_t)1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_25 = V_5;
if (!L_25)
{
goto IL_0118;
}
}
{
// if (recordIndex != m_StateHistory.m_HeadIndex)
int32_t L_26 = V_0;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_27 = __this->___m_StateHistory_2;
NullCheck(L_27);
int32_t L_28 = ((InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480*)L_27)->___m_HeadIndex_10;
V_6 = (bool)((((int32_t)((((int32_t)L_26) == ((int32_t)L_28))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_29 = V_6;
if (!L_29)
{
goto IL_0115;
}
}
{
// var previousRecordIndex = recordIndex == 0 ? m_StateHistory.historyDepth - 1 : recordIndex - 1;
int32_t L_30 = V_0;
if (!L_30)
{
goto IL_00ae;
}
}
{
int32_t L_31 = V_0;
G_B5_0 = ((int32_t)il2cpp_codegen_subtract(L_31, 1));
goto IL_00bb;
}
IL_00ae:
{
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_32 = __this->___m_StateHistory_2;
NullCheck(L_32);
int32_t L_33;
L_33 = InputStateHistory_get_historyDepth_mBAFA4592E170099C0E8BB360B148A854517AA561_inline(L_32, NULL);
G_B5_0 = ((int32_t)il2cpp_codegen_subtract(L_33, 1));
}
IL_00bb:
{
V_7 = G_B5_0;
// var previousTouchHeader = m_StateHistory.GetRecordUnchecked(previousRecordIndex);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_34 = __this->___m_StateHistory_2;
int32_t L_35 = V_7;
NullCheck(L_34);
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_36;
L_36 = InputStateHistory_GetRecordUnchecked_m569EB10E4D93B81BEA6699746C15C720F48E42F6(L_34, L_35, NULL);
V_8 = L_36;
// var previousTouchState = (TouchState*)previousTouchHeader->statePtrWithoutControlIndex;
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_37 = V_8;
uint8_t* L_38;
L_38 = RecordHeader_get_statePtrWithoutControlIndex_m06FC191CB4801F442A0B972DA23B48ECE629922C((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)L_37, NULL);
V_9 = (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_38;
// touchState->delta -= previousTouchState->delta;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_39 = V_2;
NullCheck(L_39);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_40 = (&L_39->___delta_3);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_41 = L_40;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_42 = (*(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)L_41);
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_43 = V_9;
NullCheck(L_43);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_44 = L_43->___delta_3;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_45;
L_45 = Vector2_op_Subtraction_m664419831773D5BBF06D9DE4E515F6409B2F92B8_inline(L_42, L_44, NULL);
*(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)L_41 = L_45;
// touchState->beganInSameFrame = previousTouchState->beganInSameFrame &&
// previousTouchState->updateStepCount == touchState->updateStepCount;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_46 = V_2;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_47 = V_9;
bool L_48;
L_48 = TouchState_get_beganInSameFrame_mC72ACA3EBA9BE5426C6B19ED7130F7A1CE177320((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_47, NULL);
G_B6_0 = L_46;
if (!L_48)
{
G_B7_0 = L_46;
goto IL_010d;
}
}
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_49 = V_9;
NullCheck(L_49);
uint32_t L_50 = L_49->___updateStepCount_10;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_51 = V_2;
NullCheck(L_51);
uint32_t L_52 = L_51->___updateStepCount_10;
G_B8_0 = ((((int32_t)L_50) == ((int32_t)L_52))? 1 : 0);
G_B8_1 = G_B6_0;
goto IL_010e;
}
IL_010d:
{
G_B8_0 = 0;
G_B8_1 = G_B7_0;
}
IL_010e:
{
TouchState_set_beganInSameFrame_m46F1C71775E825310242C59E608D5F20908A8D39((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)G_B8_1, (bool)G_B8_0, NULL);
}
IL_0115:
{
goto IL_0122;
}
IL_0118:
{
// touchState->beganInSameFrame = true;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_53 = V_2;
TouchState_set_beganInSameFrame_m46F1C71775E825310242C59E608D5F20908A8D39((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_53, (bool)1, NULL);
}
IL_0122:
{
// switch (touchState->phase)
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_54 = V_2;
int32_t L_55;
L_55 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_54, NULL);
V_11 = L_55;
int32_t L_56 = V_11;
V_10 = L_56;
int32_t L_57 = V_10;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_57, 1)))
{
case 0:
{
goto IL_0149;
}
case 1:
{
goto IL_0162;
}
case 2:
{
goto IL_017b;
}
case 3:
{
goto IL_017b;
}
}
}
{
goto IL_0194;
}
IL_0149:
{
// DelegateHelpers.InvokeCallbacksSafe(ref Touch.s_GlobalState.onFingerDown, this, "Touch.onFingerDown");
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_58 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___onFingerDown_2);
DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m4153D51E2445D2C899F268C65D1C858A092C7206(L_58, __this, _stringLiteral822D2E2FACD5A075837EA460A85415C1BB4A5B00, NULL, DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m4153D51E2445D2C899F268C65D1C858A092C7206_RuntimeMethod_var);
// break;
goto IL_0194;
}
IL_0162:
{
// DelegateHelpers.InvokeCallbacksSafe(ref Touch.s_GlobalState.onFingerMove, this, "Touch.onFingerMove");
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_59 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___onFingerMove_3);
DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m4153D51E2445D2C899F268C65D1C858A092C7206(L_59, __this, _stringLiteral413A93D2DA41C940A92CBF70746012937590610E, NULL, DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m4153D51E2445D2C899F268C65D1C858A092C7206_RuntimeMethod_var);
// break;
goto IL_0194;
}
IL_017b:
{
// DelegateHelpers.InvokeCallbacksSafe(ref Touch.s_GlobalState.onFingerUp, this, "Touch.onFingerUp");
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_60 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___onFingerUp_4);
DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m4153D51E2445D2C899F268C65D1C858A092C7206(L_60, __this, _stringLiteral79E7200C256B5A139CC2342D4CDC95E51A6DD366, NULL, DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m4153D51E2445D2C899F268C65D1C858A092C7206_RuntimeMethod_var);
// break;
goto IL_0194;
}
IL_0194:
{
// }
return;
}
}
// UnityEngine.InputSystem.EnhancedTouch.Touch UnityEngine.InputSystem.EnhancedTouch.Finger::FindTouch(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 Finger_FindTouch_m1A910BF69B21B5D02A79698B5590C2706FE601B3 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, uint32_t ___uniqueId0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tAFB65610F759CAFC5D1E91B68A548311182B6A22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateHistory_1_GetEnumerator_m7589AE5E798BAFF50EF3C3BC3539FFDFF5DFCF59_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_GetUnsafeExtraMemoryPtrUnchecked_m43B2E6AC3AF2307D2DDF2C92E90A629666277F66_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7301585ABD4376FD1069F11E591E81BFFA6949FA);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 V_1;
memset((&V_1), 0, sizeof(V_1));
bool V_2 = false;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_3;
memset((&V_3), 0, sizeof(V_3));
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_4;
memset((&V_4), 0, sizeof(V_4));
{
// Debug.Assert(uniqueId != default, "0 is not a valid ID");
uint32_t L_0 = ___uniqueId0;
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806((bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0), _stringLiteral7301585ABD4376FD1069F11E591E81BFFA6949FA, NULL);
// foreach (var record in m_StateHistory)
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_1 = __this->___m_StateHistory_2;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InputStateHistory_1_GetEnumerator_m7589AE5E798BAFF50EF3C3BC3539FFDFF5DFCF59(L_1, InputStateHistory_1_GetEnumerator_m7589AE5E798BAFF50EF3C3BC3539FFDFF5DFCF59_RuntimeMethod_var);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_004f:
{// begin finally (depth: 1)
{
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_0059;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4);
}
IL_0059:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0045_1;
}
IL_001f_1:
{
// foreach (var record in m_StateHistory)
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_6;
L_6 = InterfaceFuncInvoker0< Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>>::get_Current() */, IEnumerator_1_tAFB65610F759CAFC5D1E91B68A548311182B6A22_il2cpp_TypeInfo_var, L_5);
V_1 = L_6;
// if (((Touch.ExtraDataPerTouchState*)record.GetUnsafeExtraMemoryPtrUnchecked())->uniqueId == uniqueId)
void* L_7;
L_7 = Record_GetUnsafeExtraMemoryPtrUnchecked_m43B2E6AC3AF2307D2DDF2C92E90A629666277F66((&V_1), Record_GetUnsafeExtraMemoryPtrUnchecked_m43B2E6AC3AF2307D2DDF2C92E90A629666277F66_RuntimeMethod_var);
NullCheck(L_7);
uint32_t L_8 = ((ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4*)L_7)->___uniqueId_1;
uint32_t L_9 = ___uniqueId0;
V_2 = (bool)((((int32_t)L_8) == ((int32_t)L_9))? 1 : 0);
bool L_10 = V_2;
if (!L_10)
{
goto IL_0044_1;
}
}
{
// return new Touch(this, record);
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_11 = V_1;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_12;
memset((&L_12), 0, sizeof(L_12));
Touch__ctor_mD4F3EE89F869C4A4C4ED358943FC508EED0F0728((&L_12), __this, L_11, /*hidden argument*/NULL);
V_3 = L_12;
goto IL_0067;
}
IL_0044_1:
{
}
IL_0045_1:
{
// foreach (var record in m_StateHistory)
RuntimeObject* L_13 = V_0;
NullCheck(L_13);
bool L_14;
L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_13);
if (L_14)
{
goto IL_001f_1;
}
}
{
goto IL_005a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_005a:
{
// return default;
il2cpp_codegen_initobj((&V_4), sizeof(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70));
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_15 = V_4;
V_3 = L_15;
goto IL_0067;
}
IL_0067:
{
// }
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_16 = V_3;
return L_16;
}
}
// UnityEngine.InputSystem.EnhancedTouch.TouchHistory UnityEngine.InputSystem.EnhancedTouch.Finger::GetTouchHistory(UnityEngine.InputSystem.EnhancedTouch.Touch)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 Finger_GetTouchHistory_m8A13B55D4B1B1B77F1262B46F73A603A33E5D80C (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 ___touch0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_get_index_m8BF5DBF4C267EED76E3802B249F2856F29DAD8A6_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_get_owner_mE1A451C654D70DF2754170FA45A6A19AD3483471_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
bool V_4 = false;
bool V_5 = false;
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 V_6;
memset((&V_6), 0, sizeof(V_6));
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 V_7;
memset((&V_7), 0, sizeof(V_7));
bool V_8 = false;
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 V_9;
memset((&V_9), 0, sizeof(V_9));
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* V_10 = NULL;
bool V_11 = false;
bool V_12 = false;
bool V_13 = false;
bool V_14 = false;
{
// Debug.Assert(touch.finger == this);
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_0;
L_0 = Touch_get_finger_m414E1AF302CAC737C934AF1FB24FC869873B8420_inline((&___touch0), NULL);
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_mC95931BE797761A2D7800908C0BA4B41D68B3216((bool)((((RuntimeObject*)(Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A*)L_0) == ((RuntimeObject*)(Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A*)__this))? 1 : 0), NULL);
// var touchRecord = touch.m_TouchRecord;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_1 = ___touch0;
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_2 = L_1.___m_TouchRecord_1;
V_0 = L_2;
// if (touchRecord.owner != m_StateHistory)
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_3;
L_3 = Record_get_owner_mE1A451C654D70DF2754170FA45A6A19AD3483471_inline((&V_0), Record_get_owner_mE1A451C654D70DF2754170FA45A6A19AD3483471_RuntimeMethod_var);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_4 = __this->___m_StateHistory_2;
V_4 = (bool)((((int32_t)((((RuntimeObject*)(InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*)L_3) == ((RuntimeObject*)(InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*)L_4))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_5 = V_4;
if (!L_5)
{
goto IL_0062;
}
}
{
// touch = FindTouch(touch.uniqueId);
uint32_t L_6;
L_6 = Touch_get_uniqueId_m2B7B006E32B62D82346541BCBDACE83EC98D4AF0((&___touch0), NULL);
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_7;
L_7 = Finger_FindTouch_m1A910BF69B21B5D02A79698B5590C2706FE601B3(__this, L_6, NULL);
___touch0 = L_7;
// if (!touch.valid)
bool L_8;
L_8 = Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044((&___touch0), NULL);
V_5 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
bool L_9 = V_5;
if (!L_9)
{
goto IL_0061;
}
}
{
// return default;
il2cpp_codegen_initobj((&V_6), sizeof(TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580));
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_10 = V_6;
V_7 = L_10;
goto IL_0118;
}
IL_0061:
{
}
IL_0062:
{
// var touchId = touch.touchId;
int32_t L_11;
L_11 = Touch_get_touchId_m497B1531A3C206C36EBDA56C54CCF91D90AB3F8F((&___touch0), NULL);
V_1 = L_11;
// var startIndex = touch.m_TouchRecord.index;
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* L_12 = (&(&___touch0)->___m_TouchRecord_1);
int32_t L_13;
L_13 = Record_get_index_m8BF5DBF4C267EED76E3802B249F2856F29DAD8A6(L_12, Record_get_index_m8BF5DBF4C267EED76E3802B249F2856F29DAD8A6_RuntimeMethod_var);
V_2 = L_13;
// var count = 0;
V_3 = 0;
// if (touch.phase != TouchPhase.Began)
int32_t L_14;
L_14 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939((&___touch0), NULL);
V_8 = (bool)((((int32_t)((((int32_t)L_14) == ((int32_t)1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_15 = V_8;
if (!L_15)
{
goto IL_00ea;
}
}
{
// for (var previousRecord = touch.m_TouchRecord.previous; previousRecord.valid; previousRecord = previousRecord.previous)
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* L_16 = (&(&___touch0)->___m_TouchRecord_1);
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_17;
L_17 = Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F(L_16, Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F_RuntimeMethod_var);
V_9 = L_17;
goto IL_00dc;
}
IL_009d:
{
// var touchState = (TouchState*)previousRecord.GetUnsafeMemoryPtr();
void* L_18;
L_18 = Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069((&V_9), Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069_RuntimeMethod_var);
V_10 = (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_18;
// if (touchState->touchId != touchId)
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_19 = V_10;
NullCheck(L_19);
int32_t L_20 = L_19->___touchId_1;
int32_t L_21 = V_1;
V_11 = (bool)((((int32_t)((((int32_t)L_20) == ((int32_t)L_21))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_22 = V_11;
if (!L_22)
{
goto IL_00bc;
}
}
{
// break;
goto IL_00e9;
}
IL_00bc:
{
// ++count;
int32_t L_23 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_23, 1));
// if (touchState->phase == TouchPhase.Began)
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_24 = V_10;
int32_t L_25;
L_25 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_24, NULL);
V_12 = (bool)((((int32_t)L_25) == ((int32_t)1))? 1 : 0);
bool L_26 = V_12;
if (!L_26)
{
goto IL_00d2;
}
}
{
// break;
goto IL_00e9;
}
IL_00d2:
{
// for (var previousRecord = touch.m_TouchRecord.previous; previousRecord.valid; previousRecord = previousRecord.previous)
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_27;
L_27 = Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F((&V_9), Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F_RuntimeMethod_var);
V_9 = L_27;
}
IL_00dc:
{
// for (var previousRecord = touch.m_TouchRecord.previous; previousRecord.valid; previousRecord = previousRecord.previous)
bool L_28;
L_28 = Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C((&V_9), Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C_RuntimeMethod_var);
V_13 = L_28;
bool L_29 = V_13;
if (L_29)
{
goto IL_009d;
}
}
IL_00e9:
{
}
IL_00ea:
{
// if (count == 0)
int32_t L_30 = V_3;
V_14 = (bool)((((int32_t)L_30) == ((int32_t)0))? 1 : 0);
bool L_31 = V_14;
if (!L_31)
{
goto IL_0102;
}
}
{
// return default;
il2cpp_codegen_initobj((&V_6), sizeof(TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580));
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_32 = V_6;
V_7 = L_32;
goto IL_0118;
}
IL_0102:
{
// --startIndex;
int32_t L_33 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract(L_33, 1));
// return new TouchHistory(this, m_StateHistory, startIndex, count);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_34 = __this->___m_StateHistory_2;
int32_t L_35 = V_2;
int32_t L_36 = V_3;
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_37;
memset((&L_37), 0, sizeof(L_37));
TouchHistory__ctor_m3416A30524B233DED1F8C753398436191ED44814((&L_37), __this, L_34, L_35, L_36, /*hidden argument*/NULL);
V_7 = L_37;
goto IL_0118;
}
IL_0118:
{
// }
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_38 = V_7;
return L_38;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.EnhancedTouch.Touch
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_pinvoke(const Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70& unmarshaled, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_Finger_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Finger' of type 'Touch': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Finger_0Exception, NULL);
}
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_pinvoke_back(const Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke& marshaled, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70& unmarshaled)
{
Exception_t* ___m_Finger_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Finger' of type 'Touch': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Finger_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.EnhancedTouch.Touch
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_pinvoke_cleanup(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.EnhancedTouch.Touch
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_com(const Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70& unmarshaled, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com& marshaled)
{
Exception_t* ___m_Finger_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Finger' of type 'Touch': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Finger_0Exception, NULL);
}
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_com_back(const Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com& marshaled, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70& unmarshaled)
{
Exception_t* ___m_Finger_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Finger' of type 'Touch': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Finger_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.EnhancedTouch.Touch
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_com_cleanup(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com& marshaled)
{
}
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch::get_valid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public bool valid => m_TouchRecord.valid;
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* L_0 = (&__this->___m_TouchRecord_1);
bool L_1;
L_1 = Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C(L_0, Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C_RuntimeMethod_var);
return L_1;
}
}
IL2CPP_EXTERN_C bool Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
bool _returnValue;
_returnValue = Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.EnhancedTouch.Finger UnityEngine.InputSystem.EnhancedTouch.Touch::get_finger()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* Touch_get_finger_m414E1AF302CAC737C934AF1FB24FC869873B8420 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
{
// public Finger finger => m_Finger;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_0 = __this->___m_Finger_0;
return L_0;
}
}
IL2CPP_EXTERN_C Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* Touch_get_finger_m414E1AF302CAC737C934AF1FB24FC869873B8420_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* _returnValue;
_returnValue = Touch_get_finger_m414E1AF302CAC737C934AF1FB24FC869873B8420_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.TouchPhase UnityEngine.InputSystem.EnhancedTouch.Touch::get_phase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
{
// public TouchPhase phase => state.phase;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
int32_t L_1;
L_1 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(L_0, NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int32_t Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
int32_t _returnValue;
_returnValue = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch::get_began()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_began_m592AA9F7AE5ED0AA23C971BD90703F1BBFD778C6 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
{
// public bool began => phase == TouchPhase.Began;
int32_t L_0;
L_0 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(__this, NULL);
return (bool)((((int32_t)L_0) == ((int32_t)1))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Touch_get_began_m592AA9F7AE5ED0AA23C971BD90703F1BBFD778C6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
bool _returnValue;
_returnValue = Touch_get_began_m592AA9F7AE5ED0AA23C971BD90703F1BBFD778C6(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch::get_inProgress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_inProgress_m6CF6BD1C7AFE8099AD35393829264FDE0C723CAA (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
int32_t G_B4_0 = 0;
{
// public bool inProgress => phase == TouchPhase.Moved || phase == TouchPhase.Stationary || phase == TouchPhase.Began;
int32_t L_0;
L_0 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(__this, NULL);
if ((((int32_t)L_0) == ((int32_t)2)))
{
goto IL_001d;
}
}
{
int32_t L_1;
L_1 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(__this, NULL);
if ((((int32_t)L_1) == ((int32_t)5)))
{
goto IL_001d;
}
}
{
int32_t L_2;
L_2 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(__this, NULL);
G_B4_0 = ((((int32_t)L_2) == ((int32_t)1))? 1 : 0);
goto IL_001e;
}
IL_001d:
{
G_B4_0 = 1;
}
IL_001e:
{
return (bool)G_B4_0;
}
}
IL2CPP_EXTERN_C bool Touch_get_inProgress_m6CF6BD1C7AFE8099AD35393829264FDE0C723CAA_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
bool _returnValue;
_returnValue = Touch_get_inProgress_m6CF6BD1C7AFE8099AD35393829264FDE0C723CAA(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch::get_ended()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_ended_m96B6BBDF371E26C6AE4B89CB7F89861D6B0C462F (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
// public bool ended => phase == TouchPhase.Ended || phase == TouchPhase.Canceled;
int32_t L_0;
L_0 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(__this, NULL);
if ((((int32_t)L_0) == ((int32_t)3)))
{
goto IL_0014;
}
}
{
int32_t L_1;
L_1 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(__this, NULL);
G_B3_0 = ((((int32_t)L_1) == ((int32_t)4))? 1 : 0);
goto IL_0015;
}
IL_0014:
{
G_B3_0 = 1;
}
IL_0015:
{
return (bool)G_B3_0;
}
}
IL2CPP_EXTERN_C bool Touch_get_ended_m96B6BBDF371E26C6AE4B89CB7F89861D6B0C462F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
bool _returnValue;
_returnValue = Touch_get_ended_m96B6BBDF371E26C6AE4B89CB7F89861D6B0C462F(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Touch::get_touchId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_touchId_m497B1531A3C206C36EBDA56C54CCF91D90AB3F8F (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
{
// public int touchId => state.touchId;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
int32_t L_1 = L_0->___touchId_1;
return L_1;
}
}
IL2CPP_EXTERN_C int32_t Touch_get_touchId_m497B1531A3C206C36EBDA56C54CCF91D90AB3F8F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
int32_t _returnValue;
_returnValue = Touch_get_touchId_m497B1531A3C206C36EBDA56C54CCF91D90AB3F8F(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.InputSystem.EnhancedTouch.Touch::get_pressure()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Touch_get_pressure_mDA228CAA389D14F6139507A304A97FE07EAE9DD3 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
{
// public float pressure => state.pressure;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
float L_1 = L_0->___pressure_4;
return L_1;
}
}
IL2CPP_EXTERN_C float Touch_get_pressure_mDA228CAA389D14F6139507A304A97FE07EAE9DD3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
float _returnValue;
_returnValue = Touch_get_pressure_mDA228CAA389D14F6139507A304A97FE07EAE9DD3(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Vector2 UnityEngine.InputSystem.EnhancedTouch.Touch::get_radius()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_radius_m8FCEEC69D77C94A4D8CBA662E5514AD7D894E8F4 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
{
// public Vector2 radius => state.radius;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = L_0->___radius_5;
return L_1;
}
}
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_radius_m8FCEEC69D77C94A4D8CBA662E5514AD7D894E8F4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
_returnValue = Touch_get_radius_m8FCEEC69D77C94A4D8CBA662E5514AD7D894E8F4(_thisAdjusted, method);
return _returnValue;
}
// System.Double UnityEngine.InputSystem.EnhancedTouch.Touch::get_startTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Touch_get_startTime_m9778C4C818DD69BAC47D10B7567233E5316264CB (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
{
// public double startTime => state.startTime;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
double L_1 = L_0->___startTime_11;
return L_1;
}
}
IL2CPP_EXTERN_C double Touch_get_startTime_m9778C4C818DD69BAC47D10B7567233E5316264CB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
double _returnValue;
_returnValue = Touch_get_startTime_m9778C4C818DD69BAC47D10B7567233E5316264CB(_thisAdjusted, method);
return _returnValue;
}
// System.Double UnityEngine.InputSystem.EnhancedTouch.Touch::get_time()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Touch_get_time_m1E3EA9FB3DF10246B7BBF100663BAA3030714F17 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_get_time_m5976C10C2C3A2A2089D57F1DF9AE5557C10DF47E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public double time => m_TouchRecord.time;
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* L_0 = (&__this->___m_TouchRecord_1);
double L_1;
L_1 = Record_get_time_m5976C10C2C3A2A2089D57F1DF9AE5557C10DF47E(L_0, Record_get_time_m5976C10C2C3A2A2089D57F1DF9AE5557C10DF47E_RuntimeMethod_var);
return L_1;
}
}
IL2CPP_EXTERN_C double Touch_get_time_m1E3EA9FB3DF10246B7BBF100663BAA3030714F17_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
double _returnValue;
_returnValue = Touch_get_time_m1E3EA9FB3DF10246B7BBF100663BAA3030714F17(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.Touchscreen UnityEngine.InputSystem.EnhancedTouch.Touch::get_screen()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* Touch_get_screen_m88071A10D5E186573E2694E47DD660AC4FAD2E00 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
{
// public Touchscreen screen => finger.screen;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_0;
L_0 = Touch_get_finger_m414E1AF302CAC737C934AF1FB24FC869873B8420_inline(__this, NULL);
NullCheck(L_0);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_1;
L_1 = Finger_get_screen_mBA2D1364604CB55F7386EFB844B12B7CFA7EE744_inline(L_0, NULL);
return L_1;
}
}
IL2CPP_EXTERN_C Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* Touch_get_screen_m88071A10D5E186573E2694E47DD660AC4FAD2E00_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* _returnValue;
_returnValue = Touch_get_screen_m88071A10D5E186573E2694E47DD660AC4FAD2E00(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Vector2 UnityEngine.InputSystem.EnhancedTouch.Touch::get_screenPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_screenPosition_mAEBB428F1E62308A2C3E32A56CBEFCA9F7530B03 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
{
// public Vector2 screenPosition => state.position;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = L_0->___position_2;
return L_1;
}
}
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_screenPosition_mAEBB428F1E62308A2C3E32A56CBEFCA9F7530B03_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
_returnValue = Touch_get_screenPosition_mAEBB428F1E62308A2C3E32A56CBEFCA9F7530B03(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Vector2 UnityEngine.InputSystem.EnhancedTouch.Touch::get_startScreenPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_startScreenPosition_mAF62C4C8C812B9E36855A6CB63B8493F8ED3E0C7 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
{
// public Vector2 startScreenPosition => state.startPosition;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = L_0->___startPosition_12;
return L_1;
}
}
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_startScreenPosition_mAF62C4C8C812B9E36855A6CB63B8493F8ED3E0C7_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
_returnValue = Touch_get_startScreenPosition_mAF62C4C8C812B9E36855A6CB63B8493F8ED3E0C7(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Vector2 UnityEngine.InputSystem.EnhancedTouch.Touch::get_delta()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_delta_m845008E2AF42561313DA002985D85150329B9BCC (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
{
// public Vector2 delta => state.delta;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = L_0->___delta_3;
return L_1;
}
}
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_delta_m845008E2AF42561313DA002985D85150329B9BCC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
_returnValue = Touch_get_delta_m845008E2AF42561313DA002985D85150329B9BCC(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Touch::get_tapCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_tapCount_m06A6261A941A678FAA29419D7B8F07B16EF07F75 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
{
// public int tapCount => state.tapCount;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
uint8_t L_1 = L_0->___tapCount_7;
return L_1;
}
}
IL2CPP_EXTERN_C int32_t Touch_get_tapCount_m06A6261A941A678FAA29419D7B8F07B16EF07F75_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
int32_t _returnValue;
_returnValue = Touch_get_tapCount_m06A6261A941A678FAA29419D7B8F07B16EF07F75(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch::get_isTap()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_isTap_m48E7409F15259BE6D04C66ADDA71F6037E4AD4B3 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
{
// public bool isTap => state.isTap;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
bool L_1;
L_1 = TouchState_get_isTap_m6C2D3CC78A3AA9705CBFD2A9E817FCFD8AB25EFB(L_0, NULL);
return L_1;
}
}
IL2CPP_EXTERN_C bool Touch_get_isTap_m48E7409F15259BE6D04C66ADDA71F6037E4AD4B3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
bool _returnValue;
_returnValue = Touch_get_isTap_m48E7409F15259BE6D04C66ADDA71F6037E4AD4B3(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch::get_isInProgress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_isInProgress_mBAB5B9955091386836522092465FD4692100F670 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
bool V_2 = false;
{
// switch (phase)
int32_t L_0;
L_0 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(__this, NULL);
V_1 = L_0;
int32_t L_1 = V_1;
V_0 = L_1;
int32_t L_2 = V_0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, 1))) > ((uint32_t)1))))
{
goto IL_0018;
}
}
{
goto IL_0012;
}
IL_0012:
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)5)))
{
goto IL_0018;
}
}
{
goto IL_001c;
}
IL_0018:
{
// return true;
V_2 = (bool)1;
goto IL_0020;
}
IL_001c:
{
// return false;
V_2 = (bool)0;
goto IL_0020;
}
IL_0020:
{
// }
bool L_4 = V_2;
return L_4;
}
}
IL2CPP_EXTERN_C bool Touch_get_isInProgress_mBAB5B9955091386836522092465FD4692100F670_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
bool _returnValue;
_returnValue = Touch_get_isInProgress_mBAB5B9955091386836522092465FD4692100F670(_thisAdjusted, method);
return _returnValue;
}
// System.UInt32 UnityEngine.InputSystem.EnhancedTouch.Touch::get_updateStepCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Touch_get_updateStepCount_m9550F17AC3135450BB378D0A44A7FD4762EFD01D (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
{
// internal uint updateStepCount => state.updateStepCount;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
uint32_t L_1 = L_0->___updateStepCount_10;
return L_1;
}
}
IL2CPP_EXTERN_C uint32_t Touch_get_updateStepCount_m9550F17AC3135450BB378D0A44A7FD4762EFD01D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
uint32_t _returnValue;
_returnValue = Touch_get_updateStepCount_m9550F17AC3135450BB378D0A44A7FD4762EFD01D(_thisAdjusted, method);
return _returnValue;
}
// System.UInt32 UnityEngine.InputSystem.EnhancedTouch.Touch::get_uniqueId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Touch_get_uniqueId_m2B7B006E32B62D82346541BCBDACE83EC98D4AF0 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
{
// internal uint uniqueId => extraData.uniqueId;
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* L_0;
L_0 = Touch_get_extraData_mF845BF57832677EEEB41E5BF0E0F732D4D11D686(__this, NULL);
uint32_t L_1 = L_0->___uniqueId_1;
return L_1;
}
}
IL2CPP_EXTERN_C uint32_t Touch_get_uniqueId_m2B7B006E32B62D82346541BCBDACE83EC98D4AF0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
uint32_t _returnValue;
_returnValue = Touch_get_uniqueId_m2B7B006E32B62D82346541BCBDACE83EC98D4AF0(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.TouchState& UnityEngine.InputSystem.EnhancedTouch.Touch::get_state()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// private unsafe ref TouchState state => ref *(TouchState*)m_TouchRecord.GetUnsafeMemoryPtr();
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* L_0 = (&__this->___m_TouchRecord_1);
void* L_1;
L_1 = Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069(L_0, Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069_RuntimeMethod_var);
return (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)(L_1);
}
}
IL2CPP_EXTERN_C TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _returnValue;
_returnValue = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.EnhancedTouch.Touch/ExtraDataPerTouchState& UnityEngine.InputSystem.EnhancedTouch.Touch::get_extraData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* Touch_get_extraData_mF845BF57832677EEEB41E5BF0E0F732D4D11D686 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_GetUnsafeExtraMemoryPtr_mF305A3D8857DFF297E9FB6573684E4B9BF82022C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// ref *(ExtraDataPerTouchState*)m_TouchRecord.GetUnsafeExtraMemoryPtr();
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* L_0 = (&__this->___m_TouchRecord_1);
void* L_1;
L_1 = Record_GetUnsafeExtraMemoryPtr_mF305A3D8857DFF297E9FB6573684E4B9BF82022C(L_0, Record_GetUnsafeExtraMemoryPtr_mF305A3D8857DFF297E9FB6573684E4B9BF82022C_RuntimeMethod_var);
return (ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4*)(L_1);
}
}
IL2CPP_EXTERN_C ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* Touch_get_extraData_mF845BF57832677EEEB41E5BF0E0F732D4D11D686_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* _returnValue;
_returnValue = Touch_get_extraData_mF845BF57832677EEEB41E5BF0E0F732D4D11D686(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.EnhancedTouch.TouchHistory UnityEngine.InputSystem.EnhancedTouch.Touch::get_history()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 Touch_get_history_m1B049B5EB482493F9CFE5B260DACEAE9B0119BB6 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
bool V_0 = false;
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// if (!valid)
bool L_0;
L_0 = Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0019;
}
}
{
// throw new InvalidOperationException("Touch is invalid");
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_2);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD748E233FD289CD4B1ED5D7797639399A9B696ED)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Touch_get_history_m1B049B5EB482493F9CFE5B260DACEAE9B0119BB6_RuntimeMethod_var)));
}
IL_0019:
{
// return finger.GetTouchHistory(this);
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_3;
L_3 = Touch_get_finger_m414E1AF302CAC737C934AF1FB24FC869873B8420_inline(__this, NULL);
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_4 = (*(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*)__this);
NullCheck(L_3);
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_5;
L_5 = Finger_GetTouchHistory_m8A13B55D4B1B1B77F1262B46F73A603A33E5D80C(L_3, L_4, NULL);
V_1 = L_5;
goto IL_002d;
}
IL_002d:
{
// }
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_6 = V_1;
return L_6;
}
}
IL2CPP_EXTERN_C TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 Touch_get_history_m1B049B5EB482493F9CFE5B260DACEAE9B0119BB6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 _returnValue;
_returnValue = Touch_get_history_m1B049B5EB482493F9CFE5B260DACEAE9B0119BB6(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.EnhancedTouch.Touch> UnityEngine.InputSystem.EnhancedTouch.Touch::get_activeTouches()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_t3D5F71F2FAC15E8E7413E1B4BDCCA92D49962E72 Touch_get_activeTouches_m231A52F40508114481DB7045A4CFAFF8B71073B8 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1__ctor_m9C297EC68F90BE1CBFDC80B0D94420BF2B905455_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ReadOnlyArray_1_t3D5F71F2FAC15E8E7413E1B4BDCCA92D49962E72 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// EnhancedTouchSupport.CheckEnabled();
EnhancedTouchSupport_CheckEnabled_m3FC2364507836124CB8E289D66CA0B2CF3F8B10C(NULL);
// s_GlobalState.playerState.UpdateActiveTouches();
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_0 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
FingerAndTouchState_UpdateActiveTouches_m48D632ECA4B568270B458D9CED54AC591FBFBF43(L_0, NULL);
// return new ReadOnlyArray<Touch>(s_GlobalState.playerState.activeTouches, 0, s_GlobalState.playerState.activeTouchCount);
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_1 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354* L_2 = L_1->___activeTouches_3;
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_3 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
int32_t L_4 = L_3->___activeTouchCount_5;
ReadOnlyArray_1_t3D5F71F2FAC15E8E7413E1B4BDCCA92D49962E72 L_5;
memset((&L_5), 0, sizeof(L_5));
ReadOnlyArray_1__ctor_m9C297EC68F90BE1CBFDC80B0D94420BF2B905455((&L_5), L_2, 0, L_4, /*hidden argument*/ReadOnlyArray_1__ctor_m9C297EC68F90BE1CBFDC80B0D94420BF2B905455_RuntimeMethod_var);
V_0 = L_5;
goto IL_003e;
}
IL_003e:
{
// }
ReadOnlyArray_1_t3D5F71F2FAC15E8E7413E1B4BDCCA92D49962E72 L_6 = V_0;
return L_6;
}
}
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.EnhancedTouch.Finger> UnityEngine.InputSystem.EnhancedTouch.Touch::get_fingers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36 Touch_get_fingers_mC1806B6D6DED6C118942872AD5889FE7103F50BE (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1__ctor_m5CD4C576598DB61EBF1B99DFD3900020A951738F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// EnhancedTouchSupport.CheckEnabled();
EnhancedTouchSupport_CheckEnabled_m3FC2364507836124CB8E289D66CA0B2CF3F8B10C(NULL);
// return new ReadOnlyArray<Finger>(s_GlobalState.playerState.fingers, 0, s_GlobalState.playerState.totalFingerCount);
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_0 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* L_1 = L_0->___fingers_1;
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_2 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
int32_t L_3 = L_2->___totalFingerCount_6;
ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36 L_4;
memset((&L_4), 0, sizeof(L_4));
ReadOnlyArray_1__ctor_m5CD4C576598DB61EBF1B99DFD3900020A951738F((&L_4), L_1, 0, L_3, /*hidden argument*/ReadOnlyArray_1__ctor_m5CD4C576598DB61EBF1B99DFD3900020A951738F_RuntimeMethod_var);
V_0 = L_4;
goto IL_002e;
}
IL_002e:
{
// }
ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36 L_5 = V_0;
return L_5;
}
}
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.EnhancedTouch.Finger> UnityEngine.InputSystem.EnhancedTouch.Touch::get_activeFingers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36 Touch_get_activeFingers_m5DBDD9079BE0A2975FCA84069926F30E55067B3D (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1__ctor_m5CD4C576598DB61EBF1B99DFD3900020A951738F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// EnhancedTouchSupport.CheckEnabled();
EnhancedTouchSupport_CheckEnabled_m3FC2364507836124CB8E289D66CA0B2CF3F8B10C(NULL);
// s_GlobalState.playerState.UpdateActiveFingers();
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_0 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
FingerAndTouchState_UpdateActiveFingers_m21F725BF5EC6E4953C44FFBA63F4C7ABFA0FBE49(L_0, NULL);
// return new ReadOnlyArray<Finger>(s_GlobalState.playerState.activeFingers, 0, s_GlobalState.playerState.activeFingerCount);
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_1 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* L_2 = L_1->___activeFingers_2;
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_3 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
int32_t L_4 = L_3->___activeFingerCount_4;
ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36 L_5;
memset((&L_5), 0, sizeof(L_5));
ReadOnlyArray_1__ctor_m5CD4C576598DB61EBF1B99DFD3900020A951738F((&L_5), L_2, 0, L_4, /*hidden argument*/ReadOnlyArray_1__ctor_m5CD4C576598DB61EBF1B99DFD3900020A951738F_RuntimeMethod_var);
V_0 = L_5;
goto IL_003e;
}
IL_003e:
{
// }
ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36 L_6 = V_0;
return L_6;
}
}
// System.Collections.Generic.IEnumerable`1<UnityEngine.InputSystem.Touchscreen> UnityEngine.InputSystem.EnhancedTouch.Touch::get_screens()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Touch_get_screens_mCA26891F0B5A7CDBCCBDAE6CEDB6AC14A468AE43 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
// EnhancedTouchSupport.CheckEnabled();
EnhancedTouchSupport_CheckEnabled_m3FC2364507836124CB8E289D66CA0B2CF3F8B10C(NULL);
// return s_GlobalState.touchscreens;
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 L_0 = (&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___touchscreens_0;
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 L_1 = L_0;
RuntimeObject* L_2 = Box(InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3_il2cpp_TypeInfo_var, &L_1);
V_0 = (RuntimeObject*)L_2;
goto IL_0019;
}
IL_0019:
{
// }
RuntimeObject* L_3 = V_0;
return L_3;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch::add_onFingerDown(System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_add_onFingerDown_m1A06CB56B507CE4ECD7B5137F1A33CB86BA7B910 (Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// EnhancedTouchSupport.CheckEnabled();
EnhancedTouchSupport_CheckEnabled_m3FC2364507836124CB8E289D66CA0B2CF3F8B10C(NULL);
// if (value == null)
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_0 = ___value0;
V_0 = (bool)((((RuntimeObject*)(Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001a;
}
}
{
// throw new ArgumentNullException(nameof(value));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Touch_add_onFingerDown_m1A06CB56B507CE4ECD7B5137F1A33CB86BA7B910_RuntimeMethod_var)));
}
IL_001a:
{
// s_GlobalState.onFingerDown.AddCallback(value);
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_3 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___onFingerDown_2);
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_4 = ___value0;
CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22(L_3, L_4, CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch::remove_onFingerDown(System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_remove_onFingerDown_mD11650C03AE02E240208B4C4ADF28901677BEBD3 (Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// EnhancedTouchSupport.CheckEnabled();
EnhancedTouchSupport_CheckEnabled_m3FC2364507836124CB8E289D66CA0B2CF3F8B10C(NULL);
// if (value == null)
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_0 = ___value0;
V_0 = (bool)((((RuntimeObject*)(Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001a;
}
}
{
// throw new ArgumentNullException(nameof(value));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Touch_remove_onFingerDown_mD11650C03AE02E240208B4C4ADF28901677BEBD3_RuntimeMethod_var)));
}
IL_001a:
{
// s_GlobalState.onFingerDown.RemoveCallback(value);
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_3 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___onFingerDown_2);
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_4 = ___value0;
CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87(L_3, L_4, CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch::add_onFingerUp(System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_add_onFingerUp_m4C8AB77040FC31B3FCA841E7A8284B01C78244FC (Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// EnhancedTouchSupport.CheckEnabled();
EnhancedTouchSupport_CheckEnabled_m3FC2364507836124CB8E289D66CA0B2CF3F8B10C(NULL);
// if (value == null)
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_0 = ___value0;
V_0 = (bool)((((RuntimeObject*)(Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001a;
}
}
{
// throw new ArgumentNullException(nameof(value));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Touch_add_onFingerUp_m4C8AB77040FC31B3FCA841E7A8284B01C78244FC_RuntimeMethod_var)));
}
IL_001a:
{
// s_GlobalState.onFingerUp.AddCallback(value);
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_3 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___onFingerUp_4);
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_4 = ___value0;
CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22(L_3, L_4, CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch::remove_onFingerUp(System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_remove_onFingerUp_mD95078E500291E448306C161643E913FD6C4BDAF (Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// EnhancedTouchSupport.CheckEnabled();
EnhancedTouchSupport_CheckEnabled_m3FC2364507836124CB8E289D66CA0B2CF3F8B10C(NULL);
// if (value == null)
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_0 = ___value0;
V_0 = (bool)((((RuntimeObject*)(Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001a;
}
}
{
// throw new ArgumentNullException(nameof(value));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Touch_remove_onFingerUp_mD95078E500291E448306C161643E913FD6C4BDAF_RuntimeMethod_var)));
}
IL_001a:
{
// s_GlobalState.onFingerUp.RemoveCallback(value);
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_3 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___onFingerUp_4);
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_4 = ___value0;
CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87(L_3, L_4, CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch::add_onFingerMove(System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_add_onFingerMove_m790C3D161E6F1ED5F312CF9D93FFA60EFD858EE6 (Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// EnhancedTouchSupport.CheckEnabled();
EnhancedTouchSupport_CheckEnabled_m3FC2364507836124CB8E289D66CA0B2CF3F8B10C(NULL);
// if (value == null)
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_0 = ___value0;
V_0 = (bool)((((RuntimeObject*)(Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001a;
}
}
{
// throw new ArgumentNullException(nameof(value));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Touch_add_onFingerMove_m790C3D161E6F1ED5F312CF9D93FFA60EFD858EE6_RuntimeMethod_var)));
}
IL_001a:
{
// s_GlobalState.onFingerMove.AddCallback(value);
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_3 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___onFingerMove_3);
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_4 = ___value0;
CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22(L_3, L_4, CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch::remove_onFingerMove(System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_remove_onFingerMove_m1C66CD941D63EF11775A5BD8CD40EE2D5EC22294 (Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// EnhancedTouchSupport.CheckEnabled();
EnhancedTouchSupport_CheckEnabled_m3FC2364507836124CB8E289D66CA0B2CF3F8B10C(NULL);
// if (value == null)
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_0 = ___value0;
V_0 = (bool)((((RuntimeObject*)(Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001a;
}
}
{
// throw new ArgumentNullException(nameof(value));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Touch_remove_onFingerMove_m1C66CD941D63EF11775A5BD8CD40EE2D5EC22294_RuntimeMethod_var)));
}
IL_001a:
{
// s_GlobalState.onFingerMove.RemoveCallback(value);
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_3 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___onFingerMove_3);
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_4 = ___value0;
CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87(L_3, L_4, CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87_RuntimeMethod_var);
// }
return;
}
}
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Touch::get_maxHistoryLengthPerFinger()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_maxHistoryLengthPerFinger_m13F1BDECA1D88E4247BA7F1ED17106F3075CEBE3 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get => s_GlobalState.historyLengthPerFinger;
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
int32_t L_0 = (&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___historyLengthPerFinger_1;
return L_0;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch::.ctor(UnityEngine.InputSystem.EnhancedTouch.Finger,UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch__ctor_mD4F3EE89F869C4A4C4ED358943FC508EED0F0728 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___finger0, Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 ___touchRecord1, const RuntimeMethod* method)
{
{
// m_Finger = finger;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_0 = ___finger0;
__this->___m_Finger_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Finger_0), (void*)L_0);
// m_TouchRecord = touchRecord;
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_1 = ___touchRecord1;
__this->___m_TouchRecord_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_TouchRecord_1))->___m_Owner_0), (void*)NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void Touch__ctor_mD4F3EE89F869C4A4C4ED358943FC508EED0F0728_AdjustorThunk (RuntimeObject* __this, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___finger0, Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 ___touchRecord1, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
Touch__ctor_mD4F3EE89F869C4A4C4ED358943FC508EED0F0728(_thisAdjusted, ___finger0, ___touchRecord1, method);
}
// System.String UnityEngine.InputSystem.EnhancedTouch.Touch::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Touch_ToString_m641EEB738A7722EE7A2F90630BB3A5A1880F3B2F (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchPhase_tC280DE0C3DA3652019BF3605D57099E6CE2F3B14_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral58EE5386C7A4EBFD342B1A8A3469B586CD7724F3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral97390174FD4C882BACE6D033A351D373021320B0);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
String_t* V_1 = NULL;
{
// if (!valid)
bool L_0;
L_0 = Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0016;
}
}
{
// return "<None>";
V_1 = _stringLiteral58EE5386C7A4EBFD342B1A8A3469B586CD7724F3;
goto IL_0082;
}
IL_0016:
{
// return $"{{id={touchId} finger={finger.index} phase={phase} position={screenPosition} delta={delta} time={time}}}";
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)6);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_2;
int32_t L_4;
L_4 = Touch_get_touchId_m497B1531A3C206C36EBDA56C54CCF91D90AB3F8F(__this, NULL);
int32_t L_5 = L_4;
RuntimeObject* L_6 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_5);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_6);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_6);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = L_3;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_8;
L_8 = Touch_get_finger_m414E1AF302CAC737C934AF1FB24FC869873B8420_inline(__this, NULL);
NullCheck(L_8);
int32_t L_9;
L_9 = Finger_get_index_mB409A9B5711767D3A6046AEAA4931A0B3633934C_inline(L_8, NULL);
int32_t L_10 = L_9;
RuntimeObject* L_11 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_10);
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_11);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_11);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = L_7;
int32_t L_13;
L_13 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(__this, NULL);
int32_t L_14 = L_13;
RuntimeObject* L_15 = Box(TouchPhase_tC280DE0C3DA3652019BF3605D57099E6CE2F3B14_il2cpp_TypeInfo_var, &L_14);
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_15);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)L_15);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_16 = L_12;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_17;
L_17 = Touch_get_screenPosition_mAEBB428F1E62308A2C3E32A56CBEFCA9F7530B03(__this, NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_18 = L_17;
RuntimeObject* L_19 = Box(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var, &L_18);
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_19);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject*)L_19);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = L_16;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21;
L_21 = Touch_get_delta_m845008E2AF42561313DA002985D85150329B9BCC(__this, NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_22 = L_21;
RuntimeObject* L_23 = Box(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var, &L_22);
NullCheck(L_20);
ArrayElementTypeCheck (L_20, L_23);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject*)L_23);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_24 = L_20;
double L_25;
L_25 = Touch_get_time_m1E3EA9FB3DF10246B7BBF100663BAA3030714F17(__this, NULL);
double L_26 = L_25;
RuntimeObject* L_27 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_26);
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_27);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject*)L_27);
String_t* L_28;
L_28 = String_Format_m74FC0A1259DFA02F3DF6538FC7F3ACF3E1AF0C55(_stringLiteral97390174FD4C882BACE6D033A351D373021320B0, L_24, NULL);
V_1 = L_28;
goto IL_0082;
}
IL_0082:
{
// }
String_t* L_29 = V_1;
return L_29;
}
}
IL2CPP_EXTERN_C String_t* Touch_ToString_m641EEB738A7722EE7A2F90630BB3A5A1880F3B2F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
String_t* _returnValue;
_returnValue = Touch_ToString_m641EEB738A7722EE7A2F90630BB3A5A1880F3B2F(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch::Equals(UnityEngine.InputSystem.EnhancedTouch.Touch)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_Equals_m5A9195C1D656529EFF984AD9060ECA7257ACFDC4 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_Equals_m17C216CDC45654F53F8191093F3404478DB16B69_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B3_0 = 0;
{
// return Equals(m_Finger, other.m_Finger) && m_TouchRecord.Equals(other.m_TouchRecord);
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_0 = __this->___m_Finger_0;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_1 = ___other0;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_2 = L_1.___m_Finger_0;
bool L_3;
L_3 = Object_Equals_mF52C7AEB4AA9F136C3EA31AE3C1FD200B831B3D1(L_0, L_2, NULL);
if (!L_3)
{
goto IL_0027;
}
}
{
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* L_4 = (&__this->___m_TouchRecord_1);
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_5 = ___other0;
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_6 = L_5.___m_TouchRecord_1;
bool L_7;
L_7 = Record_Equals_m17C216CDC45654F53F8191093F3404478DB16B69(L_4, L_6, Record_Equals_m17C216CDC45654F53F8191093F3404478DB16B69_RuntimeMethod_var);
G_B3_0 = ((int32_t)(L_7));
goto IL_0028;
}
IL_0027:
{
G_B3_0 = 0;
}
IL_0028:
{
V_0 = (bool)G_B3_0;
goto IL_002b;
}
IL_002b:
{
// }
bool L_8 = V_0;
return L_8;
}
}
IL2CPP_EXTERN_C bool Touch_Equals_m5A9195C1D656529EFF984AD9060ECA7257ACFDC4_AdjustorThunk (RuntimeObject* __this, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 ___other0, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
bool _returnValue;
_returnValue = Touch_Equals_m5A9195C1D656529EFF984AD9060ECA7257ACFDC4(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_Equals_mA91A1937A740538D62AF4998D332AAB464B47E1E (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, RuntimeObject* ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
int32_t G_B3_0 = 0;
{
// return obj is Touch other && Equals(other);
RuntimeObject* L_0 = ___obj0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var)))
{
goto IL_0019;
}
}
{
RuntimeObject* L_1 = ___obj0;
V_0 = ((*(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*)((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*)(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*)UnBox(L_1, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))));
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_2 = V_0;
bool L_3;
L_3 = Touch_Equals_m5A9195C1D656529EFF984AD9060ECA7257ACFDC4(__this, L_2, NULL);
G_B3_0 = ((int32_t)(L_3));
goto IL_001a;
}
IL_0019:
{
G_B3_0 = 0;
}
IL_001a:
{
V_1 = (bool)G_B3_0;
goto IL_001d;
}
IL_001d:
{
// }
bool L_4 = V_1;
return L_4;
}
}
IL2CPP_EXTERN_C bool Touch_Equals_mA91A1937A740538D62AF4998D332AAB464B47E1E_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___obj0, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
bool _returnValue;
_returnValue = Touch_Equals_mA91A1937A740538D62AF4998D332AAB464B47E1E(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Touch::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_GetHashCode_m73B534C7CAA38FE313674A0133B66431E7DF233A (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_GetHashCode_m94F8E34331A3B0253C5448B7E9B23BFE0F1B04A8_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
// return ((m_Finger != null ? m_Finger.GetHashCode() : 0) * 397) ^ m_TouchRecord.GetHashCode();
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_0 = __this->___m_Finger_0;
if (L_0)
{
goto IL_000d;
}
}
{
G_B3_0 = 0;
goto IL_0018;
}
IL_000d:
{
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_1 = __this->___m_Finger_0;
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1);
G_B3_0 = L_2;
}
IL_0018:
{
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* L_3 = (&__this->___m_TouchRecord_1);
int32_t L_4;
L_4 = Record_GetHashCode_m94F8E34331A3B0253C5448B7E9B23BFE0F1B04A8(L_3, Record_GetHashCode_m94F8E34331A3B0253C5448B7E9B23BFE0F1B04A8_RuntimeMethod_var);
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(G_B3_0, ((int32_t)397)))^L_4));
goto IL_0033;
}
IL_0033:
{
// }
int32_t L_5 = V_0;
return L_5;
}
}
IL2CPP_EXTERN_C int32_t Touch_GetHashCode_m73B534C7CAA38FE313674A0133B66431E7DF233A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
int32_t _returnValue;
_returnValue = Touch_GetHashCode_m73B534C7CAA38FE313674A0133B66431E7DF233A(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch::AddTouchscreen(UnityEngine.InputSystem.Touchscreen)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_AddTouchscreen_m9E1BDBA572E0E293E5D19B04D662B4F942E5A68A (Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___screen0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_AppendWithCapacity_m4D609EB991E007436EB5BFA3784373529E098771_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputArrayExtensions_ContainsReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m2B94D6633F1987FDAE5DA91FFFA304203910D13D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral670E19EC873FB9B20AEA9120EC8039FAC7747881);
s_Il2CppMethodInitialized = true;
}
{
// Debug.Assert(!s_GlobalState.touchscreens.ContainsReference(screen), "Already added touchscreen");
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 L_0 = (&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___touchscreens_0;
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_1 = ___screen0;
bool L_2;
L_2 = InputArrayExtensions_ContainsReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m2B94D6633F1987FDAE5DA91FFFA304203910D13D(L_0, L_1, InputArrayExtensions_ContainsReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m2B94D6633F1987FDAE5DA91FFFA304203910D13D_RuntimeMethod_var);
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806((bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0), _stringLiteral670E19EC873FB9B20AEA9120EC8039FAC7747881, NULL);
// s_GlobalState.touchscreens.AppendWithCapacity(screen, capacityIncrement: 5);
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3* L_3 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___touchscreens_0);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_4 = ___screen0;
int32_t L_5;
L_5 = InlinedArray_1_AppendWithCapacity_m4D609EB991E007436EB5BFA3784373529E098771(L_3, L_4, 5, InlinedArray_1_AppendWithCapacity_m4D609EB991E007436EB5BFA3784373529E098771_RuntimeMethod_var);
// s_GlobalState.playerState.AddFingers(screen);
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_6 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_7 = ___screen0;
FingerAndTouchState_AddFingers_m6A1B4053B31CEFE25B8F1DA4CE10312134F15888(L_6, L_7, NULL);
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch::RemoveTouchscreen(UnityEngine.InputSystem.Touchscreen)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_RemoveTouchscreen_m9B8A41313A046A1A6215D004B81502EC9B3865D4 (Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___screen0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_RemoveAtWithCapacity_mB93190E8A814A079EA1D711D1CE53DA0953D325D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputArrayExtensions_ContainsReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m2B94D6633F1987FDAE5DA91FFFA304203910D13D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputArrayExtensions_IndexOfReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m7AEB481A05BC589B8BDC49DF286A77491A2ABE8D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral67D79FFE3F1020FFFD4380B534EF1D4B43C549A1);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
// Debug.Assert(s_GlobalState.touchscreens.ContainsReference(screen), "Did not add touchscreen");
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 L_0 = (&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___touchscreens_0;
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_1 = ___screen0;
bool L_2;
L_2 = InputArrayExtensions_ContainsReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m2B94D6633F1987FDAE5DA91FFFA304203910D13D(L_0, L_1, InputArrayExtensions_ContainsReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m2B94D6633F1987FDAE5DA91FFFA304203910D13D_RuntimeMethod_var);
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806(L_2, _stringLiteral67D79FFE3F1020FFFD4380B534EF1D4B43C549A1, NULL);
// var index = s_GlobalState.touchscreens.IndexOfReference(screen);
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 L_3 = (&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___touchscreens_0;
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_4 = ___screen0;
int32_t L_5;
L_5 = InputArrayExtensions_IndexOfReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m7AEB481A05BC589B8BDC49DF286A77491A2ABE8D(L_3, L_4, InputArrayExtensions_IndexOfReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m7AEB481A05BC589B8BDC49DF286A77491A2ABE8D_RuntimeMethod_var);
V_0 = L_5;
// s_GlobalState.touchscreens.RemoveAtWithCapacity(index);
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3* L_6 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___touchscreens_0);
int32_t L_7 = V_0;
InlinedArray_1_RemoveAtWithCapacity_mB93190E8A814A079EA1D711D1CE53DA0953D325D(L_6, L_7, InlinedArray_1_RemoveAtWithCapacity_mB93190E8A814A079EA1D711D1CE53DA0953D325D_RuntimeMethod_var);
// s_GlobalState.playerState.RemoveFingers(screen);
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_8 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_9 = ___screen0;
FingerAndTouchState_RemoveFingers_m04B1A6EE0792D7E9BF46E26950D2B15931BE8F99(L_8, L_9, NULL);
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch::BeginUpdate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_BeginUpdate_m3EDF005AF7A44CE6FE5EC0F00D8F21F6BE320834 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// if (s_GlobalState.playerState.haveActiveTouchesNeedingRefreshNextUpdate)
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_0 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
bool L_1 = L_0->___haveActiveTouchesNeedingRefreshNextUpdate_9;
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0024;
}
}
{
// s_GlobalState.playerState.haveBuiltActiveTouches = false;
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_3 = (&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2)->___playerState_5);
L_3->___haveBuiltActiveTouches_8 = (bool)0;
}
IL_0024:
{
// }
return;
}
}
// UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState UnityEngine.InputSystem.EnhancedTouch.Touch::CreateGlobalState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A Touch_CreateGlobalState_m77947D40BFC8B8FC12799B716EC970A21B004F74 (const RuntimeMethod* method)
{
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A V_0;
memset((&V_0), 0, sizeof(V_0));
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new GlobalState { historyLengthPerFinger = 64 };
il2cpp_codegen_initobj((&V_0), sizeof(GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A));
(&V_0)->___historyLengthPerFinger_1 = ((int32_t)64);
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A L_0 = V_0;
V_1 = L_0;
goto IL_0016;
}
IL_0016:
{
// }
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A L_1 = V_1;
return L_1;
}
}
// UnityEngine.InputSystem.Utilities.ISavedState UnityEngine.InputSystem.EnhancedTouch.Touch::SaveAndResetState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Touch_SaveAndResetState_m85AE624238CD9718EA1F4C485DEB1BF4742BD565 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SavedStructState_1__ctor_m3C152C71C4CF020B00FFFDB88B7A667A8192389B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CSaveAndResetStateU3Eb__78_0_m0868752872E1B31C85DAEB17E4E73889B0C6C8A0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CSaveAndResetStateU3Eb__78_1_m92D6BCF9F85D9FEB5BB866AE1502698081D78CF8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B* V_0 = NULL;
RuntimeObject* V_1 = NULL;
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* G_B2_0 = NULL;
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A* G_B2_1 = NULL;
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* G_B1_0 = NULL;
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A* G_B1_1 = NULL;
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B4_0 = NULL;
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* G_B4_1 = NULL;
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A* G_B4_2 = NULL;
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B3_0 = NULL;
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* G_B3_1 = NULL;
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A* G_B3_2 = NULL;
{
// var savedState = new SavedStructState<GlobalState>(
// ref s_GlobalState,
// (ref GlobalState state) => s_GlobalState = state,
// () => { /* currently nothing to dispose */ });
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var);
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* L_0 = ((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9__78_0_1;
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* L_1 = L_0;
G_B1_0 = L_1;
G_B1_1 = (&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2);
if (L_1)
{
G_B2_0 = L_1;
G_B2_1 = (&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2);
goto IL_0025;
}
}
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var);
U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6* L_2 = ((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9_0;
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* L_3 = (TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021*)il2cpp_codegen_object_new(TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021_il2cpp_TypeInfo_var);
NullCheck(L_3);
TypedRestore__ctor_mA8D10118E8FDB2DDFBF5EC33A5A7183E01348EAE(L_3, L_2, (intptr_t)((void*)U3CU3Ec_U3CSaveAndResetStateU3Eb__78_0_m0868752872E1B31C85DAEB17E4E73889B0C6C8A0_RuntimeMethod_var), NULL);
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* L_4 = L_3;
((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9__78_0_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9__78_0_1), (void*)L_4);
G_B2_0 = L_4;
G_B2_1 = G_B1_1;
}
IL_0025:
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var);
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_5 = ((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9__78_1_2;
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_6 = L_5;
G_B3_0 = L_6;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
if (L_6)
{
G_B4_0 = L_6;
G_B4_1 = G_B2_0;
G_B4_2 = G_B2_1;
goto IL_0044;
}
}
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var);
U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6* L_7 = ((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9_0;
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_8 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
NullCheck(L_8);
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_8, L_7, (intptr_t)((void*)U3CU3Ec_U3CSaveAndResetStateU3Eb__78_1_m92D6BCF9F85D9FEB5BB866AE1502698081D78CF8_RuntimeMethod_var), NULL);
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = L_8;
((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9__78_1_2 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9__78_1_2), (void*)L_9);
G_B4_0 = L_9;
G_B4_1 = G_B3_1;
G_B4_2 = G_B3_2;
}
IL_0044:
{
SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B* L_10 = (SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B*)il2cpp_codegen_object_new(SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B_il2cpp_TypeInfo_var);
NullCheck(L_10);
SavedStructState_1__ctor_m3C152C71C4CF020B00FFFDB88B7A667A8192389B(L_10, G_B4_2, G_B4_1, G_B4_0, SavedStructState_1__ctor_m3C152C71C4CF020B00FFFDB88B7A667A8192389B_RuntimeMethod_var);
V_0 = L_10;
// s_GlobalState = CreateGlobalState();
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A L_11;
L_11 = Touch_CreateGlobalState_m77947D40BFC8B8FC12799B716EC970A21B004F74(NULL);
((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2 = L_11;
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___touchscreens_0))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___touchscreens_0))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_Callbacks_1))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_Callbacks_1))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_Callbacks_1))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___playerState_5))->___fingers_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___playerState_5))->___activeFingers_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___playerState_5))->___activeTouches_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___playerState_5))->___activeTouchState_10), (void*)NULL);
#endif
// return savedState;
SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B* L_12 = V_0;
V_1 = L_12;
goto IL_0058;
}
IL_0058:
{
// }
RuntimeObject* L_13 = V_1;
return L_13;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch__cctor_m848E0E84F8651847D96E2F5C50099826F904793E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// internal static GlobalState s_GlobalState = CreateGlobalState();
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A L_0;
L_0 = Touch_CreateGlobalState_m77947D40BFC8B8FC12799B716EC970A21B004F74(NULL);
((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___touchscreens_0))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___touchscreens_0))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_Callbacks_1))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_Callbacks_1))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_Callbacks_1))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___playerState_5))->___fingers_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___playerState_5))->___activeFingers_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___playerState_5))->___activeTouches_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___playerState_5))->___activeTouchState_10), (void*)NULL);
#endif
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState
IL2CPP_EXTERN_C void GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshal_pinvoke(const GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A& unmarshaled, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshaled_pinvoke& marshaled)
{
Exception_t* ___touchscreens_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'touchscreens' of type 'GlobalState'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___touchscreens_0Exception, NULL);
}
IL2CPP_EXTERN_C void GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshal_pinvoke_back(const GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshaled_pinvoke& marshaled, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A& unmarshaled)
{
Exception_t* ___touchscreens_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'touchscreens' of type 'GlobalState'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___touchscreens_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState
IL2CPP_EXTERN_C void GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshal_pinvoke_cleanup(GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState
IL2CPP_EXTERN_C void GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshal_com(const GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A& unmarshaled, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshaled_com& marshaled)
{
Exception_t* ___touchscreens_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'touchscreens' of type 'GlobalState'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___touchscreens_0Exception, NULL);
}
IL2CPP_EXTERN_C void GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshal_com_back(const GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshaled_com& marshaled, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A& unmarshaled)
{
Exception_t* ___touchscreens_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'touchscreens' of type 'GlobalState'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___touchscreens_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState
IL2CPP_EXTERN_C void GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshal_com_cleanup(GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshaled_com& marshaled)
{
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_pinvoke(const FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D& unmarshaled, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke& marshaled)
{
Exception_t* ___fingers_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'fingers' of type 'FingerAndTouchState': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___fingers_1Exception, NULL);
}
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_pinvoke_back(const FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke& marshaled, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D& unmarshaled)
{
Exception_t* ___fingers_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'fingers' of type 'FingerAndTouchState': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___fingers_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_pinvoke_cleanup(FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_com(const FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D& unmarshaled, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com& marshaled)
{
Exception_t* ___fingers_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'fingers' of type 'FingerAndTouchState': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___fingers_1Exception, NULL);
}
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_com_back(const FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com& marshaled, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D& unmarshaled)
{
Exception_t* ___fingers_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'fingers' of type 'FingerAndTouchState': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___fingers_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_com_cleanup(FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com& marshaled)
{
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::AddFingers(UnityEngine.InputSystem.Touchscreen)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_AddFingers_m6A1B4053B31CEFE25B8F1DA4CE10312134F15888 (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___screen0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_AppendWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mA0F243DCF6B46AF4F8BF3C2129CC386433A13ECC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_EnsureCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m971DE1F66935BC99FA38DD3DA860BD52628087A1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* V_3 = NULL;
bool V_4 = false;
{
// var touchCount = screen.touches.Count;
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = ___screen0;
NullCheck(L_0);
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_1;
L_1 = Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline(L_0, NULL);
V_1 = L_1;
int32_t L_2;
L_2 = ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_inline((&V_1), ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_RuntimeMethod_var);
V_0 = L_2;
// ArrayHelpers.EnsureCapacity(ref fingers, totalFingerCount, touchCount);
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F** L_3 = (&__this->___fingers_1);
int32_t L_4 = __this->___totalFingerCount_6;
int32_t L_5 = V_0;
ArrayHelpers_EnsureCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m971DE1F66935BC99FA38DD3DA860BD52628087A1(L_3, L_4, L_5, ((int32_t)10), ArrayHelpers_EnsureCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m971DE1F66935BC99FA38DD3DA860BD52628087A1_RuntimeMethod_var);
// for (var i = 0; i < touchCount; ++i)
V_2 = 0;
goto IL_0052;
}
IL_0029:
{
// var finger = new Finger(screen, i, updateMask);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_6 = ___screen0;
int32_t L_7 = V_2;
int32_t L_8 = __this->___updateMask_0;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_9 = (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A*)il2cpp_codegen_object_new(Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_il2cpp_TypeInfo_var);
NullCheck(L_9);
Finger__ctor_m9D9ED2014F12F2FA245E5C04043F02D16B296505(L_9, L_6, L_7, L_8, NULL);
V_3 = L_9;
// ArrayHelpers.AppendWithCapacity(ref fingers, ref totalFingerCount, finger);
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F** L_10 = (&__this->___fingers_1);
int32_t* L_11 = (&__this->___totalFingerCount_6);
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_12 = V_3;
int32_t L_13;
L_13 = ArrayHelpers_AppendWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mA0F243DCF6B46AF4F8BF3C2129CC386433A13ECC(L_10, L_11, L_12, ((int32_t)10), ArrayHelpers_AppendWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mA0F243DCF6B46AF4F8BF3C2129CC386433A13ECC_RuntimeMethod_var);
// for (var i = 0; i < touchCount; ++i)
int32_t L_14 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_14, 1));
}
IL_0052:
{
// for (var i = 0; i < touchCount; ++i)
int32_t L_15 = V_2;
int32_t L_16 = V_0;
V_4 = (bool)((((int32_t)L_15) < ((int32_t)L_16))? 1 : 0);
bool L_17 = V_4;
if (L_17)
{
goto IL_0029;
}
}
{
// }
return;
}
}
IL2CPP_EXTERN_C void FingerAndTouchState_AddFingers_m6A1B4053B31CEFE25B8F1DA4CE10312134F15888_AdjustorThunk (RuntimeObject* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___screen0, const RuntimeMethod* method)
{
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*>(__this + _offset);
FingerAndTouchState_AddFingers_m6A1B4053B31CEFE25B8F1DA4CE10312134F15888(_thisAdjusted, ___screen0, method);
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::RemoveFingers(UnityEngine.InputSystem.Touchscreen)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_RemoveFingers_m04B1A6EE0792D7E9BF46E26950D2B15931BE8F99 (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___screen0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_EraseSliceWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m349F0F46D2A4FAC0A03FEAB5730B615633E0FDE4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
bool V_3 = false;
int32_t V_4 = 0;
bool V_5 = false;
bool V_6 = false;
{
// var touchCount = screen.touches.Count;
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = ___screen0;
NullCheck(L_0);
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_1;
L_1 = Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline(L_0, NULL);
V_1 = L_1;
int32_t L_2;
L_2 = ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_inline((&V_1), ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_RuntimeMethod_var);
V_0 = L_2;
// for (var i = 0; i < fingers.Length; ++i)
V_2 = 0;
goto IL_0074;
}
IL_0014:
{
// if (fingers[i].screen != screen)
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* L_3 = __this->___fingers_1;
int32_t L_4 = V_2;
NullCheck(L_3);
int32_t L_5 = L_4;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
NullCheck(L_6);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_7;
L_7 = Finger_get_screen_mBA2D1364604CB55F7386EFB844B12B7CFA7EE744_inline(L_6, NULL);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_8 = ___screen0;
V_3 = (bool)((((int32_t)((((RuntimeObject*)(Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)L_7) == ((RuntimeObject*)(Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)L_8))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_9 = V_3;
if (!L_9)
{
goto IL_002e;
}
}
{
// continue;
goto IL_0070;
}
IL_002e:
{
// for (var n = 0; n < touchCount; ++n)
V_4 = 0;
goto IL_004f;
}
IL_0033:
{
// fingers[i + n].m_StateHistory.Dispose();
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* L_10 = __this->___fingers_1;
int32_t L_11 = V_2;
int32_t L_12 = V_4;
NullCheck(L_10);
int32_t L_13 = ((int32_t)il2cpp_codegen_add(L_11, L_12));
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_14 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
NullCheck(L_14);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_15 = L_14->___m_StateHistory_2;
NullCheck(L_15);
InputStateHistory_Dispose_m7DD7D063D0D205BB33BBCBA682F7BB98884CCE15(L_15, NULL);
// for (var n = 0; n < touchCount; ++n)
int32_t L_16 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_16, 1));
}
IL_004f:
{
// for (var n = 0; n < touchCount; ++n)
int32_t L_17 = V_4;
int32_t L_18 = V_0;
V_5 = (bool)((((int32_t)L_17) < ((int32_t)L_18))? 1 : 0);
bool L_19 = V_5;
if (L_19)
{
goto IL_0033;
}
}
{
// ArrayHelpers.EraseSliceWithCapacity(ref fingers, ref totalFingerCount, i, touchCount);
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F** L_20 = (&__this->___fingers_1);
int32_t* L_21 = (&__this->___totalFingerCount_6);
int32_t L_22 = V_2;
int32_t L_23 = V_0;
ArrayHelpers_EraseSliceWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m349F0F46D2A4FAC0A03FEAB5730B615633E0FDE4(L_20, L_21, L_22, L_23, ArrayHelpers_EraseSliceWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m349F0F46D2A4FAC0A03FEAB5730B615633E0FDE4_RuntimeMethod_var);
// break;
goto IL_0085;
}
IL_0070:
{
// for (var i = 0; i < fingers.Length; ++i)
int32_t L_24 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_24, 1));
}
IL_0074:
{
// for (var i = 0; i < fingers.Length; ++i)
int32_t L_25 = V_2;
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* L_26 = __this->___fingers_1;
NullCheck(L_26);
V_6 = (bool)((((int32_t)L_25) < ((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length))))? 1 : 0);
bool L_27 = V_6;
if (L_27)
{
goto IL_0014;
}
}
IL_0085:
{
// haveBuiltActiveTouches = false;
__this->___haveBuiltActiveTouches_8 = (bool)0;
// }
return;
}
}
IL2CPP_EXTERN_C void FingerAndTouchState_RemoveFingers_m04B1A6EE0792D7E9BF46E26950D2B15931BE8F99_AdjustorThunk (RuntimeObject* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___screen0, const RuntimeMethod* method)
{
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*>(__this + _offset);
FingerAndTouchState_RemoveFingers_m04B1A6EE0792D7E9BF46E26950D2B15931BE8F99(_thisAdjusted, ___screen0, method);
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::Destroy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_Destroy_mA11DBC6D12D70F40AA14283E65322FAFC602572B (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* G_B5_0 = NULL;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* G_B4_0 = NULL;
{
// for (var i = 0; i < totalFingerCount; ++i)
V_0 = 0;
goto IL_001c;
}
IL_0005:
{
// fingers[i].m_StateHistory.Dispose();
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* L_0 = __this->___fingers_1;
int32_t L_1 = V_0;
NullCheck(L_0);
int32_t L_2 = L_1;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
NullCheck(L_3);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_4 = L_3->___m_StateHistory_2;
NullCheck(L_4);
InputStateHistory_Dispose_m7DD7D063D0D205BB33BBCBA682F7BB98884CCE15(L_4, NULL);
// for (var i = 0; i < totalFingerCount; ++i)
int32_t L_5 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_5, 1));
}
IL_001c:
{
// for (var i = 0; i < totalFingerCount; ++i)
int32_t L_6 = V_0;
int32_t L_7 = __this->___totalFingerCount_6;
V_1 = (bool)((((int32_t)L_6) < ((int32_t)L_7))? 1 : 0);
bool L_8 = V_1;
if (L_8)
{
goto IL_0005;
}
}
{
// activeTouchState?.Dispose();
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_9 = __this->___activeTouchState_10;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_10 = L_9;
G_B4_0 = L_10;
if (L_10)
{
G_B5_0 = L_10;
goto IL_0035;
}
}
{
goto IL_003b;
}
IL_0035:
{
NullCheck(G_B5_0);
InputStateHistory_Dispose_m7DD7D063D0D205BB33BBCBA682F7BB98884CCE15(G_B5_0, NULL);
}
IL_003b:
{
// activeTouchState = null;
__this->___activeTouchState_10 = (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___activeTouchState_10), (void*)(InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*)NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void FingerAndTouchState_Destroy_mA11DBC6D12D70F40AA14283E65322FAFC602572B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*>(__this + _offset);
FingerAndTouchState_Destroy_mA11DBC6D12D70F40AA14283E65322FAFC602572B(_thisAdjusted, method);
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::UpdateActiveFingers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_UpdateActiveFingers_m21F725BF5EC6E4953C44FFBA63F4C7ABFA0FBE49 (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_AppendWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mA0F243DCF6B46AF4F8BF3C2129CC386433A13ECC_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* V_1 = NULL;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_2;
memset((&V_2), 0, sizeof(V_2));
bool V_3 = false;
bool V_4 = false;
{
// activeFingerCount = 0;
__this->___activeFingerCount_4 = 0;
// for (var i = 0; i < totalFingerCount; ++i)
V_0 = 0;
goto IL_0042;
}
IL_000c:
{
// var finger = fingers[i];
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* L_0 = __this->___fingers_1;
int32_t L_1 = V_0;
NullCheck(L_0);
int32_t L_2 = L_1;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
V_1 = L_3;
// var lastTouch = finger.currentTouch;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_4 = V_1;
NullCheck(L_4);
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_5;
L_5 = Finger_get_currentTouch_m53721DA3C8AB5C0D600499C33CCD5854E757890D(L_4, NULL);
V_2 = L_5;
// if (lastTouch.valid)
bool L_6;
L_6 = Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044((&V_2), NULL);
V_3 = L_6;
bool L_7 = V_3;
if (!L_7)
{
goto IL_003d;
}
}
{
// ArrayHelpers.AppendWithCapacity(ref activeFingers, ref activeFingerCount, finger);
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F** L_8 = (&__this->___activeFingers_2);
int32_t* L_9 = (&__this->___activeFingerCount_4);
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_10 = V_1;
int32_t L_11;
L_11 = ArrayHelpers_AppendWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mA0F243DCF6B46AF4F8BF3C2129CC386433A13ECC(L_8, L_9, L_10, ((int32_t)10), ArrayHelpers_AppendWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mA0F243DCF6B46AF4F8BF3C2129CC386433A13ECC_RuntimeMethod_var);
}
IL_003d:
{
// for (var i = 0; i < totalFingerCount; ++i)
int32_t L_12 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_12, 1));
}
IL_0042:
{
// for (var i = 0; i < totalFingerCount; ++i)
int32_t L_13 = V_0;
int32_t L_14 = __this->___totalFingerCount_6;
V_4 = (bool)((((int32_t)L_13) < ((int32_t)L_14))? 1 : 0);
bool L_15 = V_4;
if (L_15)
{
goto IL_000c;
}
}
{
// }
return;
}
}
IL2CPP_EXTERN_C void FingerAndTouchState_UpdateActiveFingers_m21F725BF5EC6E4953C44FFBA63F4C7ABFA0FBE49_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*>(__this + _offset);
FingerAndTouchState_UpdateActiveFingers_m21F725BF5EC6E4953C44FFBA63F4C7ABFA0FBE49(_thisAdjusted, method);
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::UpdateActiveTouches()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_UpdateActiveTouches_m48D632ECA4B568270B458D9CED54AC591FBFBF43 (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_AppendWithCapacity_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_mC5BF2128B73357928D460A8F53B4AEEE75704DEB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_Clear_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_m7D9C926B759FBD5D6ED532FC4C0E82C39B00A223_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_InsertAtWithCapacity_TisTouch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_m96BFF397234C618FAA34CAA72DE6AD4F4113819B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateHistory_1__ctor_m760ABD5FDD38AF6C3FF42B641B3FC8383E4A91DB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Item_mF7217A9697E8EAA3A574FCDCB611597EC9C1836A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record__ctor_m1CACECB022FDAACE6482C208E6552F7614445895_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_mA2C7B854E9A67DF24154B9668CE5EA1C21575E61_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_SizeOf_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_m69FCD3C12AF3FB3E4C75D033E34648DED186489F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral984F1D6B627002C7E119AF5664891A8440D6A1ED);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
bool V_1 = false;
bool V_2 = false;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_3;
memset((&V_3), 0, sizeof(V_3));
int32_t V_4 = 0;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A** V_5 = NULL;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* V_6 = NULL;
int32_t V_7 = 0;
int32_t V_8 = 0;
int32_t V_9 = 0;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* V_10 = NULL;
int32_t V_11 = 0;
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* V_12 = NULL;
int32_t V_13 = 0;
int32_t V_14 = 0;
bool V_15 = false;
int32_t V_16 = 0;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* V_17 = NULL;
bool V_18 = false;
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* V_19 = NULL;
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* V_20 = NULL;
int32_t V_21 = 0;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* V_22 = NULL;
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* V_23 = NULL;
int32_t V_24 = 0;
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 V_25;
memset((&V_25), 0, sizeof(V_25));
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_26;
memset((&V_26), 0, sizeof(V_26));
bool V_27 = false;
bool V_28 = false;
bool V_29 = false;
bool V_30 = false;
bool V_31 = false;
bool V_32 = false;
ReadOnlyArray_1_tA1DF7A256AD2BF17FB155224CB2611ED215EFCD3 V_33;
memset((&V_33), 0, sizeof(V_33));
bool V_34 = false;
bool V_35 = false;
bool V_36 = false;
bool V_37 = false;
bool V_38 = false;
int32_t G_B17_0 = 0;
int32_t G_B21_0 = 0;
int32_t G_B29_0 = 0;
int32_t G_B39_0 = 0;
int32_t G_B41_0 = 0;
int32_t G_B46_0 = 0;
{
// if (haveBuiltActiveTouches)
bool L_0 = __this->___haveBuiltActiveTouches_8;
V_1 = L_0;
bool L_1 = V_1;
if (!L_1)
{
goto IL_0010;
}
}
{
// return;
goto IL_03da;
}
IL_0010:
{
// if (activeTouchState == null)
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_2 = __this->___activeTouchState_10;
V_2 = (bool)((((RuntimeObject*)(InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*)L_2) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_3 = V_2;
if (!L_3)
{
goto IL_0041;
}
}
{
// activeTouchState = new InputStateHistory<TouchState>
// {
// extraMemoryPerRecord = UnsafeUtility.SizeOf<ExtraDataPerTouchState>()
// };
il2cpp_codegen_initobj((&V_3), sizeof(Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28));
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_4 = V_3;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_5 = (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*)il2cpp_codegen_object_new(InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798_il2cpp_TypeInfo_var);
NullCheck(L_5);
InputStateHistory_1__ctor_m760ABD5FDD38AF6C3FF42B641B3FC8383E4A91DB(L_5, L_4, InputStateHistory_1__ctor_m760ABD5FDD38AF6C3FF42B641B3FC8383E4A91DB_RuntimeMethod_var);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_6 = L_5;
int32_t L_7;
L_7 = UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_mA2C7B854E9A67DF24154B9668CE5EA1C21575E61(UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_mA2C7B854E9A67DF24154B9668CE5EA1C21575E61_RuntimeMethod_var);
NullCheck(L_6);
InputStateHistory_set_extraMemoryPerRecord_m6907893F41CB2EB06B4C04B2E8B35E0E5E800786(L_6, L_7, NULL);
__this->___activeTouchState_10 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___activeTouchState_10), (void*)L_6);
goto IL_006c;
}
IL_0041:
{
// activeTouchState.Clear();
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_8 = __this->___activeTouchState_10;
NullCheck(L_8);
InputStateHistory_Clear_m7B9A241840171E7224D0A01969F36CF294D227F3(L_8, NULL);
// activeTouchState.m_ControlCount = 0;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_9 = __this->___activeTouchState_10;
NullCheck(L_9);
((InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480*)L_9)->___m_ControlCount_4 = 0;
// activeTouchState.m_Controls.Clear();
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_10 = __this->___activeTouchState_10;
NullCheck(L_10);
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* L_11 = ((InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480*)L_10)->___m_Controls_3;
ArrayHelpers_Clear_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_m7D9C926B759FBD5D6ED532FC4C0E82C39B00A223(L_11, ArrayHelpers_Clear_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_m7D9C926B759FBD5D6ED532FC4C0E82C39B00A223_RuntimeMethod_var);
}
IL_006c:
{
// activeTouchCount = 0;
__this->___activeTouchCount_5 = 0;
// haveActiveTouchesNeedingRefreshNextUpdate = false;
__this->___haveActiveTouchesNeedingRefreshNextUpdate_9 = (bool)0;
// var currentUpdateStepCount = InputUpdate.s_UpdateStepCount;
uint32_t L_12 = ((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_UpdateStepCount_0;
V_0 = L_12;
// for (var i = 0; i < totalFingerCount; ++i)
V_4 = 0;
goto IL_03c0;
}
IL_0088:
{
// ref var finger = ref fingers[i];
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* L_13 = __this->___fingers_1;
int32_t L_14 = V_4;
NullCheck(L_13);
V_5 = ((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)));
// var history = finger.m_StateHistory;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A** L_15 = V_5;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_16 = *((Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A**)L_15);
NullCheck(L_16);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_17 = L_16->___m_StateHistory_2;
V_6 = L_17;
// var touchRecordCount = history.Count;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_18 = V_6;
NullCheck(L_18);
int32_t L_19;
L_19 = InputStateHistory_get_Count_m23DF78272A6C97F6C8782A953482772CDF6FFA81_inline(L_18, NULL);
V_7 = L_19;
// if (touchRecordCount == 0)
int32_t L_20 = V_7;
V_15 = (bool)((((int32_t)L_20) == ((int32_t)0))? 1 : 0);
bool L_21 = V_15;
if (!L_21)
{
goto IL_00bb;
}
}
{
// continue;
goto IL_03ba;
}
IL_00bb:
{
// var insertAt = activeTouchCount;
int32_t L_22 = __this->___activeTouchCount_5;
V_8 = L_22;
// var currentTouchId = 0;
V_9 = 0;
// var currentTouchState = default(TouchState*);
il2cpp_codegen_initobj((&V_10), sizeof(TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*));
// var touchRecordIndex = history.UserIndexToRecordIndex(touchRecordCount - 1); // Start with last record.
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_23 = V_6;
int32_t L_24 = V_7;
NullCheck(L_23);
int32_t L_25;
L_25 = InputStateHistory_UserIndexToRecordIndex_m81D4D6EE19ED80607BAAA31F3159168AC3B5B678(L_23, ((int32_t)il2cpp_codegen_subtract(L_24, 1)), NULL);
V_11 = L_25;
// var touchRecordHeader = history.GetRecordUnchecked(touchRecordIndex);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_26 = V_6;
int32_t L_27 = V_11;
NullCheck(L_26);
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_28;
L_28 = InputStateHistory_GetRecordUnchecked_m569EB10E4D93B81BEA6699746C15C720F48E42F6(L_26, L_27, NULL);
V_12 = L_28;
// var touchRecordSize = history.bytesPerRecord;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_29 = V_6;
NullCheck(L_29);
int32_t L_30;
L_30 = InputStateHistory_get_bytesPerRecord_mAF516CE1E45E3EBA46EDFFF2923908D6B672D114(L_29, NULL);
V_13 = L_30;
// var extraMemoryOffset = touchRecordSize - history.extraMemoryPerRecord;
int32_t L_31 = V_13;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_32 = V_6;
NullCheck(L_32);
int32_t L_33;
L_33 = InputStateHistory_get_extraMemoryPerRecord_m4E4C9D89BC37B9CD7E6AFFD58D95A9030F92E653_inline(L_32, NULL);
V_14 = ((int32_t)il2cpp_codegen_subtract(L_31, L_33));
// for (var n = 0; n < touchRecordCount; ++n)
V_16 = 0;
goto IL_03aa;
}
IL_0103:
{
// if (n != 0)
int32_t L_34 = V_16;
V_27 = (bool)((!(((uint32_t)L_34) <= ((uint32_t)0)))? 1 : 0);
bool L_35 = V_27;
if (!L_35)
{
goto IL_0145;
}
}
{
// --touchRecordIndex;
int32_t L_36 = V_11;
V_11 = ((int32_t)il2cpp_codegen_subtract(L_36, 1));
// if (touchRecordIndex < 0)
int32_t L_37 = V_11;
V_28 = (bool)((((int32_t)L_37) < ((int32_t)0))? 1 : 0);
bool L_38 = V_28;
if (!L_38)
{
goto IL_013b;
}
}
{
// touchRecordIndex = history.historyDepth - 1;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_39 = V_6;
NullCheck(L_39);
int32_t L_40;
L_40 = InputStateHistory_get_historyDepth_mBAFA4592E170099C0E8BB360B148A854517AA561_inline(L_39, NULL);
V_11 = ((int32_t)il2cpp_codegen_subtract(L_40, 1));
// touchRecordHeader = history.GetRecordUnchecked(touchRecordIndex);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_41 = V_6;
int32_t L_42 = V_11;
NullCheck(L_41);
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_43;
L_43 = InputStateHistory_GetRecordUnchecked_m569EB10E4D93B81BEA6699746C15C720F48E42F6(L_41, L_42, NULL);
V_12 = L_43;
goto IL_0144;
}
IL_013b:
{
// touchRecordHeader = (InputStateHistory.RecordHeader*)((byte*)touchRecordHeader - touchRecordSize);
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_44 = V_12;
int32_t L_45 = V_13;
V_12 = ((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)il2cpp_codegen_subtract((intptr_t)L_44, L_45));
}
IL_0144:
{
}
IL_0145:
{
// var touchState = (TouchState*)touchRecordHeader->statePtrWithoutControlIndex; // History is tied to a single TouchControl.
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_46 = V_12;
uint8_t* L_47;
L_47 = RecordHeader_get_statePtrWithoutControlIndex_m06FC191CB4801F442A0B972DA23B48ECE629922C((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)L_46, NULL);
V_17 = (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_47;
// var wasUpdatedThisFrame = touchState->updateStepCount == currentUpdateStepCount;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_48 = V_17;
NullCheck(L_48);
uint32_t L_49 = L_48->___updateStepCount_10;
uint32_t L_50 = V_0;
V_18 = (bool)((((int32_t)L_49) == ((int32_t)L_50))? 1 : 0);
// if (touchState->touchId == currentTouchId && !touchState->phase.IsEndedOrCanceled())
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_51 = V_17;
NullCheck(L_51);
int32_t L_52 = L_51->___touchId_1;
int32_t L_53 = V_9;
if ((!(((uint32_t)L_52) == ((uint32_t)L_53))))
{
goto IL_0176;
}
}
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_54 = V_17;
int32_t L_55;
L_55 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_54, NULL);
bool L_56;
L_56 = InputExtensions_IsEndedOrCanceled_m125C963DFE3F2D378F914029AC3E602CB14E2AAB(L_55, NULL);
G_B17_0 = ((((int32_t)L_56) == ((int32_t)0))? 1 : 0);
goto IL_0177;
}
IL_0176:
{
G_B17_0 = 0;
}
IL_0177:
{
V_29 = (bool)G_B17_0;
bool L_57 = V_29;
if (!L_57)
{
goto IL_01db;
}
}
{
// if (wasUpdatedThisFrame && touchState->phase == TouchPhase.Began)
bool L_58 = V_18;
if (!L_58)
{
goto IL_018e;
}
}
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_59 = V_17;
int32_t L_60;
L_60 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_59, NULL);
G_B21_0 = ((((int32_t)L_60) == ((int32_t)1))? 1 : 0);
goto IL_018f;
}
IL_018e:
{
G_B21_0 = 0;
}
IL_018f:
{
V_30 = (bool)G_B21_0;
bool L_61 = V_30;
if (!L_61)
{
goto IL_01d6;
}
}
{
// Debug.Assert(currentTouchState != null, "Must have current touch record at this point");
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_62 = V_10;
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806((bool)((((int32_t)((((intptr_t)L_62) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0), _stringLiteral984F1D6B627002C7E119AF5664891A8440D6A1ED, NULL);
// currentTouchState->phase = TouchPhase.Began;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_63 = V_10;
TouchState_set_phase_mCC48A355F50B41E745BDCE383BD083A69BD8644A((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_63, 1, NULL);
// currentTouchState->position = touchState->position;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_64 = V_10;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_65 = V_17;
NullCheck(L_65);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_66 = L_65->___position_2;
NullCheck(L_64);
L_64->___position_2 = L_66;
// currentTouchState->delta = default;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_67 = V_10;
NullCheck(L_67);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_68 = (&L_67->___delta_3);
il2cpp_codegen_initobj(L_68, sizeof(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7));
// haveActiveTouchesNeedingRefreshNextUpdate = true;
__this->___haveActiveTouchesNeedingRefreshNextUpdate_9 = (bool)1;
}
IL_01d6:
{
// continue;
goto IL_03a4;
}
IL_01db:
{
// if (touchState->phase.IsEndedOrCanceled())
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_69 = V_17;
int32_t L_70;
L_70 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_69, NULL);
bool L_71;
L_71 = InputExtensions_IsEndedOrCanceled_m125C963DFE3F2D378F914029AC3E602CB14E2AAB(L_70, NULL);
V_31 = L_71;
bool L_72 = V_31;
if (!L_72)
{
goto IL_0217;
}
}
{
// if (!(touchState->beganInSameFrame && touchState->updateStepCount == currentUpdateStepCount - 1) &&
// !wasUpdatedThisFrame)
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_73 = V_17;
bool L_74;
L_74 = TouchState_get_beganInSameFrame_mC72ACA3EBA9BE5426C6B19ED7130F7A1CE177320((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_73, NULL);
if (!L_74)
{
goto IL_0203;
}
}
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_75 = V_17;
NullCheck(L_75);
uint32_t L_76 = L_75->___updateStepCount_10;
uint32_t L_77 = V_0;
if ((((int32_t)L_76) == ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_77, 1)))))
{
goto IL_020a;
}
}
IL_0203:
{
bool L_78 = V_18;
G_B29_0 = ((((int32_t)L_78) == ((int32_t)0))? 1 : 0);
goto IL_020b;
}
IL_020a:
{
G_B29_0 = 0;
}
IL_020b:
{
V_32 = (bool)G_B29_0;
bool L_79 = V_32;
if (!L_79)
{
goto IL_0216;
}
}
{
// break;
goto IL_03b9;
}
IL_0216:
{
}
IL_0217:
{
// var touchExtraState = (ExtraDataPerTouchState*)((byte*)touchRecordHeader + extraMemoryOffset);
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_80 = V_12;
int32_t L_81 = V_14;
V_19 = (ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4*)((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)il2cpp_codegen_add((intptr_t)L_80, L_81));
// var newRecordHeader = activeTouchState.AllocateRecord(out var newRecordIndex);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_82 = __this->___activeTouchState_10;
NullCheck(L_82);
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_83;
L_83 = InputStateHistory_AllocateRecord_mAD0E7626ECD9E937BBD46B8E84DEE7E247A8B707(L_82, (&V_21), NULL);
V_20 = L_83;
// var newRecordState = (TouchState*)newRecordHeader->statePtrWithControlIndex;
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_84 = V_20;
uint8_t* L_85;
L_85 = RecordHeader_get_statePtrWithControlIndex_m68BBA8402AF00318B40229E5121F9C5132A3B655((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)L_84, NULL);
V_22 = (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_85;
// var newRecordExtraState = (ExtraDataPerTouchState*)((byte*)newRecordHeader + activeTouchState.bytesPerRecord - UnsafeUtility.SizeOf<ExtraDataPerTouchState>());
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_86 = V_20;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_87 = __this->___activeTouchState_10;
NullCheck(L_87);
int32_t L_88;
L_88 = InputStateHistory_get_bytesPerRecord_mAF516CE1E45E3EBA46EDFFF2923908D6B672D114(L_87, NULL);
int32_t L_89;
L_89 = UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_mA2C7B854E9A67DF24154B9668CE5EA1C21575E61(UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_mA2C7B854E9A67DF24154B9668CE5EA1C21575E61_RuntimeMethod_var);
V_23 = (ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4*)((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)il2cpp_codegen_subtract((intptr_t)((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)il2cpp_codegen_add((intptr_t)L_86, L_88)), L_89));
// newRecordHeader->time = touchRecordHeader->time;
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_90 = V_20;
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_91 = V_12;
NullCheck(L_91);
double L_92 = L_91->___time_0;
NullCheck(L_90);
L_90->___time_0 = L_92;
// newRecordHeader->controlIndex = ArrayHelpers.AppendWithCapacity(ref activeTouchState.m_Controls,
// ref activeTouchState.m_ControlCount, finger.m_StateHistory.controls[0]);
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_93 = V_20;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_94 = __this->___activeTouchState_10;
NullCheck(L_94);
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17** L_95 = (&((InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480*)L_94)->___m_Controls_3);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_96 = __this->___activeTouchState_10;
NullCheck(L_96);
int32_t* L_97 = (&((InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480*)L_96)->___m_ControlCount_4);
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A** L_98 = V_5;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_99 = *((Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A**)L_98);
NullCheck(L_99);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_100 = L_99->___m_StateHistory_2;
NullCheck(L_100);
ReadOnlyArray_1_tA1DF7A256AD2BF17FB155224CB2611ED215EFCD3 L_101;
L_101 = InputStateHistory_get_controls_m2B1056A5B21F2A8CFAAEE9136E24D27C4BFF31CC(L_100, NULL);
V_33 = L_101;
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_102;
L_102 = ReadOnlyArray_1_get_Item_mF7217A9697E8EAA3A574FCDCB611597EC9C1836A((&V_33), 0, ReadOnlyArray_1_get_Item_mF7217A9697E8EAA3A574FCDCB611597EC9C1836A_RuntimeMethod_var);
int32_t L_103;
L_103 = ArrayHelpers_AppendWithCapacity_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_mC5BF2128B73357928D460A8F53B4AEEE75704DEB(L_95, L_97, L_102, ((int32_t)10), ArrayHelpers_AppendWithCapacity_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_mC5BF2128B73357928D460A8F53B4AEEE75704DEB_RuntimeMethod_var);
NullCheck(L_93);
L_93->___controlIndex_2 = L_103;
// UnsafeUtility.MemCpy(newRecordState, touchState, UnsafeUtility.SizeOf<TouchState>());
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_104 = V_22;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_105 = V_17;
int32_t L_106;
L_106 = UnsafeUtility_SizeOf_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_m69FCD3C12AF3FB3E4C75D033E34648DED186489F(UnsafeUtility_SizeOf_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_m69FCD3C12AF3FB3E4C75D033E34648DED186489F_RuntimeMethod_var);
UnsafeUtility_MemCpy_m019E657B952C27F705607F0F3D371EEE526B716B((void*)L_104, (void*)L_105, ((int64_t)L_106), NULL);
// UnsafeUtility.MemCpy(newRecordExtraState, touchExtraState, UnsafeUtility.SizeOf<ExtraDataPerTouchState>());
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* L_107 = V_23;
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* L_108 = V_19;
int32_t L_109;
L_109 = UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_mA2C7B854E9A67DF24154B9668CE5EA1C21575E61(UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_mA2C7B854E9A67DF24154B9668CE5EA1C21575E61_RuntimeMethod_var);
UnsafeUtility_MemCpy_m019E657B952C27F705607F0F3D371EEE526B716B((void*)L_107, (void*)L_108, ((int64_t)L_109), NULL);
// var phase = touchState->phase;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_110 = V_17;
int32_t L_111;
L_111 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_110, NULL);
V_24 = L_111;
// if ((phase == TouchPhase.Moved || phase == TouchPhase.Began) &&
// !wasUpdatedThisFrame && !(phase == TouchPhase.Moved && touchState->beganInSameFrame && touchState->updateStepCount == currentUpdateStepCount - 1))
int32_t L_112 = V_24;
if ((((int32_t)L_112) == ((int32_t)2)))
{
goto IL_02c8;
}
}
{
int32_t L_113 = V_24;
if ((!(((uint32_t)L_113) == ((uint32_t)1))))
{
goto IL_02ee;
}
}
IL_02c8:
{
bool L_114 = V_18;
if (L_114)
{
goto IL_02ee;
}
}
{
int32_t L_115 = V_24;
if ((!(((uint32_t)L_115) == ((uint32_t)2))))
{
goto IL_02eb;
}
}
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_116 = V_17;
bool L_117;
L_117 = TouchState_get_beganInSameFrame_mC72ACA3EBA9BE5426C6B19ED7130F7A1CE177320((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_116, NULL);
if (!L_117)
{
goto IL_02eb;
}
}
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_118 = V_17;
NullCheck(L_118);
uint32_t L_119 = L_118->___updateStepCount_10;
uint32_t L_120 = V_0;
G_B39_0 = ((((int32_t)((((int32_t)L_119) == ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_120, 1))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_02ec;
}
IL_02eb:
{
G_B39_0 = 1;
}
IL_02ec:
{
G_B41_0 = G_B39_0;
goto IL_02ef;
}
IL_02ee:
{
G_B41_0 = 0;
}
IL_02ef:
{
V_34 = (bool)G_B41_0;
bool L_121 = V_34;
if (!L_121)
{
goto IL_030f;
}
}
{
// newRecordState->phase = TouchPhase.Stationary;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_122 = V_22;
TouchState_set_phase_mCC48A355F50B41E745BDCE383BD083A69BD8644A((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_122, 5, NULL);
// newRecordState->delta = default;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_123 = V_22;
NullCheck(L_123);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_124 = (&L_123->___delta_3);
il2cpp_codegen_initobj(L_124, sizeof(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7));
goto IL_0347;
}
IL_030f:
{
// else if (!wasUpdatedThisFrame && !touchState->beganInSameFrame)
bool L_125 = V_18;
if (L_125)
{
goto IL_031f;
}
}
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_126 = V_17;
bool L_127;
L_127 = TouchState_get_beganInSameFrame_mC72ACA3EBA9BE5426C6B19ED7130F7A1CE177320((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_126, NULL);
G_B46_0 = ((((int32_t)L_127) == ((int32_t)0))? 1 : 0);
goto IL_0320;
}
IL_031f:
{
G_B46_0 = 0;
}
IL_0320:
{
V_35 = (bool)G_B46_0;
bool L_128 = V_35;
if (!L_128)
{
goto IL_0337;
}
}
{
// newRecordState->delta = default;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_129 = V_22;
NullCheck(L_129);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_130 = (&L_129->___delta_3);
il2cpp_codegen_initobj(L_130, sizeof(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7));
goto IL_0347;
}
IL_0337:
{
// newRecordState->delta = newRecordExtraState->accumulatedDelta;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_131 = V_22;
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* L_132 = V_23;
NullCheck(L_132);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_133 = L_132->___accumulatedDelta_0;
NullCheck(L_131);
L_131->___delta_3 = L_133;
}
IL_0347:
{
// var newRecord = new InputStateHistory<TouchState>.Record(activeTouchState, newRecordIndex, newRecordHeader);
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_134 = __this->___activeTouchState_10;
int32_t L_135 = V_21;
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_136 = V_20;
Record__ctor_m1CACECB022FDAACE6482C208E6552F7614445895((&V_25), L_134, L_135, L_136, Record__ctor_m1CACECB022FDAACE6482C208E6552F7614445895_RuntimeMethod_var);
// var newTouch = new Touch(finger, newRecord);
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A** L_137 = V_5;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_138 = *((Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A**)L_137);
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_139 = V_25;
Touch__ctor_mD4F3EE89F869C4A4C4ED358943FC508EED0F0728((&V_26), L_138, L_139, NULL);
// ArrayHelpers.InsertAtWithCapacity(ref activeTouches, ref activeTouchCount, insertAt, newTouch);
TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354** L_140 = (&__this->___activeTouches_3);
int32_t* L_141 = (&__this->___activeTouchCount_5);
int32_t L_142 = V_8;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_143 = V_26;
ArrayHelpers_InsertAtWithCapacity_TisTouch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_m96BFF397234C618FAA34CAA72DE6AD4F4113819B(L_140, L_141, L_142, L_143, ((int32_t)10), ArrayHelpers_InsertAtWithCapacity_TisTouch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_m96BFF397234C618FAA34CAA72DE6AD4F4113819B_RuntimeMethod_var);
// currentTouchId = touchState->touchId;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_144 = V_17;
NullCheck(L_144);
int32_t L_145 = L_144->___touchId_1;
V_9 = L_145;
// currentTouchState = newRecordState;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_146 = V_22;
V_10 = L_146;
// if (newTouch.phase != TouchPhase.Stationary)
int32_t L_147;
L_147 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939((&V_26), NULL);
V_36 = (bool)((((int32_t)((((int32_t)L_147) == ((int32_t)5))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_148 = V_36;
if (!L_148)
{
goto IL_03a3;
}
}
{
// haveActiveTouchesNeedingRefreshNextUpdate = true;
__this->___haveActiveTouchesNeedingRefreshNextUpdate_9 = (bool)1;
}
IL_03a3:
{
}
IL_03a4:
{
// for (var n = 0; n < touchRecordCount; ++n)
int32_t L_149 = V_16;
V_16 = ((int32_t)il2cpp_codegen_add(L_149, 1));
}
IL_03aa:
{
// for (var n = 0; n < touchRecordCount; ++n)
int32_t L_150 = V_16;
int32_t L_151 = V_7;
V_37 = (bool)((((int32_t)L_150) < ((int32_t)L_151))? 1 : 0);
bool L_152 = V_37;
if (L_152)
{
goto IL_0103;
}
}
IL_03b9:
{
}
IL_03ba:
{
// for (var i = 0; i < totalFingerCount; ++i)
int32_t L_153 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_153, 1));
}
IL_03c0:
{
// for (var i = 0; i < totalFingerCount; ++i)
int32_t L_154 = V_4;
int32_t L_155 = __this->___totalFingerCount_6;
V_38 = (bool)((((int32_t)L_154) < ((int32_t)L_155))? 1 : 0);
bool L_156 = V_38;
if (L_156)
{
goto IL_0088;
}
}
{
// haveBuiltActiveTouches = true;
__this->___haveBuiltActiveTouches_8 = (bool)1;
}
IL_03da:
{
// }
return;
}
}
IL2CPP_EXTERN_C void FingerAndTouchState_UpdateActiveTouches_m48D632ECA4B568270B458D9CED54AC591FBFBF43_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*>(__this + _offset);
FingerAndTouchState_UpdateActiveTouches_m48D632ECA4B568270B458D9CED54AC591FBFBF43(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch/<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m4C616EE176B7281B6FB8F7ED4B08B1604B780D7A (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6* L_0 = (U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6*)il2cpp_codegen_object_new(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__ctor_mE31C1F868AE383042EB223A7961315337C794275(L_0, NULL);
((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0);
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mE31C1F868AE383042EB223A7961315337C794275 (U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch/<>c::<SaveAndResetState>b__78_0(UnityEngine.InputSystem.EnhancedTouch.Touch/GlobalState&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CSaveAndResetStateU3Eb__78_0_m0868752872E1B31C85DAEB17E4E73889B0C6C8A0 (U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6* __this, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A* ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// (ref GlobalState state) => s_GlobalState = state,
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A* L_0 = ___state0;
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A L_1 = (*(GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A*)L_0);
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___touchscreens_0))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___touchscreens_0))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_Callbacks_1))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerDown_2))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_Callbacks_1))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerMove_3))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_Callbacks_1))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___onFingerUp_4))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___playerState_5))->___fingers_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___playerState_5))->___activeFingers_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___playerState_5))->___activeTouches_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState_2))->___playerState_5))->___activeTouchState_10), (void*)NULL);
#endif
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.Touch/<>c::<SaveAndResetState>b__78_1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CSaveAndResetStateU3Eb__78_1_m92D6BCF9F85D9FEB5BB866AE1502698081D78CF8 (U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6* __this, const RuntimeMethod* method)
{
{
// () => { /* currently nothing to dispose */ });
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.EnhancedTouch.TouchHistory
IL2CPP_EXTERN_C void TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshal_pinvoke(const TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580& unmarshaled, TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_History_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_History' of type 'TouchHistory'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_History_0Exception, NULL);
}
IL2CPP_EXTERN_C void TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshal_pinvoke_back(const TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshaled_pinvoke& marshaled, TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580& unmarshaled)
{
Exception_t* ___m_History_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_History' of type 'TouchHistory'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_History_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.EnhancedTouch.TouchHistory
IL2CPP_EXTERN_C void TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshal_pinvoke_cleanup(TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.EnhancedTouch.TouchHistory
IL2CPP_EXTERN_C void TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshal_com(const TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580& unmarshaled, TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshaled_com& marshaled)
{
Exception_t* ___m_History_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_History' of type 'TouchHistory'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_History_0Exception, NULL);
}
IL2CPP_EXTERN_C void TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshal_com_back(const TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshaled_com& marshaled, TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580& unmarshaled)
{
Exception_t* ___m_History_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_History' of type 'TouchHistory'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_History_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.EnhancedTouch.TouchHistory
IL2CPP_EXTERN_C void TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshal_com_cleanup(TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshaled_com& marshaled)
{
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchHistory::.ctor(UnityEngine.InputSystem.EnhancedTouch.Finger,UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState>,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchHistory__ctor_m3416A30524B233DED1F8C753398436191ED44814 (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___finger0, InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___history1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* G_B2_0 = NULL;
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* G_B1_0 = NULL;
int32_t G_B3_0 = 0;
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* G_B3_1 = NULL;
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* G_B5_0 = NULL;
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* G_B4_0 = NULL;
int32_t G_B6_0 = 0;
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* G_B6_1 = NULL;
{
// m_Finger = finger;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_0 = ___finger0;
__this->___m_Finger_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Finger_1), (void*)L_0);
// m_History = history;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_1 = ___history1;
__this->___m_History_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_History_0), (void*)L_1);
// m_Version = history.version;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_2 = ___history1;
NullCheck(L_2);
uint32_t L_3;
L_3 = InputStateHistory_get_version_m89DDB085F1210A84797C85822792F5FBF73C25F0_inline(L_2, NULL);
__this->___m_Version_4 = L_3;
// m_Count = count >= 0 ? count : m_History.Count;
int32_t L_4 = ___count3;
G_B1_0 = __this;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
G_B2_0 = __this;
goto IL_002e;
}
}
{
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_5 = __this->___m_History_0;
NullCheck(L_5);
int32_t L_6;
L_6 = InputStateHistory_get_Count_m23DF78272A6C97F6C8782A953482772CDF6FFA81_inline(L_5, NULL);
G_B3_0 = L_6;
G_B3_1 = G_B1_0;
goto IL_0030;
}
IL_002e:
{
int32_t L_7 = ___count3;
G_B3_0 = L_7;
G_B3_1 = G_B2_0;
}
IL_0030:
{
G_B3_1->___m_Count_2 = G_B3_0;
// m_StartIndex = startIndex >= 0 ? startIndex : m_History.Count - 1;
int32_t L_8 = ___startIndex2;
G_B4_0 = __this;
if ((((int32_t)L_8) >= ((int32_t)0)))
{
G_B5_0 = __this;
goto IL_0049;
}
}
{
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_9 = __this->___m_History_0;
NullCheck(L_9);
int32_t L_10;
L_10 = InputStateHistory_get_Count_m23DF78272A6C97F6C8782A953482772CDF6FFA81_inline(L_9, NULL);
G_B6_0 = ((int32_t)il2cpp_codegen_subtract(L_10, 1));
G_B6_1 = G_B4_0;
goto IL_004a;
}
IL_0049:
{
int32_t L_11 = ___startIndex2;
G_B6_0 = L_11;
G_B6_1 = G_B5_0;
}
IL_004a:
{
G_B6_1->___m_StartIndex_3 = G_B6_0;
// }
return;
}
}
IL2CPP_EXTERN_C void TouchHistory__ctor_m3416A30524B233DED1F8C753398436191ED44814_AdjustorThunk (RuntimeObject* __this, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___finger0, InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___history1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580*>(__this + _offset);
TouchHistory__ctor_m3416A30524B233DED1F8C753398436191ED44814(_thisAdjusted, ___finger0, ___history1, ___startIndex2, ___count3, method);
}
// System.Collections.Generic.IEnumerator`1<UnityEngine.InputSystem.EnhancedTouch.Touch> UnityEngine.InputSystem.EnhancedTouch.TouchHistory::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TouchHistory_GetEnumerator_mA49607C32F33B1D33F460C0E3882161F18001B7E (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
// return new Enumerator(this);
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_0 = (*(TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580*)__this);
Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* L_1 = (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5*)il2cpp_codegen_object_new(Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5_il2cpp_TypeInfo_var);
NullCheck(L_1);
Enumerator__ctor_m74864CB6B9CA6B01970FD5A8A88A9F68A00C6D72(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
// }
RuntimeObject* L_2 = V_0;
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject* TouchHistory_GetEnumerator_mA49607C32F33B1D33F460C0E3882161F18001B7E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580*>(__this + _offset);
RuntimeObject* _returnValue;
_returnValue = TouchHistory_GetEnumerator_mA49607C32F33B1D33F460C0E3882161F18001B7E(_thisAdjusted, method);
return _returnValue;
}
// System.Collections.IEnumerator UnityEngine.InputSystem.EnhancedTouch.TouchHistory::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TouchHistory_System_Collections_IEnumerable_GetEnumerator_m4337DC86FF76C3ACE3E301937F383D911A8D20C5 (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
// return GetEnumerator();
RuntimeObject* L_0;
L_0 = TouchHistory_GetEnumerator_mA49607C32F33B1D33F460C0E3882161F18001B7E(__this, NULL);
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
// }
RuntimeObject* L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C RuntimeObject* TouchHistory_System_Collections_IEnumerable_GetEnumerator_m4337DC86FF76C3ACE3E301937F383D911A8D20C5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580*>(__this + _offset);
RuntimeObject* _returnValue;
_returnValue = TouchHistory_System_Collections_IEnumerable_GetEnumerator_m4337DC86FF76C3ACE3E301937F383D911A8D20C5(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.TouchHistory::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TouchHistory_get_Count_mDEFAFCC5D44BE56B17E0949448CE3C48E9DC3277 (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method)
{
{
// public int Count => m_Count;
int32_t L_0 = __this->___m_Count_2;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t TouchHistory_get_Count_mDEFAFCC5D44BE56B17E0949448CE3C48E9DC3277_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580*>(__this + _offset);
int32_t _returnValue;
_returnValue = TouchHistory_get_Count_mDEFAFCC5D44BE56B17E0949448CE3C48E9DC3277_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.EnhancedTouch.Touch UnityEngine.InputSystem.EnhancedTouch.TouchHistory::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 TouchHistory_get_Item_m2CF5BFE3F5263F361E7CBFD083E7449DA4F42BBF (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t G_B3_0 = 0;
{
// CheckValid();
TouchHistory_CheckValid_m16A4AC2BB2AA62C738B2A9F916002454F83C2038(__this, NULL);
// if (index < 0 || index >= Count)
int32_t L_0 = ___index0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_001a;
}
}
{
int32_t L_1 = ___index0;
int32_t L_2;
L_2 = TouchHistory_get_Count_mDEFAFCC5D44BE56B17E0949448CE3C48E9DC3277_inline(__this, NULL);
G_B3_0 = ((((int32_t)((((int32_t)L_1) < ((int32_t)L_2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_001b;
}
IL_001a:
{
G_B3_0 = 1;
}
IL_001b:
{
V_0 = (bool)G_B3_0;
bool L_3 = V_0;
if (!L_3)
{
goto IL_0045;
}
}
{
// throw new ArgumentOutOfRangeException(
// $"Index {index} is out of range for history with {Count} entries", nameof(index));
int32_t L_4 = ___index0;
int32_t L_5 = L_4;
RuntimeObject* L_6 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_5);
int32_t L_7;
L_7 = TouchHistory_get_Count_mDEFAFCC5D44BE56B17E0949448CE3C48E9DC3277_inline(__this, NULL);
int32_t L_8 = L_7;
RuntimeObject* L_9 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_8);
String_t* L_10;
L_10 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD408E794AF2B358E256380A4F7BA14299C3D5801)), L_6, L_9, NULL);
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_11 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_11);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_11, L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TouchHistory_get_Item_m2CF5BFE3F5263F361E7CBFD083E7449DA4F42BBF_RuntimeMethod_var)));
}
IL_0045:
{
// return new Touch(m_Finger, m_History[m_StartIndex - index]);
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_12 = __this->___m_Finger_1;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_13 = __this->___m_History_0;
int32_t L_14 = __this->___m_StartIndex_3;
int32_t L_15 = ___index0;
NullCheck(L_13);
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_16;
L_16 = InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888(L_13, ((int32_t)il2cpp_codegen_subtract(L_14, L_15)), InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888_RuntimeMethod_var);
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_17;
memset((&L_17), 0, sizeof(L_17));
Touch__ctor_mD4F3EE89F869C4A4C4ED358943FC508EED0F0728((&L_17), L_12, L_16, /*hidden argument*/NULL);
V_1 = L_17;
goto IL_0066;
}
IL_0066:
{
// }
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_18 = V_1;
return L_18;
}
}
IL2CPP_EXTERN_C Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 TouchHistory_get_Item_m2CF5BFE3F5263F361E7CBFD083E7449DA4F42BBF_AdjustorThunk (RuntimeObject* __this, int32_t ___index0, const RuntimeMethod* method)
{
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580*>(__this + _offset);
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 _returnValue;
_returnValue = TouchHistory_get_Item_m2CF5BFE3F5263F361E7CBFD083E7449DA4F42BBF(_thisAdjusted, ___index0, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchHistory::CheckValid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchHistory_CheckValid_m16A4AC2BB2AA62C738B2A9F916002454F83C2038 (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
int32_t G_B3_0 = 0;
{
// if (m_Finger == null || m_History == null)
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_0 = __this->___m_Finger_1;
if (!L_0)
{
goto IL_0014;
}
}
{
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_1 = __this->___m_History_0;
G_B3_0 = ((((RuntimeObject*)(InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
goto IL_0015;
}
IL_0014:
{
G_B3_0 = 1;
}
IL_0015:
{
V_0 = (bool)G_B3_0;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0024;
}
}
{
// throw new InvalidOperationException("Touch history not initialized");
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_3);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0654CF7A7652A61085CCC7B975A9FB4D7C53DD46)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TouchHistory_CheckValid_m16A4AC2BB2AA62C738B2A9F916002454F83C2038_RuntimeMethod_var)));
}
IL_0024:
{
// if (m_History.version != m_Version)
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_4 = __this->___m_History_0;
NullCheck(L_4);
uint32_t L_5;
L_5 = InputStateHistory_get_version_m89DDB085F1210A84797C85822792F5FBF73C25F0_inline(L_4, NULL);
uint32_t L_6 = __this->___m_Version_4;
V_1 = (bool)((((int32_t)((((int32_t)L_5) == ((int32_t)L_6))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_7 = V_1;
if (!L_7)
{
goto IL_0049;
}
}
{
// throw new InvalidOperationException(
// "Touch history is no longer valid; the recorded history has been changed");
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_8 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_8);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral80C0A09DC56E67593A40EC47DEE2A4827DB0BC33)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TouchHistory_CheckValid_m16A4AC2BB2AA62C738B2A9F916002454F83C2038_RuntimeMethod_var)));
}
IL_0049:
{
// }
return;
}
}
IL2CPP_EXTERN_C void TouchHistory_CheckValid_m16A4AC2BB2AA62C738B2A9F916002454F83C2038_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580*>(__this + _offset);
TouchHistory_CheckValid_m16A4AC2BB2AA62C738B2A9F916002454F83C2038(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchHistory/Enumerator::.ctor(UnityEngine.InputSystem.EnhancedTouch.TouchHistory)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m74864CB6B9CA6B01970FD5A8A88A9F68A00C6D72 (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* __this, TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 ___owner0, const RuntimeMethod* method)
{
{
// internal Enumerator(TouchHistory owner)
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
// m_Owner = owner;
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_0 = ___owner0;
__this->___m_Owner_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_Owner_0))->___m_History_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_Owner_0))->___m_Finger_1), (void*)NULL);
#endif
// m_Index = -1;
__this->___m_Index_1 = (-1);
// }
return;
}
}
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.TouchHistory/Enumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1E2B8AF0617D0C2729AEDE7986BFCF3BFA4EB74E (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* __this, const RuntimeMethod* method)
{
bool V_0 = false;
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 V_1;
memset((&V_1), 0, sizeof(V_1));
bool V_2 = false;
{
// if (m_Index >= m_Owner.Count - 1)
int32_t L_0 = __this->___m_Index_1;
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_1 = __this->___m_Owner_0;
V_1 = L_1;
int32_t L_2;
L_2 = TouchHistory_get_Count_mDEFAFCC5D44BE56B17E0949448CE3C48E9DC3277_inline((&V_1), NULL);
V_0 = (bool)((((int32_t)((((int32_t)L_0) < ((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, 1))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_3 = V_0;
if (!L_3)
{
goto IL_0024;
}
}
{
// return false;
V_2 = (bool)0;
goto IL_0036;
}
IL_0024:
{
// ++m_Index;
int32_t L_4 = __this->___m_Index_1;
__this->___m_Index_1 = ((int32_t)il2cpp_codegen_add(L_4, 1));
// return true;
V_2 = (bool)1;
goto IL_0036;
}
IL_0036:
{
// }
bool L_5 = V_2;
return L_5;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchHistory/Enumerator::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_mBC033BF242FA3EE5387F2E07ADA1849151824845 (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* __this, const RuntimeMethod* method)
{
{
// m_Index = -1;
__this->___m_Index_1 = (-1);
// }
return;
}
}
// UnityEngine.InputSystem.EnhancedTouch.Touch UnityEngine.InputSystem.EnhancedTouch.TouchHistory/Enumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 Enumerator_get_Current_m063D55945EB78459BBDCE1AF96021395F5E873A6 (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* __this, const RuntimeMethod* method)
{
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public Touch Current => m_Owner[m_Index];
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_0 = __this->___m_Owner_0;
V_0 = L_0;
int32_t L_1 = __this->___m_Index_1;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_2;
L_2 = TouchHistory_get_Item_m2CF5BFE3F5263F361E7CBFD083E7449DA4F42BBF((&V_0), L_1, NULL);
return L_2;
}
}
// System.Object UnityEngine.InputSystem.EnhancedTouch.TouchHistory/Enumerator::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_m46251565F2D8EB1497DDDA07F8BC825A9BAA411F (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// object IEnumerator.Current => Current;
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_0;
L_0 = Enumerator_get_Current_m063D55945EB78459BBDCE1AF96021395F5E873A6(__this, NULL);
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_1 = L_0;
RuntimeObject* L_2 = Box(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var, &L_1);
return L_2;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchHistory/Enumerator::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m394A020A3119E7C53B7A3DDB7E6EAD231A26CC4A (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* __this, const RuntimeMethod* method)
{
{
// }
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Touchscreen UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::get_simulatedTouchscreen()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, const RuntimeMethod* method)
{
{
// public Touchscreen simulatedTouchscreen { get; private set; }
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = __this->___U3CsimulatedTouchscreenU3Ek__BackingField_4;
return L_0;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::set_simulatedTouchscreen(UnityEngine.InputSystem.Touchscreen)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_set_simulatedTouchscreen_m59218EBAFC13C1FF0019F59F12378749620C9EEF (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___value0, const RuntimeMethod* method)
{
{
// public Touchscreen simulatedTouchscreen { get; private set; }
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = ___value0;
__this->___U3CsimulatedTouchscreenU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CsimulatedTouchscreenU3Ek__BackingField_4), (void*)L_0);
return;
}
}
// UnityEngine.InputSystem.EnhancedTouch.TouchSimulation UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::get_instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* TouchSimulation_get_instance_m709E6C7D760D03ABF44C3CA7AB6CD38B70145C85 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static TouchSimulation instance => s_Instance;
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_0 = ((TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields*)il2cpp_codegen_static_fields_for(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var))->___s_Instance_13;
return L_0;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::Enable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_Enable_mFED0119E7B41A3DB16D095E89D389F50827EAFCD (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_AddComponent_TisTouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_m3332B854D47D58542E9A5D19442054BDFC92FD85_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_1 = NULL;
{
// if (instance == null)
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_0;
L_0 = TouchSimulation_get_instance_m709E6C7D760D03ABF44C3CA7AB6CD38B70145C85_inline(NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0045;
}
}
{
// var hiddenGO = new GameObject();
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3 = (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)il2cpp_codegen_object_new(GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
NullCheck(L_3);
GameObject__ctor_m7D0340DE160786E6EFA8DABD39EC3B694DA30AAD(L_3, NULL);
V_1 = L_3;
// hiddenGO.SetActive(false);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4 = V_1;
NullCheck(L_4);
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_4, (bool)0, NULL);
// hiddenGO.hideFlags = HideFlags.HideAndDontSave;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_5 = V_1;
NullCheck(L_5);
Object_set_hideFlags_mACB8BFC903FB3B01BBD427753E791BF28B5E33D4(L_5, ((int32_t)61), NULL);
// s_Instance = hiddenGO.AddComponent<TouchSimulation>();
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_6 = V_1;
NullCheck(L_6);
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_7;
L_7 = GameObject_AddComponent_TisTouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_m3332B854D47D58542E9A5D19442054BDFC92FD85(L_6, GameObject_AddComponent_TisTouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_m3332B854D47D58542E9A5D19442054BDFC92FD85_RuntimeMethod_var);
((TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields*)il2cpp_codegen_static_fields_for(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var))->___s_Instance_13 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&((TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields*)il2cpp_codegen_static_fields_for(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var))->___s_Instance_13), (void*)L_7);
// instance.gameObject.SetActive(true);
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_8;
L_8 = TouchSimulation_get_instance_m709E6C7D760D03ABF44C3CA7AB6CD38B70145C85_inline(NULL);
NullCheck(L_8);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_9;
L_9 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_8, NULL);
NullCheck(L_9);
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_9, (bool)1, NULL);
}
IL_0045:
{
// instance.enabled = true;
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_10;
L_10 = TouchSimulation_get_instance_m709E6C7D760D03ABF44C3CA7AB6CD38B70145C85_inline(NULL);
NullCheck(L_10);
Behaviour_set_enabled_mF1DCFE60EB09E0529FE9476CA804A3AA2D72B16A(L_10, (bool)1, NULL);
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::Disable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_Disable_m66EC1AE8ECDFFBDF6E929D164A1A1C58E3307557 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// if (instance != null)
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_0;
L_0 = TouchSimulation_get_instance_m709E6C7D760D03ABF44C3CA7AB6CD38B70145C85_inline(NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_001c;
}
}
{
// instance.enabled = false;
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_3;
L_3 = TouchSimulation_get_instance_m709E6C7D760D03ABF44C3CA7AB6CD38B70145C85_inline(NULL);
NullCheck(L_3);
Behaviour_set_enabled_mF1DCFE60EB09E0529FE9476CA804A3AA2D72B16A(L_3, (bool)0, NULL);
}
IL_001c:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::Destroy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_Destroy_mC01430A838459C73078EDBA680890310F4A902D4 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// Disable();
TouchSimulation_Disable_m66EC1AE8ECDFFBDF6E929D164A1A1C58E3307557(NULL);
// if (s_Instance != null)
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_0 = ((TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields*)il2cpp_codegen_static_fields_for(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var))->___s_Instance_13;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_002e;
}
}
{
// Destroy(s_Instance.gameObject);
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_3 = ((TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields*)il2cpp_codegen_static_fields_for(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var))->___s_Instance_13;
NullCheck(L_3);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4;
L_4 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_3, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
Object_Destroy_mFCDAE6333522488F60597AF019EA90BB1207A5AA(L_4, NULL);
// s_Instance = null;
((TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields*)il2cpp_codegen_static_fields_for(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var))->___s_Instance_13 = (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&((TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields*)il2cpp_codegen_static_fields_for(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var))->___s_Instance_13), (void*)(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0*)NULL);
}
IL_002e:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::AddPointer(UnityEngine.InputSystem.Pointer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_AddPointer_mAF311DF959277CE67860C36E4650A3EE734194C1 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* ___pointer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_AppendWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m3E7EA1BC4C9A50C286CED7589BFB84378410F71E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_AppendWithCapacity_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m68E6FD9C5D608130BCBB593660420B8C744A7459_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_ContainsReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m8EB37E781A7A5D954305A6264CC1CBC77CFE01E6_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
bool V_2 = false;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_3;
memset((&V_3), 0, sizeof(V_3));
{
// if (pointer == null)
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_0 = ___pointer0;
V_1 = (bool)((((RuntimeObject*)(Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_0014;
}
}
{
// throw new ArgumentNullException(nameof(pointer));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0D74755D51876350D4B4382E014E2E93AD3D3B73)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TouchSimulation_AddPointer_mAF311DF959277CE67860C36E4650A3EE734194C1_RuntimeMethod_var)));
}
IL_0014:
{
// if (m_Pointers.ContainsReference(m_NumPointers, pointer))
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* L_3 = __this->___m_Pointers_6;
int32_t L_4 = __this->___m_NumPointers_5;
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_5 = ___pointer0;
bool L_6;
L_6 = ArrayHelpers_ContainsReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m8EB37E781A7A5D954305A6264CC1CBC77CFE01E6(L_3, L_4, L_5, ArrayHelpers_ContainsReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m8EB37E781A7A5D954305A6264CC1CBC77CFE01E6_RuntimeMethod_var);
V_2 = L_6;
bool L_7 = V_2;
if (!L_7)
{
goto IL_002c;
}
}
{
// return;
goto IL_0069;
}
IL_002c:
{
// var numPointers = m_NumPointers;
int32_t L_8 = __this->___m_NumPointers_5;
V_0 = L_8;
// ArrayHelpers.AppendWithCapacity(ref m_Pointers, ref m_NumPointers, pointer);
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5** L_9 = (&__this->___m_Pointers_6);
int32_t* L_10 = (&__this->___m_NumPointers_5);
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_11 = ___pointer0;
int32_t L_12;
L_12 = ArrayHelpers_AppendWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m3E7EA1BC4C9A50C286CED7589BFB84378410F71E(L_9, L_10, L_11, ((int32_t)10), ArrayHelpers_AppendWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m3E7EA1BC4C9A50C286CED7589BFB84378410F71E_RuntimeMethod_var);
// ArrayHelpers.AppendWithCapacity(ref m_CurrentPositions, ref numPointers, default);
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA** L_13 = (&__this->___m_CurrentPositions_7);
il2cpp_codegen_initobj((&V_3), sizeof(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7));
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_14 = V_3;
int32_t L_15;
L_15 = ArrayHelpers_AppendWithCapacity_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m68E6FD9C5D608130BCBB593660420B8C744A7459(L_13, (&V_0), L_14, ((int32_t)10), ArrayHelpers_AppendWithCapacity_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m68E6FD9C5D608130BCBB593660420B8C744A7459_RuntimeMethod_var);
// InputSystem.DisableDevice(pointer, keepSendingEvents: true);
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_16 = ___pointer0;
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSystem_DisableDevice_mCF493689C4A216291F0D9CD387A30733BF266167(L_16, (bool)1, NULL);
}
IL_0069:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::RemovePointer(UnityEngine.InputSystem.Pointer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_RemovePointer_m787BDB97748ADD4B28C3AFB85304B6A938889B42 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* ___pointer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_EraseAtWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m2179F91C32ADB02EDFAD572124793CE03CD33447_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_EraseAtWithCapacity_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m89DBB1BBEAA8E9BDFB918291668D52A0FB6B971E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_mA905115B7F581BBE35AF535DCE9A0AC2F53F5EF5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
bool V_2 = false;
bool V_3 = false;
int32_t V_4 = 0;
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* V_5 = NULL;
bool V_6 = false;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_7;
memset((&V_7), 0, sizeof(V_7));
bool V_8 = false;
bool V_9 = false;
int32_t G_B8_0 = 0;
{
// if (pointer == null)
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_0 = ___pointer0;
V_2 = (bool)((((RuntimeObject*)(Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_2;
if (!L_1)
{
goto IL_0014;
}
}
{
// throw new ArgumentNullException(nameof(pointer));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0D74755D51876350D4B4382E014E2E93AD3D3B73)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TouchSimulation_RemovePointer_m787BDB97748ADD4B28C3AFB85304B6A938889B42_RuntimeMethod_var)));
}
IL_0014:
{
// var pointerIndex = m_Pointers.IndexOfReference(pointer, m_NumPointers);
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* L_3 = __this->___m_Pointers_6;
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_4 = ___pointer0;
int32_t L_5 = __this->___m_NumPointers_5;
int32_t L_6;
L_6 = ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_mA905115B7F581BBE35AF535DCE9A0AC2F53F5EF5(L_3, L_4, L_5, ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_mA905115B7F581BBE35AF535DCE9A0AC2F53F5EF5_RuntimeMethod_var);
V_0 = L_6;
// if (pointerIndex == -1)
int32_t L_7 = V_0;
V_3 = (bool)((((int32_t)L_7) == ((int32_t)(-1)))? 1 : 0);
bool L_8 = V_3;
if (!L_8)
{
goto IL_0034;
}
}
{
// return;
goto IL_00cb;
}
IL_0034:
{
// for (var i = 0; i < m_Touches.Length; ++i)
V_4 = 0;
goto IL_007d;
}
IL_0039:
{
// var button = m_Touches[i];
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_9 = __this->___m_Touches_8;
int32_t L_10 = V_4;
NullCheck(L_9);
int32_t L_11 = L_10;
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
V_5 = L_12;
// if (button != null && button.device != pointer)
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_13 = V_5;
if (!L_13)
{
goto IL_0058;
}
}
{
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_14 = V_5;
NullCheck(L_14);
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_15;
L_15 = InputControl_get_device_mAB3E013F566CF3407B8C36BC781EBD751DFAB324_inline(L_14, NULL);
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_16 = ___pointer0;
G_B8_0 = ((((int32_t)((((RuntimeObject*)(InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)L_15) == ((RuntimeObject*)(Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A*)L_16))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0059;
}
IL_0058:
{
G_B8_0 = 0;
}
IL_0059:
{
V_6 = (bool)G_B8_0;
bool L_17 = V_6;
if (!L_17)
{
goto IL_0061;
}
}
{
// continue;
goto IL_0077;
}
IL_0061:
{
// UpdateTouch(i, pointerIndex, TouchPhase.Canceled);
int32_t L_18 = V_4;
int32_t L_19 = V_0;
il2cpp_codegen_initobj((&V_7), sizeof(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0));
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_20 = V_7;
TouchSimulation_UpdateTouch_mFC046EBC56223C3DAED35D7BB52C39C1B11450CE(__this, L_18, L_19, 4, L_20, NULL);
}
IL_0077:
{
// for (var i = 0; i < m_Touches.Length; ++i)
int32_t L_21 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_21, 1));
}
IL_007d:
{
// for (var i = 0; i < m_Touches.Length; ++i)
int32_t L_22 = V_4;
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_23 = __this->___m_Touches_8;
NullCheck(L_23);
V_8 = (bool)((((int32_t)L_22) < ((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length))))? 1 : 0);
bool L_24 = V_8;
if (L_24)
{
goto IL_0039;
}
}
{
// var numPointers = m_NumPointers;
int32_t L_25 = __this->___m_NumPointers_5;
V_1 = L_25;
// ArrayHelpers.EraseAtWithCapacity(m_Pointers, ref m_NumPointers, pointerIndex);
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* L_26 = __this->___m_Pointers_6;
int32_t* L_27 = (&__this->___m_NumPointers_5);
int32_t L_28 = V_0;
ArrayHelpers_EraseAtWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m2179F91C32ADB02EDFAD572124793CE03CD33447(L_26, L_27, L_28, ArrayHelpers_EraseAtWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m2179F91C32ADB02EDFAD572124793CE03CD33447_RuntimeMethod_var);
// ArrayHelpers.EraseAtWithCapacity(m_CurrentPositions, ref numPointers, pointerIndex);
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* L_29 = __this->___m_CurrentPositions_7;
int32_t L_30 = V_0;
ArrayHelpers_EraseAtWithCapacity_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m89DBB1BBEAA8E9BDFB918291668D52A0FB6B971E(L_29, (&V_1), L_30, ArrayHelpers_EraseAtWithCapacity_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m89DBB1BBEAA8E9BDFB918291668D52A0FB6B971E_RuntimeMethod_var);
// if (pointer.added)
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_31 = ___pointer0;
NullCheck(L_31);
bool L_32;
L_32 = InputDevice_get_added_m27CF78B0777E142AAF9139ABFD88F67BBAABA15C(L_31, NULL);
V_9 = L_32;
bool L_33 = V_9;
if (!L_33)
{
goto IL_00cb;
}
}
{
// InputSystem.EnableDevice(pointer);
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_34 = ___pointer0;
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSystem_EnableDevice_mCC281C30B26FC810ED36637A7A0040D2842350F3(L_34, NULL);
}
IL_00cb:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::OnEvent(UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_OnEvent_m1D309DAE95183E20C72075AE2B502EC6C0066414 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___eventPtr0, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m7F202185A312FF5654544DCE9CF8EBB5CB163760_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_m80E0602C0A8BF5D7EFA613CFEA7AF5EED6492EB0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisInputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B_m7E90E70DE1BE6505096E9B1FE7E8E4B72C0EAB61_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControl_1_ReadValueFromState_m1748B48FE53C7B329B8138F43857E231AC6FC24E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControl_1_ReadValueFromState_m90076063D4500290705DBD1D85DA8743D4652C37_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2F93CE416D1DF2E7B305D3D44798A355740F8407);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_1;
memset((&V_1), 0, sizeof(V_1));
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* V_2 = NULL;
void* V_3 = NULL;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
int32_t V_7 = 0;
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* V_8 = NULL;
void* V_9 = NULL;
bool V_10 = false;
bool V_11 = false;
bool V_12 = false;
bool V_13 = false;
bool V_14 = false;
InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB V_15;
memset((&V_15), 0, sizeof(V_15));
InputEventControlCollection_t63B58F806FC82F1D8E18E88557E8FCC26388F3BE V_16;
memset((&V_16), 0, sizeof(V_16));
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* V_17 = NULL;
void* V_18 = NULL;
float V_19 = 0.0f;
int32_t V_20 = 0;
bool V_21 = false;
bool V_22 = false;
bool V_23 = false;
bool V_24 = false;
int32_t G_B5_0 = 0;
int32_t G_B13_0 = 0;
{
// var pointerIndex = m_Pointers.IndexOfReference(device, m_NumPointers);
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* L_0 = __this->___m_Pointers_6;
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_1 = ___device1;
int32_t L_2 = __this->___m_NumPointers_5;
int32_t L_3;
L_3 = ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisInputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B_m7E90E70DE1BE6505096E9B1FE7E8E4B72C0EAB61(L_0, L_1, L_2, ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisInputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B_m7E90E70DE1BE6505096E9B1FE7E8E4B72C0EAB61_RuntimeMethod_var);
V_0 = L_3;
// if (pointerIndex < 0)
int32_t L_4 = V_0;
V_4 = (bool)((((int32_t)L_4) < ((int32_t)0))? 1 : 0);
bool L_5 = V_4;
if (!L_5)
{
goto IL_0023;
}
}
{
// return;
goto IL_0252;
}
IL_0023:
{
// var eventType = eventPtr.type;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_6;
L_6 = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69((&___eventPtr0), NULL);
V_1 = L_6;
// if (eventType != StateEvent.Type && eventType != DeltaStateEvent.Type)
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_7 = V_1;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_8;
L_8 = FourCC_op_Implicit_mE034DF02D6986EFBFA80055EC94936D958CBEF66(((int32_t)1398030676), NULL);
bool L_9;
L_9 = FourCC_op_Inequality_mD7122B2F4332BFE2AA18A50FC62C071E8CB7FDB2(L_7, L_8, NULL);
if (!L_9)
{
goto IL_004f;
}
}
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_10 = V_1;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_11;
L_11 = FourCC_op_Implicit_mE034DF02D6986EFBFA80055EC94936D958CBEF66(((int32_t)1145852993), NULL);
bool L_12;
L_12 = FourCC_op_Inequality_mD7122B2F4332BFE2AA18A50FC62C071E8CB7FDB2(L_10, L_11, NULL);
G_B5_0 = ((int32_t)(L_12));
goto IL_0050;
}
IL_004f:
{
G_B5_0 = 0;
}
IL_0050:
{
V_5 = (bool)G_B5_0;
bool L_13 = V_5;
if (!L_13)
{
goto IL_005b;
}
}
{
// return;
goto IL_0252;
}
IL_005b:
{
// var positionControl = m_Pointers[pointerIndex].position;
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* L_14 = __this->___m_Pointers_6;
int32_t L_15 = V_0;
NullCheck(L_14);
int32_t L_16 = L_15;
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
NullCheck(L_17);
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* L_18;
L_18 = Pointer_get_position_m4286004169788483EEDA6AF833CEFDB04FEDF3D8_inline(L_17, NULL);
V_2 = L_18;
// var positionStatePtr = positionControl.GetStatePtrFromStateEventUnchecked(eventPtr, eventType);
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* L_19 = V_2;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_20 = ___eventPtr0;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_21 = V_1;
void* L_22;
L_22 = InputControlExtensions_GetStatePtrFromStateEventUnchecked_m55CB68F641C5CA778AAEC813075F7907013C31C6(L_19, L_20, L_21, NULL);
V_3 = L_22;
// if (positionStatePtr != null)
void* L_23 = V_3;
V_6 = (bool)((((int32_t)((((intptr_t)L_23) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_24 = V_6;
if (!L_24)
{
goto IL_0093;
}
}
{
// m_CurrentPositions[pointerIndex] = positionControl.ReadValueFromState(positionStatePtr);
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* L_25 = __this->___m_CurrentPositions_7;
int32_t L_26 = V_0;
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* L_27 = V_2;
void* L_28 = V_3;
NullCheck(L_27);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_29;
L_29 = InputControl_1_ReadValueFromState_m90076063D4500290705DBD1D85DA8743D4652C37(L_27, L_28, InputControl_1_ReadValueFromState_m90076063D4500290705DBD1D85DA8743D4652C37_RuntimeMethod_var);
NullCheck(L_25);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7)L_29);
}
IL_0093:
{
// for (var i = 0; i < m_Touches.Length; ++i)
V_7 = 0;
goto IL_0127;
}
IL_009b:
{
// var button = m_Touches[i];
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_30 = __this->___m_Touches_8;
int32_t L_31 = V_7;
NullCheck(L_30);
int32_t L_32 = L_31;
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
V_8 = L_33;
// if (button == null || button.device != device)
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_34 = V_8;
if (!L_34)
{
goto IL_00ba;
}
}
{
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_35 = V_8;
NullCheck(L_35);
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_36;
L_36 = InputControl_get_device_mAB3E013F566CF3407B8C36BC781EBD751DFAB324_inline(L_35, NULL);
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_37 = ___device1;
G_B13_0 = ((((int32_t)((((RuntimeObject*)(InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)L_36) == ((RuntimeObject*)(InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)L_37))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_00bb;
}
IL_00ba:
{
G_B13_0 = 1;
}
IL_00bb:
{
V_10 = (bool)G_B13_0;
bool L_38 = V_10;
if (!L_38)
{
goto IL_00c3;
}
}
{
// continue;
goto IL_0121;
}
IL_00c3:
{
// var buttonStatePtr = button.GetStatePtrFromStateEventUnchecked(eventPtr, eventType);
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_39 = V_8;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_40 = ___eventPtr0;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_41 = V_1;
void* L_42;
L_42 = InputControlExtensions_GetStatePtrFromStateEventUnchecked_m55CB68F641C5CA778AAEC813075F7907013C31C6(L_39, L_40, L_41, NULL);
V_9 = L_42;
// if (buttonStatePtr == null)
void* L_43 = V_9;
V_11 = (bool)((((intptr_t)L_43) == ((intptr_t)((uintptr_t)0)))? 1 : 0);
bool L_44 = V_11;
if (!L_44)
{
goto IL_00f8;
}
}
{
// if (positionStatePtr != null)
void* L_45 = V_3;
V_12 = (bool)((((int32_t)((((intptr_t)L_45) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_46 = V_12;
if (!L_46)
{
goto IL_00f5;
}
}
{
// UpdateTouch(i, pointerIndex, TouchPhase.Moved, eventPtr);
int32_t L_47 = V_7;
int32_t L_48 = V_0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_49 = ___eventPtr0;
TouchSimulation_UpdateTouch_mFC046EBC56223C3DAED35D7BB52C39C1B11450CE(__this, L_47, L_48, 2, L_49, NULL);
}
IL_00f5:
{
goto IL_0120;
}
IL_00f8:
{
// else if (button.ReadValueFromState(buttonStatePtr) < (ButtonControl.s_GlobalDefaultButtonPressPoint * ButtonControl.s_GlobalDefaultButtonReleaseThreshold))
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_50 = V_8;
void* L_51 = V_9;
NullCheck(L_50);
float L_52;
L_52 = InputControl_1_ReadValueFromState_m1748B48FE53C7B329B8138F43857E231AC6FC24E(L_50, L_51, InputControl_1_ReadValueFromState_m1748B48FE53C7B329B8138F43857E231AC6FC24E_RuntimeMethod_var);
float L_53 = ((ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_StaticFields*)il2cpp_codegen_static_fields_for(ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_il2cpp_TypeInfo_var))->___s_GlobalDefaultButtonPressPoint_34;
float L_54 = ((ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_StaticFields*)il2cpp_codegen_static_fields_for(ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_il2cpp_TypeInfo_var))->___s_GlobalDefaultButtonReleaseThreshold_35;
V_13 = (bool)((((float)L_52) < ((float)((float)il2cpp_codegen_multiply(L_53, L_54))))? 1 : 0);
bool L_55 = V_13;
if (!L_55)
{
goto IL_0120;
}
}
{
// UpdateTouch(i, pointerIndex, TouchPhase.Ended, eventPtr);
int32_t L_56 = V_7;
int32_t L_57 = V_0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_58 = ___eventPtr0;
TouchSimulation_UpdateTouch_mFC046EBC56223C3DAED35D7BB52C39C1B11450CE(__this, L_56, L_57, 3, L_58, NULL);
}
IL_0120:
{
}
IL_0121:
{
// for (var i = 0; i < m_Touches.Length; ++i)
int32_t L_59 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add(L_59, 1));
}
IL_0127:
{
// for (var i = 0; i < m_Touches.Length; ++i)
int32_t L_60 = V_7;
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_61 = __this->___m_Touches_8;
NullCheck(L_61);
V_14 = (bool)((((int32_t)L_60) < ((int32_t)((int32_t)(((RuntimeArray*)L_61)->max_length))))? 1 : 0);
bool L_62 = V_14;
if (L_62)
{
goto IL_009b;
}
}
{
// foreach (var control in eventPtr.EnumerateControls(InputControlExtensions.Enumerate.IgnoreControlsInDefaultState, device))
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_63 = ___eventPtr0;
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_64 = ___device1;
InputEventControlCollection_t63B58F806FC82F1D8E18E88557E8FCC26388F3BE L_65;
L_65 = InputControlExtensions_EnumerateControls_m50F1E0C984607480089BECD072A12DB0F3C858E8(L_63, 1, L_64, (0.0f), NULL);
V_16 = L_65;
InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB L_66;
L_66 = InputEventControlCollection_GetEnumerator_m04011F47500AE715F1268E93152514FBE4209869((&V_16), NULL);
V_15 = L_66;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_023a:
{// begin finally (depth: 1)
InputEventControlEnumerator_Dispose_mE7168656062DFF53F7C09478087ADAA636EA2FAB((&V_15), NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_022c_1;
}
IL_015a_1:
{
// foreach (var control in eventPtr.EnumerateControls(InputControlExtensions.Enumerate.IgnoreControlsInDefaultState, device))
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_67;
L_67 = InputEventControlEnumerator_get_Current_mD0540A0B5BE8EC847B80D28B66BA8389A1AF17BB_inline((&V_15), NULL);
V_17 = L_67;
// if (!control.isButton)
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_68 = V_17;
NullCheck(L_68);
bool L_69;
L_69 = InputControl_get_isButton_m4634F4F40450AA969DA851B73E2A2226239F3BEF(L_68, NULL);
V_21 = (bool)((((int32_t)L_69) == ((int32_t)0))? 1 : 0);
bool L_70 = V_21;
if (!L_70)
{
goto IL_0179_1;
}
}
{
// continue;
goto IL_022c_1;
}
IL_0179_1:
{
// var buttonStatePtr = control.GetStatePtrFromStateEventUnchecked(eventPtr, eventType);
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_71 = V_17;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_72 = ___eventPtr0;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_73 = V_1;
void* L_74;
L_74 = InputControlExtensions_GetStatePtrFromStateEventUnchecked_m55CB68F641C5CA778AAEC813075F7907013C31C6(L_71, L_72, L_73, NULL);
V_18 = L_74;
// Debug.Assert(buttonStatePtr != null, "Button returned from EnumerateControls() must be found in event");
void* L_75 = V_18;
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806((bool)((((int32_t)((((intptr_t)L_75) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0), _stringLiteral2F93CE416D1DF2E7B305D3D44798A355740F8407, NULL);
// var value = 0f;
V_19 = (0.0f);
// control.ReadValueFromStateIntoBuffer(buttonStatePtr, UnsafeUtility.AddressOf(ref value), 4);
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_76 = V_17;
void* L_77 = V_18;
void* L_78;
L_78 = il2cpp_codegen_unsafe_cast((&V_19));
NullCheck(L_76);
VirtualActionInvoker3< void*, void*, int32_t >::Invoke(9 /* System.Void UnityEngine.InputSystem.InputControl::ReadValueFromStateIntoBuffer(System.Void*,System.Void*,System.Int32) */, L_76, L_77, L_78, 4);
// if (value <= ButtonControl.s_GlobalDefaultButtonPressPoint)
float L_79 = V_19;
float L_80 = ((ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_StaticFields*)il2cpp_codegen_static_fields_for(ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_il2cpp_TypeInfo_var))->___s_GlobalDefaultButtonPressPoint_34;
V_22 = (bool)((((int32_t)((!(((float)L_79) <= ((float)L_80)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_81 = V_22;
if (!L_81)
{
goto IL_01c5_1;
}
}
{
// continue; // Not in default state but also not pressed.
goto IL_022c_1;
}
IL_01c5_1:
{
// var touchIndex = m_Touches.IndexOfReference(control);
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_82 = __this->___m_Touches_8;
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_83 = V_17;
int32_t L_84;
L_84 = ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_m80E0602C0A8BF5D7EFA613CFEA7AF5EED6492EB0(L_82, L_83, (-1), ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_m80E0602C0A8BF5D7EFA613CFEA7AF5EED6492EB0_RuntimeMethod_var);
V_20 = L_84;
// if (touchIndex < 0)
int32_t L_85 = V_20;
V_23 = (bool)((((int32_t)L_85) < ((int32_t)0))? 1 : 0);
bool L_86 = V_23;
if (!L_86)
{
goto IL_021d_1;
}
}
{
// touchIndex = m_Touches.IndexOfReference((ButtonControl)null);
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_87 = __this->___m_Touches_8;
int32_t L_88;
L_88 = ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m7F202185A312FF5654544DCE9CF8EBB5CB163760(L_87, (ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF*)NULL, (-1), ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m7F202185A312FF5654544DCE9CF8EBB5CB163760_RuntimeMethod_var);
V_20 = L_88;
// m_Touches[touchIndex] = (ButtonControl)control;
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_89 = __this->___m_Touches_8;
int32_t L_90 = V_20;
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_91 = V_17;
NullCheck(L_89);
ArrayElementTypeCheck (L_89, ((ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF*)CastclassClass((RuntimeObject*)L_91, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_il2cpp_TypeInfo_var)));
(L_89)->SetAt(static_cast<il2cpp_array_size_t>(L_90), (ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF*)((ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF*)CastclassClass((RuntimeObject*)L_91, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_il2cpp_TypeInfo_var)));
// if (touchIndex >= 0) // If negative, we're at max touch count and can't add more.
int32_t L_92 = V_20;
V_24 = (bool)((((int32_t)((((int32_t)L_92) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_93 = V_24;
if (!L_93)
{
goto IL_021a_1;
}
}
{
// UpdateTouch(touchIndex, pointerIndex, TouchPhase.Began, eventPtr);
int32_t L_94 = V_20;
int32_t L_95 = V_0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_96 = ___eventPtr0;
TouchSimulation_UpdateTouch_mFC046EBC56223C3DAED35D7BB52C39C1B11450CE(__this, L_94, L_95, 1, L_96, NULL);
}
IL_021a_1:
{
goto IL_022b_1;
}
IL_021d_1:
{
// UpdateTouch(touchIndex, pointerIndex, TouchPhase.Moved, eventPtr);
int32_t L_97 = V_20;
int32_t L_98 = V_0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_99 = ___eventPtr0;
TouchSimulation_UpdateTouch_mFC046EBC56223C3DAED35D7BB52C39C1B11450CE(__this, L_97, L_98, 2, L_99, NULL);
}
IL_022b_1:
{
}
IL_022c_1:
{
// foreach (var control in eventPtr.EnumerateControls(InputControlExtensions.Enumerate.IgnoreControlsInDefaultState, device))
bool L_100;
L_100 = InputEventControlEnumerator_MoveNext_m0A9182DFD78818A01CC3B038519B8B9ACCC55107((&V_15), NULL);
if (L_100)
{
goto IL_015a_1;
}
}
{
goto IL_0249;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0249:
{
// eventPtr.handled = true;
InputEventPtr_set_handled_m855A75D4B98470B0A814FB8627608595FC9E9EF0((&___eventPtr0), (bool)1, NULL);
}
IL_0252:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::OnDeviceChange(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_OnDeviceChange_mBBFFE124D77C484CF2AFC391E9A53C408F4689B7 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, int32_t ___change1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
int32_t V_2 = 0;
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* V_3 = NULL;
bool V_4 = false;
bool V_5 = false;
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* V_6 = NULL;
bool V_7 = false;
int32_t G_B3_0 = 0;
{
// if (device == simulatedTouchscreen && change == InputDeviceChange.Removed)
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_0 = ___device0;
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_1;
L_1 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
if ((!(((RuntimeObject*)(InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)L_0) == ((RuntimeObject*)(Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)L_1))))
{
goto IL_0010;
}
}
{
int32_t L_2 = ___change1;
G_B3_0 = ((((int32_t)L_2) == ((int32_t)1))? 1 : 0);
goto IL_0011;
}
IL_0010:
{
G_B3_0 = 0;
}
IL_0011:
{
V_0 = (bool)G_B3_0;
bool L_3 = V_0;
if (!L_3)
{
goto IL_001e;
}
}
{
// Disable();
TouchSimulation_Disable_m66EC1AE8ECDFFBDF6E929D164A1A1C58E3307557(NULL);
// return;
goto IL_007b;
}
IL_001e:
{
// switch (change)
int32_t L_4 = ___change1;
V_2 = L_4;
int32_t L_5 = V_2;
V_1 = L_5;
int32_t L_6 = V_1;
if (!L_6)
{
goto IL_002d;
}
}
{
goto IL_0027;
}
IL_0027:
{
int32_t L_7 = V_1;
if ((((int32_t)L_7) == ((int32_t)1)))
{
goto IL_005c;
}
}
{
goto IL_007b;
}
IL_002d:
{
// if (device is Pointer pointer)
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_8 = ___device0;
V_3 = ((Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A*)IsInstClass((RuntimeObject*)L_8, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_il2cpp_TypeInfo_var));
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_9 = V_3;
V_4 = (bool)((!(((RuntimeObject*)(Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A*)L_9) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_10 = V_4;
if (!L_10)
{
goto IL_005a;
}
}
{
// if (device is Touchscreen)
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_11 = ___device0;
V_5 = (bool)((!(((RuntimeObject*)(Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)((Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)IsInstClass((RuntimeObject*)L_11, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_12 = V_5;
if (!L_12)
{
goto IL_0051;
}
}
{
// return; ////TODO: decide what to do
goto IL_007b;
}
IL_0051:
{
// AddPointer(pointer);
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_13 = V_3;
TouchSimulation_AddPointer_mAF311DF959277CE67860C36E4650A3EE734194C1(__this, L_13, NULL);
}
IL_005a:
{
// break;
goto IL_007b;
}
IL_005c:
{
// if (device is Pointer pointer)
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_14 = ___device0;
V_6 = ((Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A*)IsInstClass((RuntimeObject*)L_14, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_il2cpp_TypeInfo_var));
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_15 = V_6;
V_7 = (bool)((!(((RuntimeObject*)(Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A*)L_15) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_16 = V_7;
if (!L_16)
{
goto IL_0079;
}
}
{
// RemovePointer(pointer);
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_17 = V_6;
TouchSimulation_RemovePointer_m787BDB97748ADD4B28C3AFB85304B6A938889B42(__this, L_17, NULL);
}
IL_0079:
{
// break;
goto IL_007b;
}
IL_007b:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_OnEnable_m37DCAA82A4054B9D9A6E7C861F17907CB50F2F9F (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_AddDevice_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m775D9156EA7C89373C733037CEEDE590B34385CE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchSimulation_OnDeviceChange_mBBFFE124D77C484CF2AFC391E9A53C408F4689B7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchSimulation_OnEvent_m1D309DAE95183E20C72075AE2B502EC6C0066414_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2A5AC4668ADDA05D44CC58641856CAE1ADB66D24);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E V_4;
memset((&V_4), 0, sizeof(V_4));
Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B V_5;
memset((&V_5), 0, sizeof(V_5));
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA V_6;
memset((&V_6), 0, sizeof(V_6));
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* V_7 = NULL;
bool V_8 = false;
bool V_9 = false;
{
// if (simulatedTouchscreen != null)
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0;
L_0 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
V_0 = (bool)((!(((RuntimeObject*)(Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0030;
}
}
{
// if (!simulatedTouchscreen.added)
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_2;
L_2 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
NullCheck(L_2);
bool L_3;
L_3 = InputDevice_get_added_m27CF78B0777E142AAF9139ABFD88F67BBAABA15C(L_2, NULL);
V_1 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_002d;
}
}
{
// InputSystem.AddDevice(simulatedTouchscreen);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_5;
L_5 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSystem_AddDevice_mF58D6D79B51A54FFAE32C7CBA504EE00ECE18E55(L_5, NULL);
}
IL_002d:
{
goto IL_0066;
}
IL_0030:
{
// simulatedTouchscreen = InputSystem.GetDevice("Simulated Touchscreen") as Touchscreen;
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_6;
L_6 = InputSystem_GetDevice_mF0085C3DDC203E8277766C071927C0E353B9427F(_stringLiteral2A5AC4668ADDA05D44CC58641856CAE1ADB66D24, NULL);
TouchSimulation_set_simulatedTouchscreen_m59218EBAFC13C1FF0019F59F12378749620C9EEF_inline(__this, ((Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)IsInstClass((RuntimeObject*)L_6, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var)), NULL);
// if (simulatedTouchscreen == null)
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_7;
L_7 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
V_2 = (bool)((((RuntimeObject*)(Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)L_7) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_8 = V_2;
if (!L_8)
{
goto IL_0065;
}
}
{
// simulatedTouchscreen = InputSystem.AddDevice<Touchscreen>("Simulated Touchscreen");
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_9;
L_9 = InputSystem_AddDevice_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m775D9156EA7C89373C733037CEEDE590B34385CE(_stringLiteral2A5AC4668ADDA05D44CC58641856CAE1ADB66D24, InputSystem_AddDevice_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m775D9156EA7C89373C733037CEEDE590B34385CE_RuntimeMethod_var);
TouchSimulation_set_simulatedTouchscreen_m59218EBAFC13C1FF0019F59F12378749620C9EEF_inline(__this, L_9, NULL);
}
IL_0065:
{
}
IL_0066:
{
// if (m_Touches == null)
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_10 = __this->___m_Touches_8;
V_3 = (bool)((((RuntimeObject*)(ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7*)L_10) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_11 = V_3;
if (!L_11)
{
goto IL_0092;
}
}
{
// m_Touches = new ButtonControl[simulatedTouchscreen.touches.Count];
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_12;
L_12 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
NullCheck(L_12);
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_13;
L_13 = Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline(L_12, NULL);
V_4 = L_13;
int32_t L_14;
L_14 = ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_inline((&V_4), ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_RuntimeMethod_var);
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_15 = (ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7*)(ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7*)SZArrayNew(ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7_il2cpp_TypeInfo_var, (uint32_t)L_14);
__this->___m_Touches_8 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Touches_8), (void*)L_15);
}
IL_0092:
{
// foreach (var device in InputSystem.devices)
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA L_16;
L_16 = InputSystem_get_devices_m92D52284ABC0BCE6CF46CB98EB870F2AA3890BF8(NULL);
V_6 = L_16;
Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B L_17;
L_17 = ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C((&V_6), ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C_RuntimeMethod_var);
V_5 = L_17;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00c3:
{// begin finally (depth: 1)
Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB((&V_5), Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_00b8_1;
}
IL_00a5_1:
{
// foreach (var device in InputSystem.devices)
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_18;
L_18 = Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945((&V_5), Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945_RuntimeMethod_var);
V_7 = L_18;
// OnDeviceChange(device, InputDeviceChange.Added);
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_19 = V_7;
TouchSimulation_OnDeviceChange_mBBFFE124D77C484CF2AFC391E9A53C408F4689B7(__this, L_19, 0, NULL);
}
IL_00b8_1:
{
// foreach (var device in InputSystem.devices)
bool L_20;
L_20 = Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC((&V_5), Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC_RuntimeMethod_var);
if (L_20)
{
goto IL_00a5_1;
}
}
{
goto IL_00d2;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00d2:
{
// if (m_OnDeviceChange == null)
Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* L_21 = __this->___m_OnDeviceChange_11;
V_8 = (bool)((((RuntimeObject*)(Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333*)L_21) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_22 = V_8;
if (!L_22)
{
goto IL_00f3;
}
}
{
// m_OnDeviceChange = OnDeviceChange;
Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* L_23 = (Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333*)il2cpp_codegen_object_new(Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333_il2cpp_TypeInfo_var);
NullCheck(L_23);
Action_2__ctor_m23A4911D82F290811EDC6BFC315C339857526804(L_23, __this, (intptr_t)((void*)TouchSimulation_OnDeviceChange_mBBFFE124D77C484CF2AFC391E9A53C408F4689B7_RuntimeMethod_var), NULL);
__this->___m_OnDeviceChange_11 = L_23;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OnDeviceChange_11), (void*)L_23);
}
IL_00f3:
{
// if (m_OnEvent == null)
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_24 = __this->___m_OnEvent_12;
V_9 = (bool)((((RuntimeObject*)(Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA*)L_24) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_25 = V_9;
if (!L_25)
{
goto IL_0114;
}
}
{
// m_OnEvent = OnEvent;
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_26 = (Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA*)il2cpp_codegen_object_new(Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var);
NullCheck(L_26);
Action_2__ctor_m43B5BA62418FAB32773B12CEFF46A46855BF5B10(L_26, __this, (intptr_t)((void*)TouchSimulation_OnEvent_m1D309DAE95183E20C72075AE2B502EC6C0066414_RuntimeMethod_var), NULL);
__this->___m_OnEvent_12 = L_26;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OnEvent_12), (void*)L_26);
}
IL_0114:
{
// InputSystem.onDeviceChange += m_OnDeviceChange;
Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* L_27 = __this->___m_OnDeviceChange_11;
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSystem_add_onDeviceChange_m029F558DF1CF7BE38BCC050CC4FBD6A9EA2C2C35(L_27, NULL);
// InputSystem.onEvent += m_OnEvent;
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_28;
L_28 = InputSystem_get_onEvent_m69B71DB23BBEE4E244701D3A5A42D962C791AD18(NULL);
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_29 = __this->___m_OnEvent_12;
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_30;
L_30 = InputEventListener_op_Addition_m122B39C12D9ADEDFA730C3B3A0B2530AA23172A2(L_28, L_29, NULL);
InputSystem_set_onEvent_m6B177A8A8F08BE00B5409F0C3136BE803316A4B5(L_30, NULL);
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::OnDisable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_OnDisable_mE30E1DE15C94403CBA3FA54BD7E18C89C5CEF584 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_Clear_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m9FD4CFA77DBA7687E309C7E824110DA0601CEA9A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_Clear_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m75DA9B4408B934504135E39F0169061B763484F1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
bool V_2 = false;
int32_t G_B3_0 = 0;
{
// if (simulatedTouchscreen != null && simulatedTouchscreen.added)
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0;
L_0 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
if (!L_0)
{
goto IL_0016;
}
}
{
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_1;
L_1 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
NullCheck(L_1);
bool L_2;
L_2 = InputDevice_get_added_m27CF78B0777E142AAF9139ABFD88F67BBAABA15C(L_1, NULL);
G_B3_0 = ((int32_t)(L_2));
goto IL_0017;
}
IL_0016:
{
G_B3_0 = 0;
}
IL_0017:
{
V_0 = (bool)G_B3_0;
bool L_3 = V_0;
if (!L_3)
{
goto IL_0027;
}
}
{
// InputSystem.RemoveDevice(simulatedTouchscreen);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_4;
L_4 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSystem_RemoveDevice_m41F154CEBE1EB94090D2980BEA684E58799EA8B3(L_4, NULL);
}
IL_0027:
{
// for (var i = 0; i < m_NumPointers; ++i)
V_1 = 0;
goto IL_003d;
}
IL_002b:
{
// InputSystem.EnableDevice(m_Pointers[i]);
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* L_5 = __this->___m_Pointers_6;
int32_t L_6 = V_1;
NullCheck(L_5);
int32_t L_7 = L_6;
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSystem_EnableDevice_mCC281C30B26FC810ED36637A7A0040D2842350F3(L_8, NULL);
// for (var i = 0; i < m_NumPointers; ++i)
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
}
IL_003d:
{
// for (var i = 0; i < m_NumPointers; ++i)
int32_t L_10 = V_1;
int32_t L_11 = __this->___m_NumPointers_5;
V_2 = (bool)((((int32_t)L_10) < ((int32_t)L_11))? 1 : 0);
bool L_12 = V_2;
if (L_12)
{
goto IL_002b;
}
}
{
// m_Pointers.Clear(m_NumPointers);
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* L_13 = __this->___m_Pointers_6;
int32_t L_14 = __this->___m_NumPointers_5;
ArrayHelpers_Clear_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m75DA9B4408B934504135E39F0169061B763484F1(L_13, L_14, ArrayHelpers_Clear_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m75DA9B4408B934504135E39F0169061B763484F1_RuntimeMethod_var);
// m_Touches.Clear();
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_15 = __this->___m_Touches_8;
ArrayHelpers_Clear_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m9FD4CFA77DBA7687E309C7E824110DA0601CEA9A(L_15, ArrayHelpers_Clear_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m9FD4CFA77DBA7687E309C7E824110DA0601CEA9A_RuntimeMethod_var);
// m_NumPointers = 0;
__this->___m_NumPointers_5 = 0;
// m_LastTouchId = 0;
__this->___m_LastTouchId_9 = 0;
// m_PrimaryTouchIndex = -1;
__this->___m_PrimaryTouchIndex_10 = (-1);
// InputSystem.onDeviceChange -= m_OnDeviceChange;
Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* L_16 = __this->___m_OnDeviceChange_11;
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSystem_remove_onDeviceChange_m772CFE26B5D7C6DBBC8F8DBA78E327EC4CF6C930(L_16, NULL);
// InputSystem.onEvent -= m_OnEvent;
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_17;
L_17 = InputSystem_get_onEvent_m69B71DB23BBEE4E244701D3A5A42D962C791AD18(NULL);
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_18 = __this->___m_OnEvent_12;
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_19;
L_19 = InputEventListener_op_Subtraction_m64F5559B543948C414AC7A0D3E7BA1FE95743328(L_17, L_18, NULL);
InputSystem_set_onEvent_m6B177A8A8F08BE00B5409F0C3136BE803316A4B5(L_19, NULL);
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::UpdateTouch(System.Int32,System.Int32,UnityEngine.InputSystem.TouchPhase,UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_UpdateTouch_mFC046EBC56223C3DAED35D7BB52C39C1B11450CE (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, int32_t ___touchIndex0, int32_t ___pointerIndex1, int32_t ___phase2, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___eventPtr3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputState_Change_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_mEA3F7DC352CCBD2270034CD741750CF21CB93F75_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 V_1;
memset((&V_1), 0, sizeof(V_1));
double V_2 = 0.0;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* V_3 = NULL;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 V_4;
memset((&V_4), 0, sizeof(V_4));
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E V_5;
memset((&V_5), 0, sizeof(V_5));
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 V_6;
memset((&V_6), 0, sizeof(V_6));
bool V_7 = false;
int32_t V_8 = 0;
bool V_9 = false;
bool V_10 = false;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_11;
memset((&V_11), 0, sizeof(V_11));
bool V_12 = false;
bool V_13 = false;
bool V_14 = false;
bool V_15 = false;
double G_B3_0 = 0.0;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* G_B10_0 = NULL;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* G_B9_0 = NULL;
int32_t G_B11_0 = 0;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* G_B11_1 = NULL;
{
// var position = m_CurrentPositions[pointerIndex];
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* L_0 = __this->___m_CurrentPositions_7;
int32_t L_1 = ___pointerIndex1;
NullCheck(L_0);
int32_t L_2 = L_1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
V_0 = L_3;
// var touch = new TouchState
// {
// phase = phase,
// position = position
// };
il2cpp_codegen_initobj((&V_4), sizeof(TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97));
int32_t L_4 = ___phase2;
TouchState_set_phase_mCC48A355F50B41E745BDCE383BD083A69BD8644A((&V_4), L_4, NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = V_0;
(&V_4)->___position_2 = L_5;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 L_6 = V_4;
V_1 = L_6;
// var time = eventPtr.valid ? eventPtr.time : InputState.currentTime;
bool L_7;
L_7 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012((&___eventPtr3), NULL);
if (L_7)
{
goto IL_003a;
}
}
{
double L_8;
L_8 = InputState_get_currentTime_m5AF6706449C88C5440DD613C83DBC88EC57CC40F(NULL);
G_B3_0 = L_8;
goto IL_0041;
}
IL_003a:
{
double L_9;
L_9 = InputEventPtr_get_time_mD2C90C66C334E767E2F9B5B9A3711B500027B185((&___eventPtr3), NULL);
G_B3_0 = L_9;
}
IL_0041:
{
V_2 = G_B3_0;
// var oldTouchState = (TouchState*)((byte*)simulatedTouchscreen.currentStatePtr +
// simulatedTouchscreen.touches[touchIndex].stateBlock.byteOffset);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_10;
L_10 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
NullCheck(L_10);
void* L_11;
L_11 = InputControl_get_currentStatePtr_m77D2900EEE4AAB505C98292AF8538DDCF44F8C3C(L_10, NULL);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_12;
L_12 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
NullCheck(L_12);
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_13;
L_13 = Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline(L_12, NULL);
V_5 = L_13;
int32_t L_14 = ___touchIndex0;
TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* L_15;
L_15 = ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C((&V_5), L_14, ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C_RuntimeMethod_var);
NullCheck(L_15);
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 L_16;
L_16 = InputControl_get_stateBlock_mCAE31879EDC6621B35B368B4916219D30EAA0B0B_inline(L_15, NULL);
V_6 = L_16;
uint32_t L_17;
L_17 = InputStateBlock_get_byteOffset_m6EADE5C9C8B346D38E543E38777ED67ED2AEA0AC_inline((&V_6), NULL);
V_3 = (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)((void*)il2cpp_codegen_add((intptr_t)L_11, (intptr_t)((uintptr_t)L_17)));
// if (phase == TouchPhase.Began)
int32_t L_18 = ___phase2;
V_7 = (bool)((((int32_t)L_18) == ((int32_t)1))? 1 : 0);
bool L_19 = V_7;
if (!L_19)
{
goto IL_00e1;
}
}
{
// touch.isPrimaryTouch = m_PrimaryTouchIndex < 0;
int32_t L_20 = __this->___m_PrimaryTouchIndex_10;
TouchState_set_isPrimaryTouch_m6BB43521B2EDD8EFD435C5890590A51DE183AAA6((&V_1), (bool)((((int32_t)L_20) < ((int32_t)0))? 1 : 0), NULL);
// touch.startTime = time;
double L_21 = V_2;
(&V_1)->___startTime_11 = L_21;
// touch.startPosition = position;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_22 = V_0;
(&V_1)->___startPosition_12 = L_22;
// touch.touchId = ++m_LastTouchId;
int32_t L_23 = __this->___m_LastTouchId_9;
V_8 = ((int32_t)il2cpp_codegen_add(L_23, 1));
int32_t L_24 = V_8;
__this->___m_LastTouchId_9 = L_24;
int32_t L_25 = V_8;
(&V_1)->___touchId_1 = L_25;
// touch.tapCount = oldTouchState->tapCount; // Get reset automatically by Touchscreen.
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_26 = V_3;
NullCheck(L_26);
uint8_t L_27 = L_26->___tapCount_7;
(&V_1)->___tapCount_7 = L_27;
// if (touch.isPrimaryTouch)
bool L_28;
L_28 = TouchState_get_isPrimaryTouch_mC8E83D45028722D5456CB65A19C9DBB2B1DC8615((&V_1), NULL);
V_9 = L_28;
bool L_29 = V_9;
if (!L_29)
{
goto IL_00db;
}
}
{
// m_PrimaryTouchIndex = touchIndex;
int32_t L_30 = ___touchIndex0;
__this->___m_PrimaryTouchIndex_10 = L_30;
}
IL_00db:
{
goto IL_019b;
}
IL_00e1:
{
// touch.touchId = oldTouchState->touchId;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_31 = V_3;
NullCheck(L_31);
int32_t L_32 = L_31->___touchId_1;
(&V_1)->___touchId_1 = L_32;
// touch.isPrimaryTouch = m_PrimaryTouchIndex == touchIndex;
int32_t L_33 = __this->___m_PrimaryTouchIndex_10;
int32_t L_34 = ___touchIndex0;
TouchState_set_isPrimaryTouch_m6BB43521B2EDD8EFD435C5890590A51DE183AAA6((&V_1), (bool)((((int32_t)L_33) == ((int32_t)L_34))? 1 : 0), NULL);
// touch.delta = position - oldTouchState->position;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_35 = V_0;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_36 = V_3;
NullCheck(L_36);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_37 = L_36->___position_2;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_38;
L_38 = Vector2_op_Subtraction_m664419831773D5BBF06D9DE4E515F6409B2F92B8_inline(L_35, L_37, NULL);
(&V_1)->___delta_3 = L_38;
// touch.startPosition = oldTouchState->startPosition;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_39 = V_3;
NullCheck(L_39);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_40 = L_39->___startPosition_12;
(&V_1)->___startPosition_12 = L_40;
// touch.startTime = oldTouchState->startTime;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_41 = V_3;
NullCheck(L_41);
double L_42 = L_41->___startTime_11;
(&V_1)->___startTime_11 = L_42;
// touch.tapCount = oldTouchState->tapCount;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_43 = V_3;
NullCheck(L_43);
uint8_t L_44 = L_43->___tapCount_7;
(&V_1)->___tapCount_7 = L_44;
// if (phase == TouchPhase.Ended)
int32_t L_45 = ___phase2;
V_10 = (bool)((((int32_t)L_45) == ((int32_t)3))? 1 : 0);
bool L_46 = V_10;
if (!L_46)
{
goto IL_019a;
}
}
{
// touch.isTap = time - oldTouchState->startTime <= Touchscreen.s_TapTime &&
// (position - oldTouchState->startPosition).sqrMagnitude <= Touchscreen.s_TapRadiusSquared;
double L_47 = V_2;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_48 = V_3;
NullCheck(L_48);
double L_49 = L_48->___startTime_11;
float L_50 = ((Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_StaticFields*)il2cpp_codegen_static_fields_for(Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var))->___s_TapTime_48;
G_B9_0 = (&V_1);
if ((!(((double)((double)il2cpp_codegen_subtract(L_47, L_49))) <= ((double)((double)L_50)))))
{
G_B10_0 = (&V_1);
goto IL_0178;
}
}
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_51 = V_0;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_52 = V_3;
NullCheck(L_52);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_53 = L_52->___startPosition_12;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_54;
L_54 = Vector2_op_Subtraction_m664419831773D5BBF06D9DE4E515F6409B2F92B8_inline(L_51, L_53, NULL);
V_11 = L_54;
float L_55;
L_55 = Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline((&V_11), NULL);
float L_56 = ((Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_StaticFields*)il2cpp_codegen_static_fields_for(Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var))->___s_TapRadiusSquared_50;
G_B11_0 = ((((int32_t)((!(((float)L_55) <= ((float)L_56)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
G_B11_1 = G_B9_0;
goto IL_0179;
}
IL_0178:
{
G_B11_0 = 0;
G_B11_1 = G_B10_0;
}
IL_0179:
{
TouchState_set_isTap_m31B4AEE4DC8A6CE2174728244C0A1D1539D30B15(G_B11_1, (bool)G_B11_0, NULL);
// if (touch.isTap)
bool L_57;
L_57 = TouchState_get_isTap_m6C2D3CC78A3AA9705CBFD2A9E817FCFD8AB25EFB((&V_1), NULL);
V_12 = L_57;
bool L_58 = V_12;
if (!L_58)
{
goto IL_0199;
}
}
{
// ++touch.tapCount;
uint8_t* L_59 = (&(&V_1)->___tapCount_7);
uint8_t* L_60 = L_59;
int32_t L_61 = *((uint8_t*)L_60);
*((int8_t*)L_60) = (int8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(L_61, 1)));
}
IL_0199:
{
}
IL_019a:
{
}
IL_019b:
{
// if (touch.isPrimaryTouch)
bool L_62;
L_62 = TouchState_get_isPrimaryTouch_mC8E83D45028722D5456CB65A19C9DBB2B1DC8615((&V_1), NULL);
V_13 = L_62;
bool L_63 = V_13;
if (!L_63)
{
goto IL_01bd;
}
}
{
// InputState.Change(simulatedTouchscreen.primaryTouch, touch, eventPtr: eventPtr);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_64;
L_64 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
NullCheck(L_64);
TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* L_65;
L_65 = Touchscreen_get_primaryTouch_mABAC4C0F1DBA6A718B83682A91DF40FD3563F413_inline(L_64, NULL);
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 L_66 = V_1;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_67 = ___eventPtr3;
InputState_Change_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_mEA3F7DC352CCBD2270034CD741750CF21CB93F75(L_65, L_66, 0, L_67, InputState_Change_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_mEA3F7DC352CCBD2270034CD741750CF21CB93F75_RuntimeMethod_var);
}
IL_01bd:
{
// InputState.Change(simulatedTouchscreen.touches[touchIndex], touch, eventPtr: eventPtr);
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_68;
L_68 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
NullCheck(L_68);
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_69;
L_69 = Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline(L_68, NULL);
V_5 = L_69;
int32_t L_70 = ___touchIndex0;
TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* L_71;
L_71 = ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C((&V_5), L_70, ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C_RuntimeMethod_var);
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 L_72 = V_1;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_73 = ___eventPtr3;
InputState_Change_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_mEA3F7DC352CCBD2270034CD741750CF21CB93F75(L_71, L_72, 0, L_73, InputState_Change_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_mEA3F7DC352CCBD2270034CD741750CF21CB93F75_RuntimeMethod_var);
// if (phase.IsEndedOrCanceled())
int32_t L_74 = ___phase2;
bool L_75;
L_75 = InputExtensions_IsEndedOrCanceled_m125C963DFE3F2D378F914029AC3E602CB14E2AAB(L_74, NULL);
V_14 = L_75;
bool L_76 = V_14;
if (!L_76)
{
goto IL_0209;
}
}
{
// m_Touches[touchIndex] = null;
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_77 = __this->___m_Touches_8;
int32_t L_78 = ___touchIndex0;
NullCheck(L_77);
ArrayElementTypeCheck (L_77, NULL);
(L_77)->SetAt(static_cast<il2cpp_array_size_t>(L_78), (ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF*)NULL);
// if (m_PrimaryTouchIndex == touchIndex)
int32_t L_79 = __this->___m_PrimaryTouchIndex_10;
int32_t L_80 = ___touchIndex0;
V_15 = (bool)((((int32_t)L_79) == ((int32_t)L_80))? 1 : 0);
bool L_81 = V_15;
if (!L_81)
{
goto IL_0208;
}
}
{
// m_PrimaryTouchIndex = -1;
__this->___m_PrimaryTouchIndex_10 = (-1);
}
IL_0208:
{
}
IL_0209:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::UnityEngine.InputSystem.LowLevel.IInputStateChangeMonitor.NotifyControlStateChanged(UnityEngine.InputSystem.InputControl,System.Double,UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_UnityEngine_InputSystem_LowLevel_IInputStateChangeMonitor_NotifyControlStateChanged_mF012C5A1AD1EA8C32B4FF1B011C31A5801451E0A (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control0, double ___time1, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___eventPtr2, int64_t ___monitorIndex3, const RuntimeMethod* method)
{
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::UnityEngine.InputSystem.LowLevel.IInputStateChangeMonitor.NotifyTimerExpired(UnityEngine.InputSystem.InputControl,System.Double,System.Int64,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_UnityEngine_InputSystem_LowLevel_IInputStateChangeMonitor_NotifyTimerExpired_m292855FB683F1265F57B928E334CE7811224C017 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control0, double ___time1, int64_t ___monitorIndex2, int32_t ___timerIndex3, const RuntimeMethod* method)
{
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::InstallStateChangeMonitors(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_InstallStateChangeMonitors_m6A4D2E63CC69C7B0E3EDB4E352FAEB22EFA7B887 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, int32_t ___startIndex0, const RuntimeMethod* method)
{
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::OnSourceControlChangedValue(UnityEngine.InputSystem.InputControl,System.Double,UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_OnSourceControlChangedValue_mCAF5DD63A8245A3FCFFAC17B9957E7ED0B9C207C (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control0, double ___time1, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___eventPtr2, int64_t ___sourceDeviceAndButtonIndex3, const RuntimeMethod* method)
{
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::UninstallStateChangeMonitors(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_UninstallStateChangeMonitors_m36421CFF36C6D25B2908E198DA84319399FA5E3E (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, int32_t ___startIndex0, const RuntimeMethod* method)
{
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation__ctor_mD23258BB77D50A88698EFDB77C080768C959CF7C (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, const RuntimeMethod* method)
{
{
// [NonSerialized] private int m_PrimaryTouchIndex = -1;
__this->___m_PrimaryTouchIndex_10 = (-1);
MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::get_touchpadButton()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_touchpadButton_m33F34E0003CD6A0A142D5AABBD46F15274EBD717 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
{
{
// public ButtonControl touchpadButton { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CtouchpadButtonU3Ek__BackingField_58;
return L_0;
}
}
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_touchpadButton(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_touchpadButton_m85056E5E5A92D34208235FB409393690A472601D (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl touchpadButton { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CtouchpadButtonU3Ek__BackingField_58 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CtouchpadButtonU3Ek__BackingField_58), (void*)L_0);
return;
}
}
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::get_optionsButton()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_optionsButton_m81F0B73F0684D62940FB49FC46FB5349B8808FAC (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
{
{
// public ButtonControl optionsButton { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CoptionsButtonU3Ek__BackingField_59;
return L_0;
}
}
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_optionsButton(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_optionsButton_m1FE2766F3657D92F605EB85A030FE7C89D0DD580 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl optionsButton { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CoptionsButtonU3Ek__BackingField_59 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CoptionsButtonU3Ek__BackingField_59), (void*)L_0);
return;
}
}
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::get_shareButton()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_shareButton_m38595382611E0D4E69CBCB790A5262378939D3AF (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
{
{
// public ButtonControl shareButton { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CshareButtonU3Ek__BackingField_60;
return L_0;
}
}
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_shareButton(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_shareButton_mE3EF1DF6E0E1B8EFF21AC7DD493CC0494AEC6155 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl shareButton { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CshareButtonU3Ek__BackingField_60 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CshareButtonU3Ek__BackingField_60), (void*)L_0);
return;
}
}
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::get_L1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_L1_mC7CB0827550909C24137A0950C6383324574D754 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
{
{
// public ButtonControl L1 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CL1U3Ek__BackingField_61;
return L_0;
}
}
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_L1(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_L1_m53A630A39C6EA91CD8A806D739D51782A7062D8E (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl L1 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CL1U3Ek__BackingField_61 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CL1U3Ek__BackingField_61), (void*)L_0);
return;
}
}
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::get_R1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_R1_mE43AAC862C5D6D64A02EFA93F35218FFCCAED34E (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
{
{
// public ButtonControl R1 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CR1U3Ek__BackingField_62;
return L_0;
}
}
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_R1(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_R1_m578DFA09EC86DB70693B666AC53AE39E97C6F22C (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl R1 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CR1U3Ek__BackingField_62 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CR1U3Ek__BackingField_62), (void*)L_0);
return;
}
}
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::get_L2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_L2_m3523F1717A80493C97323BD6B171A21362D71EFB (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
{
{
// public ButtonControl L2 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CL2U3Ek__BackingField_63;
return L_0;
}
}
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_L2(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_L2_m944079645ACBBB274527C169EE5670D1ED142616 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl L2 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CL2U3Ek__BackingField_63 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CL2U3Ek__BackingField_63), (void*)L_0);
return;
}
}
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::get_R2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_R2_m5675E03208D86D1F1A1883160E215F76A3BD88E1 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
{
{
// public ButtonControl R2 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CR2U3Ek__BackingField_64;
return L_0;
}
}
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_R2(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_R2_mCCFF64B80DC2E5DA8920AB9B9A9CEB61AB8C0079 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl R2 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CR2U3Ek__BackingField_64 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CR2U3Ek__BackingField_64), (void*)L_0);
return;
}
}
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::get_L3()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_L3_mE7EC33FF04222C97781FD25BD54662B1D456054D (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
{
{
// public ButtonControl L3 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CL3U3Ek__BackingField_65;
return L_0;
}
}
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_L3(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_L3_mD8C16E42401A03362170FB255D0F2E0A70F36531 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl L3 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CL3U3Ek__BackingField_65 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CL3U3Ek__BackingField_65), (void*)L_0);
return;
}
}
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::get_R3()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_R3_m6D8CA00F1ED8FDF97131917AFD87AE1AC2705941 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
{
{
// public ButtonControl R3 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CR3U3Ek__BackingField_66;
return L_0;
}
}
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_R3(UnityEngine.InputSystem.Controls.ButtonControl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_R3_mF4834C8E3EB76B2C7C91F874D6022770604A5CDC (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl R3 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CR3U3Ek__BackingField_66 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CR3U3Ek__BackingField_66), (void*)L_0);
return;
}
}
// UnityEngine.InputSystem.DualShock.DualShockGamepad UnityEngine.InputSystem.DualShock.DualShockGamepad::get_current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* DualShockGamepad_get_current_m554DD5CB50BDBEABFC161A1EDE8F28B061882C17 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public new static DualShockGamepad current { get; private set; }
DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* L_0 = ((DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_StaticFields*)il2cpp_codegen_static_fields_for(DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var))->___U3CcurrentU3Ek__BackingField_67;
return L_0;
}
}
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::set_current(UnityEngine.InputSystem.DualShock.DualShockGamepad)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_current_mBD60E097751CCEB0D6E05FD0F46F43D0AA0A5856 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public new static DualShockGamepad current { get; private set; }
DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* L_0 = ___value0;
((DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_StaticFields*)il2cpp_codegen_static_fields_for(DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var))->___U3CcurrentU3Ek__BackingField_67 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_StaticFields*)il2cpp_codegen_static_fields_for(DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var))->___U3CcurrentU3Ek__BackingField_67), (void*)L_0);
return;
}
}
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::MakeCurrent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_MakeCurrent_m9AC673C62EC29FECCEE14566A4947A6A9E58F22A (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
{
{
// base.MakeCurrent();
Gamepad_MakeCurrent_m78B45631A8F9D2189CDABC3E67C1E849166748BA(__this, NULL);
// current = this;
DualShockGamepad_set_current_mBD60E097751CCEB0D6E05FD0F46F43D0AA0A5856_inline(__this, NULL);
// }
return;
}
}
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::OnRemoved()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_OnRemoved_m87BD66DA0C5210BFAFF90671D8AB78FCA75DEF32 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
// base.OnRemoved();
Gamepad_OnRemoved_m3B43B26E9BA2751108CFAEAFD9581F2C674EF6AF(__this, NULL);
// if (current == this)
DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* L_0;
L_0 = DualShockGamepad_get_current_m554DD5CB50BDBEABFC161A1EDE8F28B061882C17_inline(NULL);
V_0 = (bool)((((RuntimeObject*)(DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B*)L_0) == ((RuntimeObject*)(DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B*)__this))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001b;
}
}
{
// current = null;
DualShockGamepad_set_current_mBD60E097751CCEB0D6E05FD0F46F43D0AA0A5856_inline((DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B*)NULL, NULL);
}
IL_001b:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::FinishSetup()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_FinishSetup_m4679E4AAE337082EC03207BEC0E43ADC1894E1B0 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControl_GetChildControl_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m37B3269440E54D5C867480E334993426D47F9044_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral05B5896E41F6CE375015DD206C28094820DE1498);
s_Il2CppMethodInitialized = true;
}
{
// base.FinishSetup();
Gamepad_FinishSetup_m8D639C19146BC2138F31DCEA1B03BC0B4390DAC7(__this, NULL);
// touchpadButton = GetChildControl<ButtonControl>("touchpadButton");
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0;
L_0 = InputControl_GetChildControl_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m37B3269440E54D5C867480E334993426D47F9044(__this, _stringLiteral05B5896E41F6CE375015DD206C28094820DE1498, InputControl_GetChildControl_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m37B3269440E54D5C867480E334993426D47F9044_RuntimeMethod_var);
DualShockGamepad_set_touchpadButton_m85056E5E5A92D34208235FB409393690A472601D_inline(__this, L_0, NULL);
// optionsButton = startButton;
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_1;
L_1 = Gamepad_get_startButton_m29450F01D3AC6A6377DD6820C1E8A19E3FB257B1_inline(__this, NULL);
DualShockGamepad_set_optionsButton_m1FE2766F3657D92F605EB85A030FE7C89D0DD580_inline(__this, L_1, NULL);
// shareButton = selectButton;
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_2;
L_2 = Gamepad_get_selectButton_mE20183D2C1EBD7B7EF87EE29C24E56F1731E85BE_inline(__this, NULL);
DualShockGamepad_set_shareButton_mE3EF1DF6E0E1B8EFF21AC7DD493CC0494AEC6155_inline(__this, L_2, NULL);
// L1 = leftShoulder;
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_3;
L_3 = Gamepad_get_leftShoulder_m2522E913D1A9361FE16FE01D717BF49D3B1632AE_inline(__this, NULL);
DualShockGamepad_set_L1_m53A630A39C6EA91CD8A806D739D51782A7062D8E_inline(__this, L_3, NULL);
// R1 = rightShoulder;
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_4;
L_4 = Gamepad_get_rightShoulder_m221A61E28BDBABD1B1E51A0E325D9A55BB5E347A_inline(__this, NULL);
DualShockGamepad_set_R1_m578DFA09EC86DB70693B666AC53AE39E97C6F22C_inline(__this, L_4, NULL);
// L2 = leftTrigger;
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_5;
L_5 = Gamepad_get_leftTrigger_mE19F2FCA9A7F195107FA0C14293732C0F3075A38_inline(__this, NULL);
DualShockGamepad_set_L2_m944079645ACBBB274527C169EE5670D1ED142616_inline(__this, L_5, NULL);
// R2 = rightTrigger;
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_6;
L_6 = Gamepad_get_rightTrigger_mD1587CDED475B78A56BE8B6FC493EDA08AE6F3A6_inline(__this, NULL);
DualShockGamepad_set_R2_mCCFF64B80DC2E5DA8920AB9B9A9CEB61AB8C0079_inline(__this, L_6, NULL);
// L3 = leftStickButton;
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_7;
L_7 = Gamepad_get_leftStickButton_mEACF0F726788DA012905DCD7A44AA88DF91593ED_inline(__this, NULL);
DualShockGamepad_set_L3_mD8C16E42401A03362170FB255D0F2E0A70F36531_inline(__this, L_7, NULL);
// R3 = rightStickButton;
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_8;
L_8 = Gamepad_get_rightStickButton_m9A8377135FDA7EA2EA6219A715092F0E62ADBC55_inline(__this, NULL);
DualShockGamepad_set_R3_mF4834C8E3EB76B2C7C91F874D6022770604A5CDC_inline(__this, L_8, NULL);
// }
return;
}
}
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::SetLightBarColor(UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_SetLightBarColor_m5954BEB6A9865125CB4F2097085AD53708327564 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color0, const RuntimeMethod* method)
{
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.DualShock.DualShockGamepad::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad__ctor_mFF8B00E0E1592EA1F5A104826CD996F936732733 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
{
{
Gamepad__ctor_m91DEC6DDDA705B1A49C7964389CA1880CBFD9748(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.DualShock.DualShockSupport::Initialize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockSupport_Initialize_m14272325FA9B14053E96E6B8EEFF98981CF8E45F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisDualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_m36DC2FEC3F1EB796BFF08D7E9404F22241C6644D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C V_0;
memset((&V_0), 0, sizeof(V_0));
{
// InputSystem.RegisterLayout<DualShockGamepad>();
il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C));
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_0 = V_0;
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSystem_RegisterLayout_TisDualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_m36DC2FEC3F1EB796BFF08D7E9404F22241C6644D((String_t*)NULL, L_0, InputSystem_RegisterLayout_TisDualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_m36DC2FEC3F1EB796BFF08D7E9404F22241C6644D_RuntimeMethod_var);
// }
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.AndroidGamepad::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidGamepad__ctor_mF564EB5AD49D1583A33554EDF3C2AF3F0179CFA3 (AndroidGamepad_t786079AAF70FADAC9023B59E60BE8DB35903EF6E* __this, const RuntimeMethod* method)
{
{
Gamepad__ctor_m91DEC6DDDA705B1A49C7964389CA1880CBFD9748(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.AndroidGamepadWithDpadAxes::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidGamepadWithDpadAxes__ctor_m2AF9CC9B7355B970C305C30D00289A3E30C1C0EA (AndroidGamepadWithDpadAxes_tF737215B337DB2EE82739556B7D49B9C47E1E0A6* __this, const RuntimeMethod* method)
{
{
AndroidGamepad__ctor_mF564EB5AD49D1583A33554EDF3C2AF3F0179CFA3(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.AndroidGamepadWithDpadButtons::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidGamepadWithDpadButtons__ctor_mFC7C2A0B269FFF812836BB2D9F281799026ED8A3 (AndroidGamepadWithDpadButtons_t62C4BA5D1E7EDAC25BF4540A84825D8F210121CA* __this, const RuntimeMethod* method)
{
{
AndroidGamepad__ctor_mF564EB5AD49D1583A33554EDF3C2AF3F0179CFA3(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.AndroidJoystick::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidJoystick__ctor_m55673E646619DAE08D9E91C7E66B10ACD3D7066F (AndroidJoystick_t046CDCD28C85B087F639711DB5F651B6D469CA01* __this, const RuntimeMethod* method)
{
{
Joystick__ctor_mF6DC050063C12FB0092B84BF78B558114B07949D(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.DualShock4GamepadAndroid::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShock4GamepadAndroid__ctor_m4752BEC6BF91C826F6F984F35A0A7DD0006DE056 (DualShock4GamepadAndroid_t12F04A138227E893CDB038399FFE400836152296* __this, const RuntimeMethod* method)
{
{
DualShockGamepad__ctor_mFF8B00E0E1592EA1F5A104826CD996F936732733(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.XboxOneGamepadAndroid::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XboxOneGamepadAndroid__ctor_m0CD1FD61391902BB47445DBE008AD2B88CECC05E (XboxOneGamepadAndroid_t81C60ABAB05F8FA9762EBB7655043EFDCBCBC728* __this, const RuntimeMethod* method)
{
{
XInputController__ctor_m8BAA58FA967BC76A7850D0AE1BD3A6DB9D6B40B4(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.AndroidAccelerometer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidAccelerometer__ctor_m3D641A5AAE52BE54F9635DB37CBE485D22F2D644 (AndroidAccelerometer_t424C7F249B02EEE2B4FC08EEEB8CCA17979C0152* __this, const RuntimeMethod* method)
{
{
Accelerometer__ctor_mAD6F8371491B501EB909ECF2D691D8C6340D8185(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.AndroidMagneticFieldSensor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidMagneticFieldSensor__ctor_mA8920CF1469A91489178A91C6A1EB86B11296906 (AndroidMagneticFieldSensor_t1610FE66F3C8C0B079226776522B00876CD7307F* __this, const RuntimeMethod* method)
{
{
MagneticFieldSensor__ctor_m9F0B990BF6FEDB6DEE8698F8BCC767CABB034F70(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.AndroidGyroscope::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidGyroscope__ctor_m90A66AA8848A7CCFCDB2A794D5FCB602A582CE9D (AndroidGyroscope_t0C9BB3F1F09F92AD929863225385D22D46C2D39D* __this, const RuntimeMethod* method)
{
{
Gyroscope__ctor_m12C4E168E60E3CD7B59BD6BD869A6936BD62B2BF(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.AndroidLightSensor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidLightSensor__ctor_m8A0D12682F05A4BC5E2BA38860398CCB89C03309 (AndroidLightSensor_t555467EDE38119DBD9BADEFD8EB33EC2E44D120A* __this, const RuntimeMethod* method)
{
{
LightSensor__ctor_mC7986AC99BC44780090B3EFB87E88AB98FFB2167(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.AndroidPressureSensor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidPressureSensor__ctor_m0ECF6E296E9E380D8F524F078A457CDA1CAA97B4 (AndroidPressureSensor_t35F3053D89964B2771F3C24CC0A3D3ACE7A64FFE* __this, const RuntimeMethod* method)
{
{
PressureSensor__ctor_m2B29729259753AFB41AD4571D85C4EBA46203938(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.AndroidProximity::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidProximity__ctor_mD6B3FB13F96E76A7A1A8BD9574D36CDC33DA003D (AndroidProximity_t0951C9819B491F6DA8066417FE24C750A409288F* __this, const RuntimeMethod* method)
{
{
ProximitySensor__ctor_mA952A5C659286F7FC73BA6133ABA5C2217EE1D13(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.AndroidGravitySensor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidGravitySensor__ctor_m88DEFAEE8FE3E15FD1788AA736678B8554814BC3 (AndroidGravitySensor_t41E115E03C89B62509B2B088FA239E7DAFFF9695* __this, const RuntimeMethod* method)
{
{
GravitySensor__ctor_m07FFC5C414FA8011459DE55CB8C167B94FE02F15(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.AndroidLinearAccelerationSensor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidLinearAccelerationSensor__ctor_m0D3EF10AE02A272B5FECF612A18FFA2D9F2BA10C (AndroidLinearAccelerationSensor_t970198FECD057A043BC8DDEE99C42928861CE5D9* __this, const RuntimeMethod* method)
{
{
LinearAccelerationSensor__ctor_m76A83D04015451084C606FEF007E4A7614B31DE1(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.AndroidRotationVector::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidRotationVector__ctor_m685C073052B25C25F2E9AEF8760969553585E274 (AndroidRotationVector_tD623D1A57567CB6F21E37E60BBB5CE66042F1C3C* __this, const RuntimeMethod* method)
{
{
AttitudeSensor__ctor_m4BC22DA0C424808E1AAE9DE7C1B13D7EE171D1E1(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.AndroidRelativeHumidity::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidRelativeHumidity__ctor_mE5B386B80B9BB86F58CCA91DCCC286E888434307 (AndroidRelativeHumidity_tBEFC71512766927C2BB2C95270C4E9938A3F3342* __this, const RuntimeMethod* method)
{
{
HumiditySensor__ctor_m3F7357F775B09D089A4687C9F7AEF07DAA759B75(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.AndroidAmbientTemperature::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidAmbientTemperature__ctor_m0BBCDE2F003934BDA58C9521E7CB13F1986CA80E (AndroidAmbientTemperature_t708F5C6684A965DF4B1DB0FBCD468DDCCC718F85* __this, const RuntimeMethod* method)
{
{
AmbientTemperatureSensor__ctor_mC28BAE6F66E1E9C3227D347CEE4640B1EE21669A(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.AndroidStepCounter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidStepCounter__ctor_m619B6183B2DF854E9C1E9D67A58401C5E5B40446 (AndroidStepCounter_t60ECCD106CD8AD94CB740C46D212D1FA94DF38CD* __this, const RuntimeMethod* method)
{
{
StepCounter__ctor_m909C35DAF37F65943CB8B238B88B5BD8F161D0C4(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.AndroidSupport::Initialize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidSupport_Initialize_m0FB97D3C59C5104CE5693D5FAE54343A4893BBC4 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidSupport_OnFindLayoutForDevice_m8D54B20C58E793F3810737C2ABE26E462F29BFAF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisAndroidAccelerometer_t424C7F249B02EEE2B4FC08EEEB8CCA17979C0152_m1A38F9810255A13478FD3C3CF264D16A541EB4E3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisAndroidAmbientTemperature_t708F5C6684A965DF4B1DB0FBCD468DDCCC718F85_m9D24CE3A04058CA2A287CC24EBC1E7FB5F1CCC0F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisAndroidGamepadWithDpadAxes_tF737215B337DB2EE82739556B7D49B9C47E1E0A6_mF87B21488883753F2AB3BA8A3958EF55B7F0611D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisAndroidGamepadWithDpadButtons_t62C4BA5D1E7EDAC25BF4540A84825D8F210121CA_mD2C4FEB7BA984C4A4B36675C8913FEBAB361F764_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisAndroidGamepad_t786079AAF70FADAC9023B59E60BE8DB35903EF6E_m7EEC589523FCF3B8359D12070CA407255586F447_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisAndroidGravitySensor_t41E115E03C89B62509B2B088FA239E7DAFFF9695_mFB7169F7A18BD1ED1DE79D6E8AE0C4A83CD43FB8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisAndroidGyroscope_t0C9BB3F1F09F92AD929863225385D22D46C2D39D_m06AECBB2E664188BF622D1EE82E3D1E9ED224803_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisAndroidJoystick_t046CDCD28C85B087F639711DB5F651B6D469CA01_m1BD3D66CCAC5FF1B6BBB5B38AE0B85E38B2D2B31_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisAndroidLightSensor_t555467EDE38119DBD9BADEFD8EB33EC2E44D120A_m891E7CFB540B01E715BC6F92E789788AACA779C9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisAndroidLinearAccelerationSensor_t970198FECD057A043BC8DDEE99C42928861CE5D9_m0E1C1D4ADE8497F71EBE54E75F3D7923531D8E66_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisAndroidMagneticFieldSensor_t1610FE66F3C8C0B079226776522B00876CD7307F_m92E13D5070D1F25D1CBD64670A3F5DAA70CC5F40_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisAndroidPressureSensor_t35F3053D89964B2771F3C24CC0A3D3ACE7A64FFE_mB00F579AA1A164599771BDEB14EC38270BA5CB1C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisAndroidProximity_t0951C9819B491F6DA8066417FE24C750A409288F_m0579CB26ACF2AE8BCB5E0B752ECE3DBCC50920B5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisAndroidRelativeHumidity_tBEFC71512766927C2BB2C95270C4E9938A3F3342_m1C4E8C33132041BF2304D793F6681ED7DAAC1B68_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisAndroidRotationVector_tD623D1A57567CB6F21E37E60BBB5CE66042F1C3C_m02EBEE8A9A9B7358D3EDB31E90EBC6F9BF17CD9C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisAndroidStepCounter_t60ECCD106CD8AD94CB740C46D212D1FA94DF38CD_mB0A266FC14B8DBE737B1B44FC1BA101E6B30A56D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisDualShock4GamepadAndroid_t12F04A138227E893CDB038399FFE400836152296_m4C98F825FBCEC3B44C364CF79D3AE5393518480E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisXboxOneGamepadAndroid_t81C60ABAB05F8FA9762EBB7655043EFDCBCBC728_m7B15F9E1E73C6FB9FDAE2E9A348D90AED10098D4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterProcessor_TisAndroidCompensateDirectionProcessor_t6EC5E83645FC7DD5345A83BD314EB8672860E557_m7FB80E4B8116918152685B15C67A1A26EE8DD327_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterProcessor_TisAndroidCompensateRotationProcessor_tFDB308670A5D207966B1CF3BCA786D69D060F021_mFBA82B492DEE7FAB37A6222E0F14C4ED1983B6E0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral52644C0210EBD0D65678081FEE3608A5723F313B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral77843243D4312B40A1163EFE55D56961E2352D09);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBBD73174406D6BAD02A5FFCA92D8E5008A02E589);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF87BFA6908F78FD2F9414AE8928800B1CECA77EC);
s_Il2CppMethodInitialized = true;
}
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 V_0;
memset((&V_0), 0, sizeof(V_0));
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C V_1;
memset((&V_1), 0, sizeof(V_1));
{
// InputSystem.RegisterLayout<AndroidGamepad>(
// matches: new InputDeviceMatcher()
// .WithInterface(kAndroidInterface)
// .WithDeviceClass("AndroidGameController"));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* L_0 = (&V_0);
il2cpp_codegen_initobj(L_0, sizeof(InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_1;
L_1 = InputDeviceMatcher_WithInterface_m58A8A1CF9A77598D0F904E13A86F48B3464725E4(L_0, _stringLiteral77843243D4312B40A1163EFE55D56961E2352D09, (bool)1, NULL);
V_0 = L_1;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_2;
L_2 = InputDeviceMatcher_WithDeviceClass_m303C68EE7902057FB7C4DA6CCAEC4A95B1BEB193((&V_0), _stringLiteral52644C0210EBD0D65678081FEE3608A5723F313B, (bool)1, NULL);
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_3;
memset((&L_3), 0, sizeof(L_3));
Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB((&L_3), L_2, /*hidden argument*/Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_RuntimeMethod_var);
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSystem_RegisterLayout_TisAndroidGamepad_t786079AAF70FADAC9023B59E60BE8DB35903EF6E_m7EEC589523FCF3B8359D12070CA407255586F447((String_t*)NULL, L_3, InputSystem_RegisterLayout_TisAndroidGamepad_t786079AAF70FADAC9023B59E60BE8DB35903EF6E_m7EEC589523FCF3B8359D12070CA407255586F447_RuntimeMethod_var);
// InputSystem.RegisterLayout<AndroidJoystick>(
// matches: new InputDeviceMatcher()
// .WithInterface(kAndroidInterface)
// .WithDeviceClass("AndroidGameController"));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* L_4 = (&V_0);
il2cpp_codegen_initobj(L_4, sizeof(InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_5;
L_5 = InputDeviceMatcher_WithInterface_m58A8A1CF9A77598D0F904E13A86F48B3464725E4(L_4, _stringLiteral77843243D4312B40A1163EFE55D56961E2352D09, (bool)1, NULL);
V_0 = L_5;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_6;
L_6 = InputDeviceMatcher_WithDeviceClass_m303C68EE7902057FB7C4DA6CCAEC4A95B1BEB193((&V_0), _stringLiteral52644C0210EBD0D65678081FEE3608A5723F313B, (bool)1, NULL);
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_7;
memset((&L_7), 0, sizeof(L_7));
Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB((&L_7), L_6, /*hidden argument*/Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_RuntimeMethod_var);
InputSystem_RegisterLayout_TisAndroidJoystick_t046CDCD28C85B087F639711DB5F651B6D469CA01_m1BD3D66CCAC5FF1B6BBB5B38AE0B85E38B2D2B31((String_t*)NULL, L_7, InputSystem_RegisterLayout_TisAndroidJoystick_t046CDCD28C85B087F639711DB5F651B6D469CA01_m1BD3D66CCAC5FF1B6BBB5B38AE0B85E38B2D2B31_RuntimeMethod_var);
// InputSystem.RegisterLayout<DualShock4GamepadAndroid>();
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C));
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_8 = V_1;
InputSystem_RegisterLayout_TisDualShock4GamepadAndroid_t12F04A138227E893CDB038399FFE400836152296_m4C98F825FBCEC3B44C364CF79D3AE5393518480E((String_t*)NULL, L_8, InputSystem_RegisterLayout_TisDualShock4GamepadAndroid_t12F04A138227E893CDB038399FFE400836152296_m4C98F825FBCEC3B44C364CF79D3AE5393518480E_RuntimeMethod_var);
// InputSystem.RegisterLayout<XboxOneGamepadAndroid>();
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C));
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_9 = V_1;
InputSystem_RegisterLayout_TisXboxOneGamepadAndroid_t81C60ABAB05F8FA9762EBB7655043EFDCBCBC728_m7B15F9E1E73C6FB9FDAE2E9A348D90AED10098D4((String_t*)NULL, L_9, InputSystem_RegisterLayout_TisXboxOneGamepadAndroid_t81C60ABAB05F8FA9762EBB7655043EFDCBCBC728_m7B15F9E1E73C6FB9FDAE2E9A348D90AED10098D4_RuntimeMethod_var);
// InputSystem.RegisterLayout<AndroidGamepadWithDpadAxes>();
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C));
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_10 = V_1;
InputSystem_RegisterLayout_TisAndroidGamepadWithDpadAxes_tF737215B337DB2EE82739556B7D49B9C47E1E0A6_mF87B21488883753F2AB3BA8A3958EF55B7F0611D((String_t*)NULL, L_10, InputSystem_RegisterLayout_TisAndroidGamepadWithDpadAxes_tF737215B337DB2EE82739556B7D49B9C47E1E0A6_mF87B21488883753F2AB3BA8A3958EF55B7F0611D_RuntimeMethod_var);
// InputSystem.RegisterLayout<AndroidGamepadWithDpadButtons>();
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C));
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_11 = V_1;
InputSystem_RegisterLayout_TisAndroidGamepadWithDpadButtons_t62C4BA5D1E7EDAC25BF4540A84825D8F210121CA_mD2C4FEB7BA984C4A4B36675C8913FEBAB361F764((String_t*)NULL, L_11, InputSystem_RegisterLayout_TisAndroidGamepadWithDpadButtons_t62C4BA5D1E7EDAC25BF4540A84825D8F210121CA_mD2C4FEB7BA984C4A4B36675C8913FEBAB361F764_RuntimeMethod_var);
// InputSystem.RegisterProcessor<AndroidCompensateDirectionProcessor>();
InputSystem_RegisterProcessor_TisAndroidCompensateDirectionProcessor_t6EC5E83645FC7DD5345A83BD314EB8672860E557_m7FB80E4B8116918152685B15C67A1A26EE8DD327((String_t*)NULL, InputSystem_RegisterProcessor_TisAndroidCompensateDirectionProcessor_t6EC5E83645FC7DD5345A83BD314EB8672860E557_m7FB80E4B8116918152685B15C67A1A26EE8DD327_RuntimeMethod_var);
// InputSystem.RegisterProcessor<AndroidCompensateRotationProcessor>();
InputSystem_RegisterProcessor_TisAndroidCompensateRotationProcessor_tFDB308670A5D207966B1CF3BCA786D69D060F021_mFBA82B492DEE7FAB37A6222E0F14C4ED1983B6E0((String_t*)NULL, InputSystem_RegisterProcessor_TisAndroidCompensateRotationProcessor_tFDB308670A5D207966B1CF3BCA786D69D060F021_mFBA82B492DEE7FAB37A6222E0F14C4ED1983B6E0_RuntimeMethod_var);
// InputSystem.RegisterLayout<AndroidAccelerometer>(
// matches: new InputDeviceMatcher()
// .WithInterface(kAndroidInterface)
// .WithDeviceClass("AndroidSensor")
// .WithCapability("sensorType", AndroidSensorType.Accelerometer));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* L_12 = (&V_0);
il2cpp_codegen_initobj(L_12, sizeof(InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_13;
L_13 = InputDeviceMatcher_WithInterface_m58A8A1CF9A77598D0F904E13A86F48B3464725E4(L_12, _stringLiteral77843243D4312B40A1163EFE55D56961E2352D09, (bool)1, NULL);
V_0 = L_13;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_14;
L_14 = InputDeviceMatcher_WithDeviceClass_m303C68EE7902057FB7C4DA6CCAEC4A95B1BEB193((&V_0), _stringLiteralF87BFA6908F78FD2F9414AE8928800B1CECA77EC, (bool)1, NULL);
V_0 = L_14;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_15;
L_15 = InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5((&V_0), _stringLiteralBBD73174406D6BAD02A5FFCA92D8E5008A02E589, 1, InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5_RuntimeMethod_var);
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_16;
memset((&L_16), 0, sizeof(L_16));
Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB((&L_16), L_15, /*hidden argument*/Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_RuntimeMethod_var);
InputSystem_RegisterLayout_TisAndroidAccelerometer_t424C7F249B02EEE2B4FC08EEEB8CCA17979C0152_m1A38F9810255A13478FD3C3CF264D16A541EB4E3((String_t*)NULL, L_16, InputSystem_RegisterLayout_TisAndroidAccelerometer_t424C7F249B02EEE2B4FC08EEEB8CCA17979C0152_m1A38F9810255A13478FD3C3CF264D16A541EB4E3_RuntimeMethod_var);
// InputSystem.RegisterLayout<AndroidMagneticFieldSensor>(
// matches: new InputDeviceMatcher()
// .WithInterface(kAndroidInterface)
// .WithDeviceClass("AndroidSensor")
// .WithCapability("sensorType", AndroidSensorType.MagneticField));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* L_17 = (&V_0);
il2cpp_codegen_initobj(L_17, sizeof(InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_18;
L_18 = InputDeviceMatcher_WithInterface_m58A8A1CF9A77598D0F904E13A86F48B3464725E4(L_17, _stringLiteral77843243D4312B40A1163EFE55D56961E2352D09, (bool)1, NULL);
V_0 = L_18;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_19;
L_19 = InputDeviceMatcher_WithDeviceClass_m303C68EE7902057FB7C4DA6CCAEC4A95B1BEB193((&V_0), _stringLiteralF87BFA6908F78FD2F9414AE8928800B1CECA77EC, (bool)1, NULL);
V_0 = L_19;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_20;
L_20 = InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5((&V_0), _stringLiteralBBD73174406D6BAD02A5FFCA92D8E5008A02E589, 2, InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5_RuntimeMethod_var);
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_21;
memset((&L_21), 0, sizeof(L_21));
Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB((&L_21), L_20, /*hidden argument*/Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_RuntimeMethod_var);
InputSystem_RegisterLayout_TisAndroidMagneticFieldSensor_t1610FE66F3C8C0B079226776522B00876CD7307F_m92E13D5070D1F25D1CBD64670A3F5DAA70CC5F40((String_t*)NULL, L_21, InputSystem_RegisterLayout_TisAndroidMagneticFieldSensor_t1610FE66F3C8C0B079226776522B00876CD7307F_m92E13D5070D1F25D1CBD64670A3F5DAA70CC5F40_RuntimeMethod_var);
// InputSystem.RegisterLayout<AndroidGyroscope>(
// matches: new InputDeviceMatcher()
// .WithInterface(kAndroidInterface)
// .WithDeviceClass("AndroidSensor")
// .WithCapability("sensorType", AndroidSensorType.Gyroscope));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* L_22 = (&V_0);
il2cpp_codegen_initobj(L_22, sizeof(InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_23;
L_23 = InputDeviceMatcher_WithInterface_m58A8A1CF9A77598D0F904E13A86F48B3464725E4(L_22, _stringLiteral77843243D4312B40A1163EFE55D56961E2352D09, (bool)1, NULL);
V_0 = L_23;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_24;
L_24 = InputDeviceMatcher_WithDeviceClass_m303C68EE7902057FB7C4DA6CCAEC4A95B1BEB193((&V_0), _stringLiteralF87BFA6908F78FD2F9414AE8928800B1CECA77EC, (bool)1, NULL);
V_0 = L_24;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_25;
L_25 = InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5((&V_0), _stringLiteralBBD73174406D6BAD02A5FFCA92D8E5008A02E589, 4, InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5_RuntimeMethod_var);
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_26;
memset((&L_26), 0, sizeof(L_26));
Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB((&L_26), L_25, /*hidden argument*/Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_RuntimeMethod_var);
InputSystem_RegisterLayout_TisAndroidGyroscope_t0C9BB3F1F09F92AD929863225385D22D46C2D39D_m06AECBB2E664188BF622D1EE82E3D1E9ED224803((String_t*)NULL, L_26, InputSystem_RegisterLayout_TisAndroidGyroscope_t0C9BB3F1F09F92AD929863225385D22D46C2D39D_m06AECBB2E664188BF622D1EE82E3D1E9ED224803_RuntimeMethod_var);
// InputSystem.RegisterLayout<AndroidLightSensor>(
// matches: new InputDeviceMatcher()
// .WithInterface(kAndroidInterface)
// .WithDeviceClass("AndroidSensor")
// .WithCapability("sensorType", AndroidSensorType.Light));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* L_27 = (&V_0);
il2cpp_codegen_initobj(L_27, sizeof(InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_28;
L_28 = InputDeviceMatcher_WithInterface_m58A8A1CF9A77598D0F904E13A86F48B3464725E4(L_27, _stringLiteral77843243D4312B40A1163EFE55D56961E2352D09, (bool)1, NULL);
V_0 = L_28;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_29;
L_29 = InputDeviceMatcher_WithDeviceClass_m303C68EE7902057FB7C4DA6CCAEC4A95B1BEB193((&V_0), _stringLiteralF87BFA6908F78FD2F9414AE8928800B1CECA77EC, (bool)1, NULL);
V_0 = L_29;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_30;
L_30 = InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5((&V_0), _stringLiteralBBD73174406D6BAD02A5FFCA92D8E5008A02E589, 5, InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5_RuntimeMethod_var);
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_31;
memset((&L_31), 0, sizeof(L_31));
Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB((&L_31), L_30, /*hidden argument*/Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_RuntimeMethod_var);
InputSystem_RegisterLayout_TisAndroidLightSensor_t555467EDE38119DBD9BADEFD8EB33EC2E44D120A_m891E7CFB540B01E715BC6F92E789788AACA779C9((String_t*)NULL, L_31, InputSystem_RegisterLayout_TisAndroidLightSensor_t555467EDE38119DBD9BADEFD8EB33EC2E44D120A_m891E7CFB540B01E715BC6F92E789788AACA779C9_RuntimeMethod_var);
// InputSystem.RegisterLayout<AndroidPressureSensor>(
// matches: new InputDeviceMatcher()
// .WithInterface(kAndroidInterface)
// .WithDeviceClass("AndroidSensor")
// .WithCapability("sensorType", AndroidSensorType.Pressure));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* L_32 = (&V_0);
il2cpp_codegen_initobj(L_32, sizeof(InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_33;
L_33 = InputDeviceMatcher_WithInterface_m58A8A1CF9A77598D0F904E13A86F48B3464725E4(L_32, _stringLiteral77843243D4312B40A1163EFE55D56961E2352D09, (bool)1, NULL);
V_0 = L_33;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_34;
L_34 = InputDeviceMatcher_WithDeviceClass_m303C68EE7902057FB7C4DA6CCAEC4A95B1BEB193((&V_0), _stringLiteralF87BFA6908F78FD2F9414AE8928800B1CECA77EC, (bool)1, NULL);
V_0 = L_34;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_35;
L_35 = InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5((&V_0), _stringLiteralBBD73174406D6BAD02A5FFCA92D8E5008A02E589, 6, InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5_RuntimeMethod_var);
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_36;
memset((&L_36), 0, sizeof(L_36));
Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB((&L_36), L_35, /*hidden argument*/Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_RuntimeMethod_var);
InputSystem_RegisterLayout_TisAndroidPressureSensor_t35F3053D89964B2771F3C24CC0A3D3ACE7A64FFE_mB00F579AA1A164599771BDEB14EC38270BA5CB1C((String_t*)NULL, L_36, InputSystem_RegisterLayout_TisAndroidPressureSensor_t35F3053D89964B2771F3C24CC0A3D3ACE7A64FFE_mB00F579AA1A164599771BDEB14EC38270BA5CB1C_RuntimeMethod_var);
// InputSystem.RegisterLayout<AndroidProximity>(
// matches: new InputDeviceMatcher()
// .WithInterface(kAndroidInterface)
// .WithDeviceClass("AndroidSensor")
// .WithCapability("sensorType", AndroidSensorType.Proximity));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* L_37 = (&V_0);
il2cpp_codegen_initobj(L_37, sizeof(InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_38;
L_38 = InputDeviceMatcher_WithInterface_m58A8A1CF9A77598D0F904E13A86F48B3464725E4(L_37, _stringLiteral77843243D4312B40A1163EFE55D56961E2352D09, (bool)1, NULL);
V_0 = L_38;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_39;
L_39 = InputDeviceMatcher_WithDeviceClass_m303C68EE7902057FB7C4DA6CCAEC4A95B1BEB193((&V_0), _stringLiteralF87BFA6908F78FD2F9414AE8928800B1CECA77EC, (bool)1, NULL);
V_0 = L_39;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_40;
L_40 = InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5((&V_0), _stringLiteralBBD73174406D6BAD02A5FFCA92D8E5008A02E589, 8, InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5_RuntimeMethod_var);
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_41;
memset((&L_41), 0, sizeof(L_41));
Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB((&L_41), L_40, /*hidden argument*/Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_RuntimeMethod_var);
InputSystem_RegisterLayout_TisAndroidProximity_t0951C9819B491F6DA8066417FE24C750A409288F_m0579CB26ACF2AE8BCB5E0B752ECE3DBCC50920B5((String_t*)NULL, L_41, InputSystem_RegisterLayout_TisAndroidProximity_t0951C9819B491F6DA8066417FE24C750A409288F_m0579CB26ACF2AE8BCB5E0B752ECE3DBCC50920B5_RuntimeMethod_var);
// InputSystem.RegisterLayout<AndroidGravitySensor>(
// matches: new InputDeviceMatcher()
// .WithInterface(kAndroidInterface)
// .WithDeviceClass("AndroidSensor")
// .WithCapability("sensorType", AndroidSensorType.Gravity));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* L_42 = (&V_0);
il2cpp_codegen_initobj(L_42, sizeof(InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_43;
L_43 = InputDeviceMatcher_WithInterface_m58A8A1CF9A77598D0F904E13A86F48B3464725E4(L_42, _stringLiteral77843243D4312B40A1163EFE55D56961E2352D09, (bool)1, NULL);
V_0 = L_43;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_44;
L_44 = InputDeviceMatcher_WithDeviceClass_m303C68EE7902057FB7C4DA6CCAEC4A95B1BEB193((&V_0), _stringLiteralF87BFA6908F78FD2F9414AE8928800B1CECA77EC, (bool)1, NULL);
V_0 = L_44;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_45;
L_45 = InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5((&V_0), _stringLiteralBBD73174406D6BAD02A5FFCA92D8E5008A02E589, ((int32_t)9), InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5_RuntimeMethod_var);
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_46;
memset((&L_46), 0, sizeof(L_46));
Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB((&L_46), L_45, /*hidden argument*/Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_RuntimeMethod_var);
InputSystem_RegisterLayout_TisAndroidGravitySensor_t41E115E03C89B62509B2B088FA239E7DAFFF9695_mFB7169F7A18BD1ED1DE79D6E8AE0C4A83CD43FB8((String_t*)NULL, L_46, InputSystem_RegisterLayout_TisAndroidGravitySensor_t41E115E03C89B62509B2B088FA239E7DAFFF9695_mFB7169F7A18BD1ED1DE79D6E8AE0C4A83CD43FB8_RuntimeMethod_var);
// InputSystem.RegisterLayout<AndroidLinearAccelerationSensor>(
// matches: new InputDeviceMatcher()
// .WithInterface(kAndroidInterface)
// .WithDeviceClass("AndroidSensor")
// .WithCapability("sensorType", AndroidSensorType.LinearAcceleration));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* L_47 = (&V_0);
il2cpp_codegen_initobj(L_47, sizeof(InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_48;
L_48 = InputDeviceMatcher_WithInterface_m58A8A1CF9A77598D0F904E13A86F48B3464725E4(L_47, _stringLiteral77843243D4312B40A1163EFE55D56961E2352D09, (bool)1, NULL);
V_0 = L_48;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_49;
L_49 = InputDeviceMatcher_WithDeviceClass_m303C68EE7902057FB7C4DA6CCAEC4A95B1BEB193((&V_0), _stringLiteralF87BFA6908F78FD2F9414AE8928800B1CECA77EC, (bool)1, NULL);
V_0 = L_49;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_50;
L_50 = InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5((&V_0), _stringLiteralBBD73174406D6BAD02A5FFCA92D8E5008A02E589, ((int32_t)10), InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5_RuntimeMethod_var);
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_51;
memset((&L_51), 0, sizeof(L_51));
Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB((&L_51), L_50, /*hidden argument*/Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_RuntimeMethod_var);
InputSystem_RegisterLayout_TisAndroidLinearAccelerationSensor_t970198FECD057A043BC8DDEE99C42928861CE5D9_m0E1C1D4ADE8497F71EBE54E75F3D7923531D8E66((String_t*)NULL, L_51, InputSystem_RegisterLayout_TisAndroidLinearAccelerationSensor_t970198FECD057A043BC8DDEE99C42928861CE5D9_m0E1C1D4ADE8497F71EBE54E75F3D7923531D8E66_RuntimeMethod_var);
// InputSystem.RegisterLayout<AndroidRotationVector>(
// matches: new InputDeviceMatcher()
// .WithInterface(kAndroidInterface)
// .WithDeviceClass("AndroidSensor")
// .WithCapability("sensorType", AndroidSensorType.RotationVector));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* L_52 = (&V_0);
il2cpp_codegen_initobj(L_52, sizeof(InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_53;
L_53 = InputDeviceMatcher_WithInterface_m58A8A1CF9A77598D0F904E13A86F48B3464725E4(L_52, _stringLiteral77843243D4312B40A1163EFE55D56961E2352D09, (bool)1, NULL);
V_0 = L_53;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_54;
L_54 = InputDeviceMatcher_WithDeviceClass_m303C68EE7902057FB7C4DA6CCAEC4A95B1BEB193((&V_0), _stringLiteralF87BFA6908F78FD2F9414AE8928800B1CECA77EC, (bool)1, NULL);
V_0 = L_54;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_55;
L_55 = InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5((&V_0), _stringLiteralBBD73174406D6BAD02A5FFCA92D8E5008A02E589, ((int32_t)11), InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5_RuntimeMethod_var);
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_56;
memset((&L_56), 0, sizeof(L_56));
Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB((&L_56), L_55, /*hidden argument*/Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_RuntimeMethod_var);
InputSystem_RegisterLayout_TisAndroidRotationVector_tD623D1A57567CB6F21E37E60BBB5CE66042F1C3C_m02EBEE8A9A9B7358D3EDB31E90EBC6F9BF17CD9C((String_t*)NULL, L_56, InputSystem_RegisterLayout_TisAndroidRotationVector_tD623D1A57567CB6F21E37E60BBB5CE66042F1C3C_m02EBEE8A9A9B7358D3EDB31E90EBC6F9BF17CD9C_RuntimeMethod_var);
// InputSystem.RegisterLayout<AndroidRelativeHumidity>(
// matches: new InputDeviceMatcher()
// .WithInterface(kAndroidInterface)
// .WithDeviceClass("AndroidSensor")
// .WithCapability("sensorType", AndroidSensorType.RelativeHumidity));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* L_57 = (&V_0);
il2cpp_codegen_initobj(L_57, sizeof(InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_58;
L_58 = InputDeviceMatcher_WithInterface_m58A8A1CF9A77598D0F904E13A86F48B3464725E4(L_57, _stringLiteral77843243D4312B40A1163EFE55D56961E2352D09, (bool)1, NULL);
V_0 = L_58;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_59;
L_59 = InputDeviceMatcher_WithDeviceClass_m303C68EE7902057FB7C4DA6CCAEC4A95B1BEB193((&V_0), _stringLiteralF87BFA6908F78FD2F9414AE8928800B1CECA77EC, (bool)1, NULL);
V_0 = L_59;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_60;
L_60 = InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5((&V_0), _stringLiteralBBD73174406D6BAD02A5FFCA92D8E5008A02E589, ((int32_t)12), InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5_RuntimeMethod_var);
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_61;
memset((&L_61), 0, sizeof(L_61));
Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB((&L_61), L_60, /*hidden argument*/Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_RuntimeMethod_var);
InputSystem_RegisterLayout_TisAndroidRelativeHumidity_tBEFC71512766927C2BB2C95270C4E9938A3F3342_m1C4E8C33132041BF2304D793F6681ED7DAAC1B68((String_t*)NULL, L_61, InputSystem_RegisterLayout_TisAndroidRelativeHumidity_tBEFC71512766927C2BB2C95270C4E9938A3F3342_m1C4E8C33132041BF2304D793F6681ED7DAAC1B68_RuntimeMethod_var);
// InputSystem.RegisterLayout<AndroidAmbientTemperature>(
// matches: new InputDeviceMatcher()
// .WithInterface(kAndroidInterface)
// .WithDeviceClass("AndroidSensor")
// .WithCapability("sensorType", AndroidSensorType.AmbientTemperature));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* L_62 = (&V_0);
il2cpp_codegen_initobj(L_62, sizeof(InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_63;
L_63 = InputDeviceMatcher_WithInterface_m58A8A1CF9A77598D0F904E13A86F48B3464725E4(L_62, _stringLiteral77843243D4312B40A1163EFE55D56961E2352D09, (bool)1, NULL);
V_0 = L_63;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_64;
L_64 = InputDeviceMatcher_WithDeviceClass_m303C68EE7902057FB7C4DA6CCAEC4A95B1BEB193((&V_0), _stringLiteralF87BFA6908F78FD2F9414AE8928800B1CECA77EC, (bool)1, NULL);
V_0 = L_64;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_65;
L_65 = InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5((&V_0), _stringLiteralBBD73174406D6BAD02A5FFCA92D8E5008A02E589, ((int32_t)13), InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5_RuntimeMethod_var);
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_66;
memset((&L_66), 0, sizeof(L_66));
Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB((&L_66), L_65, /*hidden argument*/Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_RuntimeMethod_var);
InputSystem_RegisterLayout_TisAndroidAmbientTemperature_t708F5C6684A965DF4B1DB0FBCD468DDCCC718F85_m9D24CE3A04058CA2A287CC24EBC1E7FB5F1CCC0F((String_t*)NULL, L_66, InputSystem_RegisterLayout_TisAndroidAmbientTemperature_t708F5C6684A965DF4B1DB0FBCD468DDCCC718F85_m9D24CE3A04058CA2A287CC24EBC1E7FB5F1CCC0F_RuntimeMethod_var);
// InputSystem.RegisterLayout<AndroidStepCounter>(
// matches: new InputDeviceMatcher()
// .WithInterface(kAndroidInterface)
// .WithDeviceClass("AndroidSensor")
// .WithCapability("sensorType", AndroidSensorType.StepCounter));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555* L_67 = (&V_0);
il2cpp_codegen_initobj(L_67, sizeof(InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555));
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_68;
L_68 = InputDeviceMatcher_WithInterface_m58A8A1CF9A77598D0F904E13A86F48B3464725E4(L_67, _stringLiteral77843243D4312B40A1163EFE55D56961E2352D09, (bool)1, NULL);
V_0 = L_68;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_69;
L_69 = InputDeviceMatcher_WithDeviceClass_m303C68EE7902057FB7C4DA6CCAEC4A95B1BEB193((&V_0), _stringLiteralF87BFA6908F78FD2F9414AE8928800B1CECA77EC, (bool)1, NULL);
V_0 = L_69;
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 L_70;
L_70 = InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5((&V_0), _stringLiteralBBD73174406D6BAD02A5FFCA92D8E5008A02E589, ((int32_t)19), InputDeviceMatcher_WithCapability_TisAndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_m584A73C156B31C066D3FB9D2992B4FCF43DE9FA5_RuntimeMethod_var);
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_71;
memset((&L_71), 0, sizeof(L_71));
Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB((&L_71), L_70, /*hidden argument*/Nullable_1__ctor_mD369CAC1BA03979662923E5D5E9FAF1F98E252EB_RuntimeMethod_var);
InputSystem_RegisterLayout_TisAndroidStepCounter_t60ECCD106CD8AD94CB740C46D212D1FA94DF38CD_mB0A266FC14B8DBE737B1B44FC1BA101E6B30A56D((String_t*)NULL, L_71, InputSystem_RegisterLayout_TisAndroidStepCounter_t60ECCD106CD8AD94CB740C46D212D1FA94DF38CD_mB0A266FC14B8DBE737B1B44FC1BA101E6B30A56D_RuntimeMethod_var);
// InputSystem.onFindLayoutForDevice += OnFindLayoutForDevice;
InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E* L_72 = (InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E*)il2cpp_codegen_object_new(InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E_il2cpp_TypeInfo_var);
NullCheck(L_72);
InputDeviceFindControlLayoutDelegate__ctor_mFF49E8C46111B03A6B9AEBDA66C309EF6FACFB78(L_72, NULL, (intptr_t)((void*)AndroidSupport_OnFindLayoutForDevice_m8D54B20C58E793F3810737C2ABE26E462F29BFAF_RuntimeMethod_var), NULL);
InputSystem_add_onFindLayoutForDevice_m5BC51D1D5A33186A539F58F2A5429A7252ED8BAF(L_72, NULL);
// }
return;
}
}
// System.String UnityEngine.InputSystem.Android.AndroidSupport::OnFindLayoutForDevice(UnityEngine.InputSystem.Layouts.InputDeviceDescription&,System.String,UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AndroidSupport_OnFindLayoutForDevice_m8D54B20C58E793F3810737C2ABE26E462F29BFAF (InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* ___description0, String_t* ___matchedLayout1, InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* ___executeCommandDelegate2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Contains_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_m3A90F2A6B53FFE9AFE2BECEB27CB51257ADC2E38_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral18F4362DA6D8860F62A6DA84DFB398164DBA5F0B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral23AD0FFB4F9C6A352D6C32AAFEEA5457AD8207A0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral52644C0210EBD0D65678081FEE3608A5723F313B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral77843243D4312B40A1163EFE55D56961E2352D09);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7A3DCBDB544A326B1B52EBC4A2AB7E3A5470AD85);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA86DE20D593008E3327ECC746BF23D927DB2B176);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAE11AB31B7AFD5F5D11CBA5FAE03571E8E0EE750);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD4D9018374577033D15B6167431AD3810E804E83);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
String_t* V_1 = NULL;
bool V_2 = false;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D V_5;
memset((&V_5), 0, sizeof(V_5));
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
int32_t G_B4_0 = 0;
int32_t G_B9_0 = 0;
int32_t G_B22_0 = 0;
int32_t G_B31_0 = 0;
{
// if (!string.IsNullOrEmpty(matchedLayout) && matchedLayout != "AndroidGamepad" && matchedLayout != "AndroidJoystick")
String_t* L_0 = ___matchedLayout1;
bool L_1;
L_1 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_0, NULL);
if (L_1)
{
goto IL_0023;
}
}
{
String_t* L_2 = ___matchedLayout1;
bool L_3;
L_3 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_2, _stringLiteral23AD0FFB4F9C6A352D6C32AAFEEA5457AD8207A0, NULL);
if (!L_3)
{
goto IL_0023;
}
}
{
String_t* L_4 = ___matchedLayout1;
bool L_5;
L_5 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_4, _stringLiteral7A3DCBDB544A326B1B52EBC4A2AB7E3A5470AD85, NULL);
G_B4_0 = ((int32_t)(L_5));
goto IL_0024;
}
IL_0023:
{
G_B4_0 = 0;
}
IL_0024:
{
V_0 = (bool)G_B4_0;
bool L_6 = V_0;
if (!L_6)
{
goto IL_002f;
}
}
{
// return null;
V_1 = (String_t*)NULL;
goto IL_0184;
}
IL_002f:
{
// if (description.interfaceName != "Android" || string.IsNullOrEmpty(description.capabilities))
InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* L_7 = ___description0;
String_t* L_8;
L_8 = InputDeviceDescription_get_interfaceName_m087CF7E83BAF1E6C6375B3F16A9FAA3A71717D07_inline(L_7, NULL);
bool L_9;
L_9 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_8, _stringLiteral77843243D4312B40A1163EFE55D56961E2352D09, NULL);
if (L_9)
{
goto IL_004e;
}
}
{
InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* L_10 = ___description0;
String_t* L_11;
L_11 = InputDeviceDescription_get_capabilities_mEBF36ED5663709FCA039D1AEA87F6B6C404E76CD_inline(L_10, NULL);
bool L_12;
L_12 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_11, NULL);
G_B9_0 = ((int32_t)(L_12));
goto IL_004f;
}
IL_004e:
{
G_B9_0 = 1;
}
IL_004f:
{
V_2 = (bool)G_B9_0;
bool L_13 = V_2;
if (!L_13)
{
goto IL_005a;
}
}
{
// return null;
V_1 = (String_t*)NULL;
goto IL_0184;
}
IL_005a:
{
// switch (description.deviceClass)
InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* L_14 = ___description0;
String_t* L_15;
L_15 = InputDeviceDescription_get_deviceClass_m59E89FD7B104B4E23CB6AA979500CD0330FFBF26_inline(L_14, NULL);
V_4 = L_15;
String_t* L_16 = V_4;
V_3 = L_16;
String_t* L_17 = V_3;
bool L_18;
L_18 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_17, _stringLiteral52644C0210EBD0D65678081FEE3608A5723F313B, NULL);
if (L_18)
{
goto IL_0077;
}
}
{
goto IL_0180;
}
IL_0077:
{
// var caps = AndroidDeviceCapabilities.FromJson(description.capabilities);
InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* L_19 = ___description0;
String_t* L_20;
L_20 = InputDeviceDescription_get_capabilities_mEBF36ED5663709FCA039D1AEA87F6B6C404E76CD_inline(L_19, NULL);
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D L_21;
L_21 = AndroidDeviceCapabilities_FromJson_mA71F4880BD35D6541D70A08607FDA510FBAB2615(L_20, NULL);
V_5 = L_21;
// if ((caps.inputSources & AndroidInputSource.Gamepad) != AndroidInputSource.Gamepad)
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D L_22 = V_5;
int32_t L_23 = L_22.___inputSources_5;
V_6 = (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_23&((int32_t)1025)))) == ((int32_t)((int32_t)1025)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_24 = V_6;
if (!L_24)
{
goto IL_00ad;
}
}
{
// return "AndroidJoystick";
V_1 = _stringLiteral7A3DCBDB544A326B1B52EBC4A2AB7E3A5470AD85;
goto IL_0184;
}
IL_00ad:
{
// if (caps.motionAxes == null)
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D L_25 = V_5;
AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847* L_26 = L_25.___motionAxes_4;
V_7 = (bool)((((RuntimeObject*)(AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847*)L_26) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_27 = V_7;
if (!L_27)
{
goto IL_00c8;
}
}
{
// return "AndroidGamepadWithDpadButtons";
V_1 = _stringLiteralA86DE20D593008E3327ECC746BF23D927DB2B176;
goto IL_0184;
}
IL_00c8:
{
// if (caps.motionAxes.Contains(AndroidAxis.Z) &&
// caps.motionAxes.Contains(AndroidAxis.Rz) &&
// caps.motionAxes.Contains(AndroidAxis.HatX) &&
// caps.motionAxes.Contains(AndroidAxis.HatY))
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D L_28 = V_5;
AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847* L_29 = L_28.___motionAxes_4;
bool L_30;
L_30 = Enumerable_Contains_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_m3A90F2A6B53FFE9AFE2BECEB27CB51257ADC2E38((RuntimeObject*)L_29, ((int32_t)11), Enumerable_Contains_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_m3A90F2A6B53FFE9AFE2BECEB27CB51257ADC2E38_RuntimeMethod_var);
if (!L_30)
{
goto IL_0108;
}
}
{
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D L_31 = V_5;
AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847* L_32 = L_31.___motionAxes_4;
bool L_33;
L_33 = Enumerable_Contains_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_m3A90F2A6B53FFE9AFE2BECEB27CB51257ADC2E38((RuntimeObject*)L_32, ((int32_t)14), Enumerable_Contains_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_m3A90F2A6B53FFE9AFE2BECEB27CB51257ADC2E38_RuntimeMethod_var);
if (!L_33)
{
goto IL_0108;
}
}
{
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D L_34 = V_5;
AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847* L_35 = L_34.___motionAxes_4;
bool L_36;
L_36 = Enumerable_Contains_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_m3A90F2A6B53FFE9AFE2BECEB27CB51257ADC2E38((RuntimeObject*)L_35, ((int32_t)15), Enumerable_Contains_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_m3A90F2A6B53FFE9AFE2BECEB27CB51257ADC2E38_RuntimeMethod_var);
if (!L_36)
{
goto IL_0108;
}
}
{
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D L_37 = V_5;
AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847* L_38 = L_37.___motionAxes_4;
bool L_39;
L_39 = Enumerable_Contains_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_m3A90F2A6B53FFE9AFE2BECEB27CB51257ADC2E38((RuntimeObject*)L_38, ((int32_t)16), Enumerable_Contains_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_m3A90F2A6B53FFE9AFE2BECEB27CB51257ADC2E38_RuntimeMethod_var);
G_B22_0 = ((int32_t)(L_39));
goto IL_0109;
}
IL_0108:
{
G_B22_0 = 0;
}
IL_0109:
{
V_8 = (bool)G_B22_0;
bool L_40 = V_8;
if (!L_40)
{
goto IL_0149;
}
}
{
// if (caps.vendorId == kVendorMicrosoft)
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D L_41 = V_5;
int32_t L_42 = L_41.___vendorId_2;
V_9 = (bool)((((int32_t)L_42) == ((int32_t)((int32_t)1118)))? 1 : 0);
bool L_43 = V_9;
if (!L_43)
{
goto IL_012c;
}
}
{
// return "XboxOneGamepadAndroid";
V_1 = _stringLiteralD4D9018374577033D15B6167431AD3810E804E83;
goto IL_0184;
}
IL_012c:
{
// if (caps.vendorId == kVendorSony)
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D L_44 = V_5;
int32_t L_45 = L_44.___vendorId_2;
V_10 = (bool)((((int32_t)L_45) == ((int32_t)((int32_t)1356)))? 1 : 0);
bool L_46 = V_10;
if (!L_46)
{
goto IL_0148;
}
}
{
// return "DualShock4GamepadAndroid";
V_1 = _stringLiteral18F4362DA6D8860F62A6DA84DFB398164DBA5F0B;
goto IL_0184;
}
IL_0148:
{
}
IL_0149:
{
// if (caps.motionAxes.Contains(AndroidAxis.HatX) &&
// caps.motionAxes.Contains(AndroidAxis.HatY))
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D L_47 = V_5;
AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847* L_48 = L_47.___motionAxes_4;
bool L_49;
L_49 = Enumerable_Contains_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_m3A90F2A6B53FFE9AFE2BECEB27CB51257ADC2E38((RuntimeObject*)L_48, ((int32_t)15), Enumerable_Contains_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_m3A90F2A6B53FFE9AFE2BECEB27CB51257ADC2E38_RuntimeMethod_var);
if (!L_49)
{
goto IL_0169;
}
}
{
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D L_50 = V_5;
AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847* L_51 = L_50.___motionAxes_4;
bool L_52;
L_52 = Enumerable_Contains_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_m3A90F2A6B53FFE9AFE2BECEB27CB51257ADC2E38((RuntimeObject*)L_51, ((int32_t)16), Enumerable_Contains_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_m3A90F2A6B53FFE9AFE2BECEB27CB51257ADC2E38_RuntimeMethod_var);
G_B31_0 = ((int32_t)(L_52));
goto IL_016a;
}
IL_0169:
{
G_B31_0 = 0;
}
IL_016a:
{
V_11 = (bool)G_B31_0;
bool L_53 = V_11;
if (!L_53)
{
goto IL_0178;
}
}
{
// return "AndroidGamepadWithDpadAxes";
V_1 = _stringLiteralAE11AB31B7AFD5F5D11CBA5FAE03571E8E0EE750;
goto IL_0184;
}
IL_0178:
{
// return "AndroidGamepadWithDpadButtons";
V_1 = _stringLiteralA86DE20D593008E3327ECC746BF23D927DB2B176;
goto IL_0184;
}
IL_0180:
{
// return null;
V_1 = (String_t*)NULL;
goto IL_0184;
}
IL_0184:
{
// }
String_t* L_54 = V_1;
return L_54;
}
}
// System.Void UnityEngine.InputSystem.Android.AndroidSupport::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidSupport__ctor_m4C23EFF68AE51F717FD0B2AD36984610E2162D00 (AndroidSupport_t9BA3FBC7ECB2AA03961149F9D91F90CF72F1A65D* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AndroidGameControllerState_get_format_mB52CB7E3D1E55F0048A096CF307B7B289599CA6E (AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// get { return kFormat; }
il2cpp_codegen_runtime_class_init_inline(AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38_il2cpp_TypeInfo_var);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = ((AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38_StaticFields*)il2cpp_codegen_static_fields_for(AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38_il2cpp_TypeInfo_var))->___kFormat_7;
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
// get { return kFormat; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AndroidGameControllerState_get_format_mB52CB7E3D1E55F0048A096CF307B7B289599CA6E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = AndroidGameControllerState_get_format_mB52CB7E3D1E55F0048A096CF307B7B289599CA6E(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState::WithButton(UnityEngine.InputSystem.Android.LowLevel.AndroidKeyCode,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38 AndroidGameControllerState_WithButton_mDB37C4C60EE0B9203393FE078D02CE624FC25615 (AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38* __this, int32_t ___code0, bool ___value1, const RuntimeMethod* method)
{
uint32_t* V_0 = NULL;
uint32_t* V_1 = NULL;
bool V_2 = false;
AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38 V_3;
memset((&V_3), 0, sizeof(V_3));
{
U3CbuttonsU3Ee__FixedBuffer_t7413EBD27C3C5C4333E8EEF49BE780DEE091C295* L_0 = (&__this->___buttons_8);
uint32_t* L_1 = (&L_0->___FixedElementField_0);
V_1 = L_1;
// fixed(uint* buttonsPtr = buttons)
uint32_t* L_2 = V_1;
V_0 = (uint32_t*)((uintptr_t)L_2);
// if (value)
bool L_3 = ___value1;
V_2 = L_3;
bool L_4 = V_2;
if (!L_4)
{
goto IL_002e;
}
}
{
// buttonsPtr[(int)code / 32] |= 1U << ((int)code % 32);
uint32_t* L_5 = V_0;
int32_t L_6 = ___code0;
uint32_t* L_7 = ((uint32_t*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)((int32_t)L_6/((int32_t)32)))), 4))));
int32_t L_8 = *((uint32_t*)L_7);
int32_t L_9 = ___code0;
*((int32_t*)L_7) = (int32_t)((int32_t)(L_8|((int32_t)(1<<((int32_t)(((int32_t)((int32_t)L_9%((int32_t)32)))&((int32_t)31)))))));
goto IL_0045;
}
IL_002e:
{
// buttonsPtr[(int)code / 32] &= ~(1U << ((int)code % 32));
uint32_t* L_10 = V_0;
int32_t L_11 = ___code0;
uint32_t* L_12 = ((uint32_t*)il2cpp_codegen_add((intptr_t)L_10, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)((int32_t)L_11/((int32_t)32)))), 4))));
int32_t L_13 = *((uint32_t*)L_12);
int32_t L_14 = ___code0;
*((int32_t*)L_12) = (int32_t)((int32_t)(L_13&((~((int32_t)(1<<((int32_t)(((int32_t)((int32_t)L_14%((int32_t)32)))&((int32_t)31)))))))));
}
IL_0045:
{
V_1 = (uint32_t*)((uintptr_t)0);
// return this;
AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38 L_15 = (*(AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38*)__this);
V_3 = L_15;
goto IL_0052;
}
IL_0052:
{
// }
AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38 L_16 = V_3;
return L_16;
}
}
IL2CPP_EXTERN_C AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38 AndroidGameControllerState_WithButton_mDB37C4C60EE0B9203393FE078D02CE624FC25615_AdjustorThunk (RuntimeObject* __this, int32_t ___code0, bool ___value1, const RuntimeMethod* method)
{
AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38*>(__this + _offset);
AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38 _returnValue;
_returnValue = AndroidGameControllerState_WithButton_mDB37C4C60EE0B9203393FE078D02CE624FC25615(_thisAdjusted, ___code0, ___value1, method);
return _returnValue;
}
// UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState::WithAxis(UnityEngine.InputSystem.Android.LowLevel.AndroidAxis,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38 AndroidGameControllerState_WithAxis_mCA410B8767961A5E2D2F534CC936DA98BCCD8A2C (AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38* __this, int32_t ___axis0, float ___value1, const RuntimeMethod* method)
{
float* V_0 = NULL;
float* V_1 = NULL;
AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38 V_2;
memset((&V_2), 0, sizeof(V_2));
{
U3CaxisU3Ee__FixedBuffer_tDC679A545AFAAEF05C398B21A88FEE416E1F3B0F* L_0 = (&__this->___axis_9);
float* L_1 = (&L_0->___FixedElementField_0);
V_1 = L_1;
// fixed(float* axisPtr = this.axis)
float* L_2 = V_1;
V_0 = (float*)((uintptr_t)L_2);
// axisPtr[(int)axis] = value;
float* L_3 = V_0;
int32_t L_4 = ___axis0;
float L_5 = ___value1;
*((float*)((float*)il2cpp_codegen_add((intptr_t)L_3, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_4), 4))))) = (float)L_5;
V_1 = (float*)((uintptr_t)0);
// return this;
AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38 L_6 = (*(AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38*)__this);
V_2 = L_6;
goto IL_0026;
}
IL_0026:
{
// }
AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38 L_7 = V_2;
return L_7;
}
}
IL2CPP_EXTERN_C AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38 AndroidGameControllerState_WithAxis_mCA410B8767961A5E2D2F534CC936DA98BCCD8A2C_AdjustorThunk (RuntimeObject* __this, int32_t ___axis0, float ___value1, const RuntimeMethod* method)
{
AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38*>(__this + _offset);
AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38 _returnValue;
_returnValue = AndroidGameControllerState_WithAxis_mCA410B8767961A5E2D2F534CC936DA98BCCD8A2C(_thisAdjusted, ___axis0, ___value1, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.Android.LowLevel.AndroidGameControllerState::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidGameControllerState__cctor_m6A6E8B12E50E211C2B2A07CF220B73E2653D29A7 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static FourCC kFormat = new FourCC('A', 'G', 'C', ' ');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)65), ((int32_t)71), ((int32_t)67), ((int32_t)32), /*hidden argument*/NULL);
((AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38_StaticFields*)il2cpp_codegen_static_fields_for(AndroidGameControllerState_tEF3640EA2CB37ADAAE1F2B76E4E6BC5F7E3D2E38_il2cpp_TypeInfo_var))->___kFormat_7 = L_0;
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities
IL2CPP_EXTERN_C void AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_marshal_pinvoke(const AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D& unmarshaled, AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_marshaled_pinvoke& marshaled)
{
marshaled.___deviceDescriptor_0 = il2cpp_codegen_marshal_string(unmarshaled.___deviceDescriptor_0);
marshaled.___productId_1 = unmarshaled.___productId_1;
marshaled.___vendorId_2 = unmarshaled.___vendorId_2;
marshaled.___isVirtual_3 = static_cast<int32_t>(unmarshaled.___isVirtual_3);
if (unmarshaled.___motionAxes_4 != NULL)
{
il2cpp_array_size_t _unmarshaledmotionAxes_Length = (unmarshaled.___motionAxes_4)->max_length;
marshaled.___motionAxes_4 = il2cpp_codegen_marshal_allocate_array<int32_t>(_unmarshaledmotionAxes_Length);
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaledmotionAxes_Length); i++)
{
(marshaled.___motionAxes_4)[i] = (unmarshaled.___motionAxes_4)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
}
}
else
{
marshaled.___motionAxes_4 = NULL;
}
marshaled.___inputSources_5 = unmarshaled.___inputSources_5;
}
IL2CPP_EXTERN_C void AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_marshal_pinvoke_back(const AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_marshaled_pinvoke& marshaled, AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
unmarshaled.___deviceDescriptor_0 = il2cpp_codegen_marshal_string_result(marshaled.___deviceDescriptor_0);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___deviceDescriptor_0), (void*)il2cpp_codegen_marshal_string_result(marshaled.___deviceDescriptor_0));
int32_t unmarshaledproductId_temp_1 = 0;
unmarshaledproductId_temp_1 = marshaled.___productId_1;
unmarshaled.___productId_1 = unmarshaledproductId_temp_1;
int32_t unmarshaledvendorId_temp_2 = 0;
unmarshaledvendorId_temp_2 = marshaled.___vendorId_2;
unmarshaled.___vendorId_2 = unmarshaledvendorId_temp_2;
bool unmarshaledisVirtual_temp_3 = false;
unmarshaledisVirtual_temp_3 = static_cast<bool>(marshaled.___isVirtual_3);
unmarshaled.___isVirtual_3 = unmarshaledisVirtual_temp_3;
if (marshaled.___motionAxes_4 != NULL)
{
if (unmarshaled.___motionAxes_4 == NULL)
{
unmarshaled.___motionAxes_4 = reinterpret_cast<AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847*>((AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847*)SZArrayNew(AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847_il2cpp_TypeInfo_var, 1));
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___motionAxes_4), (void*)reinterpret_cast<AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847*>((AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847*)SZArrayNew(AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847_il2cpp_TypeInfo_var, 1)));
}
il2cpp_array_size_t _arrayLength = (unmarshaled.___motionAxes_4)->max_length;
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++)
{
(unmarshaled.___motionAxes_4)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), (marshaled.___motionAxes_4)[i]);
}
}
int32_t unmarshaledinputSources_temp_5 = 0;
unmarshaledinputSources_temp_5 = marshaled.___inputSources_5;
unmarshaled.___inputSources_5 = unmarshaledinputSources_temp_5;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities
IL2CPP_EXTERN_C void AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_marshal_pinvoke_cleanup(AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_marshaled_pinvoke& marshaled)
{
il2cpp_codegen_marshal_free(marshaled.___deviceDescriptor_0);
marshaled.___deviceDescriptor_0 = NULL;
if (marshaled.___motionAxes_4 != NULL)
{
il2cpp_codegen_marshal_free(marshaled.___motionAxes_4);
marshaled.___motionAxes_4 = NULL;
}
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities
IL2CPP_EXTERN_C void AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_marshal_com(const AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D& unmarshaled, AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_marshaled_com& marshaled)
{
marshaled.___deviceDescriptor_0 = il2cpp_codegen_marshal_bstring(unmarshaled.___deviceDescriptor_0);
marshaled.___productId_1 = unmarshaled.___productId_1;
marshaled.___vendorId_2 = unmarshaled.___vendorId_2;
marshaled.___isVirtual_3 = static_cast<int32_t>(unmarshaled.___isVirtual_3);
if (unmarshaled.___motionAxes_4 != NULL)
{
il2cpp_array_size_t _unmarshaledmotionAxes_Length = (unmarshaled.___motionAxes_4)->max_length;
marshaled.___motionAxes_4 = il2cpp_codegen_marshal_allocate_array<int32_t>(_unmarshaledmotionAxes_Length);
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaledmotionAxes_Length); i++)
{
(marshaled.___motionAxes_4)[i] = (unmarshaled.___motionAxes_4)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
}
}
else
{
marshaled.___motionAxes_4 = NULL;
}
marshaled.___inputSources_5 = unmarshaled.___inputSources_5;
}
IL2CPP_EXTERN_C void AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_marshal_com_back(const AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_marshaled_com& marshaled, AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
unmarshaled.___deviceDescriptor_0 = il2cpp_codegen_marshal_bstring_result(marshaled.___deviceDescriptor_0);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___deviceDescriptor_0), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___deviceDescriptor_0));
int32_t unmarshaledproductId_temp_1 = 0;
unmarshaledproductId_temp_1 = marshaled.___productId_1;
unmarshaled.___productId_1 = unmarshaledproductId_temp_1;
int32_t unmarshaledvendorId_temp_2 = 0;
unmarshaledvendorId_temp_2 = marshaled.___vendorId_2;
unmarshaled.___vendorId_2 = unmarshaledvendorId_temp_2;
bool unmarshaledisVirtual_temp_3 = false;
unmarshaledisVirtual_temp_3 = static_cast<bool>(marshaled.___isVirtual_3);
unmarshaled.___isVirtual_3 = unmarshaledisVirtual_temp_3;
if (marshaled.___motionAxes_4 != NULL)
{
if (unmarshaled.___motionAxes_4 == NULL)
{
unmarshaled.___motionAxes_4 = reinterpret_cast<AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847*>((AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847*)SZArrayNew(AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847_il2cpp_TypeInfo_var, 1));
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___motionAxes_4), (void*)reinterpret_cast<AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847*>((AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847*)SZArrayNew(AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847_il2cpp_TypeInfo_var, 1)));
}
il2cpp_array_size_t _arrayLength = (unmarshaled.___motionAxes_4)->max_length;
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++)
{
(unmarshaled.___motionAxes_4)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), (marshaled.___motionAxes_4)[i]);
}
}
int32_t unmarshaledinputSources_temp_5 = 0;
unmarshaledinputSources_temp_5 = marshaled.___inputSources_5;
unmarshaled.___inputSources_5 = unmarshaledinputSources_temp_5;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities
IL2CPP_EXTERN_C void AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_marshal_com_cleanup(AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_marshaled_com& marshaled)
{
il2cpp_codegen_marshal_free_bstring(marshaled.___deviceDescriptor_0);
marshaled.___deviceDescriptor_0 = NULL;
if (marshaled.___motionAxes_4 != NULL)
{
il2cpp_codegen_marshal_free(marshaled.___motionAxes_4);
marshaled.___motionAxes_4 = NULL;
}
}
// System.String UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities::ToJson()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AndroidDeviceCapabilities_ToJson_m78FD90AE0C1F01386D56286CAB693855D7E38206 (AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
// return JsonUtility.ToJson(this);
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D L_0 = (*(AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D*)__this);
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D L_1 = L_0;
RuntimeObject* L_2 = Box(AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_il2cpp_TypeInfo_var, &L_1);
String_t* L_3;
L_3 = JsonUtility_ToJson_mD0FB24DC5A8621A2473FC208E9B15AF43944EBCD(L_2, NULL);
V_0 = L_3;
goto IL_0014;
}
IL_0014:
{
// }
String_t* L_4 = V_0;
return L_4;
}
}
IL2CPP_EXTERN_C String_t* AndroidDeviceCapabilities_ToJson_m78FD90AE0C1F01386D56286CAB693855D7E38206_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D*>(__this + _offset);
String_t* _returnValue;
_returnValue = AndroidDeviceCapabilities_ToJson_m78FD90AE0C1F01386D56286CAB693855D7E38206(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities::FromJson(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D AndroidDeviceCapabilities_FromJson_mA71F4880BD35D6541D70A08607FDA510FBAB2615 (String_t* ___json0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonUtility_FromJson_TisAndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_m459CC1D300860AF774BDDD62715981659FA9F1A6_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D V_1;
memset((&V_1), 0, sizeof(V_1));
{
// if (json == null)
String_t* L_0 = ___json0;
V_0 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0014;
}
}
{
// throw new ArgumentNullException(nameof(json));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral43187C90BBB5DFB063A95733C9BD65ECD25A2E84)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AndroidDeviceCapabilities_FromJson_mA71F4880BD35D6541D70A08607FDA510FBAB2615_RuntimeMethod_var)));
}
IL_0014:
{
// return JsonUtility.FromJson<AndroidDeviceCapabilities>(json);
String_t* L_3 = ___json0;
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D L_4;
L_4 = JsonUtility_FromJson_TisAndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_m459CC1D300860AF774BDDD62715981659FA9F1A6(L_3, JsonUtility_FromJson_TisAndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D_m459CC1D300860AF774BDDD62715981659FA9F1A6_RuntimeMethod_var);
V_1 = L_4;
goto IL_001d;
}
IL_001d:
{
// }
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D L_5 = V_1;
return L_5;
}
}
// System.String UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AndroidDeviceCapabilities_ToString_m06087F8B903F8416AD580B6A118348E51DED9434 (AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidInputSource_t4E49A7A84DDF7CF3966E322F75C97EEA43DE2738_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Select_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_TisString_t_mFF4D6A3B07A9821C08DE0D6B5EE2E5D62DD31F59_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_ToArray_TisString_t_mCD2BC789CBFF834E06F00948FC47E15E720936DC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t0825937F2E7F47B2A220EAB90DE0736AAEB5AE1D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CToStringU3Eb__8_0_m4E6C86B6147419A1476EE25E4015405A461B6D66_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA7A40E38D01B668F4968EFCD7A511545A5B99846);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD64DE515DE159C401BB82652225D6BE22CDAD7A1);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t G_B4_0 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B4_1 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B4_2 = NULL;
String_t* G_B4_3 = NULL;
int32_t G_B1_0 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B1_1 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B1_2 = NULL;
String_t* G_B1_3 = NULL;
Func_2_t0825937F2E7F47B2A220EAB90DE0736AAEB5AE1D* G_B3_0 = NULL;
AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847* G_B3_1 = NULL;
String_t* G_B3_2 = NULL;
int32_t G_B3_3 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B3_4 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B3_5 = NULL;
String_t* G_B3_6 = NULL;
Func_2_t0825937F2E7F47B2A220EAB90DE0736AAEB5AE1D* G_B2_0 = NULL;
AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847* G_B2_1 = NULL;
String_t* G_B2_2 = NULL;
int32_t G_B2_3 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B2_4 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B2_5 = NULL;
String_t* G_B2_6 = NULL;
String_t* G_B5_0 = NULL;
int32_t G_B5_1 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B5_2 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B5_3 = NULL;
String_t* G_B5_4 = NULL;
{
// return
// $"deviceDescriptor = {deviceDescriptor}, productId = {productId}, vendorId = {vendorId}, isVirtual = {isVirtual}, motionAxes = {(motionAxes == null ? "<null>" : String.Join(",", motionAxes.Select(i => i.ToString()).ToArray()))}, inputSources = {inputSources}";
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)6);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
String_t* L_2 = __this->___deviceDescriptor_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_1;
int32_t L_4 = __this->___productId_1;
int32_t L_5 = L_4;
RuntimeObject* L_6 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_5);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_6);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_6);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = L_3;
int32_t L_8 = __this->___vendorId_2;
int32_t L_9 = L_8;
RuntimeObject* L_10 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_9);
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_10);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)L_10);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11 = L_7;
bool L_12 = __this->___isVirtual_3;
bool L_13 = L_12;
RuntimeObject* L_14 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_13);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_14);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject*)L_14);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = L_11;
AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847* L_16 = __this->___motionAxes_4;
G_B1_0 = 4;
G_B1_1 = L_15;
G_B1_2 = L_15;
G_B1_3 = _stringLiteralA7A40E38D01B668F4968EFCD7A511545A5B99846;
if (!L_16)
{
G_B4_0 = 4;
G_B4_1 = L_15;
G_B4_2 = L_15;
G_B4_3 = _stringLiteralA7A40E38D01B668F4968EFCD7A511545A5B99846;
goto IL_0084;
}
}
{
AndroidAxisU5BU5D_tCAE6E6616863D9C2B96E8B15B0BC9F78858AA847* L_17 = __this->___motionAxes_4;
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_il2cpp_TypeInfo_var);
Func_2_t0825937F2E7F47B2A220EAB90DE0736AAEB5AE1D* L_18 = ((U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_il2cpp_TypeInfo_var))->___U3CU3E9__8_0_1;
Func_2_t0825937F2E7F47B2A220EAB90DE0736AAEB5AE1D* L_19 = L_18;
G_B2_0 = L_19;
G_B2_1 = L_17;
G_B2_2 = _stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB;
G_B2_3 = G_B1_0;
G_B2_4 = G_B1_1;
G_B2_5 = G_B1_2;
G_B2_6 = G_B1_3;
if (L_19)
{
G_B3_0 = L_19;
G_B3_1 = L_17;
G_B3_2 = _stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB;
G_B3_3 = G_B1_0;
G_B3_4 = G_B1_1;
G_B3_5 = G_B1_2;
G_B3_6 = G_B1_3;
goto IL_0073;
}
}
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_il2cpp_TypeInfo_var);
U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B* L_20 = ((U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_il2cpp_TypeInfo_var))->___U3CU3E9_0;
Func_2_t0825937F2E7F47B2A220EAB90DE0736AAEB5AE1D* L_21 = (Func_2_t0825937F2E7F47B2A220EAB90DE0736AAEB5AE1D*)il2cpp_codegen_object_new(Func_2_t0825937F2E7F47B2A220EAB90DE0736AAEB5AE1D_il2cpp_TypeInfo_var);
NullCheck(L_21);
Func_2__ctor_m3E421952949ED21CD62790848B7D6120ED568A31(L_21, L_20, (intptr_t)((void*)U3CU3Ec_U3CToStringU3Eb__8_0_m4E6C86B6147419A1476EE25E4015405A461B6D66_RuntimeMethod_var), NULL);
Func_2_t0825937F2E7F47B2A220EAB90DE0736AAEB5AE1D* L_22 = L_21;
((U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_il2cpp_TypeInfo_var))->___U3CU3E9__8_0_1 = L_22;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_il2cpp_TypeInfo_var))->___U3CU3E9__8_0_1), (void*)L_22);
G_B3_0 = L_22;
G_B3_1 = G_B2_1;
G_B3_2 = G_B2_2;
G_B3_3 = G_B2_3;
G_B3_4 = G_B2_4;
G_B3_5 = G_B2_5;
G_B3_6 = G_B2_6;
}
IL_0073:
{
RuntimeObject* L_23;
L_23 = Enumerable_Select_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_TisString_t_mFF4D6A3B07A9821C08DE0D6B5EE2E5D62DD31F59((RuntimeObject*)G_B3_1, G_B3_0, Enumerable_Select_TisAndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_TisString_t_mFF4D6A3B07A9821C08DE0D6B5EE2E5D62DD31F59_RuntimeMethod_var);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_24;
L_24 = Enumerable_ToArray_TisString_t_mCD2BC789CBFF834E06F00948FC47E15E720936DC(L_23, Enumerable_ToArray_TisString_t_mCD2BC789CBFF834E06F00948FC47E15E720936DC_RuntimeMethod_var);
String_t* L_25;
L_25 = String_Join_mE405D676C6881553258F8BAD40A20B462D611068(G_B3_2, L_24, NULL);
G_B5_0 = L_25;
G_B5_1 = G_B3_3;
G_B5_2 = G_B3_4;
G_B5_3 = G_B3_5;
G_B5_4 = G_B3_6;
goto IL_0089;
}
IL_0084:
{
G_B5_0 = _stringLiteralD64DE515DE159C401BB82652225D6BE22CDAD7A1;
G_B5_1 = G_B4_0;
G_B5_2 = G_B4_1;
G_B5_3 = G_B4_2;
G_B5_4 = G_B4_3;
}
IL_0089:
{
NullCheck(G_B5_2);
ArrayElementTypeCheck (G_B5_2, G_B5_0);
(G_B5_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B5_1), (RuntimeObject*)G_B5_0);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_26 = G_B5_3;
int32_t L_27 = __this->___inputSources_5;
int32_t L_28 = L_27;
RuntimeObject* L_29 = Box(AndroidInputSource_t4E49A7A84DDF7CF3966E322F75C97EEA43DE2738_il2cpp_TypeInfo_var, &L_28);
NullCheck(L_26);
ArrayElementTypeCheck (L_26, L_29);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject*)L_29);
String_t* L_30;
L_30 = String_Format_m74FC0A1259DFA02F3DF6538FC7F3ACF3E1AF0C55(G_B5_4, L_26, NULL);
V_0 = L_30;
goto IL_00a0;
}
IL_00a0:
{
// }
String_t* L_31 = V_0;
return L_31;
}
}
IL2CPP_EXTERN_C String_t* AndroidDeviceCapabilities_ToString_m06087F8B903F8416AD580B6A118348E51DED9434_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AndroidDeviceCapabilities_t732862069CD4B6CB4EE3B7CD987C89F1BD93151D*>(__this + _offset);
String_t* _returnValue;
_returnValue = AndroidDeviceCapabilities_ToString_m06087F8B903F8416AD580B6A118348E51DED9434(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities/<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m3F356A73D8994A9AA7FCD7AE983026A1AC1B2E0A (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B* L_0 = (U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B*)il2cpp_codegen_object_new(U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__ctor_m276C9790A057CE489E59DD0F64F2128DD614DB46(L_0, NULL);
((U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0);
return;
}
}
// System.Void UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m276C9790A057CE489E59DD0F64F2128DD614DB46 (U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.String UnityEngine.InputSystem.Android.LowLevel.AndroidDeviceCapabilities/<>c::<ToString>b__8_0(UnityEngine.InputSystem.Android.LowLevel.AndroidAxis)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec_U3CToStringU3Eb__8_0_m4E6C86B6147419A1476EE25E4015405A461B6D66 (U3CU3Ec_t5B5D2D1CDF7C630E57A30A74A26A3F86FD31E24B* __this, int32_t ___i0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// $"deviceDescriptor = {deviceDescriptor}, productId = {productId}, vendorId = {vendorId}, isVirtual = {isVirtual}, motionAxes = {(motionAxes == null ? "<null>" : String.Join(",", motionAxes.Select(i => i.ToString()).ToArray()))}, inputSources = {inputSources}";
Il2CppFakeBox<int32_t> L_0(AndroidAxis_tF6A2E9FF0C96B51568F8143B190D9789BAE4B13A_il2cpp_TypeInfo_var, (&___i0));
String_t* L_1;
L_1 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_0), NULL);
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String UnityEngine.InputSystem.Android.LowLevel.AndroidSensorCapabilities::ToJson()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AndroidSensorCapabilities_ToJson_m0571F760689CFBE9ADADB783BD9684AA8936E15B (AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
// return JsonUtility.ToJson(this);
AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F L_0 = (*(AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F*)__this);
AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F L_1 = L_0;
RuntimeObject* L_2 = Box(AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F_il2cpp_TypeInfo_var, &L_1);
String_t* L_3;
L_3 = JsonUtility_ToJson_mD0FB24DC5A8621A2473FC208E9B15AF43944EBCD(L_2, NULL);
V_0 = L_3;
goto IL_0014;
}
IL_0014:
{
// }
String_t* L_4 = V_0;
return L_4;
}
}
IL2CPP_EXTERN_C String_t* AndroidSensorCapabilities_ToJson_m0571F760689CFBE9ADADB783BD9684AA8936E15B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F*>(__this + _offset);
String_t* _returnValue;
_returnValue = AndroidSensorCapabilities_ToJson_m0571F760689CFBE9ADADB783BD9684AA8936E15B(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.Android.LowLevel.AndroidSensorCapabilities UnityEngine.InputSystem.Android.LowLevel.AndroidSensorCapabilities::FromJson(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F AndroidSensorCapabilities_FromJson_m8F522B25918D4061F431D9E1342AD3250C5D7D62 (String_t* ___json0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonUtility_FromJson_TisAndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F_mCD18DC17AC85C3CA6C4702C4E3D2AECD8A591211_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F V_1;
memset((&V_1), 0, sizeof(V_1));
{
// if (json == null)
String_t* L_0 = ___json0;
V_0 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0014;
}
}
{
// throw new ArgumentNullException(nameof(json));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral43187C90BBB5DFB063A95733C9BD65ECD25A2E84)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AndroidSensorCapabilities_FromJson_m8F522B25918D4061F431D9E1342AD3250C5D7D62_RuntimeMethod_var)));
}
IL_0014:
{
// return JsonUtility.FromJson<AndroidSensorCapabilities>(json);
String_t* L_3 = ___json0;
AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F L_4;
L_4 = JsonUtility_FromJson_TisAndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F_mCD18DC17AC85C3CA6C4702C4E3D2AECD8A591211(L_3, JsonUtility_FromJson_TisAndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F_mCD18DC17AC85C3CA6C4702C4E3D2AECD8A591211_RuntimeMethod_var);
V_1 = L_4;
goto IL_001d;
}
IL_001d:
{
// }
AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F L_5 = V_1;
return L_5;
}
}
// System.String UnityEngine.InputSystem.Android.LowLevel.AndroidSensorCapabilities::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AndroidSensorCapabilities_ToString_mB5171E0B493195F31D2583F384F9FD33A8FA6831 (AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral556A46F1AB4A0DE066935CB5894CD2C282D8730F);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
// return $"type = {sensorType.ToString()}";
int32_t* L_0 = (&__this->___sensorType_0);
Il2CppFakeBox<int32_t> L_1(AndroidSensorType_tB6AC49E8C886787678C43E95D916F20DF159FC1C_il2cpp_TypeInfo_var, L_0);
String_t* L_2;
L_2 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_1), NULL);
String_t* L_3;
L_3 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral556A46F1AB4A0DE066935CB5894CD2C282D8730F, L_2, NULL);
V_0 = L_3;
goto IL_001f;
}
IL_001f:
{
// }
String_t* L_4 = V_0;
return L_4;
}
}
IL2CPP_EXTERN_C String_t* AndroidSensorCapabilities_ToString_mB5171E0B493195F31D2583F384F9FD33A8FA6831_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AndroidSensorCapabilities_t9798F1A4B50D8A8D238901A7BA1370A6F36FFC5F*>(__this + _offset);
String_t* _returnValue;
_returnValue = AndroidSensorCapabilities_ToString_mB5171E0B493195F31D2583F384F9FD33A8FA6831(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Android.LowLevel.AndroidSensorState UnityEngine.InputSystem.Android.LowLevel.AndroidSensorState::WithData(System.Single[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29 AndroidSensorState_WithData_m5CA936E024B49BFA51E35E17643A7A1393427101 (AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___data0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t V_1 = 0;
bool V_2 = false;
int32_t V_3 = 0;
bool V_4 = false;
AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29 V_5;
memset((&V_5), 0, sizeof(V_5));
int32_t G_B7_0 = 0;
{
// if (data == null)
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = ___data0;
V_0 = (bool)((((RuntimeObject*)(SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0014;
}
}
{
// throw new ArgumentNullException(nameof(data));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA44A39671D4B7FA8FBE50D795EAB52248D5C5469)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AndroidSensorState_WithData_m5CA936E024B49BFA51E35E17643A7A1393427101_RuntimeMethod_var)));
}
IL_0014:
{
// for (var i = 0; i < data.Length && i < 16; i++)
V_1 = 0;
goto IL_0030;
}
IL_0018:
{
// this.data[i] = data[i];
U3CdataU3Ee__FixedBuffer_t066695EC09AC9F1A1401452C33184A8BB20DC632* L_3 = (&__this->___data_1);
float* L_4 = (&L_3->___FixedElementField_0);
int32_t L_5 = V_1;
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_6 = ___data0;
int32_t L_7 = V_1;
NullCheck(L_6);
int32_t L_8 = L_7;
float L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
*((float*)((float*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_5), 4))))) = (float)L_9;
// for (var i = 0; i < data.Length && i < 16; i++)
int32_t L_10 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
}
IL_0030:
{
// for (var i = 0; i < data.Length && i < 16; i++)
int32_t L_11 = V_1;
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_12 = ___data0;
NullCheck(L_12);
if ((((int32_t)L_11) >= ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))
{
goto IL_003d;
}
}
{
int32_t L_13 = V_1;
G_B7_0 = ((((int32_t)L_13) < ((int32_t)((int32_t)16)))? 1 : 0);
goto IL_003e;
}
IL_003d:
{
G_B7_0 = 0;
}
IL_003e:
{
V_2 = (bool)G_B7_0;
bool L_14 = V_2;
if (L_14)
{
goto IL_0018;
}
}
{
// for (var i = data.Length; i < 16; i++)
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_15 = ___data0;
NullCheck(L_15);
V_3 = ((int32_t)(((RuntimeArray*)L_15)->max_length));
goto IL_0062;
}
IL_0048:
{
// this.data[i] = 0.0f;
U3CdataU3Ee__FixedBuffer_t066695EC09AC9F1A1401452C33184A8BB20DC632* L_16 = (&__this->___data_1);
float* L_17 = (&L_16->___FixedElementField_0);
int32_t L_18 = V_3;
*((float*)((float*)il2cpp_codegen_add((intptr_t)L_17, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_18), 4))))) = (float)(0.0f);
// for (var i = data.Length; i < 16; i++)
int32_t L_19 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_19, 1));
}
IL_0062:
{
// for (var i = data.Length; i < 16; i++)
int32_t L_20 = V_3;
V_4 = (bool)((((int32_t)L_20) < ((int32_t)((int32_t)16)))? 1 : 0);
bool L_21 = V_4;
if (L_21)
{
goto IL_0048;
}
}
{
// return this;
AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29 L_22 = (*(AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29*)__this);
V_5 = L_22;
goto IL_0077;
}
IL_0077:
{
// }
AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29 L_23 = V_5;
return L_23;
}
}
IL2CPP_EXTERN_C AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29 AndroidSensorState_WithData_m5CA936E024B49BFA51E35E17643A7A1393427101_AdjustorThunk (RuntimeObject* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___data0, const RuntimeMethod* method)
{
AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29*>(__this + _offset);
AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29 _returnValue;
_returnValue = AndroidSensorState_WithData_m5CA936E024B49BFA51E35E17643A7A1393427101(_thisAdjusted, ___data0, method);
return _returnValue;
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.Android.LowLevel.AndroidSensorState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AndroidSensorState_get_format_m31BF80D110BEEF071B7795ED0D2D05664B42379F (AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public FourCC format => kFormat;
il2cpp_codegen_runtime_class_init_inline(AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29_il2cpp_TypeInfo_var);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = ((AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29_StaticFields*)il2cpp_codegen_static_fields_for(AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29_il2cpp_TypeInfo_var))->___kFormat_0;
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AndroidSensorState_get_format_m31BF80D110BEEF071B7795ED0D2D05664B42379F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = AndroidSensorState_get_format_m31BF80D110BEEF071B7795ED0D2D05664B42379F_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.Android.LowLevel.AndroidSensorState::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidSensorState__cctor_m62B5DD7090169C4ACA0DDCB742B0582F426264DF (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static FourCC kFormat = new FourCC('A', 'S', 'S', ' ');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)65), ((int32_t)83), ((int32_t)83), ((int32_t)32), /*hidden argument*/NULL);
((AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29_StaticFields*)il2cpp_codegen_static_fields_for(AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29_il2cpp_TypeInfo_var))->___kFormat_0 = L_0;
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector3 UnityEngine.InputSystem.Android.LowLevel.AndroidCompensateDirectionProcessor::Process(UnityEngine.Vector3,UnityEngine.InputSystem.InputControl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 AndroidCompensateDirectionProcessor_Process_mD64CA455E2A5C740932E9A55CADB6FADD8B33A0E (AndroidCompensateDirectionProcessor_t6EC5E83645FC7DD5345A83BD314EB8672860E557* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___vector0, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control1, const RuntimeMethod* method)
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// return base.Process(vector * kAccelerationMultiplier, control);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___vector0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1;
L_1 = Vector3_op_Multiply_m516FE285F5342F922C6EB3FCB33197E9017FF484_inline(L_0, (-0.101971619f), NULL);
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_2 = ___control1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3;
L_3 = CompensateDirectionProcessor_Process_m65E2A36B937F4314BF9994F5F596CA2B6DE5DD5E(__this, L_1, L_2, NULL);
V_0 = L_3;
goto IL_0016;
}
IL_0016:
{
// }
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = V_0;
return L_4;
}
}
// System.Void UnityEngine.InputSystem.Android.LowLevel.AndroidCompensateDirectionProcessor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidCompensateDirectionProcessor__ctor_mA8828C296B46641E5F410450B45045F6DCCC1E70 (AndroidCompensateDirectionProcessor_t6EC5E83645FC7DD5345A83BD314EB8672860E557* __this, const RuntimeMethod* method)
{
{
CompensateDirectionProcessor__ctor_m42B87D375F4FA715B337F5B91B9991EF868C4690(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Quaternion UnityEngine.InputSystem.Android.LowLevel.AndroidCompensateRotationProcessor::Process(UnityEngine.Quaternion,UnityEngine.InputSystem.InputControl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 AndroidCompensateRotationProcessor_Process_mC410C1ECCD8EB6E8A28E43FB5BF79CB8E6E09726 (AndroidCompensateRotationProcessor_tFDB308670A5D207966B1CF3BCA786D69D060F021* __this, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___value0, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 V_1;
memset((&V_1), 0, sizeof(V_1));
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974* G_B2_0 = NULL;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974* G_B1_0 = NULL;
float G_B3_0 = 0.0f;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974* G_B3_1 = NULL;
{
// var sinRho2 = value.x * value.x + value.y * value.y + value.z * value.z;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_0 = ___value0;
float L_1 = L_0.___x_0;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_2 = ___value0;
float L_3 = L_2.___x_0;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_4 = ___value0;
float L_5 = L_4.___y_1;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_6 = ___value0;
float L_7 = L_6.___y_1;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_8 = ___value0;
float L_9 = L_8.___z_2;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_10 = ___value0;
float L_11 = L_10.___z_2;
V_0 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_1, L_3)), ((float)il2cpp_codegen_multiply(L_5, L_7)))), ((float)il2cpp_codegen_multiply(L_9, L_11))));
// value.w = (sinRho2 < 1.0f) ? Mathf.Sqrt(1.0f - sinRho2) : 0.0f;
float L_12 = V_0;
G_B1_0 = (&___value0);
if ((((float)L_12) < ((float)(1.0f))))
{
G_B2_0 = (&___value0);
goto IL_003c;
}
}
{
G_B3_0 = (0.0f);
G_B3_1 = G_B1_0;
goto IL_0048;
}
IL_003c:
{
float L_13 = V_0;
float L_14;
L_14 = sqrtf(((float)il2cpp_codegen_subtract((1.0f), L_13)));
G_B3_0 = L_14;
G_B3_1 = G_B2_0;
}
IL_0048:
{
G_B3_1->___w_3 = G_B3_0;
// return base.Process(value, control);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_15 = ___value0;
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_16 = ___control1;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_17;
L_17 = CompensateRotationProcessor_Process_m90DD75229C55116B45B17FD5402AC9889CA1C1D4(__this, L_15, L_16, NULL);
V_1 = L_17;
goto IL_0058;
}
IL_0058:
{
// }
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_18 = V_1;
return L_18;
}
}
// System.Void UnityEngine.InputSystem.Android.LowLevel.AndroidCompensateRotationProcessor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidCompensateRotationProcessor__ctor_m5220239B7CF74EB700D6FC32CEBEA0FA6868C130 (AndroidCompensateRotationProcessor_tFDB308670A5D207966B1CF3BCA786D69D060F021* __this, const RuntimeMethod* method)
{
{
CompensateRotationProcessor__ctor_mDB2550681A4A78D2CFEE0B6E363EE14DBF015D79(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Single UnityEngine.InputSystem.Haptics.DualMotorRumble::get_lowFrequencyMotorSpeed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DualMotorRumble_get_lowFrequencyMotorSpeed_m510597E97F499185330B45B4691421807F5199E6 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, const RuntimeMethod* method)
{
{
// public float lowFrequencyMotorSpeed { get; private set; }
float L_0 = __this->___U3ClowFrequencyMotorSpeedU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_EXTERN_C float DualMotorRumble_get_lowFrequencyMotorSpeed_m510597E97F499185330B45B4691421807F5199E6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
float _returnValue;
_returnValue = DualMotorRumble_get_lowFrequencyMotorSpeed_m510597E97F499185330B45B4691421807F5199E6_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.Haptics.DualMotorRumble::set_lowFrequencyMotorSpeed(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_set_lowFrequencyMotorSpeed_m9872E9EFA5CD0E26E2E9F55E759D5B17FD0BC843 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, float ___value0, const RuntimeMethod* method)
{
{
// public float lowFrequencyMotorSpeed { get; private set; }
float L_0 = ___value0;
__this->___U3ClowFrequencyMotorSpeedU3Ek__BackingField_0 = L_0;
return;
}
}
IL2CPP_EXTERN_C void DualMotorRumble_set_lowFrequencyMotorSpeed_m9872E9EFA5CD0E26E2E9F55E759D5B17FD0BC843_AdjustorThunk (RuntimeObject* __this, float ___value0, const RuntimeMethod* method)
{
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
DualMotorRumble_set_lowFrequencyMotorSpeed_m9872E9EFA5CD0E26E2E9F55E759D5B17FD0BC843_inline(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.InputSystem.Haptics.DualMotorRumble::get_highFrequencyMotorSpeed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DualMotorRumble_get_highFrequencyMotorSpeed_mDF2890FFAEBCEE59E02E02845139481E8442073A (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, const RuntimeMethod* method)
{
{
// public float highFrequencyMotorSpeed { get; private set; }
float L_0 = __this->___U3ChighFrequencyMotorSpeedU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_EXTERN_C float DualMotorRumble_get_highFrequencyMotorSpeed_mDF2890FFAEBCEE59E02E02845139481E8442073A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
float _returnValue;
_returnValue = DualMotorRumble_get_highFrequencyMotorSpeed_mDF2890FFAEBCEE59E02E02845139481E8442073A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.Haptics.DualMotorRumble::set_highFrequencyMotorSpeed(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_set_highFrequencyMotorSpeed_mBE076CAE63721822E1B23B6CBB52836CBEAF3107 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, float ___value0, const RuntimeMethod* method)
{
{
// public float highFrequencyMotorSpeed { get; private set; }
float L_0 = ___value0;
__this->___U3ChighFrequencyMotorSpeedU3Ek__BackingField_1 = L_0;
return;
}
}
IL2CPP_EXTERN_C void DualMotorRumble_set_highFrequencyMotorSpeed_mBE076CAE63721822E1B23B6CBB52836CBEAF3107_AdjustorThunk (RuntimeObject* __this, float ___value0, const RuntimeMethod* method)
{
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
DualMotorRumble_set_highFrequencyMotorSpeed_mBE076CAE63721822E1B23B6CBB52836CBEAF3107_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.InputSystem.Haptics.DualMotorRumble::get_isRumbling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DualMotorRumble_get_isRumbling_m90556798E2C7AEC56E8AA6AA434095916F1127AC (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
// !Mathf.Approximately(lowFrequencyMotorSpeed, 0f)
// || !Mathf.Approximately(highFrequencyMotorSpeed, 0f);
float L_0;
L_0 = DualMotorRumble_get_lowFrequencyMotorSpeed_m510597E97F499185330B45B4691421807F5199E6_inline(__this, NULL);
bool L_1;
L_1 = Mathf_Approximately_m1C8DD0BB6A2D22A7DCF09AD7F8EE9ABD12D3F620_inline(L_0, (0.0f), NULL);
if (!L_1)
{
goto IL_0027;
}
}
{
float L_2;
L_2 = DualMotorRumble_get_highFrequencyMotorSpeed_mDF2890FFAEBCEE59E02E02845139481E8442073A_inline(__this, NULL);
bool L_3;
L_3 = Mathf_Approximately_m1C8DD0BB6A2D22A7DCF09AD7F8EE9ABD12D3F620_inline(L_2, (0.0f), NULL);
G_B3_0 = ((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
goto IL_0028;
}
IL_0027:
{
G_B3_0 = 1;
}
IL_0028:
{
return (bool)G_B3_0;
}
}
IL2CPP_EXTERN_C bool DualMotorRumble_get_isRumbling_m90556798E2C7AEC56E8AA6AA434095916F1127AC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
bool _returnValue;
_returnValue = DualMotorRumble_get_isRumbling_m90556798E2C7AEC56E8AA6AA434095916F1127AC(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.Haptics.DualMotorRumble::PauseHaptics(UnityEngine.InputSystem.InputDevice)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_PauseHaptics_m3BE8E2167226A3C37799E19743D4F8DAD232E31A (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
bool V_2 = false;
{
// if (device == null)
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_0 = ___device0;
V_1 = (bool)((((RuntimeObject*)(InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_0014;
}
}
{
// throw new ArgumentNullException("device");
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DualMotorRumble_PauseHaptics_m3BE8E2167226A3C37799E19743D4F8DAD232E31A_RuntimeMethod_var)));
}
IL_0014:
{
// if (!isRumbling)
bool L_3;
L_3 = DualMotorRumble_get_isRumbling_m90556798E2C7AEC56E8AA6AA434095916F1127AC(__this, NULL);
V_2 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
bool L_4 = V_2;
if (!L_4)
{
goto IL_0023;
}
}
{
// return;
goto IL_003c;
}
IL_0023:
{
// var command = DualMotorRumbleCommand.Create(0f, 0f);
DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E L_5;
L_5 = DualMotorRumbleCommand_Create_m39FB8F9BFBF8A3B303AE1CDB953AABD4E840CE53((0.0f), (0.0f), NULL);
V_0 = L_5;
// device.ExecuteCommand(ref command);
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_6 = ___device0;
NullCheck(L_6);
int64_t L_7;
L_7 = InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A(L_6, (&V_0), InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A_RuntimeMethod_var);
}
IL_003c:
{
// }
return;
}
}
IL2CPP_EXTERN_C void DualMotorRumble_PauseHaptics_m3BE8E2167226A3C37799E19743D4F8DAD232E31A_AdjustorThunk (RuntimeObject* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, const RuntimeMethod* method)
{
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
DualMotorRumble_PauseHaptics_m3BE8E2167226A3C37799E19743D4F8DAD232E31A(_thisAdjusted, ___device0, method);
}
// System.Void UnityEngine.InputSystem.Haptics.DualMotorRumble::ResumeHaptics(UnityEngine.InputSystem.InputDevice)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_ResumeHaptics_mECD40150D2AAB95F7FA25BC7BD146E0C28B76E56 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
{
// if (device == null)
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_0 = ___device0;
V_0 = (bool)((((RuntimeObject*)(InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0014;
}
}
{
// throw new ArgumentNullException("device");
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DualMotorRumble_ResumeHaptics_mECD40150D2AAB95F7FA25BC7BD146E0C28B76E56_RuntimeMethod_var)));
}
IL_0014:
{
// if (!isRumbling)
bool L_3;
L_3 = DualMotorRumble_get_isRumbling_m90556798E2C7AEC56E8AA6AA434095916F1127AC(__this, NULL);
V_1 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_0023;
}
}
{
// return;
goto IL_0037;
}
IL_0023:
{
// SetMotorSpeeds(device, lowFrequencyMotorSpeed, highFrequencyMotorSpeed);
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_5 = ___device0;
float L_6;
L_6 = DualMotorRumble_get_lowFrequencyMotorSpeed_m510597E97F499185330B45B4691421807F5199E6_inline(__this, NULL);
float L_7;
L_7 = DualMotorRumble_get_highFrequencyMotorSpeed_mDF2890FFAEBCEE59E02E02845139481E8442073A_inline(__this, NULL);
DualMotorRumble_SetMotorSpeeds_m59E9BDD10561248589656B578B7D741DA3931A59(__this, L_5, L_6, L_7, NULL);
}
IL_0037:
{
// }
return;
}
}
IL2CPP_EXTERN_C void DualMotorRumble_ResumeHaptics_mECD40150D2AAB95F7FA25BC7BD146E0C28B76E56_AdjustorThunk (RuntimeObject* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, const RuntimeMethod* method)
{
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
DualMotorRumble_ResumeHaptics_mECD40150D2AAB95F7FA25BC7BD146E0C28B76E56(_thisAdjusted, ___device0, method);
}
// System.Void UnityEngine.InputSystem.Haptics.DualMotorRumble::ResetHaptics(UnityEngine.InputSystem.InputDevice)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_ResetHaptics_m0589143821BBBA3DEA22D4F88027063057FBADA5 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
{
// if (device == null)
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_0 = ___device0;
V_0 = (bool)((((RuntimeObject*)(InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0014;
}
}
{
// throw new ArgumentNullException("device");
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DualMotorRumble_ResetHaptics_m0589143821BBBA3DEA22D4F88027063057FBADA5_RuntimeMethod_var)));
}
IL_0014:
{
// if (!isRumbling)
bool L_3;
L_3 = DualMotorRumble_get_isRumbling_m90556798E2C7AEC56E8AA6AA434095916F1127AC(__this, NULL);
V_1 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_0023;
}
}
{
// return;
goto IL_0035;
}
IL_0023:
{
// SetMotorSpeeds(device, 0.0f, 0.0f);
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_5 = ___device0;
DualMotorRumble_SetMotorSpeeds_m59E9BDD10561248589656B578B7D741DA3931A59(__this, L_5, (0.0f), (0.0f), NULL);
}
IL_0035:
{
// }
return;
}
}
IL2CPP_EXTERN_C void DualMotorRumble_ResetHaptics_m0589143821BBBA3DEA22D4F88027063057FBADA5_AdjustorThunk (RuntimeObject* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, const RuntimeMethod* method)
{
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
DualMotorRumble_ResetHaptics_m0589143821BBBA3DEA22D4F88027063057FBADA5(_thisAdjusted, ___device0, method);
}
// System.Void UnityEngine.InputSystem.Haptics.DualMotorRumble::SetMotorSpeeds(UnityEngine.InputSystem.InputDevice,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_SetMotorSpeeds_m59E9BDD10561248589656B578B7D741DA3931A59 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, float ___lowFrequency1, float ___highFrequency2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
{
// if (device == null)
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_0 = ___device0;
V_1 = (bool)((((RuntimeObject*)(InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_0014;
}
}
{
// throw new ArgumentNullException("device");
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DualMotorRumble_SetMotorSpeeds_m59E9BDD10561248589656B578B7D741DA3931A59_RuntimeMethod_var)));
}
IL_0014:
{
// lowFrequencyMotorSpeed = Mathf.Clamp(lowFrequency, 0.0f, 1.0f);
float L_3 = ___lowFrequency1;
float L_4;
L_4 = Mathf_Clamp_m154E404AF275A3B2EC99ECAA3879B4CB9F0606DC_inline(L_3, (0.0f), (1.0f), NULL);
DualMotorRumble_set_lowFrequencyMotorSpeed_m9872E9EFA5CD0E26E2E9F55E759D5B17FD0BC843_inline(__this, L_4, NULL);
// highFrequencyMotorSpeed = Mathf.Clamp(highFrequency, 0.0f, 1.0f);
float L_5 = ___highFrequency2;
float L_6;
L_6 = Mathf_Clamp_m154E404AF275A3B2EC99ECAA3879B4CB9F0606DC_inline(L_5, (0.0f), (1.0f), NULL);
DualMotorRumble_set_highFrequencyMotorSpeed_mBE076CAE63721822E1B23B6CBB52836CBEAF3107_inline(__this, L_6, NULL);
// var command = DualMotorRumbleCommand.Create(lowFrequencyMotorSpeed, highFrequencyMotorSpeed);
float L_7;
L_7 = DualMotorRumble_get_lowFrequencyMotorSpeed_m510597E97F499185330B45B4691421807F5199E6_inline(__this, NULL);
float L_8;
L_8 = DualMotorRumble_get_highFrequencyMotorSpeed_mDF2890FFAEBCEE59E02E02845139481E8442073A_inline(__this, NULL);
DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E L_9;
L_9 = DualMotorRumbleCommand_Create_m39FB8F9BFBF8A3B303AE1CDB953AABD4E840CE53(L_7, L_8, NULL);
V_0 = L_9;
// device.ExecuteCommand(ref command);
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_10 = ___device0;
NullCheck(L_10);
int64_t L_11;
L_11 = InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A(L_10, (&V_0), InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A_RuntimeMethod_var);
// }
return;
}
}
IL2CPP_EXTERN_C void DualMotorRumble_SetMotorSpeeds_m59E9BDD10561248589656B578B7D741DA3931A59_AdjustorThunk (RuntimeObject* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, float ___lowFrequency1, float ___highFrequency2, const RuntimeMethod* method)
{
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
DualMotorRumble_SetMotorSpeeds_m59E9BDD10561248589656B578B7D741DA3931A59(_thisAdjusted, ___device0, ___lowFrequency1, ___highFrequency2, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DisableDeviceCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DisableDeviceCommand_get_Type_m80CDDBDC299E1D2FA4CA56BF7079CD719D64D941 (const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public static FourCC Type { get { return new FourCC('D', 'S', 'B', 'L'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)68), ((int32_t)83), ((int32_t)66), ((int32_t)76), /*hidden argument*/NULL);
V_0 = L_0;
goto IL_0011;
}
IL_0011:
{
// public static FourCC Type { get { return new FourCC('D', 'S', 'B', 'L'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DisableDeviceCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DisableDeviceCommand_get_typeStatic_m41138589716445D66360A9FB80B7B5BB451F4E74 (DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD* __this, const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = DisableDeviceCommand_get_Type_m80CDDBDC299E1D2FA4CA56BF7079CD719D64D941(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DisableDeviceCommand_get_typeStatic_m41138589716445D66360A9FB80B7B5BB451F4E74_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = DisableDeviceCommand_get_typeStatic_m41138589716445D66360A9FB80B7B5BB451F4E74(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.DisableDeviceCommand UnityEngine.InputSystem.LowLevel.DisableDeviceCommand::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD DisableDeviceCommand_Create_m0B4FAF6C57C51A1D135A31FF09A751C5BD9DB7D5 (const RuntimeMethod* method)
{
DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD V_0;
memset((&V_0), 0, sizeof(V_0));
DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new DisableDeviceCommand
// {
// baseCommand = new InputDeviceCommand(Type, kSize)
// };
il2cpp_codegen_initobj((&V_0), sizeof(DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = DisableDeviceCommand_get_Type_m80CDDBDC299E1D2FA4CA56BF7079CD719D64D941(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, 8, /*hidden argument*/NULL);
(&V_0)->___baseCommand_1 = L_1;
DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD L_2 = V_0;
V_1 = L_2;
goto IL_001f;
}
IL_001f:
{
// }
DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD L_3 = V_1;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.EnableDeviceCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableDeviceCommand_get_Type_m92803D3F093178D71567E147E1E63F48A2B97085 (const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public static FourCC Type { get { return new FourCC('E', 'N', 'B', 'L'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)69), ((int32_t)78), ((int32_t)66), ((int32_t)76), /*hidden argument*/NULL);
V_0 = L_0;
goto IL_0011;
}
IL_0011:
{
// public static FourCC Type { get { return new FourCC('E', 'N', 'B', 'L'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.EnableDeviceCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableDeviceCommand_get_typeStatic_m54D173AC3F000FB3483D520998D28FFFA9F25599 (EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4* __this, const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = EnableDeviceCommand_get_Type_m92803D3F093178D71567E147E1E63F48A2B97085(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableDeviceCommand_get_typeStatic_m54D173AC3F000FB3483D520998D28FFFA9F25599_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = EnableDeviceCommand_get_typeStatic_m54D173AC3F000FB3483D520998D28FFFA9F25599(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.EnableDeviceCommand UnityEngine.InputSystem.LowLevel.EnableDeviceCommand::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4 EnableDeviceCommand_Create_mE12D5FF509E216B5F9E5F81F0F4D84E14210EA1E (const RuntimeMethod* method)
{
EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4 V_0;
memset((&V_0), 0, sizeof(V_0));
EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new EnableDeviceCommand
// {
// baseCommand = new InputDeviceCommand(Type, kSize)
// };
il2cpp_codegen_initobj((&V_0), sizeof(EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = EnableDeviceCommand_get_Type_m92803D3F093178D71567E147E1E63F48A2B97085(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, 8, /*hidden argument*/NULL);
(&V_0)->___baseCommand_1 = L_1;
EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4 L_2 = V_0;
V_1 = L_2;
goto IL_001f;
}
IL_001f:
{
// }
EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4 L_3 = V_1;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.EnableIMECompositionCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableIMECompositionCommand_get_Type_mCDF475616357B4BFA3609AD399EC4DA5935F76CC (const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public static FourCC Type { get { return new FourCC('I', 'M', 'E', 'M'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)73), ((int32_t)77), ((int32_t)69), ((int32_t)77), /*hidden argument*/NULL);
V_0 = L_0;
goto IL_0011;
}
IL_0011:
{
// public static FourCC Type { get { return new FourCC('I', 'M', 'E', 'M'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
// System.Boolean UnityEngine.InputSystem.LowLevel.EnableIMECompositionCommand::get_imeEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnableIMECompositionCommand_get_imeEnabled_mD0CCBB77A6E533FDF6DE036CBA010D0CA0E9A3DA (EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
// get { return m_ImeEnabled != 0; }
uint8_t L_0 = __this->___m_ImeEnabled_2;
V_0 = (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0);
goto IL_000d;
}
IL_000d:
{
// get { return m_ImeEnabled != 0; }
bool L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C bool EnableIMECompositionCommand_get_imeEnabled_mD0CCBB77A6E533FDF6DE036CBA010D0CA0E9A3DA_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C*>(__this + _offset);
bool _returnValue;
_returnValue = EnableIMECompositionCommand_get_imeEnabled_mD0CCBB77A6E533FDF6DE036CBA010D0CA0E9A3DA(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.EnableIMECompositionCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableIMECompositionCommand_get_typeStatic_m6F293C39B7AC6A01CCD65F74029AFB07189A588A (EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* __this, const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = EnableIMECompositionCommand_get_Type_mCDF475616357B4BFA3609AD399EC4DA5935F76CC(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableIMECompositionCommand_get_typeStatic_m6F293C39B7AC6A01CCD65F74029AFB07189A588A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = EnableIMECompositionCommand_get_typeStatic_m6F293C39B7AC6A01CCD65F74029AFB07189A588A(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.EnableIMECompositionCommand UnityEngine.InputSystem.LowLevel.EnableIMECompositionCommand::Create(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C EnableIMECompositionCommand_Create_m2A44EB3F0131D1CCD4EA5AD2CBC40A7833CDF1A6 (bool ___enabled0, const RuntimeMethod* method)
{
EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C V_0;
memset((&V_0), 0, sizeof(V_0));
EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C V_1;
memset((&V_1), 0, sizeof(V_1));
EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* G_B2_0 = NULL;
EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* G_B1_0 = NULL;
int32_t G_B3_0 = 0;
EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* G_B3_1 = NULL;
{
// return new EnableIMECompositionCommand
// {
// baseCommand = new InputDeviceCommand(Type, InputDeviceCommand.kBaseCommandSize + sizeof(byte)),
// m_ImeEnabled = enabled ? byte.MaxValue : (byte)0
// };
il2cpp_codegen_initobj((&V_0), sizeof(EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = EnableIMECompositionCommand_get_Type_mCDF475616357B4BFA3609AD399EC4DA5935F76CC(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)9), /*hidden argument*/NULL);
(&V_0)->___baseCommand_1 = L_1;
bool L_2 = ___enabled0;
G_B1_0 = (&V_0);
if (L_2)
{
G_B2_0 = (&V_0);
goto IL_0024;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
goto IL_0029;
}
IL_0024:
{
G_B3_0 = ((int32_t)255);
G_B3_1 = G_B2_0;
}
IL_0029:
{
G_B3_1->___m_ImeEnabled_2 = (uint8_t)G_B3_0;
EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C L_3 = V_0;
V_1 = L_3;
goto IL_0032;
}
IL_0032:
{
// }
EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C L_4 = V_1;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InitiateUserAccountPairingCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InitiateUserAccountPairingCommand_get_Type_mCBFC8A590A35CE4B5484DB198686E7E19BCBBE3B (const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public static FourCC Type { get { return new FourCC('P', 'A', 'I', 'R'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)80), ((int32_t)65), ((int32_t)73), ((int32_t)82), /*hidden argument*/NULL);
V_0 = L_0;
goto IL_0011;
}
IL_0011:
{
// public static FourCC Type { get { return new FourCC('P', 'A', 'I', 'R'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InitiateUserAccountPairingCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InitiateUserAccountPairingCommand_get_typeStatic_m7A6A7BEE8AC36FB548934F7D6E8DDE333D9BEC50 (InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF* __this, const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = InitiateUserAccountPairingCommand_get_Type_mCBFC8A590A35CE4B5484DB198686E7E19BCBBE3B(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InitiateUserAccountPairingCommand_get_typeStatic_m7A6A7BEE8AC36FB548934F7D6E8DDE333D9BEC50_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = InitiateUserAccountPairingCommand_get_typeStatic_m7A6A7BEE8AC36FB548934F7D6E8DDE333D9BEC50(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.InitiateUserAccountPairingCommand UnityEngine.InputSystem.LowLevel.InitiateUserAccountPairingCommand::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF InitiateUserAccountPairingCommand_Create_mE42DBCC587FA65CE05AA5B2017422031C986A7E2 (const RuntimeMethod* method)
{
InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF V_0;
memset((&V_0), 0, sizeof(V_0));
InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new InitiateUserAccountPairingCommand
// {
// baseCommand = new InputDeviceCommand(Type, kSize),
// };
il2cpp_codegen_initobj((&V_0), sizeof(InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = InitiateUserAccountPairingCommand_get_Type_mCBFC8A590A35CE4B5484DB198686E7E19BCBBE3B(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, 8, /*hidden argument*/NULL);
(&V_0)->___baseCommand_1 = L_1;
InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF L_2 = V_0;
V_1 = L_2;
goto IL_001f;
}
IL_001f:
{
// }
InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF L_3 = V_1;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_Multicast(InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command1, const RuntimeMethod* method)
{
il2cpp_array_size_t length = __this->___delegates_13->max_length;
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
typedef Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 (*FunctionPointerType) (InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command1, const RuntimeMethod* method);
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 retVal;
memset((&retVal), 0, sizeof(retVal));
for (il2cpp_array_size_t i = 0; i < length; i++)
{
InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* currentDelegate = reinterpret_cast<InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___device0, ___command1, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_Open(InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command1, const RuntimeMethod* method)
{
typedef Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 (*FunctionPointerType) (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___device0, ___command1, method);
}
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_Closed(InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command1, const RuntimeMethod* method)
{
typedef Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 (*FunctionPointerType) (RuntimeObject*, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___device0, ___command1, method);
}
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenStaticInvoker(InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command1, const RuntimeMethod* method)
{
return InvokerFuncInvoker2< Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* >::Invoke(__this->___method_ptr_0, method, NULL, ___device0, ___command1);
}
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_ClosedStaticInvoker(InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command1, const RuntimeMethod* method)
{
return InvokerFuncInvoker3< Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17, RuntimeObject*, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___device0, ___command1);
}
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenVirtual(InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command1, const RuntimeMethod* method)
{
return VirtualFuncInvoker1< Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* >::Invoke(il2cpp_codegen_method_get_slot(method), ___device0, ___command1);
}
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenInterface(InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command1, const RuntimeMethod* method)
{
return InterfaceFuncInvoker1< Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___device0, ___command1);
}
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenGenericVirtual(InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command1, const RuntimeMethod* method)
{
return GenericVirtualFuncInvoker1< Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* >::Invoke(method, ___device0, ___command1);
}
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenGenericInterface(InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command1, const RuntimeMethod* method)
{
return GenericInterfaceFuncInvoker1< Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* >::Invoke(method, ___device0, ___command1);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceCommandDelegate__ctor_mC4781D31BA2ABBEA8B8E0A4C7A2BA9E0305E42B2 (InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
__this->___method_3 = ___method1;
__this->___m_target_2 = ___object0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
if (MethodIsStatic((RuntimeMethod*)___method1))
{
bool isOpen = methodCount == 2;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_Open;
else
__this->___invoke_impl_1 = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_Closed;
}
else
{
bool isOpen = methodCount == 1;
if (isOpen)
{
if (__this->___method_is_virtual_12)
{
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___method1))
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenGenericInterface;
else
__this->___invoke_impl_1 = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenGenericVirtual;
else
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenInterface;
else
__this->___invoke_impl_1 = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenVirtual;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_Open;
}
}
else
{
__this->___invoke_impl_1 = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_Multicast;
}
// System.Nullable`1<System.Int64> UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate::Invoke(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.LowLevel.InputDeviceCommand*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2 (InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command1, const RuntimeMethod* method)
{
typedef Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 (*FunctionPointerType) (InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command1, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___device0, ___command1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
// System.IAsyncResult UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate::BeginInvoke(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.LowLevel.InputDeviceCommand*,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputDeviceCommandDelegate_BeginInvoke_mE19CD990A108DAE875AD351212314BE96EAEEB9D (InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command1, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___callback2, RuntimeObject* ___object3, const RuntimeMethod* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___device0;
__d_args[1] = ___command1;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);;
}
// System.Nullable`1<System.Int64> UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_EndInvoke_mA8E37BB06B88962DE892B562068A5614AE2D61B4 (InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
int64_t InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_Multicast(InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command0, const RuntimeMethod* method)
{
il2cpp_array_size_t length = __this->___delegates_13->max_length;
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
typedef int64_t (*FunctionPointerType) (InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command0, const RuntimeMethod* method);
int64_t retVal = 0;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* currentDelegate = reinterpret_cast<InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___command0, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
int64_t InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_Open(InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command0, const RuntimeMethod* method)
{
typedef int64_t (*FunctionPointerType) (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___command0, method);
}
int64_t InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_Closed(InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command0, const RuntimeMethod* method)
{
typedef int64_t (*FunctionPointerType) (RuntimeObject*, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___command0, method);
}
int64_t InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_OpenStaticInvoker(InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command0, const RuntimeMethod* method)
{
return InvokerFuncInvoker1< int64_t, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* >::Invoke(__this->___method_ptr_0, method, NULL, ___command0);
}
int64_t InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_ClosedStaticInvoker(InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command0, const RuntimeMethod* method)
{
return InvokerFuncInvoker2< int64_t, RuntimeObject*, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___command0);
}
IL2CPP_EXTERN_C int64_t DelegatePInvokeWrapper_InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A (InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command0, const RuntimeMethod* method)
{
typedef int64_t (DEFAULT_CALL *PInvokeFunc)(InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
int64_t returnValue = il2cppPInvokeFunc(___command0);
return returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceExecuteCommandDelegate__ctor_m00EA5FFE583EA0674F6756175140418B251E97D3 (InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
__this->___method_3 = ___method1;
__this->___m_target_2 = ___object0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
if (MethodIsStatic((RuntimeMethod*)___method1))
{
bool isOpen = methodCount == 1;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_Open;
else
__this->___invoke_impl_1 = (intptr_t)&InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_Closed;
}
else
{
bool isOpen = methodCount == 0;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_Multicast;
}
// System.Int64 UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate::Invoke(UnityEngine.InputSystem.LowLevel.InputDeviceCommand&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0 (InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command0, const RuntimeMethod* method)
{
typedef int64_t (*FunctionPointerType) (InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command0, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___command0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
// System.IAsyncResult UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate::BeginInvoke(UnityEngine.InputSystem.LowLevel.InputDeviceCommand&,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputDeviceExecuteCommandDelegate_BeginInvoke_m37EF968A7BB8349ACEC0EFA9A0C881083B95EFA1 (InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command0, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___callback1, RuntimeObject* ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E_il2cpp_TypeInfo_var, &*___command0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.Int64 UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate::EndInvoke(UnityEngine.InputSystem.LowLevel.InputDeviceCommand&,System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputDeviceExecuteCommandDelegate_EndInvoke_m09B2B9AAE8E55E063740251A5959CBFAEE97C42E (InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___command0, RuntimeObject* ___result1, const RuntimeMethod* method)
{
void* ___out_args[] = {
___command0,
};
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result1, ___out_args);
return *(int64_t*)UnBox ((RuntimeObject*)__result);;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 UnityEngine.InputSystem.LowLevel.InputDeviceCommand::get_payloadSizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputDeviceCommand_get_payloadSizeInBytes_m65597C869B0A3AF1D1B928605A06216AB6897D11 (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* __this, const RuntimeMethod* method)
{
{
// public int payloadSizeInBytes => sizeInBytes - kBaseCommandSize;
int32_t L_0 = __this->___sizeInBytes_5;
return ((int32_t)il2cpp_codegen_subtract(L_0, 8));
}
}
IL2CPP_EXTERN_C int32_t InputDeviceCommand_get_payloadSizeInBytes_m65597C869B0A3AF1D1B928605A06216AB6897D11_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*>(__this + _offset);
int32_t _returnValue;
_returnValue = InputDeviceCommand_get_payloadSizeInBytes_m65597C869B0A3AF1D1B928605A06216AB6897D11(_thisAdjusted, method);
return _returnValue;
}
// System.Void* UnityEngine.InputSystem.LowLevel.InputDeviceCommand::get_payloadPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* InputDeviceCommand_get_payloadPtr_mCE339E6458B03F15067C3ADE7D22EEBAE4D29982 (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* __this, const RuntimeMethod* method)
{
void* V_0 = NULL;
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* V_1 = NULL;
void* V_2 = NULL;
{
V_1 = __this;
// fixed(void* thisPtr = &this)
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* L_0 = V_1;
V_0 = (void*)((uintptr_t)L_0);
// return ((byte*)thisPtr) + kBaseCommandSize;
void* L_1 = V_0;
V_2 = ((void*)il2cpp_codegen_add((intptr_t)L_1, 8));
goto IL_000d;
}
IL_000d:
{
// }
void* L_2 = V_2;
return L_2;
}
}
IL2CPP_EXTERN_C void* InputDeviceCommand_get_payloadPtr_mCE339E6458B03F15067C3ADE7D22EEBAE4D29982_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*>(__this + _offset);
void* _returnValue;
_returnValue = InputDeviceCommand_get_payloadPtr_mCE339E6458B03F15067C3ADE7D22EEBAE4D29982(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputDeviceCommand::.ctor(UnityEngine.InputSystem.Utilities.FourCC,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01 (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___type0, int32_t ___sizeInBytes1, const RuntimeMethod* method)
{
{
// this.type = type;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = ___type0;
__this->___type_4 = L_0;
// this.sizeInBytes = sizeInBytes;
int32_t L_1 = ___sizeInBytes1;
__this->___sizeInBytes_5 = L_1;
// }
return;
}
}
IL2CPP_EXTERN_C void InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01_AdjustorThunk (RuntimeObject* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___type0, int32_t ___sizeInBytes1, const RuntimeMethod* method)
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*>(__this + _offset);
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01(_thisAdjusted, ___type0, ___sizeInBytes1, method);
}
// Unity.Collections.NativeArray`1<System.Byte> UnityEngine.InputSystem.LowLevel.InputDeviceCommand::AllocateNative(UnityEngine.InputSystem.Utilities.FourCC,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF InputDeviceCommand_AllocateNative_m6F10EEBCB22AFFD12D3F5E16E0415723151D3D9A (FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___type0, int32_t ___payloadSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m65FA1E123815CA621B3659034958C4213DF274CD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_1;
memset((&V_1), 0, sizeof(V_1));
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* V_2 = NULL;
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_3;
memset((&V_3), 0, sizeof(V_3));
{
// var sizeInBytes = payloadSize + kBaseCommandSize;
int32_t L_0 = ___payloadSize1;
V_0 = ((int32_t)il2cpp_codegen_add(L_0, 8));
// var buffer = new NativeArray<byte>(sizeInBytes, Allocator.Temp);
int32_t L_1 = V_0;
NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F((&V_1), L_1, 2, 1, NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
// var commandPtr = (InputDeviceCommand*)NativeArrayUnsafeUtility.GetUnsafePtr(buffer);
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_2 = V_1;
void* L_3;
L_3 = NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m65FA1E123815CA621B3659034958C4213DF274CD(L_2, NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m65FA1E123815CA621B3659034958C4213DF274CD_RuntimeMethod_var);
V_2 = (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*)L_3;
// commandPtr->type = type;
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* L_4 = V_2;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_5 = ___type0;
NullCheck(L_4);
L_4->___type_4 = L_5;
// commandPtr->sizeInBytes = sizeInBytes;
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* L_6 = V_2;
int32_t L_7 = V_0;
NullCheck(L_6);
L_6->___sizeInBytes_5 = L_7;
// return buffer;
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_8 = V_1;
V_3 = L_8;
goto IL_0028;
}
IL_0028:
{
// }
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_9 = V_3;
return L_9;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputDeviceCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputDeviceCommand_get_typeStatic_m50C7C954EE7CA7B20757F2874C08D0FFF675ACE4 (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* __this, const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_1;
memset((&V_1), 0, sizeof(V_1));
{
// get { return new FourCC(); }
il2cpp_codegen_initobj((&V_0), sizeof(FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = V_0;
V_1 = L_0;
goto IL_000d;
}
IL_000d:
{
// get { return new FourCC(); }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_1;
return L_1;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputDeviceCommand_get_typeStatic_m50C7C954EE7CA7B20757F2874C08D0FFF675ACE4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = InputDeviceCommand_get_typeStatic_m50C7C954EE7CA7B20757F2874C08D0FFF675ACE4(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground
IL2CPP_EXTERN_C void QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshal_pinvoke(const QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341& unmarshaled, QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshaled_pinvoke& marshaled)
{
marshaled.___baseCommand_1 = unmarshaled.___baseCommand_1;
marshaled.___canRunInBackground_2 = static_cast<int32_t>(unmarshaled.___canRunInBackground_2);
}
IL2CPP_EXTERN_C void QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshal_pinvoke_back(const QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshaled_pinvoke& marshaled, QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341& unmarshaled)
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E unmarshaledbaseCommand_temp_0;
memset((&unmarshaledbaseCommand_temp_0), 0, sizeof(unmarshaledbaseCommand_temp_0));
unmarshaledbaseCommand_temp_0 = marshaled.___baseCommand_1;
unmarshaled.___baseCommand_1 = unmarshaledbaseCommand_temp_0;
bool unmarshaledcanRunInBackground_temp_1 = false;
unmarshaledcanRunInBackground_temp_1 = static_cast<bool>(marshaled.___canRunInBackground_2);
unmarshaled.___canRunInBackground_2 = unmarshaledcanRunInBackground_temp_1;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground
IL2CPP_EXTERN_C void QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshal_pinvoke_cleanup(QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground
IL2CPP_EXTERN_C void QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshal_com(const QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341& unmarshaled, QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshaled_com& marshaled)
{
marshaled.___baseCommand_1 = unmarshaled.___baseCommand_1;
marshaled.___canRunInBackground_2 = static_cast<int32_t>(unmarshaled.___canRunInBackground_2);
}
IL2CPP_EXTERN_C void QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshal_com_back(const QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshaled_com& marshaled, QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341& unmarshaled)
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E unmarshaledbaseCommand_temp_0;
memset((&unmarshaledbaseCommand_temp_0), 0, sizeof(unmarshaledbaseCommand_temp_0));
unmarshaledbaseCommand_temp_0 = marshaled.___baseCommand_1;
unmarshaled.___baseCommand_1 = unmarshaledbaseCommand_temp_0;
bool unmarshaledcanRunInBackground_temp_1 = false;
unmarshaledcanRunInBackground_temp_1 = static_cast<bool>(marshaled.___canRunInBackground_2);
unmarshaled.___canRunInBackground_2 = unmarshaledcanRunInBackground_temp_1;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground
IL2CPP_EXTERN_C void QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshal_com_cleanup(QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshaled_com& marshaled)
{
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryCanRunInBackground_get_Type_mFC27916EA86FE85920A40C5BA4B734BED5C18CD2 (const RuntimeMethod* method)
{
{
// public static FourCC Type => new FourCC('Q', 'R', 'I', 'B');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)81), ((int32_t)82), ((int32_t)73), ((int32_t)66), /*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryCanRunInBackground_get_typeStatic_m18F466F00C744F3136183AD33D6E562F161A594D (QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341* __this, const RuntimeMethod* method)
{
{
// public FourCC typeStatic => Type;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = QueryCanRunInBackground_get_Type_mFC27916EA86FE85920A40C5BA4B734BED5C18CD2(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryCanRunInBackground_get_typeStatic_m18F466F00C744F3136183AD33D6E562F161A594D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = QueryCanRunInBackground_get_typeStatic_m18F466F00C744F3136183AD33D6E562F161A594D(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341 QueryCanRunInBackground_Create_mD63B6876ACC5BBADCD5226533A6591DD5AE29E5D (const RuntimeMethod* method)
{
QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341 V_0;
memset((&V_0), 0, sizeof(V_0));
QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new QueryCanRunInBackground
// {
// baseCommand = new InputDeviceCommand(Type, kSize),
// canRunInBackground = false
// };
il2cpp_codegen_initobj((&V_0), sizeof(QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = QueryCanRunInBackground_get_Type_mFC27916EA86FE85920A40C5BA4B734BED5C18CD2(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)9), /*hidden argument*/NULL);
(&V_0)->___baseCommand_1 = L_1;
(&V_0)->___canRunInBackground_2 = (bool)0;
QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341 L_2 = V_0;
V_1 = L_2;
goto IL_0028;
}
IL_0028:
{
// }
QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341 L_3 = V_1;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryDimensionsCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryDimensionsCommand_get_Type_m4C7101BD127B6AE8B0FFB39D3F3B452D961E14AF (const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public static FourCC Type { get { return new FourCC('D', 'I', 'M', 'S'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)68), ((int32_t)73), ((int32_t)77), ((int32_t)83), /*hidden argument*/NULL);
V_0 = L_0;
goto IL_0011;
}
IL_0011:
{
// public static FourCC Type { get { return new FourCC('D', 'I', 'M', 'S'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryDimensionsCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryDimensionsCommand_get_typeStatic_mDCF9B62F3BF35868211DAC4674B20B649F199141 (QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83* __this, const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = QueryDimensionsCommand_get_Type_m4C7101BD127B6AE8B0FFB39D3F3B452D961E14AF(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryDimensionsCommand_get_typeStatic_mDCF9B62F3BF35868211DAC4674B20B649F199141_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = QueryDimensionsCommand_get_typeStatic_mDCF9B62F3BF35868211DAC4674B20B649F199141(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.QueryDimensionsCommand UnityEngine.InputSystem.LowLevel.QueryDimensionsCommand::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83 QueryDimensionsCommand_Create_m7C11FBF2DE0A4FBA96C8C8D460FDC307D34E7B88 (const RuntimeMethod* method)
{
QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83 V_0;
memset((&V_0), 0, sizeof(V_0));
QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new QueryDimensionsCommand
// {
// baseCommand = new InputDeviceCommand(Type, kSize)
// };
il2cpp_codegen_initobj((&V_0), sizeof(QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = QueryDimensionsCommand_get_Type_m4C7101BD127B6AE8B0FFB39D3F3B452D961E14AF(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)16), /*hidden argument*/NULL);
(&V_0)->___baseCommand_1 = L_1;
QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83 L_2 = V_0;
V_1 = L_2;
goto IL_0020;
}
IL_0020:
{
// }
QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83 L_3 = V_1;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand
IL2CPP_EXTERN_C void QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshal_pinvoke(const QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4& unmarshaled, QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshaled_pinvoke& marshaled)
{
marshaled.___baseCommand_1 = unmarshaled.___baseCommand_1;
marshaled.___isEnabled_2 = static_cast<int32_t>(unmarshaled.___isEnabled_2);
}
IL2CPP_EXTERN_C void QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshal_pinvoke_back(const QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshaled_pinvoke& marshaled, QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4& unmarshaled)
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E unmarshaledbaseCommand_temp_0;
memset((&unmarshaledbaseCommand_temp_0), 0, sizeof(unmarshaledbaseCommand_temp_0));
unmarshaledbaseCommand_temp_0 = marshaled.___baseCommand_1;
unmarshaled.___baseCommand_1 = unmarshaledbaseCommand_temp_0;
bool unmarshaledisEnabled_temp_1 = false;
unmarshaledisEnabled_temp_1 = static_cast<bool>(marshaled.___isEnabled_2);
unmarshaled.___isEnabled_2 = unmarshaledisEnabled_temp_1;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand
IL2CPP_EXTERN_C void QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshal_pinvoke_cleanup(QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand
IL2CPP_EXTERN_C void QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshal_com(const QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4& unmarshaled, QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshaled_com& marshaled)
{
marshaled.___baseCommand_1 = unmarshaled.___baseCommand_1;
marshaled.___isEnabled_2 = static_cast<int32_t>(unmarshaled.___isEnabled_2);
}
IL2CPP_EXTERN_C void QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshal_com_back(const QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshaled_com& marshaled, QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4& unmarshaled)
{
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E unmarshaledbaseCommand_temp_0;
memset((&unmarshaledbaseCommand_temp_0), 0, sizeof(unmarshaledbaseCommand_temp_0));
unmarshaledbaseCommand_temp_0 = marshaled.___baseCommand_1;
unmarshaled.___baseCommand_1 = unmarshaledbaseCommand_temp_0;
bool unmarshaledisEnabled_temp_1 = false;
unmarshaledisEnabled_temp_1 = static_cast<bool>(marshaled.___isEnabled_2);
unmarshaled.___isEnabled_2 = unmarshaledisEnabled_temp_1;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand
IL2CPP_EXTERN_C void QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshal_com_cleanup(QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshaled_com& marshaled)
{
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryEnabledStateCommand_get_Type_m76FAED08D055671FD4139A4A073B4E1ED7258E07 (const RuntimeMethod* method)
{
{
// public static FourCC Type => new FourCC('Q', 'E', 'N', 'B');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)81), ((int32_t)69), ((int32_t)78), ((int32_t)66), /*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryEnabledStateCommand_get_typeStatic_m4CE8116E064CBD6A470B8F043F1869E362216744 (QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4* __this, const RuntimeMethod* method)
{
{
// public FourCC typeStatic => Type;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = QueryEnabledStateCommand_get_Type_m76FAED08D055671FD4139A4A073B4E1ED7258E07(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryEnabledStateCommand_get_typeStatic_m4CE8116E064CBD6A470B8F043F1869E362216744_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = QueryEnabledStateCommand_get_typeStatic_m4CE8116E064CBD6A470B8F043F1869E362216744(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4 QueryEnabledStateCommand_Create_m3DD6FA821E5D05E8EBE58C95320CE7F7D604775B (const RuntimeMethod* method)
{
QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4 V_0;
memset((&V_0), 0, sizeof(V_0));
QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new QueryEnabledStateCommand
// {
// baseCommand = new InputDeviceCommand(Type, kSize)
// };
il2cpp_codegen_initobj((&V_0), sizeof(QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = QueryEnabledStateCommand_get_Type_m76FAED08D055671FD4139A4A073B4E1ED7258E07(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)9), /*hidden argument*/NULL);
(&V_0)->___baseCommand_1 = L_1;
QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4 L_2 = V_0;
V_1 = L_2;
goto IL_0020;
}
IL_0020:
{
// }
QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4 L_3 = V_1;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyboardLayoutCommand_get_Type_m193550A417104FB03791F13D5D07AE5FAA3F0C4D (const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public static FourCC Type { get { return new FourCC('K', 'B', 'L', 'T'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)75), ((int32_t)66), ((int32_t)76), ((int32_t)84), /*hidden argument*/NULL);
V_0 = L_0;
goto IL_0011;
}
IL_0011:
{
// public static FourCC Type { get { return new FourCC('K', 'B', 'L', 'T'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
// System.String UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand::ReadLayoutName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryKeyboardLayoutCommand_ReadLayoutName_m69F50E3BC9B964A8EE56924846F0292AD4330FDE (QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* __this, const RuntimeMethod* method)
{
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* V_0 = NULL;
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* V_1 = NULL;
String_t* V_2 = NULL;
{
V_1 = __this;
// fixed(QueryKeyboardLayoutCommand * thisPtr = &this)
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* L_0 = V_1;
V_0 = (QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F*)((uintptr_t)L_0);
// return StringHelpers.ReadStringFromBuffer(new IntPtr(thisPtr->nameBuffer), kMaxNameLength);
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* L_1 = V_0;
NullCheck(L_1);
U3CnameBufferU3Ee__FixedBuffer_t168308F70377718D2FF4ADDC61E423166ADBE1DA* L_2 = (&L_1->___nameBuffer_2);
uint8_t* L_3 = (&L_2->___FixedElementField_0);
intptr_t L_4;
memset((&L_4), 0, sizeof(L_4));
IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline((&L_4), (void*)((uintptr_t)L_3), /*hidden argument*/NULL);
String_t* L_5;
L_5 = StringHelpers_ReadStringFromBuffer_m9DF460E736D154E45E56EF8549D05E54DEF3FA30(L_4, ((int32_t)256), NULL);
V_2 = L_5;
goto IL_0024;
}
IL_0024:
{
// }
String_t* L_6 = V_2;
return L_6;
}
}
IL2CPP_EXTERN_C String_t* QueryKeyboardLayoutCommand_ReadLayoutName_m69F50E3BC9B964A8EE56924846F0292AD4330FDE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F*>(__this + _offset);
String_t* _returnValue;
_returnValue = QueryKeyboardLayoutCommand_ReadLayoutName_m69F50E3BC9B964A8EE56924846F0292AD4330FDE(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand::WriteLayoutName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryKeyboardLayoutCommand_WriteLayoutName_mBB1067A2E35ED994C8AAF1E8C250FADBAA4AD6AE (QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* __this, String_t* ___name0, const RuntimeMethod* method)
{
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* V_0 = NULL;
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* V_1 = NULL;
{
V_1 = __this;
// fixed(QueryKeyboardLayoutCommand * thisPtr = &this)
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* L_0 = V_1;
V_0 = (QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F*)((uintptr_t)L_0);
// StringHelpers.WriteStringToBuffer(name, new IntPtr(thisPtr->nameBuffer), kMaxNameLength);
String_t* L_1 = ___name0;
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* L_2 = V_0;
NullCheck(L_2);
U3CnameBufferU3Ee__FixedBuffer_t168308F70377718D2FF4ADDC61E423166ADBE1DA* L_3 = (&L_2->___nameBuffer_2);
uint8_t* L_4 = (&L_3->___FixedElementField_0);
intptr_t L_5;
memset((&L_5), 0, sizeof(L_5));
IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline((&L_5), (void*)((uintptr_t)L_4), /*hidden argument*/NULL);
bool L_6;
L_6 = StringHelpers_WriteStringToBuffer_mEAB944B4E01DA060BBAE7EB5043042D1594EE0C3(L_1, L_5, ((int32_t)256), NULL);
V_1 = (QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F*)((uintptr_t)0);
// }
return;
}
}
IL2CPP_EXTERN_C void QueryKeyboardLayoutCommand_WriteLayoutName_mBB1067A2E35ED994C8AAF1E8C250FADBAA4AD6AE_AdjustorThunk (RuntimeObject* __this, String_t* ___name0, const RuntimeMethod* method)
{
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F*>(__this + _offset);
QueryKeyboardLayoutCommand_WriteLayoutName_mBB1067A2E35ED994C8AAF1E8C250FADBAA4AD6AE(_thisAdjusted, ___name0, method);
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyboardLayoutCommand_get_typeStatic_mF9D6B9C2C598C7AA595CFC38B830112CF6389C0F (QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* __this, const RuntimeMethod* method)
{
{
// public FourCC typeStatic => Type;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = QueryKeyboardLayoutCommand_get_Type_m193550A417104FB03791F13D5D07AE5FAA3F0C4D(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyboardLayoutCommand_get_typeStatic_mF9D6B9C2C598C7AA595CFC38B830112CF6389C0F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = QueryKeyboardLayoutCommand_get_typeStatic_mF9D6B9C2C598C7AA595CFC38B830112CF6389C0F(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F QueryKeyboardLayoutCommand_Create_m030B6F423B0AF2EE5194FFC4E4DB35F2DFAB7CCE (const RuntimeMethod* method)
{
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F V_0;
memset((&V_0), 0, sizeof(V_0));
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new QueryKeyboardLayoutCommand
// {
// baseCommand = new InputDeviceCommand(Type, InputDeviceCommand.kBaseCommandSize + kMaxNameLength)
// };
il2cpp_codegen_initobj((&V_0), sizeof(QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = QueryKeyboardLayoutCommand_get_Type_m193550A417104FB03791F13D5D07AE5FAA3F0C4D(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)264), /*hidden argument*/NULL);
(&V_0)->___baseCommand_1 = L_1;
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F L_2 = V_0;
V_1 = L_2;
goto IL_0023;
}
IL_0023:
{
// }
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F L_3 = V_1;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyNameCommand_get_Type_mFFD411151F819BB97D94CD7FA81AD243BC1FF015 (const RuntimeMethod* method)
{
{
// public static FourCC Type => new FourCC('K', 'Y', 'C', 'F');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)75), ((int32_t)89), ((int32_t)67), ((int32_t)70), /*hidden argument*/NULL);
return L_0;
}
}
// System.String UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand::ReadKeyName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryKeyNameCommand_ReadKeyName_mE3442B7FD9CC5B3889A5908F2F87F215FF70A61E (QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* __this, const RuntimeMethod* method)
{
QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* V_0 = NULL;
QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* V_1 = NULL;
String_t* V_2 = NULL;
{
V_1 = __this;
// fixed(QueryKeyNameCommand * thisPtr = &this)
QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* L_0 = V_1;
V_0 = (QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247*)((uintptr_t)L_0);
// return StringHelpers.ReadStringFromBuffer(new IntPtr(thisPtr->nameBuffer), kMaxNameLength);
QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* L_1 = V_0;
NullCheck(L_1);
U3CnameBufferU3Ee__FixedBuffer_tF101426D1EE77D09C5615FAE829F3F32616ED2A4* L_2 = (&L_1->___nameBuffer_4);
uint8_t* L_3 = (&L_2->___FixedElementField_0);
intptr_t L_4;
memset((&L_4), 0, sizeof(L_4));
IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline((&L_4), (void*)((uintptr_t)L_3), /*hidden argument*/NULL);
String_t* L_5;
L_5 = StringHelpers_ReadStringFromBuffer_m9DF460E736D154E45E56EF8549D05E54DEF3FA30(L_4, ((int32_t)256), NULL);
V_2 = L_5;
goto IL_0025;
}
IL_0025:
{
// }
String_t* L_6 = V_2;
return L_6;
}
}
IL2CPP_EXTERN_C String_t* QueryKeyNameCommand_ReadKeyName_mE3442B7FD9CC5B3889A5908F2F87F215FF70A61E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247*>(__this + _offset);
String_t* _returnValue;
_returnValue = QueryKeyNameCommand_ReadKeyName_mE3442B7FD9CC5B3889A5908F2F87F215FF70A61E(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyNameCommand_get_typeStatic_mF2D528451EEEC0E93933CF425037F4851EC1ECB3 (QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* __this, const RuntimeMethod* method)
{
{
// public FourCC typeStatic => Type;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = QueryKeyNameCommand_get_Type_mFFD411151F819BB97D94CD7FA81AD243BC1FF015(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyNameCommand_get_typeStatic_mF2D528451EEEC0E93933CF425037F4851EC1ECB3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = QueryKeyNameCommand_get_typeStatic_mF2D528451EEEC0E93933CF425037F4851EC1ECB3(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand::Create(UnityEngine.InputSystem.Key)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247 QueryKeyNameCommand_Create_m7A2F93BE925D4A599D58D07B02FFB34C89E9F734 (int32_t ___key0, const RuntimeMethod* method)
{
QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247 V_0;
memset((&V_0), 0, sizeof(V_0));
QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new QueryKeyNameCommand
// {
// baseCommand = new InputDeviceCommand(Type, kSize),
// scanOrKeyCode = (int)key
// };
il2cpp_codegen_initobj((&V_0), sizeof(QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = QueryKeyNameCommand_get_Type_mFFD411151F819BB97D94CD7FA81AD243BC1FF015(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)268), /*hidden argument*/NULL);
(&V_0)->___baseCommand_2 = L_1;
int32_t L_2 = ___key0;
(&V_0)->___scanOrKeyCode_3 = L_2;
QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247 L_3 = V_0;
V_1 = L_3;
goto IL_002b;
}
IL_002b:
{
// }
QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247 L_4 = V_1;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryPairedUserAccountCommand_get_Type_m6BBF2400CA4975751E780516D777A985378FEC49 (const RuntimeMethod* method)
{
{
// public static FourCC Type => new FourCC('P', 'A', 'C', 'C');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)80), ((int32_t)65), ((int32_t)67), ((int32_t)67), /*hidden argument*/NULL);
return L_0;
}
}
// System.String UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::get_id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryPairedUserAccountCommand_get_id_mB52BF2DC2C2B3C63661056A1F9AAB47C0E7CDFCB (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
uint8_t* V_1 = NULL;
String_t* V_2 = NULL;
{
U3CidBufferU3Ee__FixedBuffer_t8F8E3EAA210EF6DD3834C5C4E574ADC65AC6173A* L_0 = (&__this->___idBuffer_6);
uint8_t* L_1 = (&L_0->___FixedElementField_0);
V_1 = L_1;
// fixed(byte* idBufferPtr = idBuffer)
uint8_t* L_2 = V_1;
V_0 = (uint8_t*)((uintptr_t)L_2);
// return StringHelpers.ReadStringFromBuffer(new IntPtr(idBufferPtr), kMaxIdLength);
uint8_t* L_3 = V_0;
intptr_t L_4;
memset((&L_4), 0, sizeof(L_4));
IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline((&L_4), (void*)L_3, /*hidden argument*/NULL);
String_t* L_5;
L_5 = StringHelpers_ReadStringFromBuffer_m9DF460E736D154E45E56EF8549D05E54DEF3FA30(L_4, ((int32_t)256), NULL);
V_2 = L_5;
goto IL_0023;
}
IL_0023:
{
// }
String_t* L_6 = V_2;
return L_6;
}
}
IL2CPP_EXTERN_C String_t* QueryPairedUserAccountCommand_get_id_mB52BF2DC2C2B3C63661056A1F9AAB47C0E7CDFCB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582*>(__this + _offset);
String_t* _returnValue;
_returnValue = QueryPairedUserAccountCommand_get_id_mB52BF2DC2C2B3C63661056A1F9AAB47C0E7CDFCB(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::set_id(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryPairedUserAccountCommand_set_id_mCA44A798D70E7F0EB7BA347652F4341221A5BDAE (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, String_t* ___value0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
bool V_2 = false;
uint8_t* V_3 = NULL;
uint8_t* V_4 = NULL;
{
// if (value == null)
String_t* L_0 = ___value0;
V_1 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_0014;
}
}
{
// throw new ArgumentNullException(nameof(value));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&QueryPairedUserAccountCommand_set_id_mCA44A798D70E7F0EB7BA347652F4341221A5BDAE_RuntimeMethod_var)));
}
IL_0014:
{
// var length = value.Length;
String_t* L_3 = ___value0;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
V_0 = L_4;
// if (length > kMaxIdLength)
int32_t L_5 = V_0;
V_2 = (bool)((((int32_t)L_5) > ((int32_t)((int32_t)256)))? 1 : 0);
bool L_6 = V_2;
if (!L_6)
{
goto IL_0047;
}
}
{
// throw new ArgumentException($"ID '{value}' exceeds maximum supported length of {kMaxIdLength} characters", nameof(value));
String_t* L_7 = ___value0;
int32_t L_8 = ((int32_t)256);
RuntimeObject* L_9 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_8);
String_t* L_10;
L_10 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF43C565EB197642FD7A61215CD152E5223F84532)), L_7, L_9, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_11 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_11);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_11, L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&QueryPairedUserAccountCommand_set_id_mCA44A798D70E7F0EB7BA347652F4341221A5BDAE_RuntimeMethod_var)));
}
IL_0047:
{
U3CidBufferU3Ee__FixedBuffer_t8F8E3EAA210EF6DD3834C5C4E574ADC65AC6173A* L_12 = (&__this->___idBuffer_6);
uint8_t* L_13 = (&L_12->___FixedElementField_0);
V_4 = L_13;
// fixed(byte* idBufferPtr = idBuffer)
uint8_t* L_14 = V_4;
V_3 = (uint8_t*)((uintptr_t)L_14);
// StringHelpers.WriteStringToBuffer(value, new IntPtr(idBufferPtr), kMaxIdLength);
String_t* L_15 = ___value0;
uint8_t* L_16 = V_3;
intptr_t L_17;
memset((&L_17), 0, sizeof(L_17));
IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline((&L_17), (void*)L_16, /*hidden argument*/NULL);
bool L_18;
L_18 = StringHelpers_WriteStringToBuffer_mEAB944B4E01DA060BBAE7EB5043042D1594EE0C3(L_15, L_17, ((int32_t)256), NULL);
V_4 = (uint8_t*)((uintptr_t)0);
// }
return;
}
}
IL2CPP_EXTERN_C void QueryPairedUserAccountCommand_set_id_mCA44A798D70E7F0EB7BA347652F4341221A5BDAE_AdjustorThunk (RuntimeObject* __this, String_t* ___value0, const RuntimeMethod* method)
{
QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582*>(__this + _offset);
QueryPairedUserAccountCommand_set_id_mCA44A798D70E7F0EB7BA347652F4341221A5BDAE(_thisAdjusted, ___value0, method);
}
// System.String UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::get_name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryPairedUserAccountCommand_get_name_m405A615F44272337724373D19F46B1258C18C856 (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
uint8_t* V_1 = NULL;
String_t* V_2 = NULL;
{
U3CnameBufferU3Ee__FixedBuffer_tC07F8AB4DC191B8E7EAC20B6CAD62F5D165BB91B* L_0 = (&__this->___nameBuffer_5);
uint8_t* L_1 = (&L_0->___FixedElementField_0);
V_1 = L_1;
// fixed(byte* nameBufferPtr = nameBuffer)
uint8_t* L_2 = V_1;
V_0 = (uint8_t*)((uintptr_t)L_2);
// return StringHelpers.ReadStringFromBuffer(new IntPtr(nameBufferPtr), kMaxNameLength);
uint8_t* L_3 = V_0;
intptr_t L_4;
memset((&L_4), 0, sizeof(L_4));
IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline((&L_4), (void*)L_3, /*hidden argument*/NULL);
String_t* L_5;
L_5 = StringHelpers_ReadStringFromBuffer_m9DF460E736D154E45E56EF8549D05E54DEF3FA30(L_4, ((int32_t)256), NULL);
V_2 = L_5;
goto IL_0023;
}
IL_0023:
{
// }
String_t* L_6 = V_2;
return L_6;
}
}
IL2CPP_EXTERN_C String_t* QueryPairedUserAccountCommand_get_name_m405A615F44272337724373D19F46B1258C18C856_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582*>(__this + _offset);
String_t* _returnValue;
_returnValue = QueryPairedUserAccountCommand_get_name_m405A615F44272337724373D19F46B1258C18C856(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::set_name(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryPairedUserAccountCommand_set_name_m4C8CBE6D10186933B46DB10B494E21213805B37A (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, String_t* ___value0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
bool V_2 = false;
uint8_t* V_3 = NULL;
uint8_t* V_4 = NULL;
{
// if (value == null)
String_t* L_0 = ___value0;
V_1 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_0014;
}
}
{
// throw new ArgumentNullException("value");
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&QueryPairedUserAccountCommand_set_name_m4C8CBE6D10186933B46DB10B494E21213805B37A_RuntimeMethod_var)));
}
IL_0014:
{
// var length = value.Length;
String_t* L_3 = ___value0;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
V_0 = L_4;
// if (length > kMaxNameLength)
int32_t L_5 = V_0;
V_2 = (bool)((((int32_t)L_5) > ((int32_t)((int32_t)256)))? 1 : 0);
bool L_6 = V_2;
if (!L_6)
{
goto IL_0047;
}
}
{
// throw new ArgumentException($"Name '{value}' exceeds maximum supported length of {kMaxNameLength} characters", nameof(value));
String_t* L_7 = ___value0;
int32_t L_8 = ((int32_t)256);
RuntimeObject* L_9 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_8);
String_t* L_10;
L_10 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral30C9A4CE48482CFCCFE484E0EF36FF8844DDAE6E)), L_7, L_9, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_11 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_11);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_11, L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&QueryPairedUserAccountCommand_set_name_m4C8CBE6D10186933B46DB10B494E21213805B37A_RuntimeMethod_var)));
}
IL_0047:
{
U3CnameBufferU3Ee__FixedBuffer_tC07F8AB4DC191B8E7EAC20B6CAD62F5D165BB91B* L_12 = (&__this->___nameBuffer_5);
uint8_t* L_13 = (&L_12->___FixedElementField_0);
V_4 = L_13;
// fixed(byte* nameBufferPtr = nameBuffer)
uint8_t* L_14 = V_4;
V_3 = (uint8_t*)((uintptr_t)L_14);
// StringHelpers.WriteStringToBuffer(value, new IntPtr(nameBufferPtr), kMaxNameLength);
String_t* L_15 = ___value0;
uint8_t* L_16 = V_3;
intptr_t L_17;
memset((&L_17), 0, sizeof(L_17));
IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline((&L_17), (void*)L_16, /*hidden argument*/NULL);
bool L_18;
L_18 = StringHelpers_WriteStringToBuffer_mEAB944B4E01DA060BBAE7EB5043042D1594EE0C3(L_15, L_17, ((int32_t)256), NULL);
V_4 = (uint8_t*)((uintptr_t)0);
// }
return;
}
}
IL2CPP_EXTERN_C void QueryPairedUserAccountCommand_set_name_m4C8CBE6D10186933B46DB10B494E21213805B37A_AdjustorThunk (RuntimeObject* __this, String_t* ___value0, const RuntimeMethod* method)
{
QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582*>(__this + _offset);
QueryPairedUserAccountCommand_set_name_m4C8CBE6D10186933B46DB10B494E21213805B37A(_thisAdjusted, ___value0, method);
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryPairedUserAccountCommand_get_typeStatic_mD6966C188315C0D8C6AF75D21C3FA053ED4EF3CC (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, const RuntimeMethod* method)
{
{
// public FourCC typeStatic => Type;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = QueryPairedUserAccountCommand_get_Type_m6BBF2400CA4975751E780516D777A985378FEC49(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryPairedUserAccountCommand_get_typeStatic_mD6966C188315C0D8C6AF75D21C3FA053ED4EF3CC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = QueryPairedUserAccountCommand_get_typeStatic_mD6966C188315C0D8C6AF75D21C3FA053ED4EF3CC(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582 QueryPairedUserAccountCommand_Create_mEF43B798102014535A5E18B7D2443D906B992FFA (const RuntimeMethod* method)
{
QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582 V_0;
memset((&V_0), 0, sizeof(V_0));
QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new QueryPairedUserAccountCommand
// {
// baseCommand = new InputDeviceCommand(Type, kSize),
// };
il2cpp_codegen_initobj((&V_0), sizeof(QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = QueryPairedUserAccountCommand_get_Type_m6BBF2400CA4975751E780516D777A985378FEC49(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)1040), /*hidden argument*/NULL);
(&V_0)->___baseCommand_3 = L_1;
QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582 L_2 = V_0;
V_1 = L_2;
goto IL_0023;
}
IL_0023:
{
// }
QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582 L_3 = V_1;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QuerySamplingFrequencyCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QuerySamplingFrequencyCommand_get_Type_m7E6F864E789782370D5E2F090AF118205AB8742D (const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public static FourCC Type { get { return new FourCC('S', 'M', 'P', 'L'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)83), ((int32_t)77), ((int32_t)80), ((int32_t)76), /*hidden argument*/NULL);
V_0 = L_0;
goto IL_0011;
}
IL_0011:
{
// public static FourCC Type { get { return new FourCC('S', 'M', 'P', 'L'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QuerySamplingFrequencyCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QuerySamplingFrequencyCommand_get_typeStatic_mC6E13673C19A972E625C2B37AD3881354663F096 (QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA* __this, const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = QuerySamplingFrequencyCommand_get_Type_m7E6F864E789782370D5E2F090AF118205AB8742D(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QuerySamplingFrequencyCommand_get_typeStatic_mC6E13673C19A972E625C2B37AD3881354663F096_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = QuerySamplingFrequencyCommand_get_typeStatic_mC6E13673C19A972E625C2B37AD3881354663F096(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.QuerySamplingFrequencyCommand UnityEngine.InputSystem.LowLevel.QuerySamplingFrequencyCommand::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA QuerySamplingFrequencyCommand_Create_m4B3337A83053BA471FBC67218E853CD86F3F108E (const RuntimeMethod* method)
{
QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA V_0;
memset((&V_0), 0, sizeof(V_0));
QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new QuerySamplingFrequencyCommand
// {
// baseCommand = new InputDeviceCommand(Type, kSize)
// };
il2cpp_codegen_initobj((&V_0), sizeof(QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = QuerySamplingFrequencyCommand_get_Type_m7E6F864E789782370D5E2F090AF118205AB8742D(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)12), /*hidden argument*/NULL);
(&V_0)->___baseCommand_1 = L_1;
QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA L_2 = V_0;
V_1 = L_2;
goto IL_0020;
}
IL_0020:
{
// }
QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA L_3 = V_1;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryUserIdCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryUserIdCommand_get_Type_m17AFF926AD76D01CA5FDFF9CE0BF2DC8C7C851DB (const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public static FourCC Type { get { return new FourCC('U', 'S', 'E', 'R'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)85), ((int32_t)83), ((int32_t)69), ((int32_t)82), /*hidden argument*/NULL);
V_0 = L_0;
goto IL_0011;
}
IL_0011:
{
// public static FourCC Type { get { return new FourCC('U', 'S', 'E', 'R'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
// System.String UnityEngine.InputSystem.LowLevel.QueryUserIdCommand::ReadId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryUserIdCommand_ReadId_m3BB974A34A9905F046569754836F889575C349AF (QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* __this, const RuntimeMethod* method)
{
QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* V_0 = NULL;
QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* V_1 = NULL;
String_t* V_2 = NULL;
{
V_1 = __this;
// fixed(QueryUserIdCommand * thisPtr = &this)
QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* L_0 = V_1;
V_0 = (QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD*)((uintptr_t)L_0);
// return StringHelpers.ReadStringFromBuffer(new IntPtr(thisPtr->idBuffer), kMaxIdLength);
QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* L_1 = V_0;
NullCheck(L_1);
U3CidBufferU3Ee__FixedBuffer_tE4CA52A47737D5043418F9D66A282E93248BF2BD* L_2 = (&L_1->___idBuffer_3);
uint8_t* L_3 = (&L_2->___FixedElementField_0);
intptr_t L_4;
memset((&L_4), 0, sizeof(L_4));
IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline((&L_4), (void*)((uintptr_t)L_3), /*hidden argument*/NULL);
String_t* L_5;
L_5 = StringHelpers_ReadStringFromBuffer_m9DF460E736D154E45E56EF8549D05E54DEF3FA30(L_4, ((int32_t)256), NULL);
V_2 = L_5;
goto IL_0025;
}
IL_0025:
{
// }
String_t* L_6 = V_2;
return L_6;
}
}
IL2CPP_EXTERN_C String_t* QueryUserIdCommand_ReadId_m3BB974A34A9905F046569754836F889575C349AF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD*>(__this + _offset);
String_t* _returnValue;
_returnValue = QueryUserIdCommand_ReadId_m3BB974A34A9905F046569754836F889575C349AF(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.QueryUserIdCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryUserIdCommand_get_typeStatic_mC5794F2A38D12A8E38BD4EF3B30B6604AE183793 (QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* __this, const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = QueryUserIdCommand_get_Type_m17AFF926AD76D01CA5FDFF9CE0BF2DC8C7C851DB(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryUserIdCommand_get_typeStatic_mC5794F2A38D12A8E38BD4EF3B30B6604AE183793_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = QueryUserIdCommand_get_typeStatic_mC5794F2A38D12A8E38BD4EF3B30B6604AE183793(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.QueryUserIdCommand UnityEngine.InputSystem.LowLevel.QueryUserIdCommand::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD QueryUserIdCommand_Create_mB271DED7861C87C7B1D99488B70FA0DC0004CE1D (const RuntimeMethod* method)
{
QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD V_0;
memset((&V_0), 0, sizeof(V_0));
QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new QueryUserIdCommand
// {
// baseCommand = new InputDeviceCommand(Type, kSize),
// };
il2cpp_codegen_initobj((&V_0), sizeof(QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = QueryUserIdCommand_get_Type_m17AFF926AD76D01CA5FDFF9CE0BF2DC8C7C851DB(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)520), /*hidden argument*/NULL);
(&V_0)->___baseCommand_2 = L_1;
QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD L_2 = V_0;
V_1 = L_2;
goto IL_0023;
}
IL_0023:
{
// }
QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD L_3 = V_1;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.RequestResetCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestResetCommand_get_Type_m581C42072F816159E675C108BB84438D38C909C4 (const RuntimeMethod* method)
{
{
// public static FourCC Type => new FourCC('R', 'S', 'E', 'T');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)82), ((int32_t)83), ((int32_t)69), ((int32_t)84), /*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.RequestResetCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestResetCommand_get_typeStatic_m682DBD857C38B26B39B9679C35C98A2AE5B3C0DC (RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968* __this, const RuntimeMethod* method)
{
{
// public FourCC typeStatic => Type;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = RequestResetCommand_get_Type_m581C42072F816159E675C108BB84438D38C909C4(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestResetCommand_get_typeStatic_m682DBD857C38B26B39B9679C35C98A2AE5B3C0DC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = RequestResetCommand_get_typeStatic_m682DBD857C38B26B39B9679C35C98A2AE5B3C0DC(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.RequestResetCommand UnityEngine.InputSystem.LowLevel.RequestResetCommand::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968 RequestResetCommand_Create_m821C46C65DAECD050E18E14D8E5E84251F86F6F6 (const RuntimeMethod* method)
{
RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968 V_0;
memset((&V_0), 0, sizeof(V_0));
RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new RequestResetCommand
// {
// baseCommand = new InputDeviceCommand(Type, kSize)
// };
il2cpp_codegen_initobj((&V_0), sizeof(RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = RequestResetCommand_get_Type_m581C42072F816159E675C108BB84438D38C909C4(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, 8, /*hidden argument*/NULL);
(&V_0)->___baseCommand_1 = L_1;
RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968 L_2 = V_0;
V_1 = L_2;
goto IL_001f;
}
IL_001f:
{
// }
RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968 L_3 = V_1;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.RequestSyncCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestSyncCommand_get_Type_m2D56783B844AB1CCF1339DF4B3010F6DD3031B37 (const RuntimeMethod* method)
{
{
// public static FourCC Type => new FourCC('S', 'Y', 'N', 'C');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)83), ((int32_t)89), ((int32_t)78), ((int32_t)67), /*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.RequestSyncCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestSyncCommand_get_typeStatic_m27687F65BCDB472A0D9BE03B1D60C602913172A2 (RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8* __this, const RuntimeMethod* method)
{
{
// public FourCC typeStatic => Type;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = RequestSyncCommand_get_Type_m2D56783B844AB1CCF1339DF4B3010F6DD3031B37(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestSyncCommand_get_typeStatic_m27687F65BCDB472A0D9BE03B1D60C602913172A2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = RequestSyncCommand_get_typeStatic_m27687F65BCDB472A0D9BE03B1D60C602913172A2(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.RequestSyncCommand UnityEngine.InputSystem.LowLevel.RequestSyncCommand::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8 RequestSyncCommand_Create_m776B2A474D1D62484CDE0504A41EDBCF31C4B5CC (const RuntimeMethod* method)
{
RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8 V_0;
memset((&V_0), 0, sizeof(V_0));
RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new RequestSyncCommand
// {
// baseCommand = new InputDeviceCommand(Type, kSize)
// };
il2cpp_codegen_initobj((&V_0), sizeof(RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = RequestSyncCommand_get_Type_m2D56783B844AB1CCF1339DF4B3010F6DD3031B37(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, 8, /*hidden argument*/NULL);
(&V_0)->___baseCommand_1 = L_1;
RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8 L_2 = V_0;
V_1 = L_2;
goto IL_001f;
}
IL_001f:
{
// }
RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8 L_3 = V_1;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.SetIMECursorPositionCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetIMECursorPositionCommand_get_Type_mD27C8ABE8BDE9A79A6D2F1C4AEA7975EA789F36E (const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public static FourCC Type { get { return new FourCC('I', 'M', 'E', 'P'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)73), ((int32_t)77), ((int32_t)69), ((int32_t)80), /*hidden argument*/NULL);
V_0 = L_0;
goto IL_0011;
}
IL_0011:
{
// public static FourCC Type { get { return new FourCC('I', 'M', 'E', 'P'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.SetIMECursorPositionCommand::get_position()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 SetIMECursorPositionCommand_get_position_m50765F077E0164B5205064B7A1B141F2C81C085C (SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46* __this, const RuntimeMethod* method)
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// get { return m_Position; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_Position_2;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
// get { return m_Position; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 SetIMECursorPositionCommand_get_position_m50765F077E0164B5205064B7A1B141F2C81C085C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46*>(__this + _offset);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
_returnValue = SetIMECursorPositionCommand_get_position_m50765F077E0164B5205064B7A1B141F2C81C085C(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.SetIMECursorPositionCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetIMECursorPositionCommand_get_typeStatic_m99FCCDF1E9DA6575073F31F84C0B670340281D02 (SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46* __this, const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = SetIMECursorPositionCommand_get_Type_mD27C8ABE8BDE9A79A6D2F1C4AEA7975EA789F36E(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetIMECursorPositionCommand_get_typeStatic_m99FCCDF1E9DA6575073F31F84C0B670340281D02_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = SetIMECursorPositionCommand_get_typeStatic_m99FCCDF1E9DA6575073F31F84C0B670340281D02(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.SetIMECursorPositionCommand UnityEngine.InputSystem.LowLevel.SetIMECursorPositionCommand::Create(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46 SetIMECursorPositionCommand_Create_mF8A288F830F2BBD11CCAE67E1577B085DCB92516 (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___cursorPosition0, const RuntimeMethod* method)
{
SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46 V_0;
memset((&V_0), 0, sizeof(V_0));
SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new SetIMECursorPositionCommand
// {
// baseCommand = new InputDeviceCommand(Type, kSize),
// m_Position = cursorPosition
// };
il2cpp_codegen_initobj((&V_0), sizeof(SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = SetIMECursorPositionCommand_get_Type_mD27C8ABE8BDE9A79A6D2F1C4AEA7975EA789F36E(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)16), /*hidden argument*/NULL);
(&V_0)->___baseCommand_1 = L_1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___cursorPosition0;
(&V_0)->___m_Position_2 = L_2;
SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46 L_3 = V_0;
V_1 = L_3;
goto IL_0028;
}
IL_0028:
{
// }
SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46 L_4 = V_1;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.SetSamplingFrequencyCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetSamplingFrequencyCommand_get_Type_mCE6CD574C303B439A0303C432EED93CDF3F6317C (const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public static FourCC Type { get { return new FourCC('S', 'S', 'P', 'L'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)83), ((int32_t)83), ((int32_t)80), ((int32_t)76), /*hidden argument*/NULL);
V_0 = L_0;
goto IL_0011;
}
IL_0011:
{
// public static FourCC Type { get { return new FourCC('S', 'S', 'P', 'L'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.SetSamplingFrequencyCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetSamplingFrequencyCommand_get_typeStatic_mD878C128408D8125024D0C962C3AE58BBF44780A (SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88* __this, const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = SetSamplingFrequencyCommand_get_Type_mCE6CD574C303B439A0303C432EED93CDF3F6317C(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetSamplingFrequencyCommand_get_typeStatic_mD878C128408D8125024D0C962C3AE58BBF44780A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = SetSamplingFrequencyCommand_get_typeStatic_mD878C128408D8125024D0C962C3AE58BBF44780A(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.SetSamplingFrequencyCommand UnityEngine.InputSystem.LowLevel.SetSamplingFrequencyCommand::Create(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88 SetSamplingFrequencyCommand_Create_m41F48726AB64251ACF2E6AA227D5A1E35A7E83E2 (float ___frequency0, const RuntimeMethod* method)
{
SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88 V_0;
memset((&V_0), 0, sizeof(V_0));
SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new SetSamplingFrequencyCommand
// {
// baseCommand = new InputDeviceCommand(Type, kSize),
// frequency = frequency
// };
il2cpp_codegen_initobj((&V_0), sizeof(SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = SetSamplingFrequencyCommand_get_Type_mCE6CD574C303B439A0303C432EED93CDF3F6317C(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)12), /*hidden argument*/NULL);
(&V_0)->___baseCommand_1 = L_1;
float L_2 = ___frequency0;
(&V_0)->___frequency_2 = L_2;
SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88 L_3 = V_0;
V_1 = L_3;
goto IL_0028;
}
IL_0028:
{
// }
SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88 L_4 = V_1;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.WarpMousePositionCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED WarpMousePositionCommand_get_Type_m31B381E388EACF6D09D1795D9DBB49C3FD79DEF5 (const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public static FourCC Type { get { return new FourCC('W', 'P', 'M', 'S'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)87), ((int32_t)80), ((int32_t)77), ((int32_t)83), /*hidden argument*/NULL);
V_0 = L_0;
goto IL_0011;
}
IL_0011:
{
// public static FourCC Type { get { return new FourCC('W', 'P', 'M', 'S'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.WarpMousePositionCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED WarpMousePositionCommand_get_typeStatic_m7C173947D66A532E7F49ED7B48898BEB1529E56A (WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0* __this, const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = WarpMousePositionCommand_get_Type_m31B381E388EACF6D09D1795D9DBB49C3FD79DEF5(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED WarpMousePositionCommand_get_typeStatic_m7C173947D66A532E7F49ED7B48898BEB1529E56A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = WarpMousePositionCommand_get_typeStatic_m7C173947D66A532E7F49ED7B48898BEB1529E56A(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.WarpMousePositionCommand UnityEngine.InputSystem.LowLevel.WarpMousePositionCommand::Create(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0 WarpMousePositionCommand_Create_mD95FCF966AC0495E368DFF26D7430458C0349520 (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position0, const RuntimeMethod* method)
{
WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0 V_0;
memset((&V_0), 0, sizeof(V_0));
WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new WarpMousePositionCommand
// {
// baseCommand = new InputDeviceCommand(Type, kSize),
// warpPositionInPlayerDisplaySpace = position
// };
il2cpp_codegen_initobj((&V_0), sizeof(WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = WarpMousePositionCommand_get_Type_m31B381E388EACF6D09D1795D9DBB49C3FD79DEF5(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)16), /*hidden argument*/NULL);
(&V_0)->___baseCommand_1 = L_1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___position0;
(&V_0)->___warpPositionInPlayerDisplaySpace_2 = L_2;
WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0 L_3 = V_0;
V_1 = L_3;
goto IL_0028;
}
IL_0028:
{
// }
WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0 L_4 = V_1;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.GamepadState::get_Format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GamepadState_get_Format_m01D43FE212B94EA3D325119104D50D1F6A9349E9 (const RuntimeMethod* method)
{
{
// public static FourCC Format => new FourCC('G', 'P', 'A', 'D');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)71), ((int32_t)80), ((int32_t)65), ((int32_t)68), /*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.GamepadState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GamepadState_get_format_mF617D1EE8D57686B6BAEAA2AF8BF1F6BDAC5E1CF (GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* __this, const RuntimeMethod* method)
{
{
// public FourCC format => Format;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = GamepadState_get_Format_m01D43FE212B94EA3D325119104D50D1F6A9349E9(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GamepadState_get_format_mF617D1EE8D57686B6BAEAA2AF8BF1F6BDAC5E1CF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = GamepadState_get_format_mF617D1EE8D57686B6BAEAA2AF8BF1F6BDAC5E1CF(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.GamepadState::.ctor(UnityEngine.InputSystem.LowLevel.GamepadButton[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GamepadState__ctor_mD69F20EFA852648DFB4A97AC8B91692FBA793373 (GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* __this, GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6* ___buttons0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C4A74EE167FC8265DC7AC8BA68D37DAF14A0C55);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
uint32_t V_4 = 0;
{
// : this()
il2cpp_codegen_initobj(__this, sizeof(GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1));
// if (buttons == null)
GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6* L_0 = ___buttons0;
V_0 = (bool)((((RuntimeObject*)(GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001b;
}
}
{
// throw new ArgumentNullException(nameof(buttons));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2E967EC47C0181B3A2E25F28AF8F0061B4E2A296)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GamepadState__ctor_mD69F20EFA852648DFB4A97AC8B91692FBA793373_RuntimeMethod_var)));
}
IL_001b:
{
// foreach (var button in buttons)
GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6* L_3 = ___buttons0;
V_1 = L_3;
V_2 = 0;
goto IL_0053;
}
IL_0022:
{
// foreach (var button in buttons)
GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6* L_4 = V_1;
int32_t L_5 = V_2;
NullCheck(L_4);
int32_t L_6 = L_5;
int32_t L_7 = (int32_t)(L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_3 = L_7;
// Debug.Assert((int)button < 32, $"Expected button < 32, so we fit into the 32 bit wide bitmask");
int32_t L_8 = V_3;
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806((bool)((((int32_t)L_8) < ((int32_t)((int32_t)32)))? 1 : 0), _stringLiteral7C4A74EE167FC8265DC7AC8BA68D37DAF14A0C55, NULL);
// var bit = 1U << (int)button;
int32_t L_9 = V_3;
V_4 = ((int32_t)(1<<((int32_t)((int32_t)L_9&((int32_t)31)))));
// this.buttons |= bit;
uint32_t L_10 = __this->___buttons_4;
uint32_t L_11 = V_4;
__this->___buttons_4 = ((int32_t)((int32_t)L_10|(int32_t)L_11));
int32_t L_12 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
}
IL_0053:
{
// foreach (var button in buttons)
int32_t L_13 = V_2;
GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6* L_14 = V_1;
NullCheck(L_14);
if ((((int32_t)L_13) < ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))
{
goto IL_0022;
}
}
{
// }
return;
}
}
IL2CPP_EXTERN_C void GamepadState__ctor_mD69F20EFA852648DFB4A97AC8B91692FBA793373_AdjustorThunk (RuntimeObject* __this, GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6* ___buttons0, const RuntimeMethod* method)
{
GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1*>(__this + _offset);
GamepadState__ctor_mD69F20EFA852648DFB4A97AC8B91692FBA793373(_thisAdjusted, ___buttons0, method);
}
// UnityEngine.InputSystem.LowLevel.GamepadState UnityEngine.InputSystem.LowLevel.GamepadState::WithButton(UnityEngine.InputSystem.LowLevel.GamepadButton,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1 GamepadState_WithButton_m61BE4689DE621A285913BC0BD69D0560DBBD91DF (GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* __this, int32_t ___button0, bool ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C4A74EE167FC8265DC7AC8BA68D37DAF14A0C55);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
bool V_1 = false;
GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1 V_2;
memset((&V_2), 0, sizeof(V_2));
{
// Debug.Assert((int)button < 32, $"Expected button < 32, so we fit into the 32 bit wide bitmask");
int32_t L_0 = ___button0;
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806((bool)((((int32_t)L_0) < ((int32_t)((int32_t)32)))? 1 : 0), _stringLiteral7C4A74EE167FC8265DC7AC8BA68D37DAF14A0C55, NULL);
// var bit = 1U << (int)button;
int32_t L_1 = ___button0;
V_0 = ((int32_t)(1<<((int32_t)((int32_t)L_1&((int32_t)31)))));
// if (value)
bool L_2 = ___value1;
V_1 = L_2;
bool L_3 = V_1;
if (!L_3)
{
goto IL_002d;
}
}
{
// buttons |= bit;
uint32_t L_4 = __this->___buttons_4;
uint32_t L_5 = V_0;
__this->___buttons_4 = ((int32_t)((int32_t)L_4|(int32_t)L_5));
goto IL_003c;
}
IL_002d:
{
// buttons &= ~bit;
uint32_t L_6 = __this->___buttons_4;
uint32_t L_7 = V_0;
__this->___buttons_4 = ((int32_t)((int32_t)L_6&(int32_t)((~L_7))));
}
IL_003c:
{
// return this;
GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1 L_8 = (*(GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1*)__this);
V_2 = L_8;
goto IL_0045;
}
IL_0045:
{
// }
GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1 L_9 = V_2;
return L_9;
}
}
IL2CPP_EXTERN_C GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1 GamepadState_WithButton_m61BE4689DE621A285913BC0BD69D0560DBBD91DF_AdjustorThunk (RuntimeObject* __this, int32_t ___button0, bool ___value1, const RuntimeMethod* method)
{
GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1*>(__this + _offset);
GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1 _returnValue;
_returnValue = GamepadState_WithButton_m61BE4689DE621A285913BC0BD69D0560DBBD91DF(_thisAdjusted, ___button0, ___value1, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DualMotorRumbleCommand_get_Type_mC82FE52885743BC0F2622ADCA6655F6B8CE10DD2 (const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public static FourCC Type { get { return new FourCC('R', 'M', 'B', 'L'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)82), ((int32_t)77), ((int32_t)66), ((int32_t)76), /*hidden argument*/NULL);
V_0 = L_0;
goto IL_0011;
}
IL_0011:
{
// public static FourCC Type { get { return new FourCC('R', 'M', 'B', 'L'); } }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DualMotorRumbleCommand_get_typeStatic_mEDF2C976B44C2BB0C0C0271CC56391992AF37C2D (DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E* __this, const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = DualMotorRumbleCommand_get_Type_mC82FE52885743BC0F2622ADCA6655F6B8CE10DD2(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
// get { return Type; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DualMotorRumbleCommand_get_typeStatic_mEDF2C976B44C2BB0C0C0271CC56391992AF37C2D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = DualMotorRumbleCommand_get_typeStatic_mEDF2C976B44C2BB0C0C0271CC56391992AF37C2D(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand::Create(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E DualMotorRumbleCommand_Create_m39FB8F9BFBF8A3B303AE1CDB953AABD4E840CE53 (float ___lowFrequency0, float ___highFrequency1, const RuntimeMethod* method)
{
DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E V_0;
memset((&V_0), 0, sizeof(V_0));
DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return new DualMotorRumbleCommand
// {
// baseCommand = new InputDeviceCommand(Type, kSize),
// lowFrequencyMotorSpeed = lowFrequency,
// highFrequencyMotorSpeed = highFrequency
// };
il2cpp_codegen_initobj((&V_0), sizeof(DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = DualMotorRumbleCommand_get_Type_mC82FE52885743BC0F2622ADCA6655F6B8CE10DD2(NULL);
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
memset((&L_1), 0, sizeof(L_1));
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)16), /*hidden argument*/NULL);
(&V_0)->___baseCommand_1 = L_1;
float L_2 = ___lowFrequency0;
(&V_0)->___lowFrequencyMotorSpeed_2 = L_2;
float L_3 = ___highFrequency1;
(&V_0)->___highFrequencyMotorSpeed_3 = L_3;
DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E L_4 = V_0;
V_1 = L_4;
goto IL_0030;
}
IL_0030:
{
// }
DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E L_5 = V_1;
return L_5;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.JoystickState::get_kFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED JoystickState_get_kFormat_m6F7C1EA95FEA162E32F9EC8CE9DACFFA63A854A0 (const RuntimeMethod* method)
{
{
// public static FourCC kFormat => new FourCC('J', 'O', 'Y');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)74), ((int32_t)79), ((int32_t)89), ((int32_t)32), /*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.JoystickState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED JoystickState_get_format_mEDDE745E9821149E8287DA5EA621814B832088E2 (JoystickState_t03D95BB2BA3497FA34F7F2C395126FE079DBAD23* __this, const RuntimeMethod* method)
{
{
// public FourCC format => kFormat;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = JoystickState_get_kFormat_m6F7C1EA95FEA162E32F9EC8CE9DACFFA63A854A0(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED JoystickState_get_format_mEDDE745E9821149E8287DA5EA621814B832088E2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
JoystickState_t03D95BB2BA3497FA34F7F2C395126FE079DBAD23* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<JoystickState_t03D95BB2BA3497FA34F7F2C395126FE079DBAD23*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = JoystickState_get_format_mEDDE745E9821149E8287DA5EA621814B832088E2(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.KeyboardState::get_Format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED KeyboardState_get_Format_m2CBD8A21ED82E50BF9DD51CE3911DAB9DB9CB22F (const RuntimeMethod* method)
{
{
// public static FourCC Format => new FourCC('K', 'E', 'Y', 'S');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)75), ((int32_t)69), ((int32_t)89), ((int32_t)83), /*hidden argument*/NULL);
return L_0;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.KeyboardState::.ctor(UnityEngine.InputSystem.Key[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState__ctor_m06346BD84C3DE0C9392359B3ABC584E7B0ED9E0C (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A* ___pressedKeys0, const RuntimeMethod* method)
{
bool V_0 = false;
uint8_t* V_1 = NULL;
uint8_t* V_2 = NULL;
int32_t V_3 = 0;
bool V_4 = false;
{
// if (pressedKeys == null)
KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A* L_0 = ___pressedKeys0;
V_0 = (bool)((((RuntimeObject*)(KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0014;
}
}
{
// throw new ArgumentNullException(nameof(pressedKeys));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE94EF447B7CA22BD133EBC24A4C29384FD843DB0)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyboardState__ctor_m06346BD84C3DE0C9392359B3ABC584E7B0ED9E0C_RuntimeMethod_var)));
}
IL_0014:
{
U3CkeysU3Ee__FixedBuffer_t042985C8A4742730483B7863D903A899805230F3* L_3 = (&__this->___keys_2);
uint8_t* L_4 = (&L_3->___FixedElementField_0);
V_2 = L_4;
// fixed(byte* keysPtr = keys)
uint8_t* L_5 = V_2;
V_1 = (uint8_t*)((uintptr_t)L_5);
// UnsafeUtility.MemClear(keysPtr, kSizeInBytes);
uint8_t* L_6 = V_1;
UnsafeUtility_MemClear_m0535B03E39A2A8CF84AE517549902F0025F67460((void*)L_6, ((int64_t)((int32_t)14)), NULL);
// for (var i = 0; i < pressedKeys.Length; ++i)
V_3 = 0;
goto IL_0041;
}
IL_0032:
{
// MemoryHelpers.WriteSingleBit(keysPtr, (uint)pressedKeys[i], true);
uint8_t* L_7 = V_1;
KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A* L_8 = ___pressedKeys0;
int32_t L_9 = V_3;
NullCheck(L_8);
int32_t L_10 = L_9;
int32_t L_11 = (int32_t)(L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
MemoryHelpers_WriteSingleBit_m72417937A056A756E474BC8D72A84C45B4DEA1E8((void*)L_7, L_11, (bool)1, NULL);
// for (var i = 0; i < pressedKeys.Length; ++i)
int32_t L_12 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_12, 1));
}
IL_0041:
{
// for (var i = 0; i < pressedKeys.Length; ++i)
int32_t L_13 = V_3;
KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A* L_14 = ___pressedKeys0;
NullCheck(L_14);
V_4 = (bool)((((int32_t)L_13) < ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length))))? 1 : 0);
bool L_15 = V_4;
if (L_15)
{
goto IL_0032;
}
}
{
V_2 = (uint8_t*)((uintptr_t)0);
// }
return;
}
}
IL2CPP_EXTERN_C void KeyboardState__ctor_m06346BD84C3DE0C9392359B3ABC584E7B0ED9E0C_AdjustorThunk (RuntimeObject* __this, KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A* ___pressedKeys0, const RuntimeMethod* method)
{
KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E*>(__this + _offset);
KeyboardState__ctor_m06346BD84C3DE0C9392359B3ABC584E7B0ED9E0C(_thisAdjusted, ___pressedKeys0, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.KeyboardState::Set(UnityEngine.InputSystem.Key,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState_Set_m0F5B5B6EC7F702F695F0F03B71E19EF450EC3D9C (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, int32_t ___key0, bool ___state1, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
uint8_t* V_1 = NULL;
{
U3CkeysU3Ee__FixedBuffer_t042985C8A4742730483B7863D903A899805230F3* L_0 = (&__this->___keys_2);
uint8_t* L_1 = (&L_0->___FixedElementField_0);
V_1 = L_1;
// fixed(byte* keysPtr = keys)
uint8_t* L_2 = V_1;
V_0 = (uint8_t*)((uintptr_t)L_2);
// MemoryHelpers.WriteSingleBit(keysPtr, (uint)key, state);
uint8_t* L_3 = V_0;
int32_t L_4 = ___key0;
bool L_5 = ___state1;
MemoryHelpers_WriteSingleBit_m72417937A056A756E474BC8D72A84C45B4DEA1E8((void*)L_3, L_4, L_5, NULL);
V_1 = (uint8_t*)((uintptr_t)0);
// }
return;
}
}
IL2CPP_EXTERN_C void KeyboardState_Set_m0F5B5B6EC7F702F695F0F03B71E19EF450EC3D9C_AdjustorThunk (RuntimeObject* __this, int32_t ___key0, bool ___state1, const RuntimeMethod* method)
{
KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E*>(__this + _offset);
KeyboardState_Set_m0F5B5B6EC7F702F695F0F03B71E19EF450EC3D9C(_thisAdjusted, ___key0, ___state1, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.KeyboardState::Press(UnityEngine.InputSystem.Key)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState_Press_mB5882428AD8FD1CCD5A238215551DFEC3BA577A0 (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, int32_t ___key0, const RuntimeMethod* method)
{
{
// Set(key, true);
int32_t L_0 = ___key0;
KeyboardState_Set_m0F5B5B6EC7F702F695F0F03B71E19EF450EC3D9C(__this, L_0, (bool)1, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void KeyboardState_Press_mB5882428AD8FD1CCD5A238215551DFEC3BA577A0_AdjustorThunk (RuntimeObject* __this, int32_t ___key0, const RuntimeMethod* method)
{
KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E*>(__this + _offset);
KeyboardState_Press_mB5882428AD8FD1CCD5A238215551DFEC3BA577A0(_thisAdjusted, ___key0, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.KeyboardState::Release(UnityEngine.InputSystem.Key)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState_Release_m779EAACE3BB019436503948C3DEBAB7F7B7BCE1A (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, int32_t ___key0, const RuntimeMethod* method)
{
{
// Set(key, false);
int32_t L_0 = ___key0;
KeyboardState_Set_m0F5B5B6EC7F702F695F0F03B71E19EF450EC3D9C(__this, L_0, (bool)0, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void KeyboardState_Release_m779EAACE3BB019436503948C3DEBAB7F7B7BCE1A_AdjustorThunk (RuntimeObject* __this, int32_t ___key0, const RuntimeMethod* method)
{
KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E*>(__this + _offset);
KeyboardState_Release_m779EAACE3BB019436503948C3DEBAB7F7B7BCE1A(_thisAdjusted, ___key0, method);
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.KeyboardState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED KeyboardState_get_format_mD8CB0AA30DC616A09DC3152ED0342B2945DC43C9 (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, const RuntimeMethod* method)
{
{
// public FourCC format => Format;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = KeyboardState_get_Format_m2CBD8A21ED82E50BF9DD51CE3911DAB9DB9CB22F(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED KeyboardState_get_format_mD8CB0AA30DC616A09DC3152ED0342B2945DC43C9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = KeyboardState_get_format_mD8CB0AA30DC616A09DC3152ED0342B2945DC43C9(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.MouseState::get_Format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED MouseState_get_Format_mC8FE106B1DB7B4DEB6D2D4A0A7C3F4554444FF58 (const RuntimeMethod* method)
{
{
// public static FourCC Format => new FourCC('M', 'O', 'U', 'S');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)77), ((int32_t)79), ((int32_t)85), ((int32_t)83), /*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.InputSystem.LowLevel.MouseState UnityEngine.InputSystem.LowLevel.MouseState::WithButton(UnityEngine.InputSystem.LowLevel.MouseButton,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1 MouseState_WithButton_m97B000A09778AED62A2DB09058C31318CFDA479E (MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1* __this, int32_t ___button0, bool ___state1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9C48CA6788127425CDDF8980A9418FBA63A97A7A);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
bool V_1 = false;
MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1 V_2;
memset((&V_2), 0, sizeof(V_2));
{
// Debug.Assert((int)button < 16, $"Expected button < 16, so we fit into the 16 bit wide bitmask");
int32_t L_0 = ___button0;
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806((bool)((((int32_t)L_0) < ((int32_t)((int32_t)16)))? 1 : 0), _stringLiteral9C48CA6788127425CDDF8980A9418FBA63A97A7A, NULL);
// var bit = 1U << (int)button;
int32_t L_1 = ___button0;
V_0 = ((int32_t)(1<<((int32_t)((int32_t)L_1&((int32_t)31)))));
// if (state)
bool L_2 = ___state1;
V_1 = L_2;
bool L_3 = V_1;
if (!L_3)
{
goto IL_002f;
}
}
{
// buttons |= (ushort)bit;
uint16_t L_4 = __this->___buttons_3;
uint32_t L_5 = V_0;
__this->___buttons_3 = (uint16_t)((int32_t)(uint16_t)((int32_t)((int32_t)L_4|((int32_t)(uint16_t)L_5))));
goto IL_0040;
}
IL_002f:
{
// buttons &= (ushort)~bit;
uint16_t L_6 = __this->___buttons_3;
uint32_t L_7 = V_0;
__this->___buttons_3 = (uint16_t)((int32_t)(uint16_t)((int32_t)((int32_t)L_6&((int32_t)(uint16_t)((~L_7))))));
}
IL_0040:
{
// return this;
MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1 L_8 = (*(MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1*)__this);
V_2 = L_8;
goto IL_0049;
}
IL_0049:
{
// }
MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1 L_9 = V_2;
return L_9;
}
}
IL2CPP_EXTERN_C MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1 MouseState_WithButton_m97B000A09778AED62A2DB09058C31318CFDA479E_AdjustorThunk (RuntimeObject* __this, int32_t ___button0, bool ___state1, const RuntimeMethod* method)
{
MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1*>(__this + _offset);
MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1 _returnValue;
_returnValue = MouseState_WithButton_m97B000A09778AED62A2DB09058C31318CFDA479E(_thisAdjusted, ___button0, ___state1, method);
return _returnValue;
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.MouseState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED MouseState_get_format_m4E1CACEDD70E431F2B4F122FBF9790D61523E160 (MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1* __this, const RuntimeMethod* method)
{
{
// public FourCC format => Format;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = MouseState_get_Format_mC8FE106B1DB7B4DEB6D2D4A0A7C3F4554444FF58(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED MouseState_get_format_m4E1CACEDD70E431F2B4F122FBF9790D61523E160_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = MouseState_get_format_m4E1CACEDD70E431F2B4F122FBF9790D61523E160(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.PenState::get_Format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PenState_get_Format_m0529C36475CD4DC72F1FA80E2EC539C8F909BF40 (const RuntimeMethod* method)
{
{
// public static FourCC Format => new FourCC('P', 'E', 'N');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)80), ((int32_t)69), ((int32_t)78), ((int32_t)32), /*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.InputSystem.LowLevel.PenState UnityEngine.InputSystem.LowLevel.PenState::WithButton(UnityEngine.InputSystem.PenButton,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144 PenState_WithButton_mE073BEA72B2BF7B87BC1E31B171A71207A876652 (PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144* __this, int32_t ___button0, bool ___state1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9C48CA6788127425CDDF8980A9418FBA63A97A7A);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
bool V_1 = false;
PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144 V_2;
memset((&V_2), 0, sizeof(V_2));
{
// Debug.Assert((int)button < 16, $"Expected button < 16, so we fit into the 16 bit wide bitmask");
int32_t L_0 = ___button0;
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806((bool)((((int32_t)L_0) < ((int32_t)((int32_t)16)))? 1 : 0), _stringLiteral9C48CA6788127425CDDF8980A9418FBA63A97A7A, NULL);
// var bit = 1U << (int)button;
int32_t L_1 = ___button0;
V_0 = ((int32_t)(1<<((int32_t)((int32_t)L_1&((int32_t)31)))));
// if (state)
bool L_2 = ___state1;
V_1 = L_2;
bool L_3 = V_1;
if (!L_3)
{
goto IL_002f;
}
}
{
// buttons |= (ushort)bit;
uint16_t L_4 = __this->___buttons_5;
uint32_t L_5 = V_0;
__this->___buttons_5 = (uint16_t)((int32_t)(uint16_t)((int32_t)((int32_t)L_4|((int32_t)(uint16_t)L_5))));
goto IL_0040;
}
IL_002f:
{
// buttons &= (ushort)~bit;
uint16_t L_6 = __this->___buttons_5;
uint32_t L_7 = V_0;
__this->___buttons_5 = (uint16_t)((int32_t)(uint16_t)((int32_t)((int32_t)L_6&((int32_t)(uint16_t)((~L_7))))));
}
IL_0040:
{
// return this;
PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144 L_8 = (*(PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144*)__this);
V_2 = L_8;
goto IL_0049;
}
IL_0049:
{
// }
PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144 L_9 = V_2;
return L_9;
}
}
IL2CPP_EXTERN_C PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144 PenState_WithButton_mE073BEA72B2BF7B87BC1E31B171A71207A876652_AdjustorThunk (RuntimeObject* __this, int32_t ___button0, bool ___state1, const RuntimeMethod* method)
{
PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144*>(__this + _offset);
PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144 _returnValue;
_returnValue = PenState_WithButton_mE073BEA72B2BF7B87BC1E31B171A71207A876652(_thisAdjusted, ___button0, ___state1, method);
return _returnValue;
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.PenState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PenState_get_format_m8B58953CF86A69E6AEAD9670C02822A400FB2DCF (PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144* __this, const RuntimeMethod* method)
{
{
// public FourCC format => Format;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = PenState_get_Format_m0529C36475CD4DC72F1FA80E2EC539C8F909BF40(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PenState_get_format_m8B58953CF86A69E6AEAD9670C02822A400FB2DCF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = PenState_get_format_m8B58953CF86A69E6AEAD9670C02822A400FB2DCF(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.PointerState::get_kFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PointerState_get_kFormat_mD3D9DD8DFECE28346B9BA006875B46DED7EB82D8 (const RuntimeMethod* method)
{
{
// public static FourCC kFormat => new FourCC('P', 'T', 'R');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)80), ((int32_t)84), ((int32_t)82), ((int32_t)32), /*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.PointerState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PointerState_get_format_mC5180FCEAE996C3D5E43E1A77174886E49F4EBEA (PointerState_t3BD79772D06D5CC227EBE757B27F8262EB46A919* __this, const RuntimeMethod* method)
{
{
// public FourCC format => kFormat;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = PointerState_get_kFormat_mD3D9DD8DFECE28346B9BA006875B46DED7EB82D8(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PointerState_get_format_mC5180FCEAE996C3D5E43E1A77174886E49F4EBEA_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
PointerState_t3BD79772D06D5CC227EBE757B27F8262EB46A919* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<PointerState_t3BD79772D06D5CC227EBE757B27F8262EB46A919*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = PointerState_get_format_mC5180FCEAE996C3D5E43E1A77174886E49F4EBEA(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.AccelerometerState::get_kFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AccelerometerState_get_kFormat_mBA355243468D23EA29B3C5E9C1DF9C873EC3231A (const RuntimeMethod* method)
{
{
// public static FourCC kFormat => new FourCC('A', 'C', 'C', 'L');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)65), ((int32_t)67), ((int32_t)67), ((int32_t)76), /*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.AccelerometerState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AccelerometerState_get_format_m8417A35B21D4D21382BAA3E099EB81FA6A681290 (AccelerometerState_tBC7006B5431DF59DC2A9AF2E08FD06674EA8372A* __this, const RuntimeMethod* method)
{
{
// public FourCC format => kFormat;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = AccelerometerState_get_kFormat_mBA355243468D23EA29B3C5E9C1DF9C873EC3231A(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AccelerometerState_get_format_m8417A35B21D4D21382BAA3E099EB81FA6A681290_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
AccelerometerState_tBC7006B5431DF59DC2A9AF2E08FD06674EA8372A* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AccelerometerState_tBC7006B5431DF59DC2A9AF2E08FD06674EA8372A*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = AccelerometerState_get_format_m8417A35B21D4D21382BAA3E099EB81FA6A681290(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.GyroscopeState::get_kFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GyroscopeState_get_kFormat_mF8E8DCCB15E1EF561C016AC0C947DD6EC62F0378 (const RuntimeMethod* method)
{
{
// public static FourCC kFormat => new FourCC('G', 'Y', 'R', 'O');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)71), ((int32_t)89), ((int32_t)82), ((int32_t)79), /*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.GyroscopeState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GyroscopeState_get_format_m04C008EEC0A8E98488D68D7DB508D03F4D40CB6D (GyroscopeState_t6C1BC700557D943111882E3634CA7411EE531B87* __this, const RuntimeMethod* method)
{
{
// public FourCC format => kFormat;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = GyroscopeState_get_kFormat_mF8E8DCCB15E1EF561C016AC0C947DD6EC62F0378(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GyroscopeState_get_format_m04C008EEC0A8E98488D68D7DB508D03F4D40CB6D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
GyroscopeState_t6C1BC700557D943111882E3634CA7411EE531B87* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<GyroscopeState_t6C1BC700557D943111882E3634CA7411EE531B87*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = GyroscopeState_get_format_m04C008EEC0A8E98488D68D7DB508D03F4D40CB6D(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.GravityState::get_kFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GravityState_get_kFormat_mCA9A74D9F09262A4490427938A53819A04D0B3B1 (const RuntimeMethod* method)
{
{
// public static FourCC kFormat => new FourCC('G', 'R', 'V', ' ');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)71), ((int32_t)82), ((int32_t)86), ((int32_t)32), /*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.GravityState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GravityState_get_format_mACAC4174A37C72A4229268A765EA95B60CD1EE1D (GravityState_tD607A716F9E0D00477CECC5C019929633E66ACFF* __this, const RuntimeMethod* method)
{
{
// public FourCC format => kFormat;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = GravityState_get_kFormat_mCA9A74D9F09262A4490427938A53819A04D0B3B1(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GravityState_get_format_mACAC4174A37C72A4229268A765EA95B60CD1EE1D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
GravityState_tD607A716F9E0D00477CECC5C019929633E66ACFF* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<GravityState_tD607A716F9E0D00477CECC5C019929633E66ACFF*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = GravityState_get_format_mACAC4174A37C72A4229268A765EA95B60CD1EE1D(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.AttitudeState::get_kFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AttitudeState_get_kFormat_m10BE3C5F5F50046C253023D1ADB40494A1EF6798 (const RuntimeMethod* method)
{
{
// public static FourCC kFormat => new FourCC('A', 'T', 'T', 'D');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)65), ((int32_t)84), ((int32_t)84), ((int32_t)68), /*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.AttitudeState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AttitudeState_get_format_mE181225DD179C3C77FBE1996F22C2B858C2620A8 (AttitudeState_tE01F02CAD17A08F2D35660E017437AC72BC45745* __this, const RuntimeMethod* method)
{
{
// public FourCC format => kFormat;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = AttitudeState_get_kFormat_m10BE3C5F5F50046C253023D1ADB40494A1EF6798(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AttitudeState_get_format_mE181225DD179C3C77FBE1996F22C2B858C2620A8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
AttitudeState_tE01F02CAD17A08F2D35660E017437AC72BC45745* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AttitudeState_tE01F02CAD17A08F2D35660E017437AC72BC45745*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = AttitudeState_get_format_mE181225DD179C3C77FBE1996F22C2B858C2620A8(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.LinearAccelerationState::get_kFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED LinearAccelerationState_get_kFormat_m45CB5EAAB0F8B58C2321E6B669AD9DB4C1599F45 (const RuntimeMethod* method)
{
{
// public static FourCC kFormat => new FourCC('L', 'A', 'A', 'C');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)76), ((int32_t)65), ((int32_t)65), ((int32_t)67), /*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.LinearAccelerationState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED LinearAccelerationState_get_format_m082958E987DDE7BCF30BEB84C1A2C8F2EB0D2A8A (LinearAccelerationState_tD14025B444097A9A3CA0B3ADBA153C775A316F24* __this, const RuntimeMethod* method)
{
{
// public FourCC format => kFormat;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = LinearAccelerationState_get_kFormat_m45CB5EAAB0F8B58C2321E6B669AD9DB4C1599F45(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED LinearAccelerationState_get_format_m082958E987DDE7BCF30BEB84C1A2C8F2EB0D2A8A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
LinearAccelerationState_tD14025B444097A9A3CA0B3ADBA153C775A316F24* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<LinearAccelerationState_tD14025B444097A9A3CA0B3ADBA153C775A316F24*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = LinearAccelerationState_get_format_m082958E987DDE7BCF30BEB84C1A2C8F2EB0D2A8A(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.TouchState::get_Format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchState_get_Format_m7CC6E861439BED7A84B4073D006CF211C13AE7A7 (const RuntimeMethod* method)
{
{
// public static FourCC Format => new FourCC('T', 'O', 'U', 'C');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)84), ((int32_t)79), ((int32_t)85), ((int32_t)67), /*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.InputSystem.TouchPhase UnityEngine.InputSystem.LowLevel.TouchState::get_phase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
{
{
// get => (TouchPhase)phaseId;
uint8_t L_0 = __this->___phaseId_6;
return (int32_t)(L_0);
}
}
IL2CPP_EXTERN_C int32_t TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
int32_t _returnValue;
_returnValue = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.TouchState::set_phase(UnityEngine.InputSystem.TouchPhase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_phase_mCC48A355F50B41E745BDCE383BD083A69BD8644A (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => phaseId = (byte)value;
int32_t L_0 = ___value0;
__this->___phaseId_6 = (uint8_t)((int32_t)(uint8_t)L_0);
return;
}
}
IL2CPP_EXTERN_C void TouchState_set_phase_mCC48A355F50B41E745BDCE383BD083A69BD8644A_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
TouchState_set_phase_mCC48A355F50B41E745BDCE383BD083A69BD8644A(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_isNoneEndedOrCanceled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isNoneEndedOrCanceled_mC2000BF710D7EDFC3590D18253215FCA67E3F464 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
{
int32_t G_B4_0 = 0;
{
// public bool isNoneEndedOrCanceled => phase == TouchPhase.None || phase == TouchPhase.Ended ||
// phase == TouchPhase.Canceled;
int32_t L_0;
L_0 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(__this, NULL);
if (!L_0)
{
goto IL_001c;
}
}
{
int32_t L_1;
L_1 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(__this, NULL);
if ((((int32_t)L_1) == ((int32_t)3)))
{
goto IL_001c;
}
}
{
int32_t L_2;
L_2 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(__this, NULL);
G_B4_0 = ((((int32_t)L_2) == ((int32_t)4))? 1 : 0);
goto IL_001d;
}
IL_001c:
{
G_B4_0 = 1;
}
IL_001d:
{
return (bool)G_B4_0;
}
}
IL2CPP_EXTERN_C bool TouchState_get_isNoneEndedOrCanceled_mC2000BF710D7EDFC3590D18253215FCA67E3F464_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
bool _returnValue;
_returnValue = TouchState_get_isNoneEndedOrCanceled_mC2000BF710D7EDFC3590D18253215FCA67E3F464(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_isInProgress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isInProgress_mF14BA2786F207B08DA487C4FD9F010F85107D902 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
{
int32_t G_B4_0 = 0;
{
// public bool isInProgress => phase == TouchPhase.Began || phase == TouchPhase.Moved ||
// phase == TouchPhase.Stationary;
int32_t L_0;
L_0 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(__this, NULL);
if ((((int32_t)L_0) == ((int32_t)1)))
{
goto IL_001d;
}
}
{
int32_t L_1;
L_1 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(__this, NULL);
if ((((int32_t)L_1) == ((int32_t)2)))
{
goto IL_001d;
}
}
{
int32_t L_2;
L_2 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(__this, NULL);
G_B4_0 = ((((int32_t)L_2) == ((int32_t)5))? 1 : 0);
goto IL_001e;
}
IL_001d:
{
G_B4_0 = 1;
}
IL_001e:
{
return (bool)G_B4_0;
}
}
IL2CPP_EXTERN_C bool TouchState_get_isInProgress_mF14BA2786F207B08DA487C4FD9F010F85107D902_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
bool _returnValue;
_returnValue = TouchState_get_isInProgress_mF14BA2786F207B08DA487C4FD9F010F85107D902(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_isPrimaryTouch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isPrimaryTouch_mC8E83D45028722D5456CB65A19C9DBB2B1DC8615 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
{
{
// get => (flags & (byte)TouchFlags.PrimaryTouch) != 0;
uint8_t L_0 = __this->___flags_9;
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&8))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool TouchState_get_isPrimaryTouch_mC8E83D45028722D5456CB65A19C9DBB2B1DC8615_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
bool _returnValue;
_returnValue = TouchState_get_isPrimaryTouch_mC8E83D45028722D5456CB65A19C9DBB2B1DC8615(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.TouchState::set_isPrimaryTouch(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isPrimaryTouch_m6BB43521B2EDD8EFD435C5890590A51DE183AAA6 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___value0, const RuntimeMethod* method)
{
bool V_0 = false;
{
// if (value)
bool L_0 = ___value0;
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_0017;
}
}
{
// flags |= (byte)TouchFlags.PrimaryTouch;
uint8_t L_2 = __this->___flags_9;
__this->___flags_9 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_2|8)));
goto IL_002a;
}
IL_0017:
{
// flags &= (byte)~TouchFlags.PrimaryTouch;
uint8_t L_3 = __this->___flags_9;
__this->___flags_9 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_3&((int32_t)247))));
}
IL_002a:
{
// }
return;
}
}
IL2CPP_EXTERN_C void TouchState_set_isPrimaryTouch_m6BB43521B2EDD8EFD435C5890590A51DE183AAA6_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
TouchState_set_isPrimaryTouch_m6BB43521B2EDD8EFD435C5890590A51DE183AAA6(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_isOrphanedPrimaryTouch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isOrphanedPrimaryTouch_m692F6F3BB4886A4ADC7578416BDA2CF43190CEF5 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
{
{
// get => (flags & (byte)TouchFlags.OrphanedPrimaryTouch) != 0;
uint8_t L_0 = __this->___flags_9;
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)64)))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool TouchState_get_isOrphanedPrimaryTouch_m692F6F3BB4886A4ADC7578416BDA2CF43190CEF5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
bool _returnValue;
_returnValue = TouchState_get_isOrphanedPrimaryTouch_m692F6F3BB4886A4ADC7578416BDA2CF43190CEF5(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.TouchState::set_isOrphanedPrimaryTouch(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isOrphanedPrimaryTouch_m2610EBB9B4DB8D920EC53D3785CD88C1537957D7 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___value0, const RuntimeMethod* method)
{
bool V_0 = false;
{
// if (value)
bool L_0 = ___value0;
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_0018;
}
}
{
// flags |= (byte)TouchFlags.OrphanedPrimaryTouch;
uint8_t L_2 = __this->___flags_9;
__this->___flags_9 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_2|((int32_t)64))));
goto IL_002b;
}
IL_0018:
{
// flags &= (byte)~TouchFlags.OrphanedPrimaryTouch;
uint8_t L_3 = __this->___flags_9;
__this->___flags_9 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_3&((int32_t)191))));
}
IL_002b:
{
// }
return;
}
}
IL2CPP_EXTERN_C void TouchState_set_isOrphanedPrimaryTouch_m2610EBB9B4DB8D920EC53D3785CD88C1537957D7_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
TouchState_set_isOrphanedPrimaryTouch_m2610EBB9B4DB8D920EC53D3785CD88C1537957D7(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_isIndirectTouch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isIndirectTouch_m5059A78582DBB4534309A43F49BD7DDC86DCB912 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
{
{
// get => (flags & (byte)TouchFlags.IndirectTouch) != 0;
uint8_t L_0 = __this->___flags_9;
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&1))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool TouchState_get_isIndirectTouch_m5059A78582DBB4534309A43F49BD7DDC86DCB912_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
bool _returnValue;
_returnValue = TouchState_get_isIndirectTouch_m5059A78582DBB4534309A43F49BD7DDC86DCB912(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.TouchState::set_isIndirectTouch(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isIndirectTouch_m76D60019EA3E6AE3D32D41D7918E2F4D874D1CF4 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___value0, const RuntimeMethod* method)
{
bool V_0 = false;
{
// if (value)
bool L_0 = ___value0;
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_0017;
}
}
{
// flags |= (byte)TouchFlags.IndirectTouch;
uint8_t L_2 = __this->___flags_9;
__this->___flags_9 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_2|1)));
goto IL_002a;
}
IL_0017:
{
// flags &= (byte)~TouchFlags.IndirectTouch;
uint8_t L_3 = __this->___flags_9;
__this->___flags_9 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_3&((int32_t)254))));
}
IL_002a:
{
// }
return;
}
}
IL2CPP_EXTERN_C void TouchState_set_isIndirectTouch_m76D60019EA3E6AE3D32D41D7918E2F4D874D1CF4_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
TouchState_set_isIndirectTouch_m76D60019EA3E6AE3D32D41D7918E2F4D874D1CF4(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_isTap()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isTap_m6C2D3CC78A3AA9705CBFD2A9E817FCFD8AB25EFB (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
{
{
// get => isTapPress;
bool L_0;
L_0 = TouchState_get_isTapPress_m76B3B03716530BC461CCDEE942D80B797A82D1FE(__this, NULL);
return L_0;
}
}
IL2CPP_EXTERN_C bool TouchState_get_isTap_m6C2D3CC78A3AA9705CBFD2A9E817FCFD8AB25EFB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
bool _returnValue;
_returnValue = TouchState_get_isTap_m6C2D3CC78A3AA9705CBFD2A9E817FCFD8AB25EFB(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.TouchState::set_isTap(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isTap_m31B4AEE4DC8A6CE2174728244C0A1D1539D30B15 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___value0, const RuntimeMethod* method)
{
{
// set => isTapPress = value;
bool L_0 = ___value0;
TouchState_set_isTapPress_m42BC799213916CA303DCE59FFCF3F39DF43F5642(__this, L_0, NULL);
return;
}
}
IL2CPP_EXTERN_C void TouchState_set_isTap_m31B4AEE4DC8A6CE2174728244C0A1D1539D30B15_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
TouchState_set_isTap_m31B4AEE4DC8A6CE2174728244C0A1D1539D30B15(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_isTapPress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isTapPress_m76B3B03716530BC461CCDEE942D80B797A82D1FE (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
{
{
// get => (flags & (byte)TouchFlags.TapPress) != 0;
uint8_t L_0 = __this->___flags_9;
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)16)))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool TouchState_get_isTapPress_m76B3B03716530BC461CCDEE942D80B797A82D1FE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
bool _returnValue;
_returnValue = TouchState_get_isTapPress_m76B3B03716530BC461CCDEE942D80B797A82D1FE(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.TouchState::set_isTapPress(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isTapPress_m42BC799213916CA303DCE59FFCF3F39DF43F5642 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___value0, const RuntimeMethod* method)
{
bool V_0 = false;
{
// if (value)
bool L_0 = ___value0;
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_0018;
}
}
{
// flags |= (byte)TouchFlags.TapPress;
uint8_t L_2 = __this->___flags_9;
__this->___flags_9 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_2|((int32_t)16))));
goto IL_002b;
}
IL_0018:
{
// flags &= (byte)~TouchFlags.TapPress;
uint8_t L_3 = __this->___flags_9;
__this->___flags_9 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_3&((int32_t)239))));
}
IL_002b:
{
// }
return;
}
}
IL2CPP_EXTERN_C void TouchState_set_isTapPress_m42BC799213916CA303DCE59FFCF3F39DF43F5642_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
TouchState_set_isTapPress_m42BC799213916CA303DCE59FFCF3F39DF43F5642(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_isTapRelease()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isTapRelease_m2330F3A5BFF42425B21423B2257619666A05CE7D (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
{
{
// get => (flags & (byte)TouchFlags.TapRelease) != 0;
uint8_t L_0 = __this->___flags_9;
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)32)))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool TouchState_get_isTapRelease_m2330F3A5BFF42425B21423B2257619666A05CE7D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
bool _returnValue;
_returnValue = TouchState_get_isTapRelease_m2330F3A5BFF42425B21423B2257619666A05CE7D(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.TouchState::set_isTapRelease(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isTapRelease_m8CECE48CDFD6955A73D24CB052BF1BD8E506E178 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___value0, const RuntimeMethod* method)
{
bool V_0 = false;
{
// if (value)
bool L_0 = ___value0;
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_0018;
}
}
{
// flags |= (byte)TouchFlags.TapRelease;
uint8_t L_2 = __this->___flags_9;
__this->___flags_9 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_2|((int32_t)32))));
goto IL_002b;
}
IL_0018:
{
// flags &= (byte)~TouchFlags.TapRelease;
uint8_t L_3 = __this->___flags_9;
__this->___flags_9 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_3&((int32_t)223))));
}
IL_002b:
{
// }
return;
}
}
IL2CPP_EXTERN_C void TouchState_set_isTapRelease_m8CECE48CDFD6955A73D24CB052BF1BD8E506E178_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
TouchState_set_isTapRelease_m8CECE48CDFD6955A73D24CB052BF1BD8E506E178(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.InputSystem.LowLevel.TouchState::get_beganInSameFrame()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_beganInSameFrame_mC72ACA3EBA9BE5426C6B19ED7130F7A1CE177320 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
{
{
// get => (flags & (byte)TouchFlags.BeganInSameFrame) != 0;
uint8_t L_0 = __this->___flags_9;
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)128)))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool TouchState_get_beganInSameFrame_mC72ACA3EBA9BE5426C6B19ED7130F7A1CE177320_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
bool _returnValue;
_returnValue = TouchState_get_beganInSameFrame_mC72ACA3EBA9BE5426C6B19ED7130F7A1CE177320(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.TouchState::set_beganInSameFrame(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_beganInSameFrame_m46F1C71775E825310242C59E608D5F20908A8D39 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___value0, const RuntimeMethod* method)
{
bool V_0 = false;
{
// if (value)
bool L_0 = ___value0;
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_001b;
}
}
{
// flags |= (byte)TouchFlags.BeganInSameFrame;
uint8_t L_2 = __this->___flags_9;
__this->___flags_9 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_2|((int32_t)128))));
goto IL_002b;
}
IL_001b:
{
// flags &= (byte)~TouchFlags.BeganInSameFrame;
uint8_t L_3 = __this->___flags_9;
__this->___flags_9 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_3&((int32_t)127))));
}
IL_002b:
{
// }
return;
}
}
IL2CPP_EXTERN_C void TouchState_set_beganInSameFrame_m46F1C71775E825310242C59E608D5F20908A8D39_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
TouchState_set_beganInSameFrame_m46F1C71775E825310242C59E608D5F20908A8D39(_thisAdjusted, ___value0, method);
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.TouchState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchState_get_format_m27F8D5F420FE4D7F11C4676B5FD94FAF08586AE5 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
{
{
// public FourCC format => Format;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = TouchState_get_Format_m7CC6E861439BED7A84B4073D006CF211C13AE7A7(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchState_get_format_m27F8D5F420FE4D7F11C4676B5FD94FAF08586AE5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = TouchState_get_format_m27F8D5F420FE4D7F11C4676B5FD94FAF08586AE5(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.InputSystem.LowLevel.TouchState::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TouchState_ToString_mEA29180E6539B2C38587D293C96E5E56728E661D (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchPhase_tC280DE0C3DA3652019BF3605D57099E6CE2F3B14_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral62F4F3914DA44EFA764CD7207FD98C1D7D603493);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
// return $"{{ id={touchId} phase={phase} pos={position} delta={delta} pressure={pressure} radius={radius} primary={isPrimaryTouch} }}";
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)7);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
int32_t L_2 = __this->___touchId_1;
int32_t L_3 = L_2;
RuntimeObject* L_4 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_4);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_4);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = L_1;
int32_t L_6;
L_6 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(__this, NULL);
int32_t L_7 = L_6;
RuntimeObject* L_8 = Box(TouchPhase_tC280DE0C3DA3652019BF3605D57099E6CE2F3B14_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_8);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_8);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = L_5;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = __this->___position_2;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11 = L_10;
RuntimeObject* L_12 = Box(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var, &L_11);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_12);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)L_12);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_13 = L_9;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_14 = __this->___delta_3;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_15 = L_14;
RuntimeObject* L_16 = Box(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var, &L_15);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_16);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject*)L_16);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_17 = L_13;
float L_18 = __this->___pressure_4;
float L_19 = L_18;
RuntimeObject* L_20 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_19);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_20);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject*)L_20);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_21 = L_17;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_22 = __this->___radius_5;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_23 = L_22;
RuntimeObject* L_24 = Box(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var, &L_23);
NullCheck(L_21);
ArrayElementTypeCheck (L_21, L_24);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject*)L_24);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_25 = L_21;
bool L_26;
L_26 = TouchState_get_isPrimaryTouch_mC8E83D45028722D5456CB65A19C9DBB2B1DC8615(__this, NULL);
bool L_27 = L_26;
RuntimeObject* L_28 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_27);
NullCheck(L_25);
ArrayElementTypeCheck (L_25, L_28);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject*)L_28);
String_t* L_29;
L_29 = String_Format_m74FC0A1259DFA02F3DF6538FC7F3ACF3E1AF0C55(_stringLiteral62F4F3914DA44EFA764CD7207FD98C1D7D603493, L_25, NULL);
V_0 = L_29;
goto IL_0076;
}
IL_0076:
{
// }
String_t* L_30 = V_0;
return L_30;
}
}
IL2CPP_EXTERN_C String_t* TouchState_ToString_mEA29180E6539B2C38587D293C96E5E56728E661D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
String_t* _returnValue;
_returnValue = TouchState_ToString_mEA29180E6539B2C38587D293C96E5E56728E661D(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.TouchscreenState::get_Format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchscreenState_get_Format_m3AA6138EA268995D25A3B3F06D1CD883860D7E72 (const RuntimeMethod* method)
{
{
// public static FourCC Format => new FourCC('T', 'S', 'C', 'R');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)84), ((int32_t)83), ((int32_t)67), ((int32_t)82), /*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.InputSystem.LowLevel.TouchState* UnityEngine.InputSystem.LowLevel.TouchscreenState::get_primaryTouch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* TouchscreenState_get_primaryTouch_m2F7795A41B5BD5B36686E513EB0626BEB94F03FB (TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* __this, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
uint8_t* V_1 = NULL;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* V_2 = NULL;
{
U3CprimaryTouchDataU3Ee__FixedBuffer_t843D75C0F089EEBE01C3063B14726D4B99B56258* L_0 = (&__this->___primaryTouchData_1);
uint8_t* L_1 = (&L_0->___FixedElementField_0);
V_1 = L_1;
// fixed(byte* ptr = primaryTouchData)
uint8_t* L_2 = V_1;
V_0 = (uint8_t*)((uintptr_t)L_2);
// return (TouchState*)ptr;
uint8_t* L_3 = V_0;
V_2 = (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_3;
goto IL_0014;
}
IL_0014:
{
// }
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_4 = V_2;
return L_4;
}
}
IL2CPP_EXTERN_C TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* TouchscreenState_get_primaryTouch_m2F7795A41B5BD5B36686E513EB0626BEB94F03FB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F*>(__this + _offset);
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _returnValue;
_returnValue = TouchscreenState_get_primaryTouch_m2F7795A41B5BD5B36686E513EB0626BEB94F03FB(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.TouchState* UnityEngine.InputSystem.LowLevel.TouchscreenState::get_touches()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* TouchscreenState_get_touches_m58B38F7D585C7D053B2D6C9B17B9AB36F6E6D14F (TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* __this, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
uint8_t* V_1 = NULL;
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* V_2 = NULL;
{
U3CtouchDataU3Ee__FixedBuffer_t6436C7ECCAE275554BE674C0A81E0C42D5213DAE* L_0 = (&__this->___touchData_3);
uint8_t* L_1 = (&L_0->___FixedElementField_0);
V_1 = L_1;
// fixed(byte* ptr = touchData)
uint8_t* L_2 = V_1;
V_0 = (uint8_t*)((uintptr_t)L_2);
// return (TouchState*)ptr;
uint8_t* L_3 = V_0;
V_2 = (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_3;
goto IL_0014;
}
IL_0014:
{
// }
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_4 = V_2;
return L_4;
}
}
IL2CPP_EXTERN_C TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* TouchscreenState_get_touches_m58B38F7D585C7D053B2D6C9B17B9AB36F6E6D14F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F*>(__this + _offset);
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _returnValue;
_returnValue = TouchscreenState_get_touches_m58B38F7D585C7D053B2D6C9B17B9AB36F6E6D14F(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.TouchscreenState::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchscreenState_get_format_m599BFB770E5FFC16A3AF0BBD32473D89B9F6F0A0 (TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* __this, const RuntimeMethod* method)
{
{
// public FourCC format => Format;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = TouchscreenState_get_Format_m3AA6138EA268995D25A3B3F06D1CD883860D7E72(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchscreenState_get_format_m599BFB770E5FFC16A3AF0BBD32473D89B9F6F0A0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = TouchscreenState_get_format_m599BFB770E5FFC16A3AF0BBD32473D89B9F6F0A0(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.ActionEvent::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ActionEvent_get_Type_m9F3447357BECD4F2C13E4C0299C45BEE5CBB471D (const RuntimeMethod* method)
{
{
// public static FourCC Type => new FourCC('A', 'C', 'T', 'N');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)65), ((int32_t)67), ((int32_t)84), ((int32_t)78), /*hidden argument*/NULL);
return L_0;
}
}
// System.Double UnityEngine.InputSystem.LowLevel.ActionEvent::get_startTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double ActionEvent_get_startTime_mFC441D783C0FF36A0DCF844F6CB4C51F7B507DC9 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
{
{
// get => m_StartTime;
double L_0 = __this->___m_StartTime_6;
return L_0;
}
}
IL2CPP_EXTERN_C double ActionEvent_get_startTime_mFC441D783C0FF36A0DCF844F6CB4C51F7B507DC9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
double _returnValue;
_returnValue = ActionEvent_get_startTime_mFC441D783C0FF36A0DCF844F6CB4C51F7B507DC9_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.ActionEvent::set_startTime(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_startTime_m421136E6914BF478860D9A2A4C302A8E5C0128F2 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, double ___value0, const RuntimeMethod* method)
{
{
// set => m_StartTime = value;
double L_0 = ___value0;
__this->___m_StartTime_6 = L_0;
return;
}
}
IL2CPP_EXTERN_C void ActionEvent_set_startTime_m421136E6914BF478860D9A2A4C302A8E5C0128F2_AdjustorThunk (RuntimeObject* __this, double ___value0, const RuntimeMethod* method)
{
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
ActionEvent_set_startTime_m421136E6914BF478860D9A2A4C302A8E5C0128F2_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.InputSystem.InputActionPhase UnityEngine.InputSystem.LowLevel.ActionEvent::get_phase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_get_phase_mA5D0A72C4C5DD7D0F562AAC03812667D7D467AC9 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
{
{
// get => (InputActionPhase)m_Phase;
uint8_t L_0 = __this->___m_Phase_5;
return (int32_t)(L_0);
}
}
IL2CPP_EXTERN_C int32_t ActionEvent_get_phase_mA5D0A72C4C5DD7D0F562AAC03812667D7D467AC9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
int32_t _returnValue;
_returnValue = ActionEvent_get_phase_mA5D0A72C4C5DD7D0F562AAC03812667D7D467AC9_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.ActionEvent::set_phase(UnityEngine.InputSystem.InputActionPhase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_phase_mF8ACF6B2396E2351BA691A53450A4013BD011A9F (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_Phase = (byte)value;
int32_t L_0 = ___value0;
__this->___m_Phase_5 = (uint8_t)((int32_t)(uint8_t)L_0);
return;
}
}
IL2CPP_EXTERN_C void ActionEvent_set_phase_mF8ACF6B2396E2351BA691A53450A4013BD011A9F_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
ActionEvent_set_phase_mF8ACF6B2396E2351BA691A53450A4013BD011A9F(_thisAdjusted, ___value0, method);
}
// System.Byte* UnityEngine.InputSystem.LowLevel.ActionEvent::get_valueData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* ActionEvent_get_valueData_m90D8EEC0EBFC775772BCF3FCB60FCBFA282D3E4C (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
uint8_t* V_1 = NULL;
uint8_t* V_2 = NULL;
{
U3Cm_ValueDataU3Ee__FixedBuffer_t94746BF84FF1BD9ACDDDA17AE7155A9AA40DB97A* L_0 = (&__this->___m_ValueData_7);
uint8_t* L_1 = (&L_0->___FixedElementField_0);
V_1 = L_1;
// fixed(byte* data = m_ValueData)
uint8_t* L_2 = V_1;
V_0 = (uint8_t*)((uintptr_t)L_2);
// return data;
uint8_t* L_3 = V_0;
V_2 = L_3;
goto IL_0015;
}
IL_0015:
{
// }
uint8_t* L_4 = V_2;
return L_4;
}
}
IL2CPP_EXTERN_C uint8_t* ActionEvent_get_valueData_m90D8EEC0EBFC775772BCF3FCB60FCBFA282D3E4C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
uint8_t* _returnValue;
_returnValue = ActionEvent_get_valueData_m90D8EEC0EBFC775772BCF3FCB60FCBFA282D3E4C(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.InputSystem.LowLevel.ActionEvent::get_valueSizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_get_valueSizeInBytes_m76C6A128C9C3E3747FE7917EA1760B74647FD19C (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
{
{
// public int valueSizeInBytes => (int)baseEvent.sizeInBytes - InputEvent.kBaseEventSize - 16;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = (&__this->___baseEvent_0);
uint32_t L_1;
L_1 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307(L_0, NULL);
return ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract((int32_t)L_1, ((int32_t)20))), ((int32_t)16)));
}
}
IL2CPP_EXTERN_C int32_t ActionEvent_get_valueSizeInBytes_m76C6A128C9C3E3747FE7917EA1760B74647FD19C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
int32_t _returnValue;
_returnValue = ActionEvent_get_valueSizeInBytes_m76C6A128C9C3E3747FE7917EA1760B74647FD19C(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.InputSystem.LowLevel.ActionEvent::get_stateIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_get_stateIndex_m9B25D23E723CFD517FEA65A61D0D3587E4205450 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
{
{
// get => m_StateIndex;
uint8_t L_0 = __this->___m_StateIndex_4;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t ActionEvent_get_stateIndex_m9B25D23E723CFD517FEA65A61D0D3587E4205450_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
int32_t _returnValue;
_returnValue = ActionEvent_get_stateIndex_m9B25D23E723CFD517FEA65A61D0D3587E4205450_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.ActionEvent::set_stateIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_stateIndex_m6A5B88C7CD64D3BC75B8211484AF25280C5E520B (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B3_0 = 0;
int32_t G_B6_0 = 0;
{
// Debug.Assert(value >= 0 && value <= byte.MaxValue);
int32_t L_0 = ___value0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0012;
}
}
{
int32_t L_1 = ___value0;
G_B3_0 = ((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)255)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0013;
}
IL_0012:
{
G_B3_0 = 0;
}
IL_0013:
{
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_mC95931BE797761A2D7800908C0BA4B41D68B3216((bool)G_B3_0, NULL);
// if (value < 0 || value > byte.MaxValue)
int32_t L_2 = ___value0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0027;
}
}
{
int32_t L_3 = ___value0;
G_B6_0 = ((((int32_t)L_3) > ((int32_t)((int32_t)255)))? 1 : 0);
goto IL_0028;
}
IL_0027:
{
G_B6_0 = 1;
}
IL_0028:
{
V_0 = (bool)G_B6_0;
bool L_4 = V_0;
if (!L_4)
{
goto IL_0037;
}
}
{
// throw new NotSupportedException("State count cannot exceed byte.MaxValue");
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_5 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_5);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD04950964E883490D4CCE5E2BB5659308B237EA5)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ActionEvent_set_stateIndex_m6A5B88C7CD64D3BC75B8211484AF25280C5E520B_RuntimeMethod_var)));
}
IL_0037:
{
// m_StateIndex = (byte)value;
int32_t L_6 = ___value0;
__this->___m_StateIndex_4 = (uint8_t)((int32_t)(uint8_t)L_6);
// }
return;
}
}
IL2CPP_EXTERN_C void ActionEvent_set_stateIndex_m6A5B88C7CD64D3BC75B8211484AF25280C5E520B_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
ActionEvent_set_stateIndex_m6A5B88C7CD64D3BC75B8211484AF25280C5E520B(_thisAdjusted, ___value0, method);
}
// System.Int32 UnityEngine.InputSystem.LowLevel.ActionEvent::get_controlIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_get_controlIndex_m6AD8C96BCD3A38D6FFC823F98673549CAADB1715 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
{
{
// get => m_ControlIndex;
uint16_t L_0 = __this->___m_ControlIndex_1;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t ActionEvent_get_controlIndex_m6AD8C96BCD3A38D6FFC823F98673549CAADB1715_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
int32_t _returnValue;
_returnValue = ActionEvent_get_controlIndex_m6AD8C96BCD3A38D6FFC823F98673549CAADB1715_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.ActionEvent::set_controlIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_controlIndex_m2AC91D48B3CCA9C73415A1F85648CB93B05711E7 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B3_0 = 0;
int32_t G_B6_0 = 0;
{
// Debug.Assert(value >= 0 && value <= ushort.MaxValue);
int32_t L_0 = ___value0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0012;
}
}
{
int32_t L_1 = ___value0;
G_B3_0 = ((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)65535)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0013;
}
IL_0012:
{
G_B3_0 = 0;
}
IL_0013:
{
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_mC95931BE797761A2D7800908C0BA4B41D68B3216((bool)G_B3_0, NULL);
// if (value < 0 || value > ushort.MaxValue)
int32_t L_2 = ___value0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0027;
}
}
{
int32_t L_3 = ___value0;
G_B6_0 = ((((int32_t)L_3) > ((int32_t)((int32_t)65535)))? 1 : 0);
goto IL_0028;
}
IL_0027:
{
G_B6_0 = 1;
}
IL_0028:
{
V_0 = (bool)G_B6_0;
bool L_4 = V_0;
if (!L_4)
{
goto IL_0037;
}
}
{
// throw new NotSupportedException("Control count cannot exceed ushort.MaxValue");
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_5 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_5);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C63C93EC2E14069C02301603969E78DB054EF8E)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ActionEvent_set_controlIndex_m2AC91D48B3CCA9C73415A1F85648CB93B05711E7_RuntimeMethod_var)));
}
IL_0037:
{
// m_ControlIndex = (ushort)value;
int32_t L_6 = ___value0;
__this->___m_ControlIndex_1 = (uint16_t)((int32_t)(uint16_t)L_6);
// }
return;
}
}
IL2CPP_EXTERN_C void ActionEvent_set_controlIndex_m2AC91D48B3CCA9C73415A1F85648CB93B05711E7_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
ActionEvent_set_controlIndex_m2AC91D48B3CCA9C73415A1F85648CB93B05711E7(_thisAdjusted, ___value0, method);
}
// System.Int32 UnityEngine.InputSystem.LowLevel.ActionEvent::get_bindingIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_get_bindingIndex_m95BC43710F538E6E696644A9CABD5EC4FAA97400 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
{
{
// get => m_BindingIndex;
uint16_t L_0 = __this->___m_BindingIndex_2;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t ActionEvent_get_bindingIndex_m95BC43710F538E6E696644A9CABD5EC4FAA97400_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
int32_t _returnValue;
_returnValue = ActionEvent_get_bindingIndex_m95BC43710F538E6E696644A9CABD5EC4FAA97400_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.ActionEvent::set_bindingIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_bindingIndex_mF620F2E875C9E6EC9B51271D6E8F469C4E855708 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B3_0 = 0;
int32_t G_B6_0 = 0;
{
// Debug.Assert(value >= 0 && value <= ushort.MaxValue);
int32_t L_0 = ___value0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0012;
}
}
{
int32_t L_1 = ___value0;
G_B3_0 = ((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)65535)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0013;
}
IL_0012:
{
G_B3_0 = 0;
}
IL_0013:
{
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_mC95931BE797761A2D7800908C0BA4B41D68B3216((bool)G_B3_0, NULL);
// if (value < 0 || value > ushort.MaxValue)
int32_t L_2 = ___value0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0027;
}
}
{
int32_t L_3 = ___value0;
G_B6_0 = ((((int32_t)L_3) > ((int32_t)((int32_t)65535)))? 1 : 0);
goto IL_0028;
}
IL_0027:
{
G_B6_0 = 1;
}
IL_0028:
{
V_0 = (bool)G_B6_0;
bool L_4 = V_0;
if (!L_4)
{
goto IL_0037;
}
}
{
// throw new NotSupportedException("Binding count cannot exceed ushort.MaxValue");
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_5 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_5);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7ED914680C555D96C6ADF1D908946F172FCFAFCB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ActionEvent_set_bindingIndex_mF620F2E875C9E6EC9B51271D6E8F469C4E855708_RuntimeMethod_var)));
}
IL_0037:
{
// m_BindingIndex = (ushort)value;
int32_t L_6 = ___value0;
__this->___m_BindingIndex_2 = (uint16_t)((int32_t)(uint16_t)L_6);
// }
return;
}
}
IL2CPP_EXTERN_C void ActionEvent_set_bindingIndex_mF620F2E875C9E6EC9B51271D6E8F469C4E855708_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
ActionEvent_set_bindingIndex_mF620F2E875C9E6EC9B51271D6E8F469C4E855708(_thisAdjusted, ___value0, method);
}
// System.Int32 UnityEngine.InputSystem.LowLevel.ActionEvent::get_interactionIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_get_interactionIndex_m5609EC04CE26D86650CF0829F907D478A209286E (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t V_1 = 0;
{
// if (m_InteractionIndex == ushort.MaxValue)
uint16_t L_0 = __this->___m_InteractionIndex_3;
V_0 = (bool)((((int32_t)L_0) == ((int32_t)((int32_t)65535)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0016;
}
}
{
// return InputActionState.kInvalidIndex;
V_1 = (-1);
goto IL_001f;
}
IL_0016:
{
// return m_InteractionIndex;
uint16_t L_2 = __this->___m_InteractionIndex_3;
V_1 = L_2;
goto IL_001f;
}
IL_001f:
{
// }
int32_t L_3 = V_1;
return L_3;
}
}
IL2CPP_EXTERN_C int32_t ActionEvent_get_interactionIndex_m5609EC04CE26D86650CF0829F907D478A209286E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
int32_t _returnValue;
_returnValue = ActionEvent_get_interactionIndex_m5609EC04CE26D86650CF0829F907D478A209286E(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.ActionEvent::set_interactionIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_interactionIndex_m8369A717B14FE2DE5CC74F55A1764EFE2DCE0546 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
int32_t G_B4_0 = 0;
int32_t G_B6_0 = 0;
int32_t G_B11_0 = 0;
{
// Debug.Assert(value == InputActionState.kInvalidIndex || (value >= 0 && value < ushort.MaxValue));
int32_t L_0 = ___value0;
if ((((int32_t)L_0) == ((int32_t)(-1))))
{
goto IL_0016;
}
}
{
int32_t L_1 = ___value0;
if ((((int32_t)L_1) < ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_2 = ___value0;
G_B4_0 = ((((int32_t)L_2) < ((int32_t)((int32_t)65535)))? 1 : 0);
goto IL_0014;
}
IL_0013:
{
G_B4_0 = 0;
}
IL_0014:
{
G_B6_0 = G_B4_0;
goto IL_0017;
}
IL_0016:
{
G_B6_0 = 1;
}
IL_0017:
{
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_mC95931BE797761A2D7800908C0BA4B41D68B3216((bool)G_B6_0, NULL);
// if (value == InputActionState.kInvalidIndex)
int32_t L_3 = ___value0;
V_0 = (bool)((((int32_t)L_3) == ((int32_t)(-1)))? 1 : 0);
bool L_4 = V_0;
if (!L_4)
{
goto IL_0032;
}
}
{
// m_InteractionIndex = ushort.MaxValue;
__this->___m_InteractionIndex_3 = (uint16_t)((int32_t)65535);
goto IL_005d;
}
IL_0032:
{
// if (value < 0 || value >= ushort.MaxValue)
int32_t L_5 = ___value0;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_0044;
}
}
{
int32_t L_6 = ___value0;
G_B11_0 = ((((int32_t)((((int32_t)L_6) < ((int32_t)((int32_t)65535)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0045;
}
IL_0044:
{
G_B11_0 = 1;
}
IL_0045:
{
V_1 = (bool)G_B11_0;
bool L_7 = V_1;
if (!L_7)
{
goto IL_0054;
}
}
{
// throw new NotSupportedException("Interaction count cannot exceed ushort.MaxValue-1");
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_8 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_8);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B396DAFCF90B4201E355761B57D4F5B4820024F)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ActionEvent_set_interactionIndex_m8369A717B14FE2DE5CC74F55A1764EFE2DCE0546_RuntimeMethod_var)));
}
IL_0054:
{
// m_InteractionIndex = (ushort)value;
int32_t L_9 = ___value0;
__this->___m_InteractionIndex_3 = (uint16_t)((int32_t)(uint16_t)L_9);
}
IL_005d:
{
// }
return;
}
}
IL2CPP_EXTERN_C void ActionEvent_set_interactionIndex_m8369A717B14FE2DE5CC74F55A1764EFE2DCE0546_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
ActionEvent_set_interactionIndex_m8369A717B14FE2DE5CC74F55A1764EFE2DCE0546(_thisAdjusted, ___value0, method);
}
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.ActionEvent::ToEventPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ActionEvent_ToEventPtr_m6CED2BDDEBD88B4CC9E6D9A5500CBBC46867AD61 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
{
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* V_0 = NULL;
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* V_1 = NULL;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_2;
memset((&V_2), 0, sizeof(V_2));
{
V_1 = __this;
// fixed(ActionEvent* ptr = &this)
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* L_0 = V_1;
V_0 = (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*)((uintptr_t)L_0);
// return new InputEventPtr((InputEvent*)ptr);
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* L_1 = V_0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_2;
memset((&L_2), 0, sizeof(L_2));
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0((&L_2), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1, /*hidden argument*/NULL);
V_2 = L_2;
goto IL_0010;
}
IL_0010:
{
// }
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_3 = V_2;
return L_3;
}
}
IL2CPP_EXTERN_C InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ActionEvent_ToEventPtr_m6CED2BDDEBD88B4CC9E6D9A5500CBBC46867AD61_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 _returnValue;
_returnValue = ActionEvent_ToEventPtr_m6CED2BDDEBD88B4CC9E6D9A5500CBBC46867AD61(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.ActionEvent::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ActionEvent_get_typeStatic_mDA18771F922C2C34EC407D7EA68A8735E516819D (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
{
{
// public FourCC typeStatic => Type;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = ActionEvent_get_Type_m9F3447357BECD4F2C13E4C0299C45BEE5CBB471D(NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ActionEvent_get_typeStatic_mDA18771F922C2C34EC407D7EA68A8735E516819D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = ActionEvent_get_typeStatic_mDA18771F922C2C34EC407D7EA68A8735E516819D(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.InputSystem.LowLevel.ActionEvent::GetEventSizeWithValueSize(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_GetEventSizeWithValueSize_m8CF9C53B438230F7229E32DA4FC0BB109DCF3BCA (int32_t ___valueSizeInBytes0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// return InputEvent.kBaseEventSize + 16 + valueSizeInBytes;
int32_t L_0 = ___valueSizeInBytes0;
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)36), L_0));
goto IL_0008;
}
IL_0008:
{
// }
int32_t L_1 = V_0;
return L_1;
}
}
// UnityEngine.InputSystem.LowLevel.ActionEvent* UnityEngine.InputSystem.LowLevel.ActionEvent::From(UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* ActionEvent_From_m8E1D5F422A20DDD6B2FF8FE3B34DBCC2F33548E2 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___ptr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_IsA_TisActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444_m2F2591754A98F71A8E950E17F45153089F5B2D10_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* V_2 = NULL;
{
// if (!ptr.valid)
bool L_0;
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012((&___ptr0), NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001a;
}
}
{
// throw new ArgumentNullException(nameof(ptr));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE493A589C92D423742E94550596D4C4E4B20CC33)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ActionEvent_From_m8E1D5F422A20DDD6B2FF8FE3B34DBCC2F33548E2_RuntimeMethod_var)));
}
IL_001a:
{
// if (!ptr.IsA<ActionEvent>())
bool L_3;
L_3 = InputEventPtr_IsA_TisActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444_m2F2591754A98F71A8E950E17F45153089F5B2D10((&___ptr0), InputEventPtr_IsA_TisActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444_m2F2591754A98F71A8E950E17F45153089F5B2D10_RuntimeMethod_var);
V_1 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_0044;
}
}
{
// throw new InvalidCastException($"Cannot cast event with type '{ptr.type}' into ActionEvent");
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_5;
L_5 = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69((&___ptr0), NULL);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_6 = L_5;
RuntimeObject* L_7 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED_il2cpp_TypeInfo_var)), &L_6);
String_t* L_8;
L_8 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC1FF02C94AF6761BB495CE9E94D85A9422EE0E3A)), L_7, NULL);
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_9 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
NullCheck(L_9);
InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_9, L_8, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ActionEvent_From_m8E1D5F422A20DDD6B2FF8FE3B34DBCC2F33548E2_RuntimeMethod_var)));
}
IL_0044:
{
// return (ActionEvent*)ptr.data;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_10;
L_10 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&___ptr0), NULL);
V_2 = (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*)L_10;
goto IL_004e;
}
IL_004e:
{
// }
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* L_11 = V_2;
return L_11;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt32 UnityEngine.InputSystem.LowLevel.DeltaStateEvent::get_deltaStateSizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t DeltaStateEvent_get_deltaStateSizeInBytes_mF3F45D7A54B74C0B5403C5B4A6B42B31A78331E2 (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* __this, const RuntimeMethod* method)
{
{
// public uint deltaStateSizeInBytes => baseEvent.sizeInBytes - (InputEvent.kBaseEventSize + 8);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = (&__this->___baseEvent_1);
uint32_t L_1;
L_1 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307(L_0, NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, ((int32_t)28)));
}
}
IL2CPP_EXTERN_C uint32_t DeltaStateEvent_get_deltaStateSizeInBytes_mF3F45D7A54B74C0B5403C5B4A6B42B31A78331E2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*>(__this + _offset);
uint32_t _returnValue;
_returnValue = DeltaStateEvent_get_deltaStateSizeInBytes_mF3F45D7A54B74C0B5403C5B4A6B42B31A78331E2(_thisAdjusted, method);
return _returnValue;
}
// System.Void* UnityEngine.InputSystem.LowLevel.DeltaStateEvent::get_deltaState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* DeltaStateEvent_get_deltaState_m02220C78569A9CC26843EB8A3AF289019195DA9E (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* __this, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
uint8_t* V_1 = NULL;
void* V_2 = NULL;
{
U3CstateDataU3Ee__FixedBuffer_t2D79C7E59F64E19D0450D36680F1A1B52CD89F84* L_0 = (&__this->___stateData_4);
uint8_t* L_1 = (&L_0->___FixedElementField_0);
V_1 = L_1;
// fixed(byte* data = stateData)
uint8_t* L_2 = V_1;
V_0 = (uint8_t*)((uintptr_t)L_2);
// return data;
uint8_t* L_3 = V_0;
V_2 = (void*)L_3;
goto IL_0015;
}
IL_0015:
{
// }
void* L_4 = V_2;
return L_4;
}
}
IL2CPP_EXTERN_C void* DeltaStateEvent_get_deltaState_m02220C78569A9CC26843EB8A3AF289019195DA9E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*>(__this + _offset);
void* _returnValue;
_returnValue = DeltaStateEvent_get_deltaState_m02220C78569A9CC26843EB8A3AF289019195DA9E(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DeltaStateEvent::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeltaStateEvent_get_typeStatic_m78864C357A995118D8E55ABE491ACAF3ED2F846D (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* __this, const RuntimeMethod* method)
{
{
// public FourCC typeStatic => Type;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = FourCC_op_Implicit_mE034DF02D6986EFBFA80055EC94936D958CBEF66(((int32_t)1145852993), NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeltaStateEvent_get_typeStatic_m78864C357A995118D8E55ABE491ACAF3ED2F846D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = DeltaStateEvent_get_typeStatic_m78864C357A995118D8E55ABE491ACAF3ED2F846D(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.DeltaStateEvent::ToEventPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeltaStateEvent_ToEventPtr_mF514DA9E913E367842C4FE6E87768C406A6ACA2C (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* __this, const RuntimeMethod* method)
{
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* V_0 = NULL;
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* V_1 = NULL;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_2;
memset((&V_2), 0, sizeof(V_2));
{
V_1 = __this;
// fixed(DeltaStateEvent * ptr = &this)
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_0 = V_1;
V_0 = (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*)((uintptr_t)L_0);
// return new InputEventPtr((InputEvent*)ptr);
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_1 = V_0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_2;
memset((&L_2), 0, sizeof(L_2));
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0((&L_2), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1, /*hidden argument*/NULL);
V_2 = L_2;
goto IL_0010;
}
IL_0010:
{
// }
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_3 = V_2;
return L_3;
}
}
IL2CPP_EXTERN_C InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeltaStateEvent_ToEventPtr_mF514DA9E913E367842C4FE6E87768C406A6ACA2C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*>(__this + _offset);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 _returnValue;
_returnValue = DeltaStateEvent_ToEventPtr_mF514DA9E913E367842C4FE6E87768C406A6ACA2C(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.DeltaStateEvent* UnityEngine.InputSystem.LowLevel.DeltaStateEvent::From(UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* DeltaStateEvent_From_mC63B48B86DC2A4699F37521D347FBC89A07C6E8F (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___ptr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* V_2 = NULL;
{
// if (!ptr.valid)
bool L_0;
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012((&___ptr0), NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001a;
}
}
{
// throw new ArgumentNullException(nameof(ptr));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE493A589C92D423742E94550596D4C4E4B20CC33)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DeltaStateEvent_From_mC63B48B86DC2A4699F37521D347FBC89A07C6E8F_RuntimeMethod_var)));
}
IL_001a:
{
// if (!ptr.IsA<DeltaStateEvent>())
bool L_3;
L_3 = InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7((&___ptr0), InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_RuntimeMethod_var);
V_1 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_0044;
}
}
{
// throw new InvalidCastException($"Cannot cast event with type '{ptr.type}' into DeltaStateEvent");
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_5;
L_5 = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69((&___ptr0), NULL);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_6 = L_5;
RuntimeObject* L_7 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED_il2cpp_TypeInfo_var)), &L_6);
String_t* L_8;
L_8 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3C54E891B7C3652F3066D6041DE2D9BABF6DCA32)), L_7, NULL);
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_9 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
NullCheck(L_9);
InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_9, L_8, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DeltaStateEvent_From_mC63B48B86DC2A4699F37521D347FBC89A07C6E8F_RuntimeMethod_var)));
}
IL_0044:
{
// return FromUnchecked(ptr);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_10 = ___ptr0;
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_11;
L_11 = DeltaStateEvent_FromUnchecked_m1E21FABAEA84C5B974E15AF1B91E09094A16EBC6(L_10, NULL);
V_2 = L_11;
goto IL_004d;
}
IL_004d:
{
// }
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_12 = V_2;
return L_12;
}
}
// UnityEngine.InputSystem.LowLevel.DeltaStateEvent* UnityEngine.InputSystem.LowLevel.DeltaStateEvent::FromUnchecked(UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* DeltaStateEvent_FromUnchecked_m1E21FABAEA84C5B974E15AF1B91E09094A16EBC6 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___ptr0, const RuntimeMethod* method)
{
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* V_0 = NULL;
{
// return (DeltaStateEvent*)ptr.data;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0;
L_0 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&___ptr0), NULL);
V_0 = (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*)L_0;
goto IL_000b;
}
IL_000b:
{
// }
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_1 = V_0;
return L_1;
}
}
// Unity.Collections.NativeArray`1<System.Byte> UnityEngine.InputSystem.LowLevel.DeltaStateEvent::From(UnityEngine.InputSystem.InputControl,UnityEngine.InputSystem.LowLevel.InputEventPtr&,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DeltaStateEvent_From_m623498D28E12FF7B0ACD6D863034E634D4CECBC1 (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control0, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* ___eventPtr1, int32_t ___allocator2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m65FA1E123815CA621B3659034958C4213DF274CD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* V_0 = NULL;
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* V_1 = NULL;
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* V_2 = NULL;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_3;
memset((&V_3), 0, sizeof(V_3));
uint32_t V_4 = 0;
uint32_t V_5 = 0;
uint8_t* V_6 = NULL;
uint32_t V_7 = 0;
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_8;
memset((&V_8), 0, sizeof(V_8));
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* V_9 = NULL;
bool V_10 = false;
bool V_11 = false;
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_12;
memset((&V_12), 0, sizeof(V_12));
{
// if (control == null)
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_0 = ___control0;
V_10 = (bool)((((RuntimeObject*)(InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_10;
if (!L_1)
{
goto IL_0016;
}
}
{
// throw new ArgumentNullException(nameof(control));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFAAED55F148F74B2C74F8C745D3CF6CBC766B1DC)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DeltaStateEvent_From_m623498D28E12FF7B0ACD6D863034E634D4CECBC1_RuntimeMethod_var)));
}
IL_0016:
{
// var device = control.device;
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_3 = ___control0;
NullCheck(L_3);
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_4;
L_4 = InputControl_get_device_mAB3E013F566CF3407B8C36BC781EBD751DFAB324_inline(L_3, NULL);
V_0 = L_4;
// if (!device.added)
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_5 = V_0;
NullCheck(L_5);
bool L_6;
L_6 = InputDevice_get_added_m27CF78B0777E142AAF9139ABFD88F67BBAABA15C(L_5, NULL);
V_11 = (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0);
bool L_7 = V_11;
if (!L_7)
{
goto IL_0042;
}
}
{
// throw new ArgumentException($"Device for control '{control}' has not been added to system",
// nameof(control));
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_8 = ___control0;
String_t* L_9;
L_9 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC26AE6F38B24292B9F4A89F463BE2C43F48DEBD1)), L_8, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_10 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_10);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_10, L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFAAED55F148F74B2C74F8C745D3CF6CBC766B1DC)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DeltaStateEvent_From_m623498D28E12FF7B0ACD6D863034E634D4CECBC1_RuntimeMethod_var)));
}
IL_0042:
{
// ref var deviceStateBlock = ref device.m_StateBlock;
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_11 = V_0;
NullCheck(L_11);
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_12 = (&((InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E*)L_11)->___m_StateBlock_0);
V_1 = L_12;
// ref var controlStateBlock = ref control.m_StateBlock;
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_13 = ___control0;
NullCheck(L_13);
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_14 = (&L_13->___m_StateBlock_0);
V_2 = L_14;
// var stateFormat = deviceStateBlock.format; // The event is sent against the *device* so that's the state format we use.
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_15 = V_1;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_16;
L_16 = InputStateBlock_get_format_mA393354EDC4A58DDCBE0990902A49E0A22F15F86_inline(L_15, NULL);
V_3 = L_16;
// var stateSize = controlStateBlock.alignedSizeInBytes;
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_17 = V_2;
uint32_t L_18;
L_18 = InputStateBlock_get_alignedSizeInBytes_mF360E8CFBEE9BE05FC7DFA3533E069A5A96827F5(L_17, NULL);
V_4 = L_18;
// stateSize += controlStateBlock.bitOffset / 8;
uint32_t L_19 = V_4;
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_20 = V_2;
uint32_t L_21;
L_21 = InputStateBlock_get_bitOffset_m3165625FF638183247012307A8AC012AEA3D1143_inline(L_20, NULL);
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, ((int32_t)((uint32_t)(int32_t)L_21/(uint32_t)(int32_t)8))));
// var stateOffset = controlStateBlock.byteOffset;
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_22 = V_2;
uint32_t L_23;
L_23 = InputStateBlock_get_byteOffset_m6EADE5C9C8B346D38E543E38777ED67ED2AEA0AC_inline(L_22, NULL);
V_5 = L_23;
// var statePtr = (byte*)control.currentStatePtr + (int)stateOffset;
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_24 = ___control0;
NullCheck(L_24);
void* L_25;
L_25 = InputControl_get_currentStatePtr_m77D2900EEE4AAB505C98292AF8538DDCF44F8C3C(L_24, NULL);
uint32_t L_26 = V_5;
V_6 = (uint8_t*)((void*)il2cpp_codegen_add((intptr_t)L_25, (int32_t)L_26));
// var eventSize = InputEvent.kBaseEventSize + sizeof(int) * 2 + stateSize;
uint32_t L_27 = V_4;
V_7 = ((int32_t)il2cpp_codegen_add(((int32_t)28), (int32_t)L_27));
// var buffer = new NativeArray<byte>((int)eventSize, allocator);
uint32_t L_28 = V_7;
int32_t L_29 = ___allocator2;
NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F((&V_8), L_28, L_29, 1, NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
// var stateEventPtr = (DeltaStateEvent*)buffer.GetUnsafePtr();
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_30 = V_8;
void* L_31;
L_31 = NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m65FA1E123815CA621B3659034958C4213DF274CD(L_30, NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m65FA1E123815CA621B3659034958C4213DF274CD_RuntimeMethod_var);
V_9 = (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*)L_31;
// stateEventPtr->baseEvent = new InputEvent(Type, (int)eventSize, device.deviceId, InputRuntime.s_Instance.currentTime);
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_32 = V_9;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_33;
L_33 = FourCC_op_Implicit_mE034DF02D6986EFBFA80055EC94936D958CBEF66(((int32_t)1145852993), NULL);
uint32_t L_34 = V_7;
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_35 = V_0;
NullCheck(L_35);
int32_t L_36;
L_36 = InputDevice_get_deviceId_mC65E69E6117B78DB2F4963F5CF9BF031488AD588_inline(L_35, NULL);
RuntimeObject* L_37 = ((InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var))->___s_Instance_0;
NullCheck(L_37);
double L_38;
L_38 = InterfaceFuncInvoker0< double >::Invoke(19 /* System.Double UnityEngine.InputSystem.LowLevel.IInputRuntime::get_currentTime() */, IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var, L_37);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 L_39;
memset((&L_39), 0, sizeof(L_39));
InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924((&L_39), L_33, L_34, L_36, L_38, /*hidden argument*/NULL);
NullCheck(L_32);
L_32->___baseEvent_1 = L_39;
// stateEventPtr->stateFormat = stateFormat;
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_40 = V_9;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_41 = V_3;
NullCheck(L_40);
L_40->___stateFormat_2 = L_41;
// stateEventPtr->stateOffset = controlStateBlock.byteOffset - deviceStateBlock.byteOffset; // Make offset relative to device.
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_42 = V_9;
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_43 = V_2;
uint32_t L_44;
L_44 = InputStateBlock_get_byteOffset_m6EADE5C9C8B346D38E543E38777ED67ED2AEA0AC_inline(L_43, NULL);
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_45 = V_1;
uint32_t L_46;
L_46 = InputStateBlock_get_byteOffset_m6EADE5C9C8B346D38E543E38777ED67ED2AEA0AC_inline(L_45, NULL);
NullCheck(L_42);
L_42->___stateOffset_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_44, (int32_t)L_46));
// UnsafeUtility.MemCpy(stateEventPtr->deltaState, statePtr, stateSize);
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_47 = V_9;
void* L_48;
L_48 = DeltaStateEvent_get_deltaState_m02220C78569A9CC26843EB8A3AF289019195DA9E((DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*)L_47, NULL);
uint8_t* L_49 = V_6;
uint32_t L_50 = V_4;
UnsafeUtility_MemCpy_m019E657B952C27F705607F0F3D371EEE526B716B(L_48, (void*)L_49, ((int64_t)(uint64_t)L_50), NULL);
// eventPtr = stateEventPtr->ToEventPtr();
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_51 = ___eventPtr1;
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_52 = V_9;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_53;
L_53 = DeltaStateEvent_ToEventPtr_mF514DA9E913E367842C4FE6E87768C406A6ACA2C((DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*)L_52, NULL);
*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)L_51 = L_53;
// return buffer;
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_54 = V_8;
V_12 = L_54;
goto IL_0103;
}
IL_0103:
{
// }
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_55 = V_12;
return L_55;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DeviceConfigurationEvent::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceConfigurationEvent_get_typeStatic_m28C6393CDEE9100331345A72749DBA842080C362 (DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* __this, const RuntimeMethod* method)
{
{
// public FourCC typeStatic => Type;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = FourCC_op_Implicit_mE034DF02D6986EFBFA80055EC94936D958CBEF66(((int32_t)1145259591), NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceConfigurationEvent_get_typeStatic_m28C6393CDEE9100331345A72749DBA842080C362_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = DeviceConfigurationEvent_get_typeStatic_m28C6393CDEE9100331345A72749DBA842080C362(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.DeviceConfigurationEvent::ToEventPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeviceConfigurationEvent_ToEventPtr_m26A12C8D7BF50B9AF36FB0E766AFF8F3811AC613 (DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* __this, const RuntimeMethod* method)
{
DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* V_0 = NULL;
DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* V_1 = NULL;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_2;
memset((&V_2), 0, sizeof(V_2));
{
V_1 = __this;
// fixed(DeviceConfigurationEvent * ptr = &this)
DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* L_0 = V_1;
V_0 = (DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB*)((uintptr_t)L_0);
// return new InputEventPtr((InputEvent*)ptr);
DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* L_1 = V_0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_2;
memset((&L_2), 0, sizeof(L_2));
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0((&L_2), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1, /*hidden argument*/NULL);
V_2 = L_2;
goto IL_0010;
}
IL_0010:
{
// }
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_3 = V_2;
return L_3;
}
}
IL2CPP_EXTERN_C InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeviceConfigurationEvent_ToEventPtr_m26A12C8D7BF50B9AF36FB0E766AFF8F3811AC613_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB*>(__this + _offset);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 _returnValue;
_returnValue = DeviceConfigurationEvent_ToEventPtr_m26A12C8D7BF50B9AF36FB0E766AFF8F3811AC613(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.DeviceConfigurationEvent UnityEngine.InputSystem.LowLevel.DeviceConfigurationEvent::Create(System.Int32,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB DeviceConfigurationEvent_Create_m7F7FACD9DD5D3334A8BE2E23E1D7B5A918367ADF (int32_t ___deviceId0, double ___time1, const RuntimeMethod* method)
{
DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB V_0;
memset((&V_0), 0, sizeof(V_0));
DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB V_1;
memset((&V_1), 0, sizeof(V_1));
{
// var inputEvent = new DeviceConfigurationEvent();
il2cpp_codegen_initobj((&V_0), sizeof(DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB));
// inputEvent.baseEvent = new InputEvent(Type, InputEvent.kBaseEventSize, deviceId, time);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = FourCC_op_Implicit_mE034DF02D6986EFBFA80055EC94936D958CBEF66(((int32_t)1145259591), NULL);
int32_t L_1 = ___deviceId0;
double L_2 = ___time1;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 L_3;
memset((&L_3), 0, sizeof(L_3));
InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924((&L_3), L_0, ((int32_t)20), L_1, L_2, /*hidden argument*/NULL);
(&V_0)->___baseEvent_1 = L_3;
// return inputEvent;
DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB L_4 = V_0;
V_1 = L_4;
goto IL_0027;
}
IL_0027:
{
// }
DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB L_5 = V_1;
return L_5;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DeviceRemoveEvent::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceRemoveEvent_get_typeStatic_m59A7E2127F8EFF45674F801535EC27E3032CCDA0 (DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* __this, const RuntimeMethod* method)
{
{
// public FourCC typeStatic => Type;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = FourCC_op_Implicit_mE034DF02D6986EFBFA80055EC94936D958CBEF66(((int32_t)1146242381), NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceRemoveEvent_get_typeStatic_m59A7E2127F8EFF45674F801535EC27E3032CCDA0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = DeviceRemoveEvent_get_typeStatic_m59A7E2127F8EFF45674F801535EC27E3032CCDA0(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.DeviceRemoveEvent::ToEventPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeviceRemoveEvent_ToEventPtr_m72F38FDBB8F566525666CF67430E68B03EFEEAD3 (DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* __this, const RuntimeMethod* method)
{
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* V_0 = NULL;
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* V_1 = NULL;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_2;
memset((&V_2), 0, sizeof(V_2));
{
V_1 = __this;
// fixed(DeviceRemoveEvent * ptr = &this)
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* L_0 = V_1;
V_0 = (DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9*)((uintptr_t)L_0);
// return new InputEventPtr((InputEvent*)ptr);
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* L_1 = V_0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_2;
memset((&L_2), 0, sizeof(L_2));
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0((&L_2), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1, /*hidden argument*/NULL);
V_2 = L_2;
goto IL_0010;
}
IL_0010:
{
// }
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_3 = V_2;
return L_3;
}
}
IL2CPP_EXTERN_C InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeviceRemoveEvent_ToEventPtr_m72F38FDBB8F566525666CF67430E68B03EFEEAD3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9*>(__this + _offset);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 _returnValue;
_returnValue = DeviceRemoveEvent_ToEventPtr_m72F38FDBB8F566525666CF67430E68B03EFEEAD3(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.DeviceRemoveEvent UnityEngine.InputSystem.LowLevel.DeviceRemoveEvent::Create(System.Int32,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9 DeviceRemoveEvent_Create_mEC44C882059C9218747953F1235FAF5558D79FE0 (int32_t ___deviceId0, double ___time1, const RuntimeMethod* method)
{
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9 V_0;
memset((&V_0), 0, sizeof(V_0));
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9 V_1;
memset((&V_1), 0, sizeof(V_1));
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9 V_2;
memset((&V_2), 0, sizeof(V_2));
{
// var inputEvent =
// new DeviceRemoveEvent {baseEvent = new InputEvent(Type, InputEvent.kBaseEventSize, deviceId, time)};
il2cpp_codegen_initobj((&V_1), sizeof(DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = FourCC_op_Implicit_mE034DF02D6986EFBFA80055EC94936D958CBEF66(((int32_t)1146242381), NULL);
int32_t L_1 = ___deviceId0;
double L_2 = ___time1;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 L_3;
memset((&L_3), 0, sizeof(L_3));
InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924((&L_3), L_0, ((int32_t)20), L_1, L_2, /*hidden argument*/NULL);
(&V_1)->___baseEvent_1 = L_3;
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9 L_4 = V_1;
V_0 = L_4;
// return inputEvent;
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9 L_5 = V_0;
V_2 = L_5;
goto IL_0029;
}
IL_0029:
{
// }
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9 L_6 = V_2;
return L_6;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.DeviceResetEvent
IL2CPP_EXTERN_C void DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshal_pinvoke(const DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4& unmarshaled, DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshaled_pinvoke& marshaled)
{
marshaled.___baseEvent_1 = unmarshaled.___baseEvent_1;
marshaled.___hardReset_2 = static_cast<int32_t>(unmarshaled.___hardReset_2);
}
IL2CPP_EXTERN_C void DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshal_pinvoke_back(const DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshaled_pinvoke& marshaled, DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4& unmarshaled)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 unmarshaledbaseEvent_temp_0;
memset((&unmarshaledbaseEvent_temp_0), 0, sizeof(unmarshaledbaseEvent_temp_0));
unmarshaledbaseEvent_temp_0 = marshaled.___baseEvent_1;
unmarshaled.___baseEvent_1 = unmarshaledbaseEvent_temp_0;
bool unmarshaledhardReset_temp_1 = false;
unmarshaledhardReset_temp_1 = static_cast<bool>(marshaled.___hardReset_2);
unmarshaled.___hardReset_2 = unmarshaledhardReset_temp_1;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.DeviceResetEvent
IL2CPP_EXTERN_C void DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshal_pinvoke_cleanup(DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.DeviceResetEvent
IL2CPP_EXTERN_C void DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshal_com(const DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4& unmarshaled, DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshaled_com& marshaled)
{
marshaled.___baseEvent_1 = unmarshaled.___baseEvent_1;
marshaled.___hardReset_2 = static_cast<int32_t>(unmarshaled.___hardReset_2);
}
IL2CPP_EXTERN_C void DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshal_com_back(const DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshaled_com& marshaled, DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4& unmarshaled)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 unmarshaledbaseEvent_temp_0;
memset((&unmarshaledbaseEvent_temp_0), 0, sizeof(unmarshaledbaseEvent_temp_0));
unmarshaledbaseEvent_temp_0 = marshaled.___baseEvent_1;
unmarshaled.___baseEvent_1 = unmarshaledbaseEvent_temp_0;
bool unmarshaledhardReset_temp_1 = false;
unmarshaledhardReset_temp_1 = static_cast<bool>(marshaled.___hardReset_2);
unmarshaled.___hardReset_2 = unmarshaledhardReset_temp_1;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.DeviceResetEvent
IL2CPP_EXTERN_C void DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshal_com_cleanup(DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshaled_com& marshaled)
{
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DeviceResetEvent::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceResetEvent_get_typeStatic_mE19FE21C422385DCF217144DFDA30FB09886E88B (DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4* __this, const RuntimeMethod* method)
{
{
// public FourCC typeStatic => Type;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = FourCC_op_Implicit_mE034DF02D6986EFBFA80055EC94936D958CBEF66(((int32_t)1146245972), NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceResetEvent_get_typeStatic_mE19FE21C422385DCF217144DFDA30FB09886E88B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = DeviceResetEvent_get_typeStatic_mE19FE21C422385DCF217144DFDA30FB09886E88B(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.DeviceResetEvent UnityEngine.InputSystem.LowLevel.DeviceResetEvent::Create(System.Int32,System.Boolean,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4 DeviceResetEvent_Create_mD77CD7649C678957DD563339BD3E98DF326AFD6C (int32_t ___deviceId0, bool ___hardReset1, double ___time2, const RuntimeMethod* method)
{
DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4 V_0;
memset((&V_0), 0, sizeof(V_0));
DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4 V_1;
memset((&V_1), 0, sizeof(V_1));
DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4 V_2;
memset((&V_2), 0, sizeof(V_2));
{
// var inputEvent =
// new DeviceResetEvent {baseEvent = new InputEvent(Type, InputEvent.kBaseEventSize, deviceId, time)};
il2cpp_codegen_initobj((&V_1), sizeof(DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = FourCC_op_Implicit_mE034DF02D6986EFBFA80055EC94936D958CBEF66(((int32_t)1146245972), NULL);
int32_t L_1 = ___deviceId0;
double L_2 = ___time2;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 L_3;
memset((&L_3), 0, sizeof(L_3));
InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924((&L_3), L_0, ((int32_t)20), L_1, L_2, /*hidden argument*/NULL);
(&V_1)->___baseEvent_1 = L_3;
DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4 L_4 = V_1;
V_0 = L_4;
// inputEvent.hardReset = hardReset;
bool L_5 = ___hardReset1;
(&V_0)->___hardReset_2 = L_5;
// return inputEvent;
DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4 L_6 = V_0;
V_2 = L_6;
goto IL_0031;
}
IL_0031:
{
// }
DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4 L_7 = V_2;
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.IMECompositionEvent
IL2CPP_EXTERN_C void IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshal_pinvoke(const IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55& unmarshaled, IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshaled_pinvoke& marshaled)
{
marshaled.___baseEvent_2 = unmarshaled.___baseEvent_2;
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke(unmarshaled.___compositionString_3, marshaled.___compositionString_3);
}
IL2CPP_EXTERN_C void IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshal_pinvoke_back(const IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshaled_pinvoke& marshaled, IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55& unmarshaled)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 unmarshaledbaseEvent_temp_0;
memset((&unmarshaledbaseEvent_temp_0), 0, sizeof(unmarshaledbaseEvent_temp_0));
unmarshaledbaseEvent_temp_0 = marshaled.___baseEvent_2;
unmarshaled.___baseEvent_2 = unmarshaledbaseEvent_temp_0;
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E unmarshaledcompositionString_temp_1;
memset((&unmarshaledcompositionString_temp_1), 0, sizeof(unmarshaledcompositionString_temp_1));
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke_back(marshaled.___compositionString_3, unmarshaledcompositionString_temp_1);
unmarshaled.___compositionString_3 = unmarshaledcompositionString_temp_1;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.IMECompositionEvent
IL2CPP_EXTERN_C void IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshal_pinvoke_cleanup(IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshaled_pinvoke& marshaled)
{
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke_cleanup(marshaled.___compositionString_3);
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.IMECompositionEvent
IL2CPP_EXTERN_C void IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshal_com(const IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55& unmarshaled, IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshaled_com& marshaled)
{
marshaled.___baseEvent_2 = unmarshaled.___baseEvent_2;
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com(unmarshaled.___compositionString_3, marshaled.___compositionString_3);
}
IL2CPP_EXTERN_C void IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshal_com_back(const IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshaled_com& marshaled, IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55& unmarshaled)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 unmarshaledbaseEvent_temp_0;
memset((&unmarshaledbaseEvent_temp_0), 0, sizeof(unmarshaledbaseEvent_temp_0));
unmarshaledbaseEvent_temp_0 = marshaled.___baseEvent_2;
unmarshaled.___baseEvent_2 = unmarshaledbaseEvent_temp_0;
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E unmarshaledcompositionString_temp_1;
memset((&unmarshaledcompositionString_temp_1), 0, sizeof(unmarshaledcompositionString_temp_1));
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com_back(marshaled.___compositionString_3, unmarshaledcompositionString_temp_1);
unmarshaled.___compositionString_3 = unmarshaledcompositionString_temp_1;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.IMECompositionEvent
IL2CPP_EXTERN_C void IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshal_com_cleanup(IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshaled_com& marshaled)
{
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com_cleanup(marshaled.___compositionString_3);
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.IMECompositionEvent::get_typeStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED IMECompositionEvent_get_typeStatic_m89F47A231652E2AF8A050C95C8E4795838787531 (IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55* __this, const RuntimeMethod* method)
{
{
// public FourCC typeStatic => Type;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = FourCC_op_Implicit_mE034DF02D6986EFBFA80055EC94936D958CBEF66(((int32_t)1229800787), NULL);
return L_0;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED IMECompositionEvent_get_typeStatic_m89F47A231652E2AF8A050C95C8E4795838787531_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = IMECompositionEvent_get_typeStatic_m89F47A231652E2AF8A050C95C8E4795838787531(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.IMECompositionEvent UnityEngine.InputSystem.LowLevel.IMECompositionEvent::Create(System.Int32,System.String,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55 IMECompositionEvent_Create_mB1A685200263C0220E65A7CBD410D62EA3AF1755 (int32_t ___deviceId0, String_t* ___compositionString1, double ___time2, const RuntimeMethod* method)
{
IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55 V_0;
memset((&V_0), 0, sizeof(V_0));
IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// var inputEvent = new IMECompositionEvent();
il2cpp_codegen_initobj((&V_0), sizeof(IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55));
// inputEvent.baseEvent = new InputEvent(Type, InputEvent.kBaseEventSize + sizeof(int) + (sizeof(char) * kIMECharBufferSize), deviceId, time);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = FourCC_op_Implicit_mE034DF02D6986EFBFA80055EC94936D958CBEF66(((int32_t)1229800787), NULL);
int32_t L_1 = ___deviceId0;
double L_2 = ___time2;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 L_3;
memset((&L_3), 0, sizeof(L_3));
InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924((&L_3), L_0, ((int32_t)152), L_1, L_2, /*hidden argument*/NULL);
(&V_0)->___baseEvent_2 = L_3;
// inputEvent.compositionString = new IMECompositionString(compositionString);
String_t* L_4 = ___compositionString1;
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E L_5;
memset((&L_5), 0, sizeof(L_5));
IMECompositionString__ctor_m3E5D1159993102E7687C901BCDB3277EC23C2619((&L_5), L_4, /*hidden argument*/NULL);
(&V_0)->___compositionString_3 = L_5;
// return inputEvent;
IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55 L_6 = V_0;
V_1 = L_6;
goto IL_0037;
}
IL_0037:
{
// }
IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55 L_7 = V_1;
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.IMECompositionString
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke(const IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E& unmarshaled, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke& marshaled)
{
marshaled.___size_0 = unmarshaled.___size_0;
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke(unmarshaled.___buffer_1, marshaled.___buffer_1);
}
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke_back(const IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke& marshaled, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E& unmarshaled)
{
int32_t unmarshaledsize_temp_0 = 0;
unmarshaledsize_temp_0 = marshaled.___size_0;
unmarshaled.___size_0 = unmarshaledsize_temp_0;
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF unmarshaledbuffer_temp_1;
memset((&unmarshaledbuffer_temp_1), 0, sizeof(unmarshaledbuffer_temp_1));
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke_back(marshaled.___buffer_1, unmarshaledbuffer_temp_1);
unmarshaled.___buffer_1 = unmarshaledbuffer_temp_1;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.IMECompositionString
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke_cleanup(IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke& marshaled)
{
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke_cleanup(marshaled.___buffer_1);
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.IMECompositionString
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com(const IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E& unmarshaled, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com& marshaled)
{
marshaled.___size_0 = unmarshaled.___size_0;
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com(unmarshaled.___buffer_1, marshaled.___buffer_1);
}
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com_back(const IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com& marshaled, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E& unmarshaled)
{
int32_t unmarshaledsize_temp_0 = 0;
unmarshaledsize_temp_0 = marshaled.___size_0;
unmarshaled.___size_0 = unmarshaledsize_temp_0;
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF unmarshaledbuffer_temp_1;
memset((&unmarshaledbuffer_temp_1), 0, sizeof(unmarshaledbuffer_temp_1));
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com_back(marshaled.___buffer_1, unmarshaledbuffer_temp_1);
unmarshaled.___buffer_1 = unmarshaledbuffer_temp_1;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.IMECompositionString
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com_cleanup(IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com& marshaled)
{
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com_cleanup(marshaled.___buffer_1);
}
// System.Int32 UnityEngine.InputSystem.LowLevel.IMECompositionString::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IMECompositionString_get_Count_m118217BDAE905FA6F01D5F61D3D1A85319A5AA1D (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method)
{
{
// public int Count => size;
int32_t L_0 = __this->___size_0;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t IMECompositionString_get_Count_m118217BDAE905FA6F01D5F61D3D1A85319A5AA1D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E*>(__this + _offset);
int32_t _returnValue;
_returnValue = IMECompositionString_get_Count_m118217BDAE905FA6F01D5F61D3D1A85319A5AA1D_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Char UnityEngine.InputSystem.LowLevel.IMECompositionString::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar IMECompositionString_get_Item_mAD02BEFBDF102BC3A61859E112F62473431FD9C7 (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, int32_t ___index0, const RuntimeMethod* method)
{
bool V_0 = false;
Il2CppChar* V_1 = NULL;
Il2CppChar* V_2 = NULL;
Il2CppChar V_3 = 0x0;
int32_t G_B3_0 = 0;
{
// if (index >= Count || index < 0)
int32_t L_0 = ___index0;
int32_t L_1;
L_1 = IMECompositionString_get_Count_m118217BDAE905FA6F01D5F61D3D1A85319A5AA1D_inline(__this, NULL);
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0010;
}
}
{
int32_t L_2 = ___index0;
G_B3_0 = ((((int32_t)L_2) < ((int32_t)0))? 1 : 0);
goto IL_0011;
}
IL_0010:
{
G_B3_0 = 1;
}
IL_0011:
{
V_0 = (bool)G_B3_0;
bool L_3 = V_0;
if (!L_3)
{
goto IL_0020;
}
}
{
// throw new ArgumentOutOfRangeException(nameof(index));
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_4 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_4);
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IMECompositionString_get_Item_mAD02BEFBDF102BC3A61859E112F62473431FD9C7_RuntimeMethod_var)));
}
IL_0020:
{
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF* L_5 = (&__this->___buffer_1);
Il2CppChar* L_6 = (&L_5->___FixedElementField_0);
V_2 = L_6;
// fixed(char* ptr = buffer)
Il2CppChar* L_7 = V_2;
V_1 = (Il2CppChar*)((uintptr_t)L_7);
// return *(ptr + index);
Il2CppChar* L_8 = V_1;
int32_t L_9 = ___index0;
int32_t L_10 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_8, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_9), 2)))));
V_3 = L_10;
goto IL_003a;
}
IL_003a:
{
// }
Il2CppChar L_11 = V_3;
return L_11;
}
}
IL2CPP_EXTERN_C Il2CppChar IMECompositionString_get_Item_mAD02BEFBDF102BC3A61859E112F62473431FD9C7_AdjustorThunk (RuntimeObject* __this, int32_t ___index0, const RuntimeMethod* method)
{
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E*>(__this + _offset);
Il2CppChar _returnValue;
_returnValue = IMECompositionString_get_Item_mAD02BEFBDF102BC3A61859E112F62473431FD9C7(_thisAdjusted, ___index0, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.IMECompositionString::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMECompositionString__ctor_m3E5D1159993102E7687C901BCDB3277EC23C2619 (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, String_t* ___characters0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
bool V_2 = false;
{
// if (string.IsNullOrEmpty(characters))
String_t* L_0 = ___characters0;
bool L_1;
L_1 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_0, NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0015;
}
}
{
// size = 0;
__this->___size_0 = 0;
// return;
goto IL_005e;
}
IL_0015:
{
// Debug.Assert(characters.Length < IMECompositionEvent.kIMECharBufferSize);
String_t* L_3 = ___characters0;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_mC95931BE797761A2D7800908C0BA4B41D68B3216((bool)((((int32_t)L_4) < ((int32_t)((int32_t)64)))? 1 : 0), NULL);
// size = characters.Length;
String_t* L_5 = ___characters0;
NullCheck(L_5);
int32_t L_6;
L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL);
__this->___size_0 = L_6;
// for (var i = 0; i < size; i++)
V_1 = 0;
goto IL_0051;
}
IL_0035:
{
// buffer[i] = characters[i];
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF* L_7 = (&__this->___buffer_1);
Il2CppChar* L_8 = (&L_7->___FixedElementField_0);
int32_t L_9 = V_1;
String_t* L_10 = ___characters0;
int32_t L_11 = V_1;
NullCheck(L_10);
Il2CppChar L_12;
L_12 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_10, L_11, NULL);
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_8, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_9), 2))))) = (int16_t)L_12;
// for (var i = 0; i < size; i++)
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_0051:
{
// for (var i = 0; i < size; i++)
int32_t L_14 = V_1;
int32_t L_15 = __this->___size_0;
V_2 = (bool)((((int32_t)L_14) < ((int32_t)L_15))? 1 : 0);
bool L_16 = V_2;
if (L_16)
{
goto IL_0035;
}
}
IL_005e:
{
// }
return;
}
}
IL2CPP_EXTERN_C void IMECompositionString__ctor_m3E5D1159993102E7687C901BCDB3277EC23C2619_AdjustorThunk (RuntimeObject* __this, String_t* ___characters0, const RuntimeMethod* method)
{
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E*>(__this + _offset);
IMECompositionString__ctor_m3E5D1159993102E7687C901BCDB3277EC23C2619(_thisAdjusted, ___characters0, method);
}
// System.String UnityEngine.InputSystem.LowLevel.IMECompositionString::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IMECompositionString_ToString_mC08E0929E54A40011881459D00A154F17FD3B373 (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
String_t* V_2 = NULL;
{
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF* L_0 = (&__this->___buffer_1);
Il2CppChar* L_1 = (&L_0->___FixedElementField_0);
V_1 = L_1;
// fixed(char* ptr = buffer)
Il2CppChar* L_2 = V_1;
V_0 = (Il2CppChar*)((uintptr_t)L_2);
// return new string(ptr, 0, size);
Il2CppChar* L_3 = V_0;
int32_t L_4 = __this->___size_0;
String_t* L_5;
L_5 = String_CreateString_m3F8794FEB452558B8A68C65E1F0B603B3D94E0E2(NULL, L_3, 0, L_4, NULL);
V_2 = L_5;
goto IL_0021;
}
IL_0021:
{
// }
String_t* L_6 = V_2;
return L_6;
}
}
IL2CPP_EXTERN_C String_t* IMECompositionString_ToString_mC08E0929E54A40011881459D00A154F17FD3B373_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E*>(__this + _offset);
String_t* _returnValue;
_returnValue = IMECompositionString_ToString_mC08E0929E54A40011881459D00A154F17FD3B373(_thisAdjusted, method);
return _returnValue;
}
// System.Collections.Generic.IEnumerator`1<System.Char> UnityEngine.InputSystem.LowLevel.IMECompositionString::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* IMECompositionString_GetEnumerator_mF49F36051CC98738D33E385073C4CA47FA4A64DE (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
// return new Enumerator(this);
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E L_0 = (*(IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E*)__this);
Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46 L_1;
memset((&L_1), 0, sizeof(L_1));
Enumerator__ctor_m6073ACAAEF55A25B11BB1120B7C2F24F5807DE9C((&L_1), L_0, /*hidden argument*/NULL);
Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46 L_2 = L_1;
RuntimeObject* L_3 = Box(Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_il2cpp_TypeInfo_var, &L_2);
V_0 = (RuntimeObject*)L_3;
goto IL_0014;
}
IL_0014:
{
// }
RuntimeObject* L_4 = V_0;
return L_4;
}
}
IL2CPP_EXTERN_C RuntimeObject* IMECompositionString_GetEnumerator_mF49F36051CC98738D33E385073C4CA47FA4A64DE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E*>(__this + _offset);
RuntimeObject* _returnValue;
_returnValue = IMECompositionString_GetEnumerator_mF49F36051CC98738D33E385073C4CA47FA4A64DE(_thisAdjusted, method);
return _returnValue;
}
// System.Collections.IEnumerator UnityEngine.InputSystem.LowLevel.IMECompositionString::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* IMECompositionString_System_Collections_IEnumerable_GetEnumerator_mEF9DC84BC5B93C39EAD3A9F4AB51627CE4F82C63 (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
// return GetEnumerator();
RuntimeObject* L_0;
L_0 = IMECompositionString_GetEnumerator_mF49F36051CC98738D33E385073C4CA47FA4A64DE(__this, NULL);
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
// }
RuntimeObject* L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C RuntimeObject* IMECompositionString_System_Collections_IEnumerable_GetEnumerator_mEF9DC84BC5B93C39EAD3A9F4AB51627CE4F82C63_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E*>(__this + _offset);
RuntimeObject* _returnValue;
_returnValue = IMECompositionString_System_Collections_IEnumerable_GetEnumerator_mEF9DC84BC5B93C39EAD3A9F4AB51627CE4F82C63(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator
IL2CPP_EXTERN_C void Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshal_pinvoke(const Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46& unmarshaled, Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshaled_pinvoke& marshaled)
{
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke(unmarshaled.___m_CompositionString_0, marshaled.___m_CompositionString_0);
marshaled.___m_CurrentCharacter_1 = static_cast<uint8_t>(unmarshaled.___m_CurrentCharacter_1);
marshaled.___m_CurrentIndex_2 = unmarshaled.___m_CurrentIndex_2;
}
IL2CPP_EXTERN_C void Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshal_pinvoke_back(const Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshaled_pinvoke& marshaled, Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46& unmarshaled)
{
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E unmarshaledm_CompositionString_temp_0;
memset((&unmarshaledm_CompositionString_temp_0), 0, sizeof(unmarshaledm_CompositionString_temp_0));
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke_back(marshaled.___m_CompositionString_0, unmarshaledm_CompositionString_temp_0);
unmarshaled.___m_CompositionString_0 = unmarshaledm_CompositionString_temp_0;
Il2CppChar unmarshaledm_CurrentCharacter_temp_1 = 0x0;
unmarshaledm_CurrentCharacter_temp_1 = static_cast<Il2CppChar>(marshaled.___m_CurrentCharacter_1);
unmarshaled.___m_CurrentCharacter_1 = unmarshaledm_CurrentCharacter_temp_1;
int32_t unmarshaledm_CurrentIndex_temp_2 = 0;
unmarshaledm_CurrentIndex_temp_2 = marshaled.___m_CurrentIndex_2;
unmarshaled.___m_CurrentIndex_2 = unmarshaledm_CurrentIndex_temp_2;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator
IL2CPP_EXTERN_C void Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshal_pinvoke_cleanup(Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshaled_pinvoke& marshaled)
{
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke_cleanup(marshaled.___m_CompositionString_0);
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator
IL2CPP_EXTERN_C void Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshal_com(const Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46& unmarshaled, Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshaled_com& marshaled)
{
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com(unmarshaled.___m_CompositionString_0, marshaled.___m_CompositionString_0);
marshaled.___m_CurrentCharacter_1 = static_cast<uint8_t>(unmarshaled.___m_CurrentCharacter_1);
marshaled.___m_CurrentIndex_2 = unmarshaled.___m_CurrentIndex_2;
}
IL2CPP_EXTERN_C void Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshal_com_back(const Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshaled_com& marshaled, Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46& unmarshaled)
{
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E unmarshaledm_CompositionString_temp_0;
memset((&unmarshaledm_CompositionString_temp_0), 0, sizeof(unmarshaledm_CompositionString_temp_0));
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com_back(marshaled.___m_CompositionString_0, unmarshaledm_CompositionString_temp_0);
unmarshaled.___m_CompositionString_0 = unmarshaledm_CompositionString_temp_0;
Il2CppChar unmarshaledm_CurrentCharacter_temp_1 = 0x0;
unmarshaledm_CurrentCharacter_temp_1 = static_cast<Il2CppChar>(marshaled.___m_CurrentCharacter_1);
unmarshaled.___m_CurrentCharacter_1 = unmarshaledm_CurrentCharacter_temp_1;
int32_t unmarshaledm_CurrentIndex_temp_2 = 0;
unmarshaledm_CurrentIndex_temp_2 = marshaled.___m_CurrentIndex_2;
unmarshaled.___m_CurrentIndex_2 = unmarshaledm_CurrentIndex_temp_2;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator
IL2CPP_EXTERN_C void Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshal_com_cleanup(Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshaled_com& marshaled)
{
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com_cleanup(marshaled.___m_CompositionString_0);
}
// System.Void UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::.ctor(UnityEngine.InputSystem.LowLevel.IMECompositionString)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m6073ACAAEF55A25B11BB1120B7C2F24F5807DE9C (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E ___compositionString0, const RuntimeMethod* method)
{
{
// m_CompositionString = compositionString;
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E L_0 = ___compositionString0;
__this->___m_CompositionString_0 = L_0;
// m_CurrentCharacter = '\0';
__this->___m_CurrentCharacter_1 = 0;
// m_CurrentIndex = -1;
__this->___m_CurrentIndex_2 = (-1);
// }
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m6073ACAAEF55A25B11BB1120B7C2F24F5807DE9C_AdjustorThunk (RuntimeObject* __this, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E ___compositionString0, const RuntimeMethod* method)
{
Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46*>(__this + _offset);
Enumerator__ctor_m6073ACAAEF55A25B11BB1120B7C2F24F5807DE9C(_thisAdjusted, ___compositionString0, method);
}
// System.Boolean UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD35FCA6EB88EDE4D99E482FCF3338CBD78C327CE (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
bool V_2 = false;
Il2CppChar* V_3 = NULL;
Il2CppChar* V_4 = NULL;
{
// int size = m_CompositionString.Count;
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* L_0 = (&__this->___m_CompositionString_0);
int32_t L_1;
L_1 = IMECompositionString_get_Count_m118217BDAE905FA6F01D5F61D3D1A85319A5AA1D_inline(L_0, NULL);
V_0 = L_1;
// m_CurrentIndex++;
int32_t L_2 = __this->___m_CurrentIndex_2;
__this->___m_CurrentIndex_2 = ((int32_t)il2cpp_codegen_add(L_2, 1));
// if (m_CurrentIndex == size)
int32_t L_3 = __this->___m_CurrentIndex_2;
int32_t L_4 = V_0;
V_1 = (bool)((((int32_t)L_3) == ((int32_t)L_4))? 1 : 0);
bool L_5 = V_1;
if (!L_5)
{
goto IL_002c;
}
}
{
// return false;
V_2 = (bool)0;
goto IL_005e;
}
IL_002c:
{
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* L_6 = (&__this->___m_CompositionString_0);
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF* L_7 = (&L_6->___buffer_1);
Il2CppChar* L_8 = (&L_7->___FixedElementField_0);
V_4 = L_8;
// fixed(char* ptr = m_CompositionString.buffer)
Il2CppChar* L_9 = V_4;
V_3 = (Il2CppChar*)((uintptr_t)L_9);
// m_CurrentCharacter = *(ptr + m_CurrentIndex);
Il2CppChar* L_10 = V_3;
int32_t L_11 = __this->___m_CurrentIndex_2;
int32_t L_12 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_10, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_11), 2)))));
__this->___m_CurrentCharacter_1 = L_12;
V_4 = (Il2CppChar*)((uintptr_t)0);
// return true;
V_2 = (bool)1;
goto IL_005e;
}
IL_005e:
{
// }
bool L_13 = V_2;
return L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mD35FCA6EB88EDE4D99E482FCF3338CBD78C327CE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46*>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_mD35FCA6EB88EDE4D99E482FCF3338CBD78C327CE(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_mEE829E33AF06A2FEDB9994AFBF5BCFC0FF7ABBB0 (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method)
{
{
// m_CurrentIndex = -1;
__this->___m_CurrentIndex_2 = (-1);
// }
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Reset_mEE829E33AF06A2FEDB9994AFBF5BCFC0FF7ABBB0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46*>(__this + _offset);
Enumerator_Reset_mEE829E33AF06A2FEDB9994AFBF5BCFC0FF7ABBB0(_thisAdjusted, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4FBC50139C59E472BF6C0544FAA09858F98D860E (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method)
{
{
// }
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m4FBC50139C59E472BF6C0544FAA09858F98D860E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46*>(__this + _offset);
Enumerator_Dispose_m4FBC50139C59E472BF6C0544FAA09858F98D860E(_thisAdjusted, method);
}
// System.Char UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Enumerator_get_Current_m52C5B2EFD3B6598435E54801806413118B0C7F40 (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method)
{
{
// public char Current => m_CurrentCharacter;
Il2CppChar L_0 = __this->___m_CurrentCharacter_1;
return L_0;
}
}
IL2CPP_EXTERN_C Il2CppChar Enumerator_get_Current_m52C5B2EFD3B6598435E54801806413118B0C7F40_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46*>(__this + _offset);
Il2CppChar _returnValue;
_returnValue = Enumerator_get_Current_m52C5B2EFD3B6598435E54801806413118B0C7F40_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_m86A42D2AB14107F270FCE9B0D8C40254A62572AD (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// object IEnumerator.Current => Current;
Il2CppChar L_0;
L_0 = Enumerator_get_Current_m52C5B2EFD3B6598435E54801806413118B0C7F40_inline(__this, NULL);
Il2CppChar L_1 = L_0;
RuntimeObject* L_2 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_m86A42D2AB14107F270FCE9B0D8C40254A62572AD_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46*>(__this + _offset);
RuntimeObject* _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m86A42D2AB14107F270FCE9B0D8C40254A62572AD(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.IMECompositionString/<buffer>e__FixedBuffer
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke(const U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF& unmarshaled, U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke& marshaled)
{
marshaled.___FixedElementField_0 = static_cast<uint8_t>(unmarshaled.___FixedElementField_0);
}
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke_back(const U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke& marshaled, U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF& unmarshaled)
{
Il2CppChar unmarshaledFixedElementField_temp_0 = 0x0;
unmarshaledFixedElementField_temp_0 = static_cast<Il2CppChar>(marshaled.___FixedElementField_0);
unmarshaled.___FixedElementField_0 = unmarshaledFixedElementField_temp_0;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.IMECompositionString/<buffer>e__FixedBuffer
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke_cleanup(U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.IMECompositionString/<buffer>e__FixedBuffer
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com(const U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF& unmarshaled, U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com& marshaled)
{
marshaled.___FixedElementField_0 = static_cast<uint8_t>(unmarshaled.___FixedElementField_0);
}
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com_back(const U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com& marshaled, U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF& unmarshaled)
{
Il2CppChar unmarshaledFixedElementField_temp_0 = 0x0;
unmarshaledFixedElementField_temp_0 = static_cast<Il2CppChar>(marshaled.___FixedElementField_0);
unmarshaled.___FixedElementField_0 = unmarshaledFixedElementField_temp_0;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.IMECompositionString/<buffer>e__FixedBuffer
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com_cleanup(U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com& marshaled)
{
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEvent::get_type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEvent_get_type_m43737750FDCCFDF4FC208C9AFFCB5E9D2672733D (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method)
{
{
// get => new FourCC((int)m_Event.type);
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (&__this->___m_Event_5);
int32_t L_1 = L_0->___type_1;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_2;
memset((&L_2), 0, sizeof(L_2));
FourCC__ctor_mE761C8779BB6DC85BA1662DC9ECEC39D62ED9A56((&L_2), L_1, /*hidden argument*/NULL);
return L_2;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEvent_get_type_m43737750FDCCFDF4FC208C9AFFCB5E9D2672733D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = InputEvent_get_type_m43737750FDCCFDF4FC208C9AFFCB5E9D2672733D(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_type(UnityEngine.InputSystem.Utilities.FourCC)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_type_mA12F3F32108A0B88A4EE7BCA8AE7F2972F8E9740 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___value0, const RuntimeMethod* method)
{
{
// set => m_Event.type = (NativeInputEventType)(int)value;
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (&__this->___m_Event_5);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = ___value0;
int32_t L_2;
L_2 = FourCC_op_Implicit_m754D657392DC63F1F125F3391002C84ABD26144A(L_1, NULL);
L_0->___type_1 = L_2;
return;
}
}
IL2CPP_EXTERN_C void InputEvent_set_type_mA12F3F32108A0B88A4EE7BCA8AE7F2972F8E9740_AdjustorThunk (RuntimeObject* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___value0, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
InputEvent_set_type_mA12F3F32108A0B88A4EE7BCA8AE7F2972F8E9740(_thisAdjusted, ___value0, method);
}
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputEvent::get_sizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method)
{
{
// get => m_Event.sizeInBytes;
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (&__this->___m_Event_5);
uint16_t L_1 = L_0->___sizeInBytes_2;
return L_1;
}
}
IL2CPP_EXTERN_C uint32_t InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
uint32_t _returnValue;
_returnValue = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_sizeInBytes(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_sizeInBytes_m0F44793DDA0884B427B82447CE1106FC4E6F691C (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, uint32_t ___value0, const RuntimeMethod* method)
{
bool V_0 = false;
uint16_t V_1 = 0;
{
// if (value > ushort.MaxValue)
uint32_t L_0 = ___value0;
V_0 = (bool)((!(((uint32_t)L_0) <= ((uint32_t)((int32_t)65535))))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_002f;
}
}
{
// throw new ArgumentException("Maximum event size is " + ushort.MaxValue, nameof(value));
V_1 = (uint16_t)((int32_t)65535);
String_t* L_2;
L_2 = UInt16_ToString_m57629B7E74D92A54414073D5C27D6827C93A4DD5((&V_1), NULL);
String_t* L_3;
L_3 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral924007ED054F82D9429F46EA3884D176E0DB744B)), L_2, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_4);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_4, L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEvent_set_sizeInBytes_m0F44793DDA0884B427B82447CE1106FC4E6F691C_RuntimeMethod_var)));
}
IL_002f:
{
// m_Event.sizeInBytes = (ushort)value;
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_5 = (&__this->___m_Event_5);
uint32_t L_6 = ___value0;
L_5->___sizeInBytes_2 = (uint16_t)((int32_t)(uint16_t)L_6);
// }
return;
}
}
IL2CPP_EXTERN_C void InputEvent_set_sizeInBytes_m0F44793DDA0884B427B82447CE1106FC4E6F691C_AdjustorThunk (RuntimeObject* __this, uint32_t ___value0, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
InputEvent_set_sizeInBytes_m0F44793DDA0884B427B82447CE1106FC4E6F691C(_thisAdjusted, ___value0, method);
}
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEvent::get_eventId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEvent_get_eventId_mD480444BF28136F8FF8288C83C4489B9A6B992A0 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method)
{
{
// get => (int)(m_Event.eventId & kIdMask);
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (&__this->___m_Event_5);
int32_t L_1 = L_0->___eventId_5;
return ((int32_t)((int64_t)(((int64_t)L_1)&((int64_t)((int32_t)2147483647LL)))));
}
}
IL2CPP_EXTERN_C int32_t InputEvent_get_eventId_mD480444BF28136F8FF8288C83C4489B9A6B992A0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
int32_t _returnValue;
_returnValue = InputEvent_get_eventId_mD480444BF28136F8FF8288C83C4489B9A6B992A0(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_eventId(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_eventId_mD95C6CF817314B3C83EA67E5B7A2898ADEE8BE74 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_Event.eventId = value | (int)(m_Event.eventId & ~kIdMask);
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (&__this->___m_Event_5);
int32_t L_1 = ___value0;
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_2 = (&__this->___m_Event_5);
int32_t L_3 = L_2->___eventId_5;
L_0->___eventId_5 = ((int32_t)(L_1|((int32_t)((int64_t)(((int64_t)L_3)&((int64_t)(uint64_t)((uint32_t)((int32_t)-2147483648LL))))))));
return;
}
}
IL2CPP_EXTERN_C void InputEvent_set_eventId_mD95C6CF817314B3C83EA67E5B7A2898ADEE8BE74_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
InputEvent_set_eventId_mD95C6CF817314B3C83EA67E5B7A2898ADEE8BE74(_thisAdjusted, ___value0, method);
}
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEvent::get_deviceId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEvent_get_deviceId_m42DC07D2AB46922D79E0A3B9E31FA31E0FD90B6C (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method)
{
{
// get => m_Event.deviceId;
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (&__this->___m_Event_5);
uint16_t L_1 = L_0->___deviceId_3;
return L_1;
}
}
IL2CPP_EXTERN_C int32_t InputEvent_get_deviceId_m42DC07D2AB46922D79E0A3B9E31FA31E0FD90B6C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
int32_t _returnValue;
_returnValue = InputEvent_get_deviceId_m42DC07D2AB46922D79E0A3B9E31FA31E0FD90B6C(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_deviceId(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_deviceId_mED2CE48AD37BA360710E9C5B48D46D2A18A4BDDF (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_Event.deviceId = (ushort)value;
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (&__this->___m_Event_5);
int32_t L_1 = ___value0;
L_0->___deviceId_3 = (uint16_t)((int32_t)(uint16_t)L_1);
return;
}
}
IL2CPP_EXTERN_C void InputEvent_set_deviceId_mED2CE48AD37BA360710E9C5B48D46D2A18A4BDDF_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
InputEvent_set_deviceId_mED2CE48AD37BA360710E9C5B48D46D2A18A4BDDF(_thisAdjusted, ___value0, method);
}
// System.Double UnityEngine.InputSystem.LowLevel.InputEvent::get_time()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEvent_get_time_mD4A6C01A2B7BFB9ECAD089197C573886E3F70ADB (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get => m_Event.time - InputRuntime.s_CurrentTimeOffsetToRealtimeSinceStartup;
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (&__this->___m_Event_5);
double L_1 = L_0->___time_4;
double L_2 = ((InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var))->___s_CurrentTimeOffsetToRealtimeSinceStartup_1;
return ((double)il2cpp_codegen_subtract(L_1, L_2));
}
}
IL2CPP_EXTERN_C double InputEvent_get_time_mD4A6C01A2B7BFB9ECAD089197C573886E3F70ADB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
double _returnValue;
_returnValue = InputEvent_get_time_mD4A6C01A2B7BFB9ECAD089197C573886E3F70ADB(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_time(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_time_m210F97B604C0EEB53FC6CC4D57A10373FC081A0F (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, double ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// set => m_Event.time = value + InputRuntime.s_CurrentTimeOffsetToRealtimeSinceStartup;
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (&__this->___m_Event_5);
double L_1 = ___value0;
double L_2 = ((InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var))->___s_CurrentTimeOffsetToRealtimeSinceStartup_1;
L_0->___time_4 = ((double)il2cpp_codegen_add(L_1, L_2));
return;
}
}
IL2CPP_EXTERN_C void InputEvent_set_time_m210F97B604C0EEB53FC6CC4D57A10373FC081A0F_AdjustorThunk (RuntimeObject* __this, double ___value0, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
InputEvent_set_time_m210F97B604C0EEB53FC6CC4D57A10373FC081A0F(_thisAdjusted, ___value0, method);
}
// System.Double UnityEngine.InputSystem.LowLevel.InputEvent::get_internalTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEvent_get_internalTime_m6EBE99BC7B0CD35B2B3670A9B5DE003AB3FDA708 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method)
{
{
// get => m_Event.time;
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (&__this->___m_Event_5);
double L_1 = L_0->___time_4;
return L_1;
}
}
IL2CPP_EXTERN_C double InputEvent_get_internalTime_m6EBE99BC7B0CD35B2B3670A9B5DE003AB3FDA708_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
double _returnValue;
_returnValue = InputEvent_get_internalTime_m6EBE99BC7B0CD35B2B3670A9B5DE003AB3FDA708(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_internalTime(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_internalTime_m914C4E1111E2A886D56B9D0A888ECE911F894980 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, double ___value0, const RuntimeMethod* method)
{
{
// set => m_Event.time = value;
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (&__this->___m_Event_5);
double L_1 = ___value0;
L_0->___time_4 = L_1;
return;
}
}
IL2CPP_EXTERN_C void InputEvent_set_internalTime_m914C4E1111E2A886D56B9D0A888ECE911F894980_AdjustorThunk (RuntimeObject* __this, double ___value0, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
InputEvent_set_internalTime_m914C4E1111E2A886D56B9D0A888ECE911F894980(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEvent::.ctor(UnityEngine.InputSystem.Utilities.FourCC,System.Int32,System.Int32,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___type0, int32_t ___sizeInBytes1, int32_t ___deviceId2, double ___time3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// if (time < 0)
double L_0 = ___time3;
V_0 = (bool)((((double)L_0) < ((double)(0.0)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001e;
}
}
{
// time = InputRuntime.s_Instance.currentTime;
RuntimeObject* L_2 = ((InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var))->___s_Instance_0;
NullCheck(L_2);
double L_3;
L_3 = InterfaceFuncInvoker0< double >::Invoke(19 /* System.Double UnityEngine.InputSystem.LowLevel.IInputRuntime::get_currentTime() */, IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var, L_2);
___time3 = L_3;
}
IL_001e:
{
// m_Event.type = (NativeInputEventType)(int)type;
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_4 = (&__this->___m_Event_5);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_5 = ___type0;
int32_t L_6;
L_6 = FourCC_op_Implicit_m754D657392DC63F1F125F3391002C84ABD26144A(L_5, NULL);
L_4->___type_1 = L_6;
// m_Event.sizeInBytes = (ushort)sizeInBytes;
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_7 = (&__this->___m_Event_5);
int32_t L_8 = ___sizeInBytes1;
L_7->___sizeInBytes_2 = (uint16_t)((int32_t)(uint16_t)L_8);
// m_Event.deviceId = (ushort)deviceId;
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_9 = (&__this->___m_Event_5);
int32_t L_10 = ___deviceId2;
L_9->___deviceId_3 = (uint16_t)((int32_t)(uint16_t)L_10);
// m_Event.time = time;
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_11 = (&__this->___m_Event_5);
double L_12 = ___time3;
L_11->___time_4 = L_12;
// m_Event.eventId = InvalidEventId;
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_13 = (&__this->___m_Event_5);
L_13->___eventId_5 = 0;
// }
return;
}
}
IL2CPP_EXTERN_C void InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924_AdjustorThunk (RuntimeObject* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___type0, int32_t ___sizeInBytes1, int32_t ___deviceId2, double ___time3, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924(_thisAdjusted, ___type0, ___sizeInBytes1, ___deviceId2, ___time3, method);
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEvent::get_handled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEvent_get_handled_m354E53F68FA517142B4A53287BF738545F792468 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method)
{
{
// get => (m_Event.eventId & kHandledMask) == kHandledMask;
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (&__this->___m_Event_5);
int32_t L_1 = L_0->___eventId_5;
return (bool)((((int64_t)((int64_t)(((int64_t)L_1)&((int64_t)(uint64_t)((uint32_t)((int32_t)-2147483648LL)))))) == ((int64_t)((int64_t)(uint64_t)((uint32_t)((int32_t)-2147483648LL)))))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool InputEvent_get_handled_m354E53F68FA517142B4A53287BF738545F792468_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
bool _returnValue;
_returnValue = InputEvent_get_handled_m354E53F68FA517142B4A53287BF738545F792468(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_handled(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_handled_mF2F5A1872BA2D7F585F1275825B622342EB93A16 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, bool ___value0, const RuntimeMethod* method)
{
bool V_0 = false;
{
// if (value)
bool L_0 = ___value0;
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_0027;
}
}
{
// m_Event.eventId = (int)(m_Event.eventId | kHandledMask);
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_2 = (&__this->___m_Event_5);
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_3 = (&__this->___m_Event_5);
int32_t L_4 = L_3->___eventId_5;
L_2->___eventId_5 = ((int32_t)((int64_t)(((int64_t)L_4)|((int64_t)(uint64_t)((uint32_t)((int32_t)-2147483648LL))))));
goto IL_0046;
}
IL_0027:
{
// m_Event.eventId = (int)(m_Event.eventId & ~kHandledMask);
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_5 = (&__this->___m_Event_5);
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_6 = (&__this->___m_Event_5);
int32_t L_7 = L_6->___eventId_5;
L_5->___eventId_5 = ((int32_t)((int64_t)(((int64_t)L_7)&((int64_t)((int32_t)2147483647LL)))));
}
IL_0046:
{
// }
return;
}
}
IL2CPP_EXTERN_C void InputEvent_set_handled_mF2F5A1872BA2D7F585F1275825B622342EB93A16_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
InputEvent_set_handled_mF2F5A1872BA2D7F585F1275825B622342EB93A16(_thisAdjusted, ___value0, method);
}
// System.String UnityEngine.InputSystem.LowLevel.InputEvent::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputEvent_ToString_mA533C298897220B7CC970408EDBAB35D9870B27C (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD8D5235574444C342D8D4E761289705C697DD73F);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
// return $"id={eventId} type={type} device={deviceId} size={sizeInBytes} time={time}";
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)5);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
int32_t L_2;
L_2 = InputEvent_get_eventId_mD480444BF28136F8FF8288C83C4489B9A6B992A0(__this, NULL);
int32_t L_3 = L_2;
RuntimeObject* L_4 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_4);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_4);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = L_1;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_6;
L_6 = InputEvent_get_type_m43737750FDCCFDF4FC208C9AFFCB5E9D2672733D(__this, NULL);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_7 = L_6;
RuntimeObject* L_8 = Box(FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_8);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_8);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = L_5;
int32_t L_10;
L_10 = InputEvent_get_deviceId_m42DC07D2AB46922D79E0A3B9E31FA31E0FD90B6C(__this, NULL);
int32_t L_11 = L_10;
RuntimeObject* L_12 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_11);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_12);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)L_12);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_13 = L_9;
uint32_t L_14;
L_14 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307(__this, NULL);
uint32_t L_15 = L_14;
RuntimeObject* L_16 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_15);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_16);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject*)L_16);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_17 = L_13;
double L_18;
L_18 = InputEvent_get_time_mD4A6C01A2B7BFB9ECAD089197C573886E3F70ADB(__this, NULL);
double L_19 = L_18;
RuntimeObject* L_20 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_19);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_20);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject*)L_20);
String_t* L_21;
L_21 = String_Format_m74FC0A1259DFA02F3DF6538FC7F3ACF3E1AF0C55(_stringLiteralD8D5235574444C342D8D4E761289705C697DD73F, L_17, NULL);
V_0 = L_21;
goto IL_005a;
}
IL_005a:
{
// }
String_t* L_22 = V_0;
return L_22;
}
}
IL2CPP_EXTERN_C String_t* InputEvent_ToString_mA533C298897220B7CC970408EDBAB35D9870B27C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
String_t* _returnValue;
_returnValue = InputEvent_ToString_mA533C298897220B7CC970408EDBAB35D9870B27C(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEvent::GetNextInMemory(UnityEngine.InputSystem.LowLevel.InputEvent*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEvent_GetNextInMemory_m236F5B3C61DB3F992C08B3A8366AE0BD9EDE2FAA (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___currentPtr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9AF4E05D5EE30F6198706F2776329DBF078FC7EC);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_1 = NULL;
{
// Debug.Assert(currentPtr != null, "Event pointer must not be NULL");
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___currentPtr0;
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806((bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0), _stringLiteral9AF4E05D5EE30F6198706F2776329DBF078FC7EC, NULL);
// var alignedSizeInBytes = currentPtr->sizeInBytes.AlignToMultipleOf(kAlignment);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = ___currentPtr0;
uint32_t L_2;
L_2 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1, NULL);
uint32_t L_3;
L_3 = NumberHelpers_AlignToMultipleOf_mEB8F85FE2BA604AC7B15C1FA171ECDF1A5D107C2_inline(L_2, 4, NULL);
V_0 = L_3;
// return (InputEvent*)((byte*)currentPtr + alignedSizeInBytes);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_4 = ___currentPtr0;
uint32_t L_5 = V_0;
V_1 = ((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)il2cpp_codegen_add((intptr_t)L_4, (intptr_t)((uintptr_t)L_5)));
goto IL_0028;
}
IL_0028:
{
// }
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_6 = V_1;
return L_6;
}
}
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEvent::GetNextInMemoryChecked(UnityEngine.InputSystem.LowLevel.InputEvent*,UnityEngine.InputSystem.LowLevel.InputEventBuffer&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEvent_GetNextInMemoryChecked_mE6034EBF4B5766E3C5E9CE6470319451BE6BD6DB (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___currentPtr0, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___buffer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9AF4E05D5EE30F6198706F2776329DBF078FC7EC);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_1 = NULL;
bool V_2 = false;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_3 = NULL;
{
// Debug.Assert(currentPtr != null, "Event pointer must not be NULL");
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___currentPtr0;
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806((bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0), _stringLiteral9AF4E05D5EE30F6198706F2776329DBF078FC7EC, NULL);
// var alignedSizeInBytes = currentPtr->sizeInBytes.AlignToMultipleOf(kAlignment);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = ___currentPtr0;
uint32_t L_2;
L_2 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1, NULL);
uint32_t L_3;
L_3 = NumberHelpers_AlignToMultipleOf_mEB8F85FE2BA604AC7B15C1FA171ECDF1A5D107C2_inline(L_2, 4, NULL);
V_0 = L_3;
// var nextPtr = (InputEvent*)((byte*)currentPtr + alignedSizeInBytes);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_4 = ___currentPtr0;
uint32_t L_5 = V_0;
V_1 = ((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)il2cpp_codegen_add((intptr_t)L_4, (intptr_t)((uintptr_t)L_5)));
// if (!buffer.Contains(nextPtr))
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_6 = ___buffer1;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_7 = V_1;
bool L_8;
L_8 = InputEventBuffer_Contains_mEF30027B0EE35896B8D4FA411A32F2EA3721B54F(L_6, L_7, NULL);
V_2 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
bool L_9 = V_2;
if (!L_9)
{
goto IL_005a;
}
}
{
// throw new InvalidOperationException(
// $"Event '{new InputEventPtr(currentPtr)}' is last event in given buffer with size {buffer.sizeInBytes}");
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_10 = ___currentPtr0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_11;
memset((&L_11), 0, sizeof(L_11));
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0((&L_11), L_10, /*hidden argument*/NULL);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_12 = L_11;
RuntimeObject* L_13 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_il2cpp_TypeInfo_var)), &L_12);
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_14 = ___buffer1;
int64_t L_15;
L_15 = InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_inline(L_14, NULL);
int64_t L_16 = L_15;
RuntimeObject* L_17 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var)), &L_16);
String_t* L_18;
L_18 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral08FB9129CB5911626293A76FA9EA45A589D9966E)), L_13, L_17, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_19 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_19);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_19, L_18, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEvent_GetNextInMemoryChecked_mE6034EBF4B5766E3C5E9CE6470319451BE6BD6DB_RuntimeMethod_var)));
}
IL_005a:
{
// return nextPtr;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_20 = V_1;
V_3 = L_20;
goto IL_005e;
}
IL_005e:
{
// }
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_21 = V_3;
return L_21;
}
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEvent::Equals(UnityEngine.InputSystem.LowLevel.InputEvent*,UnityEngine.InputSystem.LowLevel.InputEvent*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEvent_Equals_mB65BE566EA32A48CF40237611DC5E3C278C4C3CF (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___first0, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___second1, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
int32_t G_B5_0 = 0;
{
// if (first == second)
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___first0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = ___second1;
V_0 = (bool)((((intptr_t)L_0) == ((intptr_t)L_1))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_000d;
}
}
{
// return true;
V_1 = (bool)1;
goto IL_005e;
}
IL_000d:
{
// if (first == null || second == null)
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = ___first0;
if ((((intptr_t)L_3) == ((intptr_t)((uintptr_t)0))))
{
goto IL_0019;
}
}
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_4 = ___second1;
G_B5_0 = ((((intptr_t)L_4) == ((intptr_t)((uintptr_t)0)))? 1 : 0);
goto IL_001a;
}
IL_0019:
{
G_B5_0 = 1;
}
IL_001a:
{
V_2 = (bool)G_B5_0;
bool L_5 = V_2;
if (!L_5)
{
goto IL_0022;
}
}
{
// return false;
V_1 = (bool)0;
goto IL_005e;
}
IL_0022:
{
// if (first->m_Event.sizeInBytes != second->m_Event.sizeInBytes)
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_6 = ___first0;
NullCheck(L_6);
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_7 = (&L_6->___m_Event_5);
uint16_t L_8 = L_7->___sizeInBytes_2;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_9 = ___second1;
NullCheck(L_9);
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_10 = (&L_9->___m_Event_5);
uint16_t L_11 = L_10->___sizeInBytes_2;
V_3 = (bool)((((int32_t)((((int32_t)L_8) == ((int32_t)L_11))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_12 = V_3;
if (!L_12)
{
goto IL_0045;
}
}
{
// return false;
V_1 = (bool)0;
goto IL_005e;
}
IL_0045:
{
// return UnsafeUtility.MemCmp(first, second, first->m_Event.sizeInBytes) == 0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_13 = ___first0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_14 = ___second1;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_15 = ___first0;
NullCheck(L_15);
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_16 = (&L_15->___m_Event_5);
uint16_t L_17 = L_16->___sizeInBytes_2;
int32_t L_18;
L_18 = UnsafeUtility_MemCmp_mB5CB8C7A8AD66A3B48114DB7DBCF3BEE80046689((void*)L_13, (void*)L_14, ((int64_t)(uint64_t)L_17), NULL);
V_1 = (bool)((((int32_t)L_18) == ((int32_t)0))? 1 : 0);
goto IL_005e;
}
IL_005e:
{
// }
bool L_19 = V_1;
return L_19;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.InputEventBuffer
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke(const InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE& unmarshaled, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke& marshaled)
{
marshaled.___m_Buffer_1 = unmarshaled.___m_Buffer_1;
marshaled.___m_SizeInBytes_2 = unmarshaled.___m_SizeInBytes_2;
marshaled.___m_EventCount_3 = unmarshaled.___m_EventCount_3;
marshaled.___m_WeOwnTheBuffer_4 = static_cast<int32_t>(unmarshaled.___m_WeOwnTheBuffer_4);
}
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_back(const InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke& marshaled, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE& unmarshaled)
{
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_Buffer_temp_0;
memset((&unmarshaledm_Buffer_temp_0), 0, sizeof(unmarshaledm_Buffer_temp_0));
unmarshaledm_Buffer_temp_0 = marshaled.___m_Buffer_1;
unmarshaled.___m_Buffer_1 = unmarshaledm_Buffer_temp_0;
int64_t unmarshaledm_SizeInBytes_temp_1 = 0;
unmarshaledm_SizeInBytes_temp_1 = marshaled.___m_SizeInBytes_2;
unmarshaled.___m_SizeInBytes_2 = unmarshaledm_SizeInBytes_temp_1;
int32_t unmarshaledm_EventCount_temp_2 = 0;
unmarshaledm_EventCount_temp_2 = marshaled.___m_EventCount_3;
unmarshaled.___m_EventCount_3 = unmarshaledm_EventCount_temp_2;
bool unmarshaledm_WeOwnTheBuffer_temp_3 = false;
unmarshaledm_WeOwnTheBuffer_temp_3 = static_cast<bool>(marshaled.___m_WeOwnTheBuffer_4);
unmarshaled.___m_WeOwnTheBuffer_4 = unmarshaledm_WeOwnTheBuffer_temp_3;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.InputEventBuffer
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_cleanup(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.InputEventBuffer
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com(const InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE& unmarshaled, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com& marshaled)
{
marshaled.___m_Buffer_1 = unmarshaled.___m_Buffer_1;
marshaled.___m_SizeInBytes_2 = unmarshaled.___m_SizeInBytes_2;
marshaled.___m_EventCount_3 = unmarshaled.___m_EventCount_3;
marshaled.___m_WeOwnTheBuffer_4 = static_cast<int32_t>(unmarshaled.___m_WeOwnTheBuffer_4);
}
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com_back(const InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com& marshaled, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE& unmarshaled)
{
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_Buffer_temp_0;
memset((&unmarshaledm_Buffer_temp_0), 0, sizeof(unmarshaledm_Buffer_temp_0));
unmarshaledm_Buffer_temp_0 = marshaled.___m_Buffer_1;
unmarshaled.___m_Buffer_1 = unmarshaledm_Buffer_temp_0;
int64_t unmarshaledm_SizeInBytes_temp_1 = 0;
unmarshaledm_SizeInBytes_temp_1 = marshaled.___m_SizeInBytes_2;
unmarshaled.___m_SizeInBytes_2 = unmarshaledm_SizeInBytes_temp_1;
int32_t unmarshaledm_EventCount_temp_2 = 0;
unmarshaledm_EventCount_temp_2 = marshaled.___m_EventCount_3;
unmarshaled.___m_EventCount_3 = unmarshaledm_EventCount_temp_2;
bool unmarshaledm_WeOwnTheBuffer_temp_3 = false;
unmarshaledm_WeOwnTheBuffer_temp_3 = static_cast<bool>(marshaled.___m_WeOwnTheBuffer_4);
unmarshaled.___m_WeOwnTheBuffer_4 = unmarshaledm_WeOwnTheBuffer_temp_3;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.InputEventBuffer
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com_cleanup(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com& marshaled)
{
}
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_eventCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventBuffer_get_eventCount_mD120699C5A1CEBA76C878BC37DB2E39458F56C8E (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
{
{
// public int eventCount => m_EventCount;
int32_t L_0 = __this->___m_EventCount_3;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t InputEventBuffer_get_eventCount_mD120699C5A1CEBA76C878BC37DB2E39458F56C8E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
int32_t _returnValue;
_returnValue = InputEventBuffer_get_eventCount_mD120699C5A1CEBA76C878BC37DB2E39458F56C8E_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_sizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
{
{
// public long sizeInBytes => m_SizeInBytes;
int64_t L_0 = __this->___m_SizeInBytes_2;
return L_0;
}
}
IL2CPP_EXTERN_C int64_t InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
int64_t _returnValue;
_returnValue = InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_capacityInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventBuffer_get_capacityInBytes_m880911F29058AFF745E74D509EB224261374089B (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int64_t V_1 = 0;
{
// if (!m_Buffer.IsCreated)
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = (&__this->___m_Buffer_1);
bool L_1;
L_1 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081(L_0, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
// return 0;
V_1 = ((int64_t)0);
goto IL_0027;
}
IL_0018:
{
// return m_Buffer.Length;
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_3 = (&__this->___m_Buffer_1);
int32_t L_4;
L_4 = IL2CPP_NATIVEARRAY_GET_LENGTH((L_3)->___m_Length_1);
V_1 = ((int64_t)L_4);
goto IL_0027;
}
IL_0027:
{
// }
int64_t L_5 = V_1;
return L_5;
}
}
IL2CPP_EXTERN_C int64_t InputEventBuffer_get_capacityInBytes_m880911F29058AFF745E74D509EB224261374089B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
int64_t _returnValue;
_returnValue = InputEventBuffer_get_capacityInBytes_m880911F29058AFF745E74D509EB224261374089B(_thisAdjusted, method);
return _returnValue;
}
// Unity.Collections.NativeArray`1<System.Byte> UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_data()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
{
{
// public NativeArray<byte> data => m_Buffer;
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_0 = __this->___m_Buffer_1;
return L_0;
}
}
IL2CPP_EXTERN_C NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF _returnValue;
_returnValue = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_bufferPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventBuffer_get_bufferPtr_m7C5E03ED8F0433B3CD4F019DFADDE3983472DACB (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// get { return (InputEvent*)NativeArrayUnsafeUtility.GetUnsafeBufferPointerWithoutChecks(m_Buffer); }
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_0 = __this->___m_Buffer_1;
void* L_1;
L_1 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A(L_0, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_RuntimeMethod_var);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_2;
L_2 = InputEventPtr_op_Implicit_m599D70C2004FF6B28F13469EDB1421224095F432((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1, NULL);
V_0 = L_2;
goto IL_0014;
}
IL_0014:
{
// get { return (InputEvent*)NativeArrayUnsafeUtility.GetUnsafeBufferPointerWithoutChecks(m_Buffer); }
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_3 = V_0;
return L_3;
}
}
IL2CPP_EXTERN_C InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventBuffer_get_bufferPtr_m7C5E03ED8F0433B3CD4F019DFADDE3983472DACB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 _returnValue;
_returnValue = InputEventBuffer_get_bufferPtr_m7C5E03ED8F0433B3CD4F019DFADDE3983472DACB(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::.ctor(UnityEngine.InputSystem.LowLevel.InputEvent*,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer__ctor_mC9DC5120D654A771A3E7B8B21E89EE6071DD01C3 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, int32_t ___eventCount1, int32_t ___sizeInBytes2, int32_t ___capacityInBytes3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m43F0AE90A986A434C9B62B82562A021E0B5065C0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
int32_t G_B3_0 = 0;
int32_t G_B8_0 = 0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* G_B15_0 = NULL;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B15_1 = NULL;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* G_B14_0 = NULL;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B14_1 = NULL;
int32_t G_B16_0 = 0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* G_B16_1 = NULL;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B16_2 = NULL;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B18_0 = NULL;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B17_0 = NULL;
int64_t G_B19_0 = 0;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B19_1 = NULL;
{
// : this()
il2cpp_codegen_initobj(__this, sizeof(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE));
// if (eventPtr == null && eventCount != 0)
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___eventPtr0;
if ((!(((uintptr_t)L_0) == ((uintptr_t)((uintptr_t)0)))))
{
goto IL_0013;
}
}
{
int32_t L_1 = ___eventCount1;
G_B3_0 = ((!(((uint32_t)L_1) <= ((uint32_t)0)))? 1 : 0);
goto IL_0014;
}
IL_0013:
{
G_B3_0 = 0;
}
IL_0014:
{
V_0 = (bool)G_B3_0;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0028;
}
}
{
// throw new ArgumentException("eventPtr is NULL but eventCount is != 0", nameof(eventCount));
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD52F14A7E64122290D63B7EF4B3530CB47A85E14)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAD23E6251FEEFC7CF204F3BB7E43B14EE901517E)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer__ctor_mC9DC5120D654A771A3E7B8B21E89EE6071DD01C3_RuntimeMethod_var)));
}
IL_0028:
{
// if (capacityInBytes != 0 && capacityInBytes < sizeInBytes)
int32_t L_4 = ___capacityInBytes3;
if (!L_4)
{
goto IL_0033;
}
}
{
int32_t L_5 = ___capacityInBytes3;
int32_t L_6 = ___sizeInBytes2;
G_B8_0 = ((((int32_t)L_5) < ((int32_t)L_6))? 1 : 0);
goto IL_0034;
}
IL_0033:
{
G_B8_0 = 0;
}
IL_0034:
{
V_1 = (bool)G_B8_0;
bool L_7 = V_1;
if (!L_7)
{
goto IL_005a;
}
}
{
// throw new ArgumentException($"capacity({capacityInBytes}) cannot be smaller than size({sizeInBytes})",
// nameof(capacityInBytes));
int32_t L_8 = ___capacityInBytes3;
int32_t L_9 = L_8;
RuntimeObject* L_10 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_9);
int32_t L_11 = ___sizeInBytes2;
int32_t L_12 = L_11;
RuntimeObject* L_13 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_12);
String_t* L_14;
L_14 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB2A6BBCEEF1288495F26EB3470ACB3FD27C456E3)), L_10, L_13, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_15 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_15);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_15, L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral894192F113AFCA62FF819992911789F3CD2A99BF)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer__ctor_mC9DC5120D654A771A3E7B8B21E89EE6071DD01C3_RuntimeMethod_var)));
}
IL_005a:
{
// if (eventPtr != null)
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_16 = ___eventPtr0;
V_2 = (bool)((((int32_t)((((intptr_t)L_16) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_17 = V_2;
if (!L_17)
{
goto IL_00a9;
}
}
{
// if (capacityInBytes < 0)
int32_t L_18 = ___capacityInBytes3;
V_3 = (bool)((((int32_t)L_18) < ((int32_t)0))? 1 : 0);
bool L_19 = V_3;
if (!L_19)
{
goto IL_0073;
}
}
{
// capacityInBytes = sizeInBytes;
int32_t L_20 = ___sizeInBytes2;
___capacityInBytes3 = L_20;
}
IL_0073:
{
// m_Buffer = NativeArrayUnsafeUtility.ConvertExistingDataToNativeArray<byte>(eventPtr,
// capacityInBytes > 0 ? capacityInBytes : 0, Allocator.None);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_21 = ___eventPtr0;
int32_t L_22 = ___capacityInBytes3;
G_B14_0 = L_21;
G_B14_1 = __this;
if ((((int32_t)L_22) > ((int32_t)0)))
{
G_B15_0 = L_21;
G_B15_1 = __this;
goto IL_007d;
}
}
{
G_B16_0 = 0;
G_B16_1 = G_B14_0;
G_B16_2 = G_B14_1;
goto IL_007f;
}
IL_007d:
{
int32_t L_23 = ___capacityInBytes3;
G_B16_0 = L_23;
G_B16_1 = G_B15_0;
G_B16_2 = G_B15_1;
}
IL_007f:
{
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_24;
L_24 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m43F0AE90A986A434C9B62B82562A021E0B5065C0((void*)G_B16_1, G_B16_0, 1, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m43F0AE90A986A434C9B62B82562A021E0B5065C0_RuntimeMethod_var);
G_B16_2->___m_Buffer_1 = L_24;
// m_SizeInBytes = sizeInBytes >= 0 ? sizeInBytes : BufferSizeUnknown;
int32_t L_25 = ___sizeInBytes2;
G_B17_0 = __this;
if ((((int32_t)L_25) >= ((int32_t)0)))
{
G_B18_0 = __this;
goto IL_0093;
}
}
{
G_B19_0 = ((int64_t)(-1));
G_B19_1 = G_B17_0;
goto IL_0095;
}
IL_0093:
{
int32_t L_26 = ___sizeInBytes2;
G_B19_0 = ((int64_t)L_26);
G_B19_1 = G_B18_0;
}
IL_0095:
{
G_B19_1->___m_SizeInBytes_2 = G_B19_0;
// m_EventCount = eventCount;
int32_t L_27 = ___eventCount1;
__this->___m_EventCount_3 = L_27;
// m_WeOwnTheBuffer = false;
__this->___m_WeOwnTheBuffer_4 = (bool)0;
}
IL_00a9:
{
// }
return;
}
}
IL2CPP_EXTERN_C void InputEventBuffer__ctor_mC9DC5120D654A771A3E7B8B21E89EE6071DD01C3_AdjustorThunk (RuntimeObject* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, int32_t ___eventCount1, int32_t ___sizeInBytes2, int32_t ___capacityInBytes3, const RuntimeMethod* method)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
InputEventBuffer__ctor_mC9DC5120D654A771A3E7B8B21E89EE6071DD01C3(_thisAdjusted, ___eventPtr0, ___eventCount1, ___sizeInBytes2, ___capacityInBytes3, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::.ctor(Unity.Collections.NativeArray`1<System.Byte>,System.Int32,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer__ctor_mE2DE130D019FEE1A6E4DE07D0EDA233F7008D50B (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___buffer0, int32_t ___eventCount1, int32_t ___sizeInBytes2, bool ___transferNativeArrayOwnership3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
int32_t G_B3_0 = 0;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B9_0 = NULL;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B8_0 = NULL;
int32_t G_B10_0 = 0;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B10_1 = NULL;
{
// if (eventCount > 0 && !buffer.IsCreated)
int32_t L_0 = ___eventCount1;
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_0011;
}
}
{
bool L_1;
L_1 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081((&___buffer0), NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
G_B3_0 = ((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
goto IL_0012;
}
IL_0011:
{
G_B3_0 = 0;
}
IL_0012:
{
V_0 = (bool)G_B3_0;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0026;
}
}
{
// throw new ArgumentException("buffer has no data but eventCount is > 0", nameof(eventCount));
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC2451B8C6D92CA7D8CE2544B065B761C4B4C9647)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAD23E6251FEEFC7CF204F3BB7E43B14EE901517E)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer__ctor_mE2DE130D019FEE1A6E4DE07D0EDA233F7008D50B_RuntimeMethod_var)));
}
IL_0026:
{
// if (sizeInBytes > buffer.Length)
int32_t L_4 = ___sizeInBytes2;
int32_t L_5;
L_5 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&___buffer0))->___m_Length_1);
V_1 = (bool)((((int32_t)L_4) > ((int32_t)L_5))? 1 : 0);
bool L_6 = V_1;
if (!L_6)
{
goto IL_003f;
}
}
{
// throw new ArgumentOutOfRangeException(nameof(sizeInBytes));
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_7 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_7);
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9185A9C6A1BF633445844194B5073A9E7D587F4D)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer__ctor_mE2DE130D019FEE1A6E4DE07D0EDA233F7008D50B_RuntimeMethod_var)));
}
IL_003f:
{
// m_Buffer = buffer;
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_8 = ___buffer0;
__this->___m_Buffer_1 = L_8;
// m_WeOwnTheBuffer = transferNativeArrayOwnership;
bool L_9 = ___transferNativeArrayOwnership3;
__this->___m_WeOwnTheBuffer_4 = L_9;
// m_SizeInBytes = sizeInBytes >= 0 ? sizeInBytes : buffer.Length;
int32_t L_10 = ___sizeInBytes2;
G_B8_0 = __this;
if ((((int32_t)L_10) >= ((int32_t)0)))
{
G_B9_0 = __this;
goto IL_005c;
}
}
{
int32_t L_11;
L_11 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&___buffer0))->___m_Length_1);
G_B10_0 = L_11;
G_B10_1 = G_B8_0;
goto IL_005d;
}
IL_005c:
{
int32_t L_12 = ___sizeInBytes2;
G_B10_0 = L_12;
G_B10_1 = G_B9_0;
}
IL_005d:
{
G_B10_1->___m_SizeInBytes_2 = ((int64_t)G_B10_0);
// m_EventCount = eventCount;
int32_t L_13 = ___eventCount1;
__this->___m_EventCount_3 = L_13;
// }
return;
}
}
IL2CPP_EXTERN_C void InputEventBuffer__ctor_mE2DE130D019FEE1A6E4DE07D0EDA233F7008D50B_AdjustorThunk (RuntimeObject* __this, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___buffer0, int32_t ___eventCount1, int32_t ___sizeInBytes2, bool ___transferNativeArrayOwnership3, const RuntimeMethod* method)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
InputEventBuffer__ctor_mE2DE130D019FEE1A6E4DE07D0EDA233F7008D50B(_thisAdjusted, ___buffer0, ___eventCount1, ___sizeInBytes2, ___transferNativeArrayOwnership3, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::AppendEvent(UnityEngine.InputSystem.LowLevel.InputEvent*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_AppendEvent_mAEC914B9C5C5534378199FF5C35D7EB57215E011 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, int32_t ___capacityIncrementInBytes1, int32_t ___allocator2, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_1 = NULL;
bool V_2 = false;
{
// if (eventPtr == null)
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___eventPtr0;
V_2 = (bool)((((intptr_t)L_0) == ((intptr_t)((uintptr_t)0)))? 1 : 0);
bool L_1 = V_2;
if (!L_1)
{
goto IL_0015;
}
}
{
// throw new ArgumentNullException(nameof(eventPtr));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBA67382D61289B0EDBD1CD867DE673562B9B5111)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer_AppendEvent_mAEC914B9C5C5534378199FF5C35D7EB57215E011_RuntimeMethod_var)));
}
IL_0015:
{
// var eventSizeInBytes = eventPtr->sizeInBytes;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = ___eventPtr0;
uint32_t L_4;
L_4 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_3, NULL);
V_0 = L_4;
// var destinationPtr = AllocateEvent((int)eventSizeInBytes, capacityIncrementInBytes, allocator);
uint32_t L_5 = V_0;
int32_t L_6 = ___capacityIncrementInBytes1;
int32_t L_7 = ___allocator2;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_8;
L_8 = InputEventBuffer_AllocateEvent_m8B8C57E4A0764F048F9FC7D61B9E1329A6A2BC7C(__this, L_5, L_6, L_7, NULL);
V_1 = L_8;
// UnsafeUtility.MemCpy(destinationPtr, eventPtr, eventSizeInBytes);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_9 = V_1;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_10 = ___eventPtr0;
uint32_t L_11 = V_0;
UnsafeUtility_MemCpy_m019E657B952C27F705607F0F3D371EEE526B716B((void*)L_9, (void*)L_10, ((int64_t)(uint64_t)L_11), NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void InputEventBuffer_AppendEvent_mAEC914B9C5C5534378199FF5C35D7EB57215E011_AdjustorThunk (RuntimeObject* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, int32_t ___capacityIncrementInBytes1, int32_t ___allocator2, const RuntimeMethod* method)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
InputEventBuffer_AppendEvent_mAEC914B9C5C5534378199FF5C35D7EB57215E011(_thisAdjusted, ___eventPtr0, ___capacityIncrementInBytes1, ___allocator2, method);
}
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventBuffer::AllocateEvent(System.Int32,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventBuffer_AllocateEvent_m8B8C57E4A0764F048F9FC7D61B9E1329A6A2BC7C (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, int32_t ___sizeInBytes0, int32_t ___capacityIncrementInBytes1, int32_t ___allocator2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m65FA1E123815CA621B3659034958C4213DF274CD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int64_t V_1 = 0;
int64_t V_2 = 0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_3 = NULL;
bool V_4 = false;
bool V_5 = false;
int64_t V_6 = 0;
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_7;
memset((&V_7), 0, sizeof(V_7));
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_11 = NULL;
{
// if (sizeInBytes < InputEvent.kBaseEventSize)
int32_t L_0 = ___sizeInBytes0;
V_4 = (bool)((((int32_t)L_0) < ((int32_t)((int32_t)20)))? 1 : 0);
bool L_1 = V_4;
if (!L_1)
{
goto IL_002e;
}
}
{
// throw new ArgumentException(
// $"sizeInBytes must be >= sizeof(InputEvent) == {InputEvent.kBaseEventSize} (was {sizeInBytes})",
// nameof(sizeInBytes));
int32_t L_2 = ((int32_t)20);
RuntimeObject* L_3 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_2);
int32_t L_4 = ___sizeInBytes0;
int32_t L_5 = L_4;
RuntimeObject* L_6 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_5);
String_t* L_7;
L_7 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral75C2382105EE7550A774237E98EAB4B761429404)), L_3, L_6, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_8 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_8);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_8, L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9185A9C6A1BF633445844194B5073A9E7D587F4D)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer_AllocateEvent_m8B8C57E4A0764F048F9FC7D61B9E1329A6A2BC7C_RuntimeMethod_var)));
}
IL_002e:
{
// var alignedSizeInBytes = sizeInBytes.AlignToMultipleOf(InputEvent.kAlignment);
int32_t L_9 = ___sizeInBytes0;
int32_t L_10;
L_10 = NumberHelpers_AlignToMultipleOf_mC0AB871E2290467B6E6661572B87E57888FB36E0_inline(L_9, 4, NULL);
V_0 = L_10;
// var necessaryCapacity = m_SizeInBytes + alignedSizeInBytes;
int64_t L_11 = __this->___m_SizeInBytes_2;
int32_t L_12 = V_0;
V_1 = ((int64_t)il2cpp_codegen_add(L_11, ((int64_t)L_12)));
// var currentCapacity = capacityInBytes;
int64_t L_13;
L_13 = InputEventBuffer_get_capacityInBytes_m880911F29058AFF745E74D509EB224261374089B(__this, NULL);
V_2 = L_13;
// if (currentCapacity < necessaryCapacity)
int64_t L_14 = V_2;
int64_t L_15 = V_1;
V_5 = (bool)((((int64_t)L_14) < ((int64_t)L_15))? 1 : 0);
bool L_16 = V_5;
if (!L_16)
{
goto IL_00df;
}
}
{
// var newCapacity = necessaryCapacity.AlignToMultipleOf(capacityIncrementInBytes);
int64_t L_17 = V_1;
int32_t L_18 = ___capacityIncrementInBytes1;
int64_t L_19;
L_19 = NumberHelpers_AlignToMultipleOf_m645FD7986206E11C0148F37E59E84ADB693022D3_inline(L_17, ((int64_t)L_18), NULL);
V_6 = L_19;
// if (newCapacity > int.MaxValue)
int64_t L_20 = V_6;
V_8 = (bool)((((int64_t)L_20) > ((int64_t)((int64_t)((int32_t)2147483647LL))))? 1 : 0);
bool L_21 = V_8;
if (!L_21)
{
goto IL_007a;
}
}
{
// throw new NotImplementedException("NativeArray long support");
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_22 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var)));
NullCheck(L_22);
NotImplementedException__ctor_m8339D1A685E8D77CAC9D3260C06B38B5C7CA7742(L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral682C94355936D06676EFEE25A133C60E3F8445C8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer_AllocateEvent_m8B8C57E4A0764F048F9FC7D61B9E1329A6A2BC7C_RuntimeMethod_var)));
}
IL_007a:
{
// var newBuffer =
// new NativeArray<byte>((int)newCapacity, allocator, NativeArrayOptions.ClearMemory);
int64_t L_23 = V_6;
int32_t L_24 = ___allocator2;
NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F((&V_7), ((int32_t)L_23), L_24, 1, NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
// if (m_Buffer.IsCreated)
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_25 = (&__this->___m_Buffer_1);
bool L_26;
L_26 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081(L_25, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
V_9 = L_26;
bool L_27 = V_9;
if (!L_27)
{
goto IL_00cf;
}
}
{
// UnsafeUtility.MemCpy(newBuffer.GetUnsafePtr(),
// NativeArrayUnsafeUtility.GetUnsafeBufferPointerWithoutChecks(m_Buffer),
// this.sizeInBytes);
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_28 = V_7;
void* L_29;
L_29 = NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m65FA1E123815CA621B3659034958C4213DF274CD(L_28, NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m65FA1E123815CA621B3659034958C4213DF274CD_RuntimeMethod_var);
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_30 = __this->___m_Buffer_1;
void* L_31;
L_31 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A(L_30, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_RuntimeMethod_var);
int64_t L_32;
L_32 = InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_inline(__this, NULL);
UnsafeUtility_MemCpy_m019E657B952C27F705607F0F3D371EEE526B716B(L_29, L_31, L_32, NULL);
// if (m_WeOwnTheBuffer)
bool L_33 = __this->___m_WeOwnTheBuffer_4;
V_10 = L_33;
bool L_34 = V_10;
if (!L_34)
{
goto IL_00ce;
}
}
{
// m_Buffer.Dispose();
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_35 = (&__this->___m_Buffer_1);
NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA(L_35, NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var);
}
IL_00ce:
{
}
IL_00cf:
{
// m_Buffer = newBuffer;
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_36 = V_7;
__this->___m_Buffer_1 = L_36;
// m_WeOwnTheBuffer = true;
__this->___m_WeOwnTheBuffer_4 = (bool)1;
}
IL_00df:
{
// var eventPtr = (InputEvent*)((byte*)NativeArrayUnsafeUtility.GetUnsafeBufferPointerWithoutChecks(m_Buffer) + m_SizeInBytes);
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_37 = __this->___m_Buffer_1;
void* L_38;
L_38 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A(L_37, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_RuntimeMethod_var);
int64_t L_39 = __this->___m_SizeInBytes_2;
V_3 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((void*)il2cpp_codegen_add((intptr_t)L_38, ((intptr_t)L_39)));
// eventPtr->sizeInBytes = (uint)sizeInBytes;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_40 = V_3;
int32_t L_41 = ___sizeInBytes0;
InputEvent_set_sizeInBytes_m0F44793DDA0884B427B82447CE1106FC4E6F691C((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_40, L_41, NULL);
// m_SizeInBytes += alignedSizeInBytes;
int64_t L_42 = __this->___m_SizeInBytes_2;
int32_t L_43 = V_0;
__this->___m_SizeInBytes_2 = ((int64_t)il2cpp_codegen_add(L_42, ((int64_t)L_43)));
// ++m_EventCount;
int32_t L_44 = __this->___m_EventCount_3;
__this->___m_EventCount_3 = ((int32_t)il2cpp_codegen_add(L_44, 1));
// return eventPtr;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_45 = V_3;
V_11 = L_45;
goto IL_011d;
}
IL_011d:
{
// }
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_46 = V_11;
return L_46;
}
}
IL2CPP_EXTERN_C InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventBuffer_AllocateEvent_m8B8C57E4A0764F048F9FC7D61B9E1329A6A2BC7C_AdjustorThunk (RuntimeObject* __this, int32_t ___sizeInBytes0, int32_t ___capacityIncrementInBytes1, int32_t ___allocator2, const RuntimeMethod* method)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _returnValue;
_returnValue = InputEventBuffer_AllocateEvent_m8B8C57E4A0764F048F9FC7D61B9E1329A6A2BC7C(_thisAdjusted, ___sizeInBytes0, ___capacityIncrementInBytes1, ___allocator2, method);
return _returnValue;
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventBuffer::Contains(UnityEngine.InputSystem.LowLevel.InputEvent*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventBuffer_Contains_mEF30027B0EE35896B8D4FA411A32F2EA3721B54F (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
void* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
int32_t G_B9_0 = 0;
{
// if (eventPtr == null)
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___eventPtr0;
V_1 = (bool)((((intptr_t)L_0) == ((intptr_t)((uintptr_t)0)))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_000e;
}
}
{
// return false;
V_2 = (bool)0;
goto IL_0064;
}
IL_000e:
{
// if (sizeInBytes == 0)
int64_t L_2;
L_2 = InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_inline(__this, NULL);
V_3 = (bool)((((int64_t)L_2) == ((int64_t)((int64_t)0)))? 1 : 0);
bool L_3 = V_3;
if (!L_3)
{
goto IL_0020;
}
}
{
// return false;
V_2 = (bool)0;
goto IL_0064;
}
IL_0020:
{
// var bufferPtr = NativeArrayUnsafeUtility.GetUnsafeBufferPointerWithoutChecks(data);
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_4;
L_4 = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(__this, NULL);
void* L_5;
L_5 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A(L_4, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_RuntimeMethod_var);
V_0 = L_5;
// if (eventPtr < bufferPtr)
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_6 = ___eventPtr0;
void* L_7 = V_0;
V_4 = (bool)((!(((uintptr_t)L_6) >= ((uintptr_t)L_7)))? 1 : 0);
bool L_8 = V_4;
if (!L_8)
{
goto IL_003a;
}
}
{
// return false;
V_2 = (bool)0;
goto IL_0064;
}
IL_003a:
{
// if (sizeInBytes != BufferSizeUnknown && eventPtr >= (byte*)bufferPtr + sizeInBytes)
int64_t L_9;
L_9 = InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_inline(__this, NULL);
if ((((int64_t)L_9) == ((int64_t)((int64_t)(-1)))))
{
goto IL_0055;
}
}
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_10 = ___eventPtr0;
void* L_11 = V_0;
int64_t L_12;
L_12 = InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_inline(__this, NULL);
G_B9_0 = ((((int32_t)((!(((uintptr_t)L_10) >= ((uintptr_t)((void*)il2cpp_codegen_add((intptr_t)L_11, ((intptr_t)L_12))))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0056;
}
IL_0055:
{
G_B9_0 = 0;
}
IL_0056:
{
V_5 = (bool)G_B9_0;
bool L_13 = V_5;
if (!L_13)
{
goto IL_0060;
}
}
{
// return false;
V_2 = (bool)0;
goto IL_0064;
}
IL_0060:
{
// return true;
V_2 = (bool)1;
goto IL_0064;
}
IL_0064:
{
// }
bool L_14 = V_2;
return L_14;
}
}
IL2CPP_EXTERN_C bool InputEventBuffer_Contains_mEF30027B0EE35896B8D4FA411A32F2EA3721B54F_AdjustorThunk (RuntimeObject* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, const RuntimeMethod* method)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
bool _returnValue;
_returnValue = InputEventBuffer_Contains_mEF30027B0EE35896B8D4FA411A32F2EA3721B54F(_thisAdjusted, ___eventPtr0, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_Reset_m9E41B3CE9C7556C62AFC55772D7D4FBA8A99360B (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
// m_EventCount = 0;
__this->___m_EventCount_3 = 0;
// if (m_SizeInBytes != BufferSizeUnknown)
int64_t L_0 = __this->___m_SizeInBytes_2;
V_0 = (bool)((((int32_t)((((int64_t)L_0) == ((int64_t)((int64_t)(-1))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0021;
}
}
{
// m_SizeInBytes = 0;
__this->___m_SizeInBytes_2 = ((int64_t)0);
}
IL_0021:
{
// }
return;
}
}
IL2CPP_EXTERN_C void InputEventBuffer_Reset_m9E41B3CE9C7556C62AFC55772D7D4FBA8A99360B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
InputEventBuffer_Reset_m9E41B3CE9C7556C62AFC55772D7D4FBA8A99360B(_thisAdjusted, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::AdvanceToNextEvent(UnityEngine.InputSystem.LowLevel.InputEvent*&,UnityEngine.InputSystem.LowLevel.InputEvent*&,System.Int32&,System.Int32&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_AdvanceToNextEvent_m2A711A2AA87D26A027FFE4EFD01EBD296EE0B283 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** ___currentReadPos0, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** ___currentWritePos1, int32_t* ___numEventsRetainedInBuffer2, int32_t* ___numRemainingEvents3, bool ___leaveEventInBuffer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral71422D56F07943E650B22F6F3B927D53A7515425);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7FFC054EB71FDBA49A8F29EC2F5EDB55D76F076);
s_Il2CppMethodInitialized = true;
}
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
uint32_t V_3 = 0;
bool V_4 = false;
{
// Debug.Assert(currentReadPos >= currentWritePos, "Current write position is beyond read position");
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_0 = ___currentReadPos0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_1 = ___currentWritePos1;
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806((bool)((((int32_t)((!(((uintptr_t)(*((intptr_t*)L_0))) >= ((uintptr_t)(*((intptr_t*)L_1)))))? 1 : 0)) == ((int32_t)0))? 1 : 0), _stringLiteral71422D56F07943E650B22F6F3B927D53A7515425, NULL);
// var newReadPos = currentReadPos;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_2 = ___currentReadPos0;
V_0 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)(*((intptr_t*)L_2));
// if (numRemainingEvents > 1)
int32_t* L_3 = ___numRemainingEvents3;
int32_t L_4 = *((int32_t*)L_3);
V_1 = (bool)((((int32_t)L_4) > ((int32_t)1))? 1 : 0);
bool L_5 = V_1;
if (!L_5)
{
goto IL_002d;
}
}
{
// newReadPos = InputEvent.GetNextInMemoryChecked(currentReadPos, ref this);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_6 = ___currentReadPos0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_7;
L_7 = InputEvent_GetNextInMemoryChecked_mE6034EBF4B5766E3C5E9CE6470319451BE6BD6DB((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)(*((intptr_t*)L_6)), __this, NULL);
V_0 = L_7;
}
IL_002d:
{
// if (leaveEventInBuffer)
bool L_8 = ___leaveEventInBuffer4;
V_2 = L_8;
bool L_9 = V_2;
if (!L_9)
{
goto IL_007e;
}
}
{
// Debug.Assert(Contains(currentWritePos), "Current write position should be contained in buffer");
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_10 = ___currentWritePos1;
bool L_11;
L_11 = InputEventBuffer_Contains_mEF30027B0EE35896B8D4FA411A32F2EA3721B54F(__this, (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)(*((intptr_t*)L_10)), NULL);
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806(L_11, _stringLiteralB7FFC054EB71FDBA49A8F29EC2F5EDB55D76F076, NULL);
// var numBytes = currentReadPos->sizeInBytes;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_12 = ___currentReadPos0;
uint32_t L_13;
L_13 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)(*((intptr_t*)L_12)), NULL);
V_3 = L_13;
// if (currentReadPos != currentWritePos)
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_14 = ___currentReadPos0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_15 = ___currentWritePos1;
V_4 = (bool)((((int32_t)((((intptr_t)(*((intptr_t*)L_14))) == ((intptr_t)(*((intptr_t*)L_15))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_16 = V_4;
if (!L_16)
{
goto IL_006a;
}
}
{
// UnsafeUtility.MemMove(currentWritePos, currentReadPos, numBytes);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_17 = ___currentWritePos1;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_18 = ___currentReadPos0;
uint32_t L_19 = V_3;
UnsafeUtility_MemMove_mAF0E5DFE1A5A2AE587152991DAA57D1C06881D47((void*)(*((intptr_t*)L_17)), (void*)(*((intptr_t*)L_18)), ((int64_t)(uint64_t)L_19), NULL);
}
IL_006a:
{
// currentWritePos = (InputEvent*)((byte*)currentWritePos + numBytes.AlignToMultipleOf(4));
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_20 = ___currentWritePos1;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_21 = ___currentWritePos1;
uint32_t L_22 = V_3;
uint32_t L_23;
L_23 = NumberHelpers_AlignToMultipleOf_mEB8F85FE2BA604AC7B15C1FA171ECDF1A5D107C2_inline(L_22, 4, NULL);
*((intptr_t*)L_20) = (intptr_t)((intptr_t)il2cpp_codegen_add((*((intptr_t*)L_21)), (intptr_t)((uintptr_t)L_23)));
// ++numEventsRetainedInBuffer;
int32_t* L_24 = ___numEventsRetainedInBuffer2;
int32_t* L_25 = ___numEventsRetainedInBuffer2;
int32_t L_26 = *((int32_t*)L_25);
*((int32_t*)L_24) = (int32_t)((int32_t)il2cpp_codegen_add(L_26, 1));
}
IL_007e:
{
// currentReadPos = newReadPos;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_27 = ___currentReadPos0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_28 = V_0;
*((intptr_t*)L_27) = (intptr_t)L_28;
// --numRemainingEvents;
int32_t* L_29 = ___numRemainingEvents3;
int32_t* L_30 = ___numRemainingEvents3;
int32_t L_31 = *((int32_t*)L_30);
*((int32_t*)L_29) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_31, 1));
// }
return;
}
}
IL2CPP_EXTERN_C void InputEventBuffer_AdvanceToNextEvent_m2A711A2AA87D26A027FFE4EFD01EBD296EE0B283_AdjustorThunk (RuntimeObject* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** ___currentReadPos0, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** ___currentWritePos1, int32_t* ___numEventsRetainedInBuffer2, int32_t* ___numRemainingEvents3, bool ___leaveEventInBuffer4, const RuntimeMethod* method)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
InputEventBuffer_AdvanceToNextEvent_m2A711A2AA87D26A027FFE4EFD01EBD296EE0B283(_thisAdjusted, ___currentReadPos0, ___currentWritePos1, ___numEventsRetainedInBuffer2, ___numRemainingEvents3, ___leaveEventInBuffer4, method);
}
// System.Collections.Generic.IEnumerator`1<UnityEngine.InputSystem.LowLevel.InputEventPtr> UnityEngine.InputSystem.LowLevel.InputEventBuffer::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventBuffer_GetEnumerator_m8E92BD380FD5C4F755EA09A6F29503A96063B8E9 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
// return new Enumerator(this);
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE L_0 = (*(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)__this);
Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB L_1;
memset((&L_1), 0, sizeof(L_1));
Enumerator__ctor_m7E8F2DD4EF823AAE6BED80246AB47FA28D6CBF25((&L_1), L_0, /*hidden argument*/NULL);
Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB L_2 = L_1;
RuntimeObject* L_3 = Box(Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB_il2cpp_TypeInfo_var, &L_2);
V_0 = (RuntimeObject*)L_3;
goto IL_0014;
}
IL_0014:
{
// }
RuntimeObject* L_4 = V_0;
return L_4;
}
}
IL2CPP_EXTERN_C RuntimeObject* InputEventBuffer_GetEnumerator_m8E92BD380FD5C4F755EA09A6F29503A96063B8E9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
RuntimeObject* _returnValue;
_returnValue = InputEventBuffer_GetEnumerator_m8E92BD380FD5C4F755EA09A6F29503A96063B8E9(_thisAdjusted, method);
return _returnValue;
}
// System.Collections.IEnumerator UnityEngine.InputSystem.LowLevel.InputEventBuffer::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventBuffer_System_Collections_IEnumerable_GetEnumerator_mFBF67C909C77C7FF68058E221AC01ED74CB2D340 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
// return GetEnumerator();
RuntimeObject* L_0;
L_0 = InputEventBuffer_GetEnumerator_m8E92BD380FD5C4F755EA09A6F29503A96063B8E9(__this, NULL);
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
// }
RuntimeObject* L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C RuntimeObject* InputEventBuffer_System_Collections_IEnumerable_GetEnumerator_mFBF67C909C77C7FF68058E221AC01ED74CB2D340_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
RuntimeObject* _returnValue;
_returnValue = InputEventBuffer_System_Collections_IEnumerable_GetEnumerator_mFBF67C909C77C7FF68058E221AC01ED74CB2D340(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_Dispose_mC0CD0CC5F58859A221221F1A3FAE84B8EFB5CFF3 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7CBC829EB9D45B990872742C9C460CF80137D155);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// if (!m_WeOwnTheBuffer)
bool L_0 = __this->___m_WeOwnTheBuffer_4;
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0010;
}
}
{
// return;
goto IL_0048;
}
IL_0010:
{
// Debug.Assert(m_Buffer.IsCreated, "Buffer has not been created");
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_2 = (&__this->___m_Buffer_1);
bool L_3;
L_3 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081(L_2, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806(L_3, _stringLiteral7CBC829EB9D45B990872742C9C460CF80137D155, NULL);
// m_Buffer.Dispose();
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_4 = (&__this->___m_Buffer_1);
NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA(L_4, NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var);
// m_WeOwnTheBuffer = false;
__this->___m_WeOwnTheBuffer_4 = (bool)0;
// m_SizeInBytes = 0;
__this->___m_SizeInBytes_2 = ((int64_t)0);
// m_EventCount = 0;
__this->___m_EventCount_3 = 0;
}
IL_0048:
{
// }
return;
}
}
IL2CPP_EXTERN_C void InputEventBuffer_Dispose_mC0CD0CC5F58859A221221F1A3FAE84B8EFB5CFF3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
InputEventBuffer_Dispose_mC0CD0CC5F58859A221221F1A3FAE84B8EFB5CFF3(_thisAdjusted, method);
}
// UnityEngine.InputSystem.LowLevel.InputEventBuffer UnityEngine.InputSystem.LowLevel.InputEventBuffer::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE InputEventBuffer_Clone_mA9E1A893CAF0F4715708C5F20FDEA611F318433E (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_CopyFrom_mCF4D43C37F14A2904C5BA14973DDE501D965DA89_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE V_2;
memset((&V_2), 0, sizeof(V_2));
{
// var clone = new InputEventBuffer();
il2cpp_codegen_initobj((&V_0), sizeof(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE));
// if (m_Buffer.IsCreated)
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = (&__this->___m_Buffer_1);
bool L_1;
L_1 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081(L_0, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
V_1 = L_1;
bool L_2 = V_1;
if (!L_2)
{
goto IL_004e;
}
}
{
// clone.m_Buffer = new NativeArray<byte>(m_Buffer.Length, Allocator.Persistent);
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_3 = (&__this->___m_Buffer_1);
int32_t L_4;
L_4 = IL2CPP_NATIVEARRAY_GET_LENGTH((L_3)->___m_Length_1);
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_5;
memset((&L_5), 0, sizeof(L_5));
NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F((&L_5), L_4, 4, 1, /*hidden argument*/NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
(&V_0)->___m_Buffer_1 = L_5;
// clone.m_Buffer.CopyFrom(m_Buffer);
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_6 = (&(&V_0)->___m_Buffer_1);
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_7 = __this->___m_Buffer_1;
NativeArray_1_CopyFrom_mCF4D43C37F14A2904C5BA14973DDE501D965DA89(L_6, L_7, NativeArray_1_CopyFrom_mCF4D43C37F14A2904C5BA14973DDE501D965DA89_RuntimeMethod_var);
// clone.m_WeOwnTheBuffer = true;
(&V_0)->___m_WeOwnTheBuffer_4 = (bool)1;
}
IL_004e:
{
// clone.m_SizeInBytes = m_SizeInBytes;
int64_t L_8 = __this->___m_SizeInBytes_2;
(&V_0)->___m_SizeInBytes_2 = L_8;
// clone.m_EventCount = m_EventCount;
int32_t L_9 = __this->___m_EventCount_3;
(&V_0)->___m_EventCount_3 = L_9;
// return clone;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE L_10 = V_0;
V_2 = L_10;
goto IL_006c;
}
IL_006c:
{
// }
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE L_11 = V_2;
return L_11;
}
}
IL2CPP_EXTERN_C InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE InputEventBuffer_Clone_mA9E1A893CAF0F4715708C5F20FDEA611F318433E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE _returnValue;
_returnValue = InputEventBuffer_Clone_mA9E1A893CAF0F4715708C5F20FDEA611F318433E(_thisAdjusted, method);
return _returnValue;
}
// System.Object UnityEngine.InputSystem.LowLevel.InputEventBuffer::System.ICloneable.Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventBuffer_System_ICloneable_Clone_m561F47611001D3FD27F0EFE00F6B35419588FE8E (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
// return Clone();
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE L_0;
L_0 = InputEventBuffer_Clone_mA9E1A893CAF0F4715708C5F20FDEA611F318433E(__this, NULL);
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE L_1 = L_0;
RuntimeObject* L_2 = Box(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_il2cpp_TypeInfo_var, &L_1);
V_0 = L_2;
goto IL_000f;
}
IL_000f:
{
// }
RuntimeObject* L_3 = V_0;
return L_3;
}
}
IL2CPP_EXTERN_C RuntimeObject* InputEventBuffer_System_ICloneable_Clone_m561F47611001D3FD27F0EFE00F6B35419588FE8E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
RuntimeObject* _returnValue;
_returnValue = InputEventBuffer_System_ICloneable_Clone_m561F47611001D3FD27F0EFE00F6B35419588FE8E(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::.ctor(UnityEngine.InputSystem.LowLevel.InputEventBuffer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m7E8F2DD4EF823AAE6BED80246AB47FA28D6CBF25 (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE ___buffer0, const RuntimeMethod* method)
{
{
// m_Buffer = buffer.bufferPtr;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_0;
L_0 = InputEventBuffer_get_bufferPtr_m7C5E03ED8F0433B3CD4F019DFADDE3983472DACB((&___buffer0), NULL);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1;
L_1 = InputEventPtr_op_Implicit_m404BDC6FF1FB748C1365FFEA330CDDD6579A2E6A(L_0, NULL);
__this->___m_Buffer_0 = L_1;
// m_EventCount = buffer.m_EventCount;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE L_2 = ___buffer0;
int32_t L_3 = L_2.___m_EventCount_3;
__this->___m_EventCount_1 = L_3;
// m_CurrentEvent = null;
__this->___m_CurrentEvent_2 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((uintptr_t)0);
// m_CurrentIndex = 0;
__this->___m_CurrentIndex_3 = 0;
// }
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m7E8F2DD4EF823AAE6BED80246AB47FA28D6CBF25_AdjustorThunk (RuntimeObject* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE ___buffer0, const RuntimeMethod* method)
{
Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB*>(__this + _offset);
Enumerator__ctor_m7E8F2DD4EF823AAE6BED80246AB47FA28D6CBF25(_thisAdjusted, ___buffer0, method);
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mC216F4A5B10FB25897447B0160DFA944959645DB (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAF8D2CB665353A2FDB49DC87BFE7DEE6E860AA31);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
{
// if (m_CurrentIndex == m_EventCount)
int32_t L_0 = __this->___m_CurrentIndex_3;
int32_t L_1 = __this->___m_EventCount_1;
V_0 = (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_0017;
}
}
{
// return false;
V_1 = (bool)0;
goto IL_0093;
}
IL_0017:
{
// if (m_CurrentEvent == null)
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = __this->___m_CurrentEvent_2;
V_2 = (bool)((((intptr_t)L_3) == ((intptr_t)((uintptr_t)0)))? 1 : 0);
bool L_4 = V_2;
if (!L_4)
{
goto IL_0042;
}
}
{
// m_CurrentEvent = m_Buffer;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_5 = __this->___m_Buffer_0;
__this->___m_CurrentEvent_2 = L_5;
// return m_CurrentEvent != null;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_6 = __this->___m_CurrentEvent_2;
V_1 = (bool)((((int32_t)((((intptr_t)L_6) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0093;
}
IL_0042:
{
// Debug.Assert(m_CurrentEvent != null, "Current event must not be null");
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_7 = __this->___m_CurrentEvent_2;
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_m9CA35857A4FF29506840C572F2C7BA233805B806((bool)((((int32_t)((((intptr_t)L_7) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0), _stringLiteralAF8D2CB665353A2FDB49DC87BFE7DEE6E860AA31, NULL);
// ++m_CurrentIndex;
int32_t L_8 = __this->___m_CurrentIndex_3;
__this->___m_CurrentIndex_3 = ((int32_t)il2cpp_codegen_add(L_8, 1));
// if (m_CurrentIndex == m_EventCount)
int32_t L_9 = __this->___m_CurrentIndex_3;
int32_t L_10 = __this->___m_EventCount_1;
V_3 = (bool)((((int32_t)L_9) == ((int32_t)L_10))? 1 : 0);
bool L_11 = V_3;
if (!L_11)
{
goto IL_007e;
}
}
{
// return false;
V_1 = (bool)0;
goto IL_0093;
}
IL_007e:
{
// m_CurrentEvent = InputEvent.GetNextInMemory(m_CurrentEvent);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_12 = __this->___m_CurrentEvent_2;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_13;
L_13 = InputEvent_GetNextInMemory_m236F5B3C61DB3F992C08B3A8366AE0BD9EDE2FAA(L_12, NULL);
__this->___m_CurrentEvent_2 = L_13;
// return true;
V_1 = (bool)1;
goto IL_0093;
}
IL_0093:
{
// }
bool L_14 = V_1;
return L_14;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mC216F4A5B10FB25897447B0160DFA944959645DB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB*>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_mC216F4A5B10FB25897447B0160DFA944959645DB(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m15A8D8A03F18E0BBFEB037431DF8AEA7DD13AB9A (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method)
{
{
// m_CurrentEvent = null;
__this->___m_CurrentEvent_2 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((uintptr_t)0);
// m_CurrentIndex = 0;
__this->___m_CurrentIndex_3 = 0;
// }
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Reset_m15A8D8A03F18E0BBFEB037431DF8AEA7DD13AB9A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB*>(__this + _offset);
Enumerator_Reset_m15A8D8A03F18E0BBFEB037431DF8AEA7DD13AB9A(_thisAdjusted, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mAA913AB7EB32CD2968F0CE0F6419415E4DB4CC61 (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method)
{
{
// }
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mAA913AB7EB32CD2968F0CE0F6419415E4DB4CC61_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB*>(__this + _offset);
Enumerator_Dispose_mAA913AB7EB32CD2968F0CE0F6419415E4DB4CC61(_thisAdjusted, method);
}
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 Enumerator_get_Current_mA52496728906BA25D2755DD0668DE3D249015C6C (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method)
{
{
// public InputEventPtr Current => m_CurrentEvent;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = __this->___m_CurrentEvent_2;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1;
L_1 = InputEventPtr_op_Implicit_m599D70C2004FF6B28F13469EDB1421224095F432(L_0, NULL);
return L_1;
}
}
IL2CPP_EXTERN_C InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 Enumerator_get_Current_mA52496728906BA25D2755DD0668DE3D249015C6C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB*>(__this + _offset);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 _returnValue;
_returnValue = Enumerator_get_Current_mA52496728906BA25D2755DD0668DE3D249015C6C(_thisAdjusted, method);
return _returnValue;
}
// System.Object UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_m165767DDDDCC3984D08238C5201A8D4230A18364 (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// object IEnumerator.Current => Current;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_0;
L_0 = Enumerator_get_Current_mA52496728906BA25D2755DD0668DE3D249015C6C(__this, NULL);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1 = L_0;
RuntimeObject* L_2 = Box(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_il2cpp_TypeInfo_var, &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_m165767DDDDCC3984D08238C5201A8D4230A18364_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB*>(__this + _offset);
RuntimeObject* _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m165767DDDDCC3984D08238C5201A8D4230A18364(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.LowLevel.InputEventListener UnityEngine.InputSystem.LowLevel.InputEventListener::op_Addition(UnityEngine.InputSystem.LowLevel.InputEventListener,System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D InputEventListener_op_Addition_m122B39C12D9ADEDFA730C3B3A0B2530AA23172A2 (InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D ____0, Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___callback1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* V_1 = NULL;
bool V_2 = false;
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D V_3;
memset((&V_3), 0, sizeof(V_3));
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D V_4;
memset((&V_4), 0, sizeof(V_4));
{
// if (callback == null)
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_0 = ___callback1;
V_0 = (bool)((((RuntimeObject*)(Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0014;
}
}
{
// throw new ArgumentNullException(nameof(callback));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDC71B380AFF23A38F6029B32B61C6943CB960350)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventListener_op_Addition_m122B39C12D9ADEDFA730C3B3A0B2530AA23172A2_RuntimeMethod_var)));
}
IL_0014:
{
// lock (InputSystem.s_Manager)
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_3 = ((InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var))->___s_Manager_2;
V_1 = L_3;
V_2 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0033:
{// begin finally (depth: 1)
{
bool L_4 = V_2;
if (!L_4)
{
goto IL_003d;
}
}
{
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_5 = V_1;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_5, NULL);
}
IL_003d:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_6 = V_1;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_6, (&V_2), NULL);
// InputSystem.s_Manager.onEvent += callback;
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_7 = ((InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var))->___s_Manager_2;
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_8 = ___callback1;
NullCheck(L_7);
InputManager_add_onEvent_mFC20DA985A46A223DE9A1ADFFD39A5DB0083130C(L_7, L_8, NULL);
goto IL_003e;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_003e:
{
// return default;
il2cpp_codegen_initobj((&V_3), sizeof(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D));
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_9 = V_3;
V_4 = L_9;
goto IL_004b;
}
IL_004b:
{
// }
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_10 = V_4;
return L_10;
}
}
// UnityEngine.InputSystem.LowLevel.InputEventListener UnityEngine.InputSystem.LowLevel.InputEventListener::op_Subtraction(UnityEngine.InputSystem.LowLevel.InputEventListener,System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D InputEventListener_op_Subtraction_m64F5559B543948C414AC7A0D3E7BA1FE95743328 (InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D ____0, Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___callback1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* V_1 = NULL;
bool V_2 = false;
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D V_3;
memset((&V_3), 0, sizeof(V_3));
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D V_4;
memset((&V_4), 0, sizeof(V_4));
{
// if (callback == null)
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_0 = ___callback1;
V_0 = (bool)((((RuntimeObject*)(Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0014;
}
}
{
// throw new ArgumentNullException(nameof(callback));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDC71B380AFF23A38F6029B32B61C6943CB960350)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventListener_op_Subtraction_m64F5559B543948C414AC7A0D3E7BA1FE95743328_RuntimeMethod_var)));
}
IL_0014:
{
// lock (InputSystem.s_Manager)
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_3 = ((InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var))->___s_Manager_2;
V_1 = L_3;
V_2 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0033:
{// begin finally (depth: 1)
{
bool L_4 = V_2;
if (!L_4)
{
goto IL_003d;
}
}
{
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_5 = V_1;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_5, NULL);
}
IL_003d:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_6 = V_1;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_6, (&V_2), NULL);
// InputSystem.s_Manager.onEvent -= callback;
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_7 = ((InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var))->___s_Manager_2;
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_8 = ___callback1;
NullCheck(L_7);
InputManager_remove_onEvent_mA84D2D17A18F63251F21D05802E2F75BC811E8DD(L_7, L_8, NULL);
goto IL_003e;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_003e:
{
// return default;
il2cpp_codegen_initobj((&V_3), sizeof(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D));
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_9 = V_3;
V_4 = L_9;
goto IL_004b;
}
IL_004b:
{
// }
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_10 = V_4;
return L_10;
}
}
// System.IDisposable UnityEngine.InputSystem.LowLevel.InputEventListener::Subscribe(System.IObserver`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventListener_Subscribe_m3ADB3B6392CD85DA61E506AA7D698D4F2E7585D0 (InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D* __this, RuntimeObject* ___observer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_AppendWithCapacity_m7D120AE2B1401CD22AEE9DC9662CCC0DC84BBB60_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
RuntimeObject* V_2 = NULL;
{
// if (s_ObserverState == null)
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_0 = ((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState_0;
V_0 = (bool)((((RuntimeObject*)(ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0017;
}
}
{
// s_ObserverState = new ObserverState();
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_2 = (ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8*)il2cpp_codegen_object_new(ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8_il2cpp_TypeInfo_var);
NullCheck(L_2);
ObserverState__ctor_mAFCE13C0DF1AE39D4F4E72779FF84824706A48B2(L_2, NULL);
((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState_0), (void*)L_2);
}
IL_0017:
{
// if (s_ObserverState.observers.length == 0)
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_3 = ((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState_0;
NullCheck(L_3);
InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* L_4 = (&L_3->___observers_0);
int32_t L_5 = L_4->___length_0;
V_1 = (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
bool L_6 = V_1;
if (!L_6)
{
goto IL_0042;
}
}
{
// InputSystem.s_Manager.onEvent += s_ObserverState.onEventDelegate;
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_7 = ((InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var))->___s_Manager_2;
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_8 = ((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState_0;
NullCheck(L_8);
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_9 = L_8->___onEventDelegate_1;
NullCheck(L_7);
InputManager_add_onEvent_mFC20DA985A46A223DE9A1ADFFD39A5DB0083130C(L_7, L_9, NULL);
}
IL_0042:
{
// s_ObserverState.observers.AppendWithCapacity(observer);
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_10 = ((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState_0;
NullCheck(L_10);
InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* L_11 = (&L_10->___observers_0);
RuntimeObject* L_12 = ___observer0;
int32_t L_13;
L_13 = InlinedArray_1_AppendWithCapacity_m7D120AE2B1401CD22AEE9DC9662CCC0DC84BBB60(L_11, L_12, ((int32_t)10), InlinedArray_1_AppendWithCapacity_m7D120AE2B1401CD22AEE9DC9662CCC0DC84BBB60_RuntimeMethod_var);
// return new DisposableObserver { observer = observer };
DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73* L_14 = (DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73*)il2cpp_codegen_object_new(DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73_il2cpp_TypeInfo_var);
NullCheck(L_14);
DisposableObserver__ctor_mAF66BFE27ECE1AFC1C6B2E29B29AF9359C25926F(L_14, NULL);
DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73* L_15 = L_14;
RuntimeObject* L_16 = ___observer0;
NullCheck(L_15);
L_15->___observer_0 = L_16;
Il2CppCodeGenWriteBarrier((void**)(&L_15->___observer_0), (void*)L_16);
V_2 = L_15;
goto IL_0064;
}
IL_0064:
{
// }
RuntimeObject* L_17 = V_2;
return L_17;
}
}
IL2CPP_EXTERN_C RuntimeObject* InputEventListener_Subscribe_m3ADB3B6392CD85DA61E506AA7D698D4F2E7585D0_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___observer0, const RuntimeMethod* method)
{
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D*>(__this + _offset);
RuntimeObject* _returnValue;
_returnValue = InputEventListener_Subscribe_m3ADB3B6392CD85DA61E506AA7D698D4F2E7585D0(_thisAdjusted, ___observer0, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.LowLevel.InputEventListener/ObserverState::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObserverState__ctor_mAFCE13C0DF1AE39D4F4E72779FF84824706A48B2 (ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObserverState_U3C_ctorU3Eb__2_0_m614AC79FB380B888191060E784E5A18A3A4FF29F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public ObserverState()
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
// onEventDelegate =
// (eventPtr, device) =>
// {
// for (var i = observers.length - 1; i >= 0; --i)
// observers[i].OnNext(eventPtr);
// };
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_0 = (Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA*)il2cpp_codegen_object_new(Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var);
NullCheck(L_0);
Action_2__ctor_m43B5BA62418FAB32773B12CEFF46A46855BF5B10(L_0, __this, (intptr_t)((void*)ObserverState_U3C_ctorU3Eb__2_0_m614AC79FB380B888191060E784E5A18A3A4FF29F_RuntimeMethod_var), NULL);
__this->___onEventDelegate_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___onEventDelegate_1), (void*)L_0);
// }
return;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventListener/ObserverState::<.ctor>b__2_0(UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObserverState_U3C_ctorU3Eb__2_0_m614AC79FB380B888191060E784E5A18A3A4FF29F (ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___eventPtr0, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_get_Item_m9028E5429BC2E916894F7F533B18E2D628C53CD9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
{
// for (var i = observers.length - 1; i >= 0; --i)
InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* L_0 = (&__this->___observers_0);
int32_t L_1 = L_0->___length_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
goto IL_0028;
}
IL_0011:
{
// observers[i].OnNext(eventPtr);
InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* L_2 = (&__this->___observers_0);
int32_t L_3 = V_0;
RuntimeObject* L_4;
L_4 = InlinedArray_1_get_Item_m9028E5429BC2E916894F7F533B18E2D628C53CD9(L_2, L_3, InlinedArray_1_get_Item_m9028E5429BC2E916894F7F533B18E2D628C53CD9_RuntimeMethod_var);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_5 = ___eventPtr0;
NullCheck(L_4);
InterfaceActionInvoker1< InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 >::Invoke(0 /* System.Void System.IObserver`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>::OnNext(T) */, IObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5_il2cpp_TypeInfo_var, L_4, L_5);
// for (var i = observers.length - 1; i >= 0; --i)
int32_t L_6 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_6, 1));
}
IL_0028:
{
// for (var i = observers.length - 1; i >= 0; --i)
int32_t L_7 = V_0;
V_1 = (bool)((((int32_t)((((int32_t)L_7) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_8 = V_1;
if (L_8)
{
goto IL_0011;
}
}
{
// };
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.LowLevel.InputEventListener/DisposableObserver::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DisposableObserver_Dispose_mDFD3D04615139DC21FB327966A66453EA6F7B81B (DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_RemoveAtWithCapacity_m8C65A9998195061436978BFFC7624D99DFAA3976_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputArrayExtensions_IndexOfReference_TisIObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5_mF3D43CA41C7D31102F3943B9522A3FC16074AA15_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
bool V_2 = false;
{
// var index = s_ObserverState.observers.IndexOfReference(observer);
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_0 = ((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState_0;
NullCheck(L_0);
InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5 L_1 = L_0->___observers_0;
RuntimeObject* L_2 = __this->___observer_0;
int32_t L_3;
L_3 = InputArrayExtensions_IndexOfReference_TisIObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5_mF3D43CA41C7D31102F3943B9522A3FC16074AA15(L_1, L_2, InputArrayExtensions_IndexOfReference_TisIObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5_mF3D43CA41C7D31102F3943B9522A3FC16074AA15_RuntimeMethod_var);
V_0 = L_3;
// if (index >= 0)
int32_t L_4 = V_0;
V_1 = (bool)((((int32_t)((((int32_t)L_4) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_5 = V_1;
if (!L_5)
{
goto IL_0033;
}
}
{
// s_ObserverState.observers.RemoveAtWithCapacity(index);
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_6 = ((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState_0;
NullCheck(L_6);
InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* L_7 = (&L_6->___observers_0);
int32_t L_8 = V_0;
InlinedArray_1_RemoveAtWithCapacity_m8C65A9998195061436978BFFC7624D99DFAA3976(L_7, L_8, InlinedArray_1_RemoveAtWithCapacity_m8C65A9998195061436978BFFC7624D99DFAA3976_RuntimeMethod_var);
}
IL_0033:
{
// if (s_ObserverState.observers.length == 0)
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_9 = ((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState_0;
NullCheck(L_9);
InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* L_10 = (&L_9->___observers_0);
int32_t L_11 = L_10->___length_0;
V_2 = (bool)((((int32_t)L_11) == ((int32_t)0))? 1 : 0);
bool L_12 = V_2;
if (!L_12)
{
goto IL_005e;
}
}
{
// InputSystem.s_Manager.onEvent -= s_ObserverState.onEventDelegate;
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_13 = ((InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var))->___s_Manager_2;
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_14 = ((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState_0;
NullCheck(L_14);
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_15 = L_14->___onEventDelegate_1;
NullCheck(L_13);
InputManager_remove_onEvent_mA84D2D17A18F63251F21D05802E2F75BC811E8DD(L_13, L_15, NULL);
}
IL_005e:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventListener/DisposableObserver::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DisposableObserver__ctor_mAF66BFE27ECE1AFC1C6B2E29B29AF9359C25926F (DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::.ctor(UnityEngine.InputSystem.LowLevel.InputEvent*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, const RuntimeMethod* method)
{
{
// m_EventPtr = eventPtr;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___eventPtr0;
__this->___m_EventPtr_0 = L_0;
// }
return;
}
}
IL2CPP_EXTERN_C void InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_AdjustorThunk (RuntimeObject* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0(_thisAdjusted, ___eventPtr0, method);
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::get_valid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
{
// public bool valid => m_EventPtr != null;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = __this->___m_EventPtr_0;
return (bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
bool _returnValue;
_returnValue = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::get_handled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_get_handled_m6981E3A01858EB383B2420DA720DE82BF7A8ADFF (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
{
// if (!valid)
bool L_0;
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0012;
}
}
{
// return false;
V_1 = (bool)0;
goto IL_0020;
}
IL_0012:
{
// return m_EventPtr->handled;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = __this->___m_EventPtr_0;
bool L_3;
L_3 = InputEvent_get_handled_m354E53F68FA517142B4A53287BF738545F792468((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_2, NULL);
V_1 = L_3;
goto IL_0020;
}
IL_0020:
{
// }
bool L_4 = V_1;
return L_4;
}
}
IL2CPP_EXTERN_C bool InputEventPtr_get_handled_m6981E3A01858EB383B2420DA720DE82BF7A8ADFF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
bool _returnValue;
_returnValue = InputEventPtr_get_handled_m6981E3A01858EB383B2420DA720DE82BF7A8ADFF(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_handled(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_handled_m855A75D4B98470B0A814FB8627608595FC9E9EF0 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, bool ___value0, const RuntimeMethod* method)
{
bool V_0 = false;
{
// if (!valid)
bool L_0;
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0019;
}
}
{
// throw new InvalidOperationException("The InputEventPtr is not valid.");
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_2);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_set_handled_m855A75D4B98470B0A814FB8627608595FC9E9EF0_RuntimeMethod_var)));
}
IL_0019:
{
// m_EventPtr->handled = value;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = __this->___m_EventPtr_0;
bool L_4 = ___value0;
InputEvent_set_handled_mF2F5A1872BA2D7F585F1275825B622342EB93A16((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_3, L_4, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void InputEventPtr_set_handled_m855A75D4B98470B0A814FB8627608595FC9E9EF0_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
InputEventPtr_set_handled_m855A75D4B98470B0A814FB8627608595FC9E9EF0(_thisAdjusted, ___value0, method);
}
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_get_id_mED485DFF0A720B0A27201BAFD554D42A8FE527FB (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t V_1 = 0;
{
// if (!valid)
bool L_0;
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0012;
}
}
{
// return 0;
V_1 = 0;
goto IL_0020;
}
IL_0012:
{
// return m_EventPtr->eventId;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = __this->___m_EventPtr_0;
int32_t L_3;
L_3 = InputEvent_get_eventId_mD480444BF28136F8FF8288C83C4489B9A6B992A0((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_2, NULL);
V_1 = L_3;
goto IL_0020;
}
IL_0020:
{
// }
int32_t L_4 = V_1;
return L_4;
}
}
IL2CPP_EXTERN_C int32_t InputEventPtr_get_id_mED485DFF0A720B0A27201BAFD554D42A8FE527FB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
int32_t _returnValue;
_returnValue = InputEventPtr_get_id_mED485DFF0A720B0A27201BAFD554D42A8FE527FB(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_id(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_id_m8CCBE3CAF92578F56613E99AAA4334BCCFCFD40B (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, int32_t ___value0, const RuntimeMethod* method)
{
bool V_0 = false;
{
// if (!valid)
bool L_0;
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0019;
}
}
{
// throw new InvalidOperationException("The InputEventPtr is not valid.");
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_2);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_set_id_m8CCBE3CAF92578F56613E99AAA4334BCCFCFD40B_RuntimeMethod_var)));
}
IL_0019:
{
// m_EventPtr->eventId = value;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = __this->___m_EventPtr_0;
int32_t L_4 = ___value0;
InputEvent_set_eventId_mD95C6CF817314B3C83EA67E5B7A2898ADEE8BE74((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_3, L_4, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void InputEventPtr_set_id_m8CCBE3CAF92578F56613E99AAA4334BCCFCFD40B_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
InputEventPtr_set_id_m8CCBE3CAF92578F56613E99AAA4334BCCFCFD40B(_thisAdjusted, ___value0, method);
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventPtr::get_type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
bool V_0 = false;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_1;
memset((&V_1), 0, sizeof(V_1));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_2;
memset((&V_2), 0, sizeof(V_2));
{
// if (!valid)
bool L_0;
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001a;
}
}
{
// return new FourCC();
il2cpp_codegen_initobj((&V_1), sizeof(FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_2 = V_1;
V_2 = L_2;
goto IL_0028;
}
IL_001a:
{
// return m_EventPtr->type;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = __this->___m_EventPtr_0;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_4;
L_4 = InputEvent_get_type_m43737750FDCCFDF4FC208C9AFFCB5E9D2672733D((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_3, NULL);
V_2 = L_4;
goto IL_0028;
}
IL_0028:
{
// }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_5 = V_2;
return L_5;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69(_thisAdjusted, method);
return _returnValue;
}
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_sizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_sizeInBytes_mE060F5A7176AAF8ED749DB4A3DC7976249716597 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
bool V_0 = false;
uint32_t V_1 = 0;
{
// if (!valid)
bool L_0;
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0012;
}
}
{
// return 0;
V_1 = 0;
goto IL_0020;
}
IL_0012:
{
// return m_EventPtr->sizeInBytes;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = __this->___m_EventPtr_0;
uint32_t L_3;
L_3 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_2, NULL);
V_1 = L_3;
goto IL_0020;
}
IL_0020:
{
// }
uint32_t L_4 = V_1;
return L_4;
}
}
IL2CPP_EXTERN_C uint32_t InputEventPtr_get_sizeInBytes_mE060F5A7176AAF8ED749DB4A3DC7976249716597_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
uint32_t _returnValue;
_returnValue = InputEventPtr_get_sizeInBytes_mE060F5A7176AAF8ED749DB4A3DC7976249716597(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_deviceId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_get_deviceId_mD8B68EDC37D90A69EE67A47B3E17F4D80D4620D3 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t V_1 = 0;
{
// if (!valid)
bool L_0;
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0012;
}
}
{
// return InputDevice.InvalidDeviceId;
V_1 = 0;
goto IL_0020;
}
IL_0012:
{
// return m_EventPtr->deviceId;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = __this->___m_EventPtr_0;
int32_t L_3;
L_3 = InputEvent_get_deviceId_m42DC07D2AB46922D79E0A3B9E31FA31E0FD90B6C((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_2, NULL);
V_1 = L_3;
goto IL_0020;
}
IL_0020:
{
// }
int32_t L_4 = V_1;
return L_4;
}
}
IL2CPP_EXTERN_C int32_t InputEventPtr_get_deviceId_mD8B68EDC37D90A69EE67A47B3E17F4D80D4620D3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
int32_t _returnValue;
_returnValue = InputEventPtr_get_deviceId_mD8B68EDC37D90A69EE67A47B3E17F4D80D4620D3(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_deviceId(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_deviceId_mDC5B90109CDEECE63A5F1310379DB8B1B31D2B97 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, int32_t ___value0, const RuntimeMethod* method)
{
bool V_0 = false;
{
// if (!valid)
bool L_0;
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0019;
}
}
{
// throw new InvalidOperationException("The InputEventPtr is not valid.");
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_2);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_set_deviceId_mDC5B90109CDEECE63A5F1310379DB8B1B31D2B97_RuntimeMethod_var)));
}
IL_0019:
{
// m_EventPtr->deviceId = value;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = __this->___m_EventPtr_0;
int32_t L_4 = ___value0;
InputEvent_set_deviceId_mED2CE48AD37BA360710E9C5B48D46D2A18A4BDDF((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_3, L_4, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void InputEventPtr_set_deviceId_mDC5B90109CDEECE63A5F1310379DB8B1B31D2B97_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
InputEventPtr_set_deviceId_mDC5B90109CDEECE63A5F1310379DB8B1B31D2B97(_thisAdjusted, ___value0, method);
}
// System.Double UnityEngine.InputSystem.LowLevel.InputEventPtr::get_time()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEventPtr_get_time_mD2C90C66C334E767E2F9B5B9A3711B500027B185 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
double G_B3_0 = 0.0;
{
// get => valid ? m_EventPtr->time : 0.0;
bool L_0;
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
if (L_0)
{
goto IL_0013;
}
}
{
G_B3_0 = (0.0);
goto IL_001e;
}
IL_0013:
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = __this->___m_EventPtr_0;
double L_2;
L_2 = InputEvent_get_time_mD4A6C01A2B7BFB9ECAD089197C573886E3F70ADB((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1, NULL);
G_B3_0 = L_2;
}
IL_001e:
{
return G_B3_0;
}
}
IL2CPP_EXTERN_C double InputEventPtr_get_time_mD2C90C66C334E767E2F9B5B9A3711B500027B185_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
double _returnValue;
_returnValue = InputEventPtr_get_time_mD2C90C66C334E767E2F9B5B9A3711B500027B185(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_time(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_time_m6058E3EFFAC41CA39B2F16CB8F184F03CDEE6E13 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, double ___value0, const RuntimeMethod* method)
{
bool V_0 = false;
{
// if (!valid)
bool L_0;
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0019;
}
}
{
// throw new InvalidOperationException("The InputEventPtr is not valid.");
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_2);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_set_time_m6058E3EFFAC41CA39B2F16CB8F184F03CDEE6E13_RuntimeMethod_var)));
}
IL_0019:
{
// m_EventPtr->time = value;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = __this->___m_EventPtr_0;
double L_4 = ___value0;
InputEvent_set_time_m210F97B604C0EEB53FC6CC4D57A10373FC081A0F((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_3, L_4, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void InputEventPtr_set_time_m6058E3EFFAC41CA39B2F16CB8F184F03CDEE6E13_AdjustorThunk (RuntimeObject* __this, double ___value0, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
InputEventPtr_set_time_m6058E3EFFAC41CA39B2F16CB8F184F03CDEE6E13(_thisAdjusted, ___value0, method);
}
// System.Double UnityEngine.InputSystem.LowLevel.InputEventPtr::get_internalTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEventPtr_get_internalTime_mB0A20BAF50AC9842691B0495A766A18B05CB4781 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
double G_B3_0 = 0.0;
{
// get => valid ? m_EventPtr->internalTime : 0.0;
bool L_0;
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
if (L_0)
{
goto IL_0013;
}
}
{
G_B3_0 = (0.0);
goto IL_001e;
}
IL_0013:
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = __this->___m_EventPtr_0;
double L_2;
L_2 = InputEvent_get_internalTime_m6EBE99BC7B0CD35B2B3670A9B5DE003AB3FDA708((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1, NULL);
G_B3_0 = L_2;
}
IL_001e:
{
return G_B3_0;
}
}
IL2CPP_EXTERN_C double InputEventPtr_get_internalTime_mB0A20BAF50AC9842691B0495A766A18B05CB4781_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
double _returnValue;
_returnValue = InputEventPtr_get_internalTime_mB0A20BAF50AC9842691B0495A766A18B05CB4781(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_internalTime(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_internalTime_mBD0B465C6882DD13F5FA3AAE487C0FA8A68E3810 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, double ___value0, const RuntimeMethod* method)
{
bool V_0 = false;
{
// if (!valid)
bool L_0;
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0019;
}
}
{
// throw new InvalidOperationException("The InputEventPtr is not valid.");
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_2);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_set_internalTime_mBD0B465C6882DD13F5FA3AAE487C0FA8A68E3810_RuntimeMethod_var)));
}
IL_0019:
{
// m_EventPtr->internalTime = value;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = __this->___m_EventPtr_0;
double L_4 = ___value0;
InputEvent_set_internalTime_m914C4E1111E2A886D56B9D0A888ECE911F894980((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_3, L_4, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void InputEventPtr_set_internalTime_mBD0B465C6882DD13F5FA3AAE487C0FA8A68E3810_AdjustorThunk (RuntimeObject* __this, double ___value0, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
InputEventPtr_set_internalTime_mBD0B465C6882DD13F5FA3AAE487C0FA8A68E3810(_thisAdjusted, ___value0, method);
}
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::get_data()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
{
// public InputEvent* data => m_EventPtr;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = __this->___m_EventPtr_0;
return L_0;
}
}
IL2CPP_EXTERN_C InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _returnValue;
_returnValue = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventPtr::get_stateFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventPtr_get_stateFormat_m664BD225A799818C59844F7749CF52A0F588D9B4 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_2;
memset((&V_2), 0, sizeof(V_2));
bool V_3 = false;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_4;
memset((&V_4), 0, sizeof(V_4));
{
// var eventType = type;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
L_0 = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69(__this, NULL);
V_0 = L_0;
// if (eventType == StateEvent.Type)
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_2;
L_2 = FourCC_op_Implicit_mE034DF02D6986EFBFA80055EC94936D958CBEF66(((int32_t)1398030676), NULL);
bool L_3;
L_3 = FourCC_op_Equality_m1C2BB96D1AAB9E1D1B04D444F33C960D2502B674(L_1, L_2, NULL);
V_1 = L_3;
bool L_4 = V_1;
if (!L_4)
{
goto IL_002f;
}
}
{
// return StateEvent.FromUnchecked(this)->stateFormat;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_5 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* L_6;
L_6 = StateEvent_FromUnchecked_mED4304E6B802FC734B206A997DDC49B12FEBB29D(L_5, NULL);
NullCheck(L_6);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_7 = L_6->___stateFormat_3;
V_2 = L_7;
goto IL_007b;
}
IL_002f:
{
// if (eventType == DeltaStateEvent.Type)
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_8 = V_0;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_9;
L_9 = FourCC_op_Implicit_mE034DF02D6986EFBFA80055EC94936D958CBEF66(((int32_t)1145852993), NULL);
bool L_10;
L_10 = FourCC_op_Equality_m1C2BB96D1AAB9E1D1B04D444F33C960D2502B674(L_8, L_9, NULL);
V_3 = L_10;
bool L_11 = V_3;
if (!L_11)
{
goto IL_0056;
}
}
{
// return DeltaStateEvent.FromUnchecked(this)->stateFormat;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_12 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_13;
L_13 = DeltaStateEvent_FromUnchecked_m1E21FABAEA84C5B974E15AF1B91E09094A16EBC6(L_12, NULL);
NullCheck(L_13);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_14 = L_13->___stateFormat_2;
V_2 = L_14;
goto IL_007b;
}
IL_0056:
{
// throw new InvalidOperationException("Event must be a StateEvent or DeltaStateEvent but is " + this);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_15 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
V_4 = L_15;
String_t* L_16;
L_16 = InputEventPtr_ToString_m0A7FB7472629B3197AEF7DEEE9DD69A4A6989BC6((&V_4), NULL);
String_t* L_17;
L_17 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8F6CFBA1DD39F197A0470DD4831EDB73FF9AA184)), L_16, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_18 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_18);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_18, L_17, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_get_stateFormat_m664BD225A799818C59844F7749CF52A0F588D9B4_RuntimeMethod_var)));
}
IL_007b:
{
// }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_19 = V_2;
return L_19;
}
}
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventPtr_get_stateFormat_m664BD225A799818C59844F7749CF52A0F588D9B4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
_returnValue = InputEventPtr_get_stateFormat_m664BD225A799818C59844F7749CF52A0F588D9B4(_thisAdjusted, method);
return _returnValue;
}
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_stateSizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_stateSizeInBytes_m4C0F58AF9A43543102B597F3ACDCAED40D2B95AB (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_IsA_TisStateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F_mA9BDDBB4B234A924F74AB0343F6F3CFDBFF70327_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
uint32_t V_1 = 0;
bool V_2 = false;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_3;
memset((&V_3), 0, sizeof(V_3));
{
// if (IsA<StateEvent>())
bool L_0;
L_0 = InputEventPtr_IsA_TisStateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F_mA9BDDBB4B234A924F74AB0343F6F3CFDBFF70327(__this, InputEventPtr_IsA_TisStateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F_mA9BDDBB4B234A924F74AB0343F6F3CFDBFF70327_RuntimeMethod_var);
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_001e;
}
}
{
// return StateEvent.From(this)->stateSizeInBytes;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_2 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* L_3;
L_3 = StateEvent_From_m166403F2FFBE599A37B2D54799E2F27FE38331A9(L_2, NULL);
uint32_t L_4;
L_4 = StateEvent_get_stateSizeInBytes_m07E8E8D19DA4D9B58A23DC19680794764AE8FA21((StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F*)L_3, NULL);
V_1 = L_4;
goto IL_005f;
}
IL_001e:
{
// if (IsA<DeltaStateEvent>())
bool L_5;
L_5 = InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7(__this, InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_RuntimeMethod_var);
V_2 = L_5;
bool L_6 = V_2;
if (!L_6)
{
goto IL_003b;
}
}
{
// return DeltaStateEvent.From(this)->deltaStateSizeInBytes;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_7 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_8;
L_8 = DeltaStateEvent_From_mC63B48B86DC2A4699F37521D347FBC89A07C6E8F(L_7, NULL);
uint32_t L_9;
L_9 = DeltaStateEvent_get_deltaStateSizeInBytes_mF3F45D7A54B74C0B5403C5B4A6B42B31A78331E2((DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*)L_8, NULL);
V_1 = L_9;
goto IL_005f;
}
IL_003b:
{
// throw new InvalidOperationException("Event must be a StateEvent or DeltaStateEvent but is " + this);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_10 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
V_3 = L_10;
String_t* L_11;
L_11 = InputEventPtr_ToString_m0A7FB7472629B3197AEF7DEEE9DD69A4A6989BC6((&V_3), NULL);
String_t* L_12;
L_12 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8F6CFBA1DD39F197A0470DD4831EDB73FF9AA184)), L_11, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_13 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_13);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_13, L_12, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_get_stateSizeInBytes_m4C0F58AF9A43543102B597F3ACDCAED40D2B95AB_RuntimeMethod_var)));
}
IL_005f:
{
// }
uint32_t L_14 = V_1;
return L_14;
}
}
IL2CPP_EXTERN_C uint32_t InputEventPtr_get_stateSizeInBytes_m4C0F58AF9A43543102B597F3ACDCAED40D2B95AB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
uint32_t _returnValue;
_returnValue = InputEventPtr_get_stateSizeInBytes_m4C0F58AF9A43543102B597F3ACDCAED40D2B95AB(_thisAdjusted, method);
return _returnValue;
}
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_stateOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_stateOffset_mDB68F2BF9E2D3B80A98ED6B8DE02F1C3C55D69E4 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
uint32_t V_1 = 0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_2;
memset((&V_2), 0, sizeof(V_2));
{
// if (IsA<DeltaStateEvent>())
bool L_0;
L_0 = InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7(__this, InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_RuntimeMethod_var);
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_001e;
}
}
{
// return DeltaStateEvent.From(this)->stateOffset;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_2 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_3;
L_3 = DeltaStateEvent_From_mC63B48B86DC2A4699F37521D347FBC89A07C6E8F(L_2, NULL);
NullCheck(L_3);
uint32_t L_4 = L_3->___stateOffset_3;
V_1 = L_4;
goto IL_0042;
}
IL_001e:
{
// throw new InvalidOperationException("Event must be a DeltaStateEvent but is " + this);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_5 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
V_2 = L_5;
String_t* L_6;
L_6 = InputEventPtr_ToString_m0A7FB7472629B3197AEF7DEEE9DD69A4A6989BC6((&V_2), NULL);
String_t* L_7;
L_7 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5C82E0DD83FAB77ECA656BE8D48C1899B25B0815)), L_6, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_8 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_8);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_8, L_7, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_get_stateOffset_mDB68F2BF9E2D3B80A98ED6B8DE02F1C3C55D69E4_RuntimeMethod_var)));
}
IL_0042:
{
// }
uint32_t L_9 = V_1;
return L_9;
}
}
IL2CPP_EXTERN_C uint32_t InputEventPtr_get_stateOffset_mDB68F2BF9E2D3B80A98ED6B8DE02F1C3C55D69E4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
uint32_t _returnValue;
_returnValue = InputEventPtr_get_stateOffset_mDB68F2BF9E2D3B80A98ED6B8DE02F1C3C55D69E4(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventPtr::Next()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventPtr_Next_m401E057F7E6DAB9468F04D705173539E8876809D (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
bool V_0 = false;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_1;
memset((&V_1), 0, sizeof(V_1));
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_2;
memset((&V_2), 0, sizeof(V_2));
{
// if (!valid)
bool L_0;
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001a;
}
}
{
// return new InputEventPtr();
il2cpp_codegen_initobj((&V_1), sizeof(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0));
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_2 = V_1;
V_2 = L_2;
goto IL_002d;
}
IL_001a:
{
// return new InputEventPtr(InputEvent.GetNextInMemory(m_EventPtr));
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = __this->___m_EventPtr_0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_4;
L_4 = InputEvent_GetNextInMemory_m236F5B3C61DB3F992C08B3A8366AE0BD9EDE2FAA(L_3, NULL);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_5;
memset((&L_5), 0, sizeof(L_5));
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0((&L_5), L_4, /*hidden argument*/NULL);
V_2 = L_5;
goto IL_002d;
}
IL_002d:
{
// }
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_6 = V_2;
return L_6;
}
}
IL2CPP_EXTERN_C InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventPtr_Next_m401E057F7E6DAB9468F04D705173539E8876809D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 _returnValue;
_returnValue = InputEventPtr_Next_m401E057F7E6DAB9468F04D705173539E8876809D(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.InputSystem.LowLevel.InputEventPtr::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputEventPtr_ToString_m0A7FB7472629B3197AEF7DEEE9DD69A4A6989BC6 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174);
s_Il2CppMethodInitialized = true;
}
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
String_t* V_2 = NULL;
{
// if (!valid)
bool L_0;
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_0016;
}
}
{
// return "null";
V_2 = _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174;
goto IL_0032;
}
IL_0016:
{
// var eventPtr = *m_EventPtr;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = __this->___m_EventPtr_0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 L_3 = (*(InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_2);
V_0 = L_3;
// return eventPtr.ToString();
String_t* L_4;
L_4 = InputEvent_ToString_mA533C298897220B7CC970408EDBAB35D9870B27C((&V_0), NULL);
V_2 = L_4;
goto IL_0032;
}
IL_0032:
{
// }
String_t* L_5 = V_2;
return L_5;
}
}
IL2CPP_EXTERN_C String_t* InputEventPtr_ToString_m0A7FB7472629B3197AEF7DEEE9DD69A4A6989BC6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
String_t* _returnValue;
_returnValue = InputEventPtr_ToString_m0A7FB7472629B3197AEF7DEEE9DD69A4A6989BC6(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::ToPointer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_ToPointer_m2DE1A988A02CC6E632A5262095B719513F166CA6 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_0 = NULL;
{
// return this;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_0 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1;
L_1 = InputEventPtr_op_Implicit_m404BDC6FF1FB748C1365FFEA330CDDD6579A2E6A(L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
// }
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = V_0;
return L_2;
}
}
IL2CPP_EXTERN_C InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_ToPointer_m2DE1A988A02CC6E632A5262095B719513F166CA6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _returnValue;
_returnValue = InputEventPtr_ToPointer_m2DE1A988A02CC6E632A5262095B719513F166CA6(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::Equals(UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_Equals_mCFEB98EADAE1C3EAA45E6C0406EC31CEEEB0FC92 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___other0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
// return m_EventPtr == other.m_EventPtr || InputEvent.Equals(m_EventPtr, other.m_EventPtr);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = __this->___m_EventPtr_0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1 = ___other0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = L_1.___m_EventPtr_0;
if ((((intptr_t)L_0) == ((intptr_t)L_2)))
{
goto IL_0022;
}
}
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = __this->___m_EventPtr_0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_4 = ___other0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_5 = L_4.___m_EventPtr_0;
bool L_6;
L_6 = InputEvent_Equals_mB65BE566EA32A48CF40237611DC5E3C278C4C3CF(L_3, L_5, NULL);
G_B3_0 = ((int32_t)(L_6));
goto IL_0023;
}
IL_0022:
{
G_B3_0 = 1;
}
IL_0023:
{
V_0 = (bool)G_B3_0;
goto IL_0026;
}
IL_0026:
{
// }
bool L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C bool InputEventPtr_Equals_mCFEB98EADAE1C3EAA45E6C0406EC31CEEEB0FC92_AdjustorThunk (RuntimeObject* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___other0, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
bool _returnValue;
_returnValue = InputEventPtr_Equals_mCFEB98EADAE1C3EAA45E6C0406EC31CEEEB0FC92(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_Equals_m4B42D08FF9450733C111417BC49A24257F211DD8 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, RuntimeObject* ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
bool V_2 = false;
int32_t G_B5_0 = 0;
{
// if (ReferenceEquals(null, obj))
RuntimeObject* L_0 = ___obj0;
V_1 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_000d;
}
}
{
// return false;
V_2 = (bool)0;
goto IL_0029;
}
IL_000d:
{
// return obj is InputEventPtr ptr && Equals(ptr);
RuntimeObject* L_2 = ___obj0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_2, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_il2cpp_TypeInfo_var)))
{
goto IL_0025;
}
}
{
RuntimeObject* L_3 = ___obj0;
V_0 = ((*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)((InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)UnBox(L_3, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_il2cpp_TypeInfo_var))));
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_4 = V_0;
bool L_5;
L_5 = InputEventPtr_Equals_mCFEB98EADAE1C3EAA45E6C0406EC31CEEEB0FC92(__this, L_4, NULL);
G_B5_0 = ((int32_t)(L_5));
goto IL_0026;
}
IL_0025:
{
G_B5_0 = 0;
}
IL_0026:
{
V_2 = (bool)G_B5_0;
goto IL_0029;
}
IL_0029:
{
// }
bool L_6 = V_2;
return L_6;
}
}
IL2CPP_EXTERN_C bool InputEventPtr_Equals_m4B42D08FF9450733C111417BC49A24257F211DD8_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___obj0, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
bool _returnValue;
_returnValue = InputEventPtr_Equals_m4B42D08FF9450733C111417BC49A24257F211DD8(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventPtr::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_GetHashCode_m97B532D8E6CD524F78323A2F079F1267DB296D1E (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// return unchecked((int)(long)m_EventPtr);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = __this->___m_EventPtr_0;
V_0 = ((int32_t)((int64_t)(uint64_t)(intptr_t)L_0));
goto IL_000c;
}
IL_000c:
{
// }
int32_t L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C int32_t InputEventPtr_GetHashCode_m97B532D8E6CD524F78323A2F079F1267DB296D1E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
int32_t _returnValue;
_returnValue = InputEventPtr_GetHashCode_m97B532D8E6CD524F78323A2F079F1267DB296D1E(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::op_Equality(UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_op_Equality_m7C5235E848A3A526A507C62525EC5DDBC50103E2 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___left0, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___right1, const RuntimeMethod* method)
{
bool V_0 = false;
{
// return left.m_EventPtr == right.m_EventPtr;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_0 = ___left0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = L_0.___m_EventPtr_0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_2 = ___right1;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = L_2.___m_EventPtr_0;
V_0 = (bool)((((intptr_t)L_1) == ((intptr_t)L_3))? 1 : 0);
goto IL_0012;
}
IL_0012:
{
// }
bool L_4 = V_0;
return L_4;
}
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::op_Inequality(UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_op_Inequality_m7682FF29EA0791C97CCD0F83F5A80BD3FCC7B149 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___left0, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___right1, const RuntimeMethod* method)
{
bool V_0 = false;
{
// return left.m_EventPtr != right.m_EventPtr;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_0 = ___left0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = L_0.___m_EventPtr_0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_2 = ___right1;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = L_2.___m_EventPtr_0;
V_0 = (bool)((((int32_t)((((intptr_t)L_1) == ((intptr_t)L_3))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0015;
}
IL_0015:
{
// }
bool L_4 = V_0;
return L_4;
}
}
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventPtr::op_Implicit(UnityEngine.InputSystem.LowLevel.InputEvent*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventPtr_op_Implicit_m599D70C2004FF6B28F13469EDB1421224095F432 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// return new InputEventPtr(eventPtr);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___eventPtr0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1;
memset((&L_1), 0, sizeof(L_1));
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0((&L_1), L_0, /*hidden argument*/NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
// }
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_2 = V_0;
return L_2;
}
}
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventPtr::From(UnityEngine.InputSystem.LowLevel.InputEvent*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventPtr_From_m76596859AF2C347250C1F518F3ADC827EC912E31 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, const RuntimeMethod* method)
{
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// return new InputEventPtr(eventPtr);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___eventPtr0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1;
memset((&L_1), 0, sizeof(L_1));
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0((&L_1), L_0, /*hidden argument*/NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
// }
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_2 = V_0;
return L_2;
}
}
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::op_Implicit(UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_op_Implicit_m404BDC6FF1FB748C1365FFEA330CDDD6579A2E6A (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___eventPtr0, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_0 = NULL;
{
// return eventPtr.data;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0;
L_0 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&___eventPtr0), NULL);
V_0 = L_0;
goto IL_000b;
}
IL_000b:
{
// }
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = V_0;
return L_1;
}
}
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::FromInputEventPtr(UnityEngine.InputSystem.LowLevel.InputEventPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_FromInputEventPtr_mA6BC34F475F19022C85A117332EFB4CAF249D448 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___eventPtr0, const RuntimeMethod* method)
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_0 = NULL;
{
// return eventPtr.data;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0;
L_0 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&___eventPtr0), NULL);
V_0 = L_0;
goto IL_000b;
}
IL_000b:
{
// }
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = V_0;
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.InputEventStream
IL2CPP_EXTERN_C void InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshal_pinvoke(const InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9& unmarshaled, InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshaled_pinvoke& marshaled)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke(unmarshaled.___m_NativeBuffer_0, marshaled.___m_NativeBuffer_0);
marshaled.___m_CurrentNativeEventReadPtr_1 = unmarshaled.___m_CurrentNativeEventReadPtr_1;
marshaled.___m_CurrentNativeEventWritePtr_2 = unmarshaled.___m_CurrentNativeEventWritePtr_2;
marshaled.___m_RemainingNativeEventCount_3 = unmarshaled.___m_RemainingNativeEventCount_3;
marshaled.___m_MaxAppendedEvents_4 = unmarshaled.___m_MaxAppendedEvents_4;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke(unmarshaled.___m_AppendBuffer_5, marshaled.___m_AppendBuffer_5);
marshaled.___m_CurrentAppendEventReadPtr_6 = unmarshaled.___m_CurrentAppendEventReadPtr_6;
marshaled.___m_CurrentAppendEventWritePtr_7 = unmarshaled.___m_CurrentAppendEventWritePtr_7;
marshaled.___m_RemainingAppendEventCount_8 = unmarshaled.___m_RemainingAppendEventCount_8;
marshaled.___m_NumEventsRetainedInBuffer_9 = unmarshaled.___m_NumEventsRetainedInBuffer_9;
marshaled.___m_IsOpen_10 = static_cast<int32_t>(unmarshaled.___m_IsOpen_10);
}
IL2CPP_EXTERN_C void InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshal_pinvoke_back(const InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshaled_pinvoke& marshaled, InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9& unmarshaled)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE unmarshaledm_NativeBuffer_temp_0;
memset((&unmarshaledm_NativeBuffer_temp_0), 0, sizeof(unmarshaledm_NativeBuffer_temp_0));
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_back(marshaled.___m_NativeBuffer_0, unmarshaledm_NativeBuffer_temp_0);
unmarshaled.___m_NativeBuffer_0 = unmarshaledm_NativeBuffer_temp_0;
unmarshaled.___m_CurrentNativeEventReadPtr_1 = marshaled.___m_CurrentNativeEventReadPtr_1;
unmarshaled.___m_CurrentNativeEventWritePtr_2 = marshaled.___m_CurrentNativeEventWritePtr_2;
int32_t unmarshaledm_RemainingNativeEventCount_temp_3 = 0;
unmarshaledm_RemainingNativeEventCount_temp_3 = marshaled.___m_RemainingNativeEventCount_3;
unmarshaled.___m_RemainingNativeEventCount_3 = unmarshaledm_RemainingNativeEventCount_temp_3;
int32_t unmarshaledm_MaxAppendedEvents_temp_4 = 0;
unmarshaledm_MaxAppendedEvents_temp_4 = marshaled.___m_MaxAppendedEvents_4;
unmarshaled.___m_MaxAppendedEvents_4 = unmarshaledm_MaxAppendedEvents_temp_4;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE unmarshaledm_AppendBuffer_temp_5;
memset((&unmarshaledm_AppendBuffer_temp_5), 0, sizeof(unmarshaledm_AppendBuffer_temp_5));
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_back(marshaled.___m_AppendBuffer_5, unmarshaledm_AppendBuffer_temp_5);
unmarshaled.___m_AppendBuffer_5 = unmarshaledm_AppendBuffer_temp_5;
unmarshaled.___m_CurrentAppendEventReadPtr_6 = marshaled.___m_CurrentAppendEventReadPtr_6;
unmarshaled.___m_CurrentAppendEventWritePtr_7 = marshaled.___m_CurrentAppendEventWritePtr_7;
int32_t unmarshaledm_RemainingAppendEventCount_temp_8 = 0;
unmarshaledm_RemainingAppendEventCount_temp_8 = marshaled.___m_RemainingAppendEventCount_8;
unmarshaled.___m_RemainingAppendEventCount_8 = unmarshaledm_RemainingAppendEventCount_temp_8;
int32_t unmarshaledm_NumEventsRetainedInBuffer_temp_9 = 0;
unmarshaledm_NumEventsRetainedInBuffer_temp_9 = marshaled.___m_NumEventsRetainedInBuffer_9;
unmarshaled.___m_NumEventsRetainedInBuffer_9 = unmarshaledm_NumEventsRetainedInBuffer_temp_9;
bool unmarshaledm_IsOpen_temp_10 = false;
unmarshaledm_IsOpen_temp_10 = static_cast<bool>(marshaled.___m_IsOpen_10);
unmarshaled.___m_IsOpen_10 = unmarshaledm_IsOpen_temp_10;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.InputEventStream
IL2CPP_EXTERN_C void InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshal_pinvoke_cleanup(InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshaled_pinvoke& marshaled)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_cleanup(marshaled.___m_NativeBuffer_0);
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_cleanup(marshaled.___m_AppendBuffer_5);
}
// Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.InputEventStream
IL2CPP_EXTERN_C void InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshal_com(const InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9& unmarshaled, InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshaled_com& marshaled)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com(unmarshaled.___m_NativeBuffer_0, marshaled.___m_NativeBuffer_0);
marshaled.___m_CurrentNativeEventReadPtr_1 = unmarshaled.___m_CurrentNativeEventReadPtr_1;
marshaled.___m_CurrentNativeEventWritePtr_2 = unmarshaled.___m_CurrentNativeEventWritePtr_2;
marshaled.___m_RemainingNativeEventCount_3 = unmarshaled.___m_RemainingNativeEventCount_3;
marshaled.___m_MaxAppendedEvents_4 = unmarshaled.___m_MaxAppendedEvents_4;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com(unmarshaled.___m_AppendBuffer_5, marshaled.___m_AppendBuffer_5);
marshaled.___m_CurrentAppendEventReadPtr_6 = unmarshaled.___m_CurrentAppendEventReadPtr_6;
marshaled.___m_CurrentAppendEventWritePtr_7 = unmarshaled.___m_CurrentAppendEventWritePtr_7;
marshaled.___m_RemainingAppendEventCount_8 = unmarshaled.___m_RemainingAppendEventCount_8;
marshaled.___m_NumEventsRetainedInBuffer_9 = unmarshaled.___m_NumEventsRetainedInBuffer_9;
marshaled.___m_IsOpen_10 = static_cast<int32_t>(unmarshaled.___m_IsOpen_10);
}
IL2CPP_EXTERN_C void InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshal_com_back(const InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshaled_com& marshaled, InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9& unmarshaled)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE unmarshaledm_NativeBuffer_temp_0;
memset((&unmarshaledm_NativeBuffer_temp_0), 0, sizeof(unmarshaledm_NativeBuffer_temp_0));
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com_back(marshaled.___m_NativeBuffer_0, unmarshaledm_NativeBuffer_temp_0);
unmarshaled.___m_NativeBuffer_0 = unmarshaledm_NativeBuffer_temp_0;
unmarshaled.___m_CurrentNativeEventReadPtr_1 = marshaled.___m_CurrentNativeEventReadPtr_1;
unmarshaled.___m_CurrentNativeEventWritePtr_2 = marshaled.___m_CurrentNativeEventWritePtr_2;
int32_t unmarshaledm_RemainingNativeEventCount_temp_3 = 0;
unmarshaledm_RemainingNativeEventCount_temp_3 = marshaled.___m_RemainingNativeEventCount_3;
unmarshaled.___m_RemainingNativeEventCount_3 = unmarshaledm_RemainingNativeEventCount_temp_3;
int32_t unmarshaledm_MaxAppendedEvents_temp_4 = 0;
unmarshaledm_MaxAppendedEvents_temp_4 = marshaled.___m_MaxAppendedEvents_4;
unmarshaled.___m_MaxAppendedEvents_4 = unmarshaledm_MaxAppendedEvents_temp_4;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE unmarshaledm_AppendBuffer_temp_5;
memset((&unmarshaledm_AppendBuffer_temp_5), 0, sizeof(unmarshaledm_AppendBuffer_temp_5));
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com_back(marshaled.___m_AppendBuffer_5, unmarshaledm_AppendBuffer_temp_5);
unmarshaled.___m_AppendBuffer_5 = unmarshaledm_AppendBuffer_temp_5;
unmarshaled.___m_CurrentAppendEventReadPtr_6 = marshaled.___m_CurrentAppendEventReadPtr_6;
unmarshaled.___m_CurrentAppendEventWritePtr_7 = marshaled.___m_CurrentAppendEventWritePtr_7;
int32_t unmarshaledm_RemainingAppendEventCount_temp_8 = 0;
unmarshaledm_RemainingAppendEventCount_temp_8 = marshaled.___m_RemainingAppendEventCount_8;
unmarshaled.___m_RemainingAppendEventCount_8 = unmarshaledm_RemainingAppendEventCount_temp_8;
int32_t unmarshaledm_NumEventsRetainedInBuffer_temp_9 = 0;
unmarshaledm_NumEventsRetainedInBuffer_temp_9 = marshaled.___m_NumEventsRetainedInBuffer_9;
unmarshaled.___m_NumEventsRetainedInBuffer_9 = unmarshaledm_NumEventsRetainedInBuffer_temp_9;
bool unmarshaledm_IsOpen_temp_10 = false;
unmarshaledm_IsOpen_temp_10 = static_cast<bool>(marshaled.___m_IsOpen_10);
unmarshaled.___m_IsOpen_10 = unmarshaledm_IsOpen_temp_10;
}
// Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.InputEventStream
IL2CPP_EXTERN_C void InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshal_com_cleanup(InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshaled_com& marshaled)
{
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com_cleanup(marshaled.___m_NativeBuffer_0);
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com_cleanup(marshaled.___m_AppendBuffer_5);
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventStream::get_isOpen()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventStream_get_isOpen_mEE33B97DA48F80B43BCE58D08FCAE51958E6459D (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
{
{
// public bool isOpen => m_IsOpen;
bool L_0 = __this->___m_IsOpen_10;
return L_0;
}
}
IL2CPP_EXTERN_C bool InputEventStream_get_isOpen_mEE33B97DA48F80B43BCE58D08FCAE51958E6459D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
bool _returnValue;
_returnValue = InputEventStream_get_isOpen_mEE33B97DA48F80B43BCE58D08FCAE51958E6459D_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventStream::get_remainingEventCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventStream_get_remainingEventCount_mFA68F507B5BF80A3E88C89C9DC973B17B61E2CE8 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
{
{
// public int remainingEventCount => m_RemainingNativeEventCount + m_RemainingAppendEventCount;
int32_t L_0 = __this->___m_RemainingNativeEventCount_3;
int32_t L_1 = __this->___m_RemainingAppendEventCount_8;
return ((int32_t)il2cpp_codegen_add(L_0, L_1));
}
}
IL2CPP_EXTERN_C int32_t InputEventStream_get_remainingEventCount_mFA68F507B5BF80A3E88C89C9DC973B17B61E2CE8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
int32_t _returnValue;
_returnValue = InputEventStream_get_remainingEventCount_mFA68F507B5BF80A3E88C89C9DC973B17B61E2CE8(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventStream::get_numEventsRetainedInBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventStream_get_numEventsRetainedInBuffer_m4656DA6E9272986459D283EE8B8F74773C2D130A (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
{
{
// public int numEventsRetainedInBuffer => m_NumEventsRetainedInBuffer;
int32_t L_0 = __this->___m_NumEventsRetainedInBuffer_9;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t InputEventStream_get_numEventsRetainedInBuffer_m4656DA6E9272986459D283EE8B8F74773C2D130A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
int32_t _returnValue;
_returnValue = InputEventStream_get_numEventsRetainedInBuffer_m4656DA6E9272986459D283EE8B8F74773C2D130A_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::get_currentEventPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_get_currentEventPtr_mE13C48ED3B452218CF8517F2DDDF0ACDF2C342B1 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
{
uintptr_t G_B4_0;
memset((&G_B4_0), 0, sizeof(G_B4_0));
uintptr_t G_B6_0;
memset((&G_B6_0), 0, sizeof(G_B6_0));
{
// public InputEvent* currentEventPtr => m_RemainingNativeEventCount > 0
// ? m_CurrentNativeEventReadPtr
// : (m_RemainingAppendEventCount > 0 ? m_CurrentAppendEventReadPtr : null);
int32_t L_0 = __this->___m_RemainingNativeEventCount_3;
if ((((int32_t)L_0) > ((int32_t)0)))
{
goto IL_001e;
}
}
{
int32_t L_1 = __this->___m_RemainingAppendEventCount_8;
if ((((int32_t)L_1) > ((int32_t)0)))
{
goto IL_0016;
}
}
{
G_B4_0 = ((uintptr_t)0);
goto IL_001c;
}
IL_0016:
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = __this->___m_CurrentAppendEventReadPtr_6;
G_B4_0 = ((uintptr_t)(intptr_t)(L_2));
}
IL_001c:
{
G_B6_0 = G_B4_0;
goto IL_0024;
}
IL_001e:
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = __this->___m_CurrentNativeEventReadPtr_1;
G_B6_0 = ((uintptr_t)(intptr_t)(L_3));
}
IL_0024:
{
return (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)(G_B6_0);
}
}
IL2CPP_EXTERN_C InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_get_currentEventPtr_mE13C48ED3B452218CF8517F2DDDF0ACDF2C342B1_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _returnValue;
_returnValue = InputEventStream_get_currentEventPtr_mE13C48ED3B452218CF8517F2DDDF0ACDF2C342B1(_thisAdjusted, method);
return _returnValue;
}
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputEventStream::get_numBytesRetainedInBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventStream_get_numBytesRetainedInBuffer_mF899CE61DF44A43CACFD8BA969EF31A6BDAA6BDF (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// (uint)((byte*)m_CurrentNativeEventWritePtr -
// (byte*)NativeArrayUnsafeUtility
// .GetUnsafeBufferPointerWithoutChecks(m_NativeBuffer.data));
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = __this->___m_CurrentNativeEventWritePtr_2;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_1 = (&__this->___m_NativeBuffer_0);
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_2;
L_2 = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(L_1, NULL);
void* L_3;
L_3 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A(L_2, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_RuntimeMethod_var);
return ((int32_t)(uint32_t)((int64_t)(intptr_t)((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((intptr_t)((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)il2cpp_codegen_subtract((intptr_t)L_0, (intptr_t)L_3))/1))));
}
}
IL2CPP_EXTERN_C uint32_t InputEventStream_get_numBytesRetainedInBuffer_mF899CE61DF44A43CACFD8BA969EF31A6BDAA6BDF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
uint32_t _returnValue;
_returnValue = InputEventStream_get_numBytesRetainedInBuffer_mF899CE61DF44A43CACFD8BA969EF31A6BDAA6BDF(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventStream::.ctor(UnityEngine.InputSystem.LowLevel.InputEventBuffer&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream__ctor_m52AB2424A03D286B202C0E69BF8392C3AFB2D604 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___eventBuffer0, int32_t ___maxAppendedEvents1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_0 = NULL;
{
// m_CurrentNativeEventWritePtr = m_CurrentNativeEventReadPtr =
// (InputEvent*)NativeArrayUnsafeUtility.GetUnsafeBufferPointerWithoutChecks(eventBuffer.data);
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_0 = ___eventBuffer0;
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_1;
L_1 = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(L_0, NULL);
void* L_2;
L_2 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A(L_1, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_RuntimeMethod_var);
void* L_3 = L_2;
V_0 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_3;
__this->___m_CurrentNativeEventReadPtr_1 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_3;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_4 = V_0;
__this->___m_CurrentNativeEventWritePtr_2 = L_4;
// m_NativeBuffer = eventBuffer;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_5 = ___eventBuffer0;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE L_6 = (*(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)L_5);
__this->___m_NativeBuffer_0 = L_6;
// m_RemainingNativeEventCount = m_NativeBuffer.eventCount;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_7 = (&__this->___m_NativeBuffer_0);
int32_t L_8;
L_8 = InputEventBuffer_get_eventCount_mD120699C5A1CEBA76C878BC37DB2E39458F56C8E_inline(L_7, NULL);
__this->___m_RemainingNativeEventCount_3 = L_8;
// m_NumEventsRetainedInBuffer = 0;
__this->___m_NumEventsRetainedInBuffer_9 = 0;
// m_CurrentAppendEventReadPtr = m_CurrentAppendEventWritePtr = default;
uintptr_t L_9 = ((uintptr_t)0);
V_0 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_9;
__this->___m_CurrentAppendEventWritePtr_7 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_9;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_10 = V_0;
__this->___m_CurrentAppendEventReadPtr_6 = L_10;
// m_AppendBuffer = default;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_11 = (&__this->___m_AppendBuffer_5);
il2cpp_codegen_initobj(L_11, sizeof(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE));
// m_RemainingAppendEventCount = 0;
__this->___m_RemainingAppendEventCount_8 = 0;
// m_MaxAppendedEvents = maxAppendedEvents;
int32_t L_12 = ___maxAppendedEvents1;
__this->___m_MaxAppendedEvents_4 = L_12;
// m_IsOpen = true;
__this->___m_IsOpen_10 = (bool)1;
// }
return;
}
}
IL2CPP_EXTERN_C void InputEventStream__ctor_m52AB2424A03D286B202C0E69BF8392C3AFB2D604_AdjustorThunk (RuntimeObject* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___eventBuffer0, int32_t ___maxAppendedEvents1, const RuntimeMethod* method)
{
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
InputEventStream__ctor_m52AB2424A03D286B202C0E69BF8392C3AFB2D604(_thisAdjusted, ___eventBuffer0, ___maxAppendedEvents1, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventStream::Close(UnityEngine.InputSystem.LowLevel.InputEventBuffer&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_Close_m1111A4CFB8F92C63C3A0138A92D2B74F3722D691 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___eventBuffer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
void* V_1 = NULL;
int64_t V_2 = 0;
bool V_3 = false;
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_4;
memset((&V_4), 0, sizeof(V_4));
{
// if (m_NumEventsRetainedInBuffer > 0)
int32_t L_0 = __this->___m_NumEventsRetainedInBuffer_9;
V_0 = (bool)((((int32_t)L_0) > ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_005e;
}
}
{
// var bufferPtr = NativeArrayUnsafeUtility.GetUnsafeBufferPointerWithoutChecks(m_NativeBuffer.data);
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_2 = (&__this->___m_NativeBuffer_0);
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_3;
L_3 = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(L_2, NULL);
void* L_4;
L_4 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A(L_3, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_RuntimeMethod_var);
V_1 = L_4;
// Debug.Assert((byte*)m_CurrentNativeEventWritePtr > (byte*)bufferPtr);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_5 = __this->___m_CurrentNativeEventWritePtr_2;
void* L_6 = V_1;
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_Assert_mC95931BE797761A2D7800908C0BA4B41D68B3216((bool)((!(((uintptr_t)L_5) <= ((uintptr_t)L_6)))? 1 : 0), NULL);
// var newBufferSize = (byte*)m_CurrentNativeEventWritePtr - (byte*)bufferPtr;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_7 = __this->___m_CurrentNativeEventWritePtr_2;
void* L_8 = V_1;
V_2 = ((int64_t)(intptr_t)((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((intptr_t)((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)il2cpp_codegen_subtract((intptr_t)L_7, (intptr_t)L_8))/1)));
// m_NativeBuffer = new InputEventBuffer((InputEvent*)bufferPtr, m_NumEventsRetainedInBuffer, (int)newBufferSize,
// (int)m_NativeBuffer.capacityInBytes);
void* L_9 = V_1;
int32_t L_10 = __this->___m_NumEventsRetainedInBuffer_9;
int64_t L_11 = V_2;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_12 = (&__this->___m_NativeBuffer_0);
int64_t L_13;
L_13 = InputEventBuffer_get_capacityInBytes_m880911F29058AFF745E74D509EB224261374089B(L_12, NULL);
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE L_14;
memset((&L_14), 0, sizeof(L_14));
InputEventBuffer__ctor_mC9DC5120D654A771A3E7B8B21E89EE6071DD01C3((&L_14), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_9, L_10, ((int32_t)L_11), ((int32_t)L_13), /*hidden argument*/NULL);
__this->___m_NativeBuffer_0 = L_14;
goto IL_006c;
}
IL_005e:
{
// m_NativeBuffer.Reset();
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_15 = (&__this->___m_NativeBuffer_0);
InputEventBuffer_Reset_m9E41B3CE9C7556C62AFC55772D7D4FBA8A99360B(L_15, NULL);
}
IL_006c:
{
// if (m_AppendBuffer.data.IsCreated)
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_16 = (&__this->___m_AppendBuffer_5);
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_17;
L_17 = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(L_16, NULL);
V_4 = L_17;
bool L_18;
L_18 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081((&V_4), NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
V_3 = L_18;
bool L_19 = V_3;
if (!L_19)
{
goto IL_0090;
}
}
{
// m_AppendBuffer.Dispose();
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_20 = (&__this->___m_AppendBuffer_5);
InputEventBuffer_Dispose_mC0CD0CC5F58859A221221F1A3FAE84B8EFB5CFF3(L_20, NULL);
}
IL_0090:
{
// eventBuffer = m_NativeBuffer;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_21 = ___eventBuffer0;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE L_22 = __this->___m_NativeBuffer_0;
*(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)L_21 = L_22;
// m_IsOpen = false;
__this->___m_IsOpen_10 = (bool)0;
// }
return;
}
}
IL2CPP_EXTERN_C void InputEventStream_Close_m1111A4CFB8F92C63C3A0138A92D2B74F3722D691_AdjustorThunk (RuntimeObject* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___eventBuffer0, const RuntimeMethod* method)
{
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
InputEventStream_Close_m1111A4CFB8F92C63C3A0138A92D2B74F3722D691(_thisAdjusted, ___eventBuffer0, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventStream::CleanUpAfterException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_CleanUpAfterException_m1025CADD374BCE7F4A96D5A6CD78AFAB3F253011 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_2;
memset((&V_2), 0, sizeof(V_2));
{
// if (!isOpen)
bool L_0;
L_0 = InputEventStream_get_isOpen_mEE33B97DA48F80B43BCE58D08FCAE51958E6459D_inline(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0010;
}
}
{
// return;
goto IL_0046;
}
IL_0010:
{
// m_NativeBuffer.Reset();
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_2 = (&__this->___m_NativeBuffer_0);
InputEventBuffer_Reset_m9E41B3CE9C7556C62AFC55772D7D4FBA8A99360B(L_2, NULL);
// if (m_AppendBuffer.data.IsCreated)
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_3 = (&__this->___m_AppendBuffer_5);
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_4;
L_4 = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(L_3, NULL);
V_2 = L_4;
bool L_5;
L_5 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081((&V_2), NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
V_1 = L_5;
bool L_6 = V_1;
if (!L_6)
{
goto IL_003f;
}
}
{
// m_AppendBuffer.Dispose();
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_7 = (&__this->___m_AppendBuffer_5);
InputEventBuffer_Dispose_mC0CD0CC5F58859A221221F1A3FAE84B8EFB5CFF3(L_7, NULL);
}
IL_003f:
{
// m_IsOpen = false;
__this->___m_IsOpen_10 = (bool)0;
}
IL_0046:
{
// }
return;
}
}
IL2CPP_EXTERN_C void InputEventStream_CleanUpAfterException_m1025CADD374BCE7F4A96D5A6CD78AFAB3F253011_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
InputEventStream_CleanUpAfterException_m1025CADD374BCE7F4A96D5A6CD78AFAB3F253011(_thisAdjusted, method);
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventStream::Write(UnityEngine.InputSystem.LowLevel.InputEvent*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_Write_m1F494325BF10678460D41D7A07333DB17F64487E (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral012315DEACA80CA5572171295D68942333F9F9A7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEBE3EEDD107BB87C6567C5FBFDC3A815F512391E);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
uint8_t* V_1 = NULL;
bool V_2 = false;
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_3;
memset((&V_3), 0, sizeof(V_3));
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_4;
memset((&V_4), 0, sizeof(V_4));
bool V_5 = false;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_6 = NULL;
uint8_t* V_7 = NULL;
bool V_8 = false;
int64_t V_9 = 0;
int64_t V_10 = 0;
{
// if (m_AppendBuffer.eventCount >= m_MaxAppendedEvents)
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_0 = (&__this->___m_AppendBuffer_5);
int32_t L_1;
L_1 = InputEventBuffer_get_eventCount_mD120699C5A1CEBA76C878BC37DB2E39458F56C8E_inline(L_0, NULL);
int32_t L_2 = __this->___m_MaxAppendedEvents_4;
V_2 = (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)L_2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_3 = V_2;
if (!L_3)
{
goto IL_0046;
}
}
{
// Debug.LogError($"Maximum number of queued events exceeded. Set the '{nameof(InputSettings.maxQueuedEventsPerUpdate)}' " +
// $"setting to a higher value if you need to queue more events than this. " +
// $"Current limit is '{m_MaxAppendedEvents}'.");
int32_t L_4 = __this->___m_MaxAppendedEvents_4;
int32_t L_5 = L_4;
RuntimeObject* L_6 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_5);
String_t* L_7;
L_7 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral012315DEACA80CA5572171295D68942333F9F9A7, L_6, NULL);
String_t* L_8;
L_8 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralEBE3EEDD107BB87C6567C5FBFDC3A815F512391E, L_7, NULL);
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_LogError_m059825802BB6AF7EA9693FEBEEB0D85F59A3E38E(L_8, NULL);
// return;
goto IL_0119;
}
IL_0046:
{
// var wasAlreadyCreated = m_AppendBuffer.data.IsCreated;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_9 = (&__this->___m_AppendBuffer_5);
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_10;
L_10 = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(L_9, NULL);
V_3 = L_10;
bool L_11;
L_11 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081((&V_3), NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
V_0 = L_11;
// var oldBufferPtr = (byte*)m_AppendBuffer.bufferPtr.data;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_12 = (&__this->___m_AppendBuffer_5);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_13;
L_13 = InputEventBuffer_get_bufferPtr_m7C5E03ED8F0433B3CD4F019DFADDE3983472DACB(L_12, NULL);
V_4 = L_13;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_14;
L_14 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&V_4), NULL);
V_1 = (uint8_t*)L_14;
// m_AppendBuffer.AppendEvent(eventPtr, allocator: Allocator.Temp);
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_15 = (&__this->___m_AppendBuffer_5);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_16 = ___eventPtr0;
InputEventBuffer_AppendEvent_mAEC914B9C5C5534378199FF5C35D7EB57215E011(L_15, L_16, ((int32_t)2048), 2, NULL);
// if (!wasAlreadyCreated)
bool L_17 = V_0;
V_5 = (bool)((((int32_t)L_17) == ((int32_t)0))? 1 : 0);
bool L_18 = V_5;
if (!L_18)
{
goto IL_00b1;
}
}
{
// m_CurrentAppendEventWritePtr = m_CurrentAppendEventReadPtr =
// (InputEvent*)NativeArrayUnsafeUtility.GetUnsafeBufferPointerWithoutChecks(m_AppendBuffer.data);
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_19 = (&__this->___m_AppendBuffer_5);
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_20;
L_20 = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(L_19, NULL);
void* L_21;
L_21 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A(L_20, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m58834772960B0CE2EA5DFD6A79AC158FDE99C90A_RuntimeMethod_var);
void* L_22 = L_21;
V_6 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_22;
__this->___m_CurrentAppendEventReadPtr_6 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_22;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_23 = V_6;
__this->___m_CurrentAppendEventWritePtr_7 = L_23;
goto IL_010b;
}
IL_00b1:
{
// var newBufferPtr = (byte*)m_AppendBuffer.bufferPtr.data;
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_24 = (&__this->___m_AppendBuffer_5);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_25;
L_25 = InputEventBuffer_get_bufferPtr_m7C5E03ED8F0433B3CD4F019DFADDE3983472DACB(L_24, NULL);
V_4 = L_25;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_26;
L_26 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&V_4), NULL);
V_7 = (uint8_t*)L_26;
// if (oldBufferPtr != newBufferPtr)
uint8_t* L_27 = V_1;
uint8_t* L_28 = V_7;
V_8 = (bool)((((int32_t)((((intptr_t)L_27) == ((intptr_t)L_28))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_29 = V_8;
if (!L_29)
{
goto IL_010a;
}
}
{
// var currentWriteOffset = (byte*)m_CurrentAppendEventWritePtr - oldBufferPtr;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_30 = __this->___m_CurrentAppendEventWritePtr_7;
uint8_t* L_31 = V_1;
V_9 = ((int64_t)(intptr_t)((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((intptr_t)((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)il2cpp_codegen_subtract((intptr_t)L_30, (intptr_t)L_31))/1)));
// var currentReadOffset = (byte*)m_CurrentAppendEventReadPtr - oldBufferPtr;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_32 = __this->___m_CurrentAppendEventReadPtr_6;
uint8_t* L_33 = V_1;
V_10 = ((int64_t)(intptr_t)((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((intptr_t)((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)il2cpp_codegen_subtract((intptr_t)L_32, (intptr_t)L_33))/1)));
// m_CurrentAppendEventWritePtr = (InputEvent*)(newBufferPtr + currentWriteOffset);
uint8_t* L_34 = V_7;
int64_t L_35 = V_9;
__this->___m_CurrentAppendEventWritePtr_7 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_34, ((intptr_t)L_35)));
// m_CurrentAppendEventReadPtr = (InputEvent*)(newBufferPtr + currentReadOffset);
uint8_t* L_36 = V_7;
int64_t L_37 = V_10;
__this->___m_CurrentAppendEventReadPtr_6 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_36, ((intptr_t)L_37)));
}
IL_010a:
{
}
IL_010b:
{
// m_RemainingAppendEventCount++;
int32_t L_38 = __this->___m_RemainingAppendEventCount_8;
__this->___m_RemainingAppendEventCount_8 = ((int32_t)il2cpp_codegen_add(L_38, 1));
}
IL_0119:
{
// }
return;
}
}
IL2CPP_EXTERN_C void InputEventStream_Write_m1F494325BF10678460D41D7A07333DB17F64487E_AdjustorThunk (RuntimeObject* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___eventPtr0, const RuntimeMethod* method)
{
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
InputEventStream_Write_m1F494325BF10678460D41D7A07333DB17F64487E(_thisAdjusted, ___eventPtr0, method);
}
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::Advance(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_Advance_mD8B6B308674E69472F69AA65F3F1D49FBE7A13F1 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, bool ___leaveEventInBuffer0, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
int32_t V_2 = 0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_3 = NULL;
{
// if (m_RemainingNativeEventCount > 0)
int32_t L_0 = __this->___m_RemainingNativeEventCount_3;
V_0 = (bool)((((int32_t)L_0) > ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0037;
}
}
{
// m_NativeBuffer.AdvanceToNextEvent(ref m_CurrentNativeEventReadPtr, ref m_CurrentNativeEventWritePtr,
// ref m_NumEventsRetainedInBuffer, ref m_RemainingNativeEventCount, leaveEventInBuffer);
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_2 = (&__this->___m_NativeBuffer_0);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_3 = (&__this->___m_CurrentNativeEventReadPtr_1);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_4 = (&__this->___m_CurrentNativeEventWritePtr_2);
int32_t* L_5 = (&__this->___m_NumEventsRetainedInBuffer_9);
int32_t* L_6 = (&__this->___m_RemainingNativeEventCount_3);
bool L_7 = ___leaveEventInBuffer0;
InputEventBuffer_AdvanceToNextEvent_m2A711A2AA87D26A027FFE4EFD01EBD296EE0B283(L_2, L_3, L_4, L_5, L_6, L_7, NULL);
goto IL_0069;
}
IL_0037:
{
// else if (m_RemainingAppendEventCount > 0)
int32_t L_8 = __this->___m_RemainingAppendEventCount_8;
V_1 = (bool)((((int32_t)L_8) > ((int32_t)0))? 1 : 0);
bool L_9 = V_1;
if (!L_9)
{
goto IL_0069;
}
}
{
// var numEventRetained = 0;
V_2 = 0;
// m_AppendBuffer.AdvanceToNextEvent(ref m_CurrentAppendEventReadPtr, ref m_CurrentAppendEventWritePtr,
// ref numEventRetained, ref m_RemainingAppendEventCount, false);
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_10 = (&__this->___m_AppendBuffer_5);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_11 = (&__this->___m_CurrentAppendEventReadPtr_6);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_12 = (&__this->___m_CurrentAppendEventWritePtr_7);
int32_t* L_13 = (&__this->___m_RemainingAppendEventCount_8);
InputEventBuffer_AdvanceToNextEvent_m2A711A2AA87D26A027FFE4EFD01EBD296EE0B283(L_10, L_11, L_12, (&V_2), L_13, (bool)0, NULL);
}
IL_0069:
{
// return currentEventPtr;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_14;
L_14 = InputEventStream_get_currentEventPtr_mE13C48ED3B452218CF8517F2DDDF0ACDF2C342B1(__this, NULL);
V_3 = L_14;
goto IL_0072;
}
IL_0072:
{
// }
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_15 = V_3;
return L_15;
}
}
IL2CPP_EXTERN_C InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_Advance_mD8B6B308674E69472F69AA65F3F1D49FBE7A13F1_AdjustorThunk (RuntimeObject* __this, bool ___leaveEventInBuffer0, const RuntimeMethod* method)
{
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _returnValue;
_returnValue = InputEventStream_Advance_mD8B6B308674E69472F69AA65F3F1D49FBE7A13F1(_thisAdjusted, ___leaveEventInBuffer0, method);
return _returnValue;
}
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::Peek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_Peek_m315B9E86A362176249564F94D8590ECFD4089120 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
{
bool V_0 = false;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
uintptr_t G_B6_0;
memset((&G_B6_0), 0, sizeof(G_B6_0));
{
// if (m_RemainingNativeEventCount > 1)
int32_t L_0 = __this->___m_RemainingNativeEventCount_3;
V_0 = (bool)((((int32_t)L_0) > ((int32_t)1))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001c;
}
}
{
// return InputEvent.GetNextInMemory(m_CurrentNativeEventReadPtr);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = __this->___m_CurrentNativeEventReadPtr_1;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3;
L_3 = InputEvent_GetNextInMemory_m236F5B3C61DB3F992C08B3A8366AE0BD9EDE2FAA(L_2, NULL);
V_1 = L_3;
goto IL_005f;
}
IL_001c:
{
// if (m_RemainingNativeEventCount == 1)
int32_t L_4 = __this->___m_RemainingNativeEventCount_3;
V_2 = (bool)((((int32_t)L_4) == ((int32_t)1))? 1 : 0);
bool L_5 = V_2;
if (!L_5)
{
goto IL_003f;
}
}
{
// return m_RemainingAppendEventCount > 0 ? m_CurrentAppendEventReadPtr : null;
int32_t L_6 = __this->___m_RemainingAppendEventCount_8;
if ((((int32_t)L_6) > ((int32_t)0)))
{
goto IL_0036;
}
}
{
G_B6_0 = ((uintptr_t)0);
goto IL_003c;
}
IL_0036:
{
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_7 = __this->___m_CurrentAppendEventReadPtr_6;
G_B6_0 = ((uintptr_t)(intptr_t)(L_7));
}
IL_003c:
{
V_1 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)G_B6_0;
goto IL_005f;
}
IL_003f:
{
// if (m_RemainingAppendEventCount > 1)
int32_t L_8 = __this->___m_RemainingAppendEventCount_8;
V_3 = (bool)((((int32_t)L_8) > ((int32_t)1))? 1 : 0);
bool L_9 = V_3;
if (!L_9)
{
goto IL_005a;
}
}
{
// return InputEvent.GetNextInMemory(m_CurrentAppendEventReadPtr);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_10 = __this->___m_CurrentAppendEventReadPtr_6;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_11;
L_11 = InputEvent_GetNextInMemory_m236F5B3C61DB3F992C08B3A8366AE0BD9EDE2FAA(L_10, NULL);
V_1 = L_11;
goto IL_005f;
}
IL_005a:
{
// return null;
V_1 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((uintptr_t)0);
goto IL_005f;
}
IL_005f:
{
// }
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_12 = V_1;
return L_12;
}
}
IL2CPP_EXTERN_C InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_Peek_m315B9E86A362176249564F94D8590ECFD4089120_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _returnValue;
_returnValue = InputEventStream_Peek_m315B9E86A362176249564F94D8590ECFD4089120(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventTrace::get_FrameMarkerEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventTrace_get_FrameMarkerEvent_m2AABF936DE8A85187532D4A6B98B41DDB9955561 (const RuntimeMethod* method)
{
{
// public static FourCC FrameMarkerEvent => new FourCC('F', 'R', 'M', 'E');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)70), ((int32_t)82), ((int32_t)77), ((int32_t)69), /*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace::get_deviceId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventTrace_get_deviceId_m6006BAAAF5E515E9379A49BB2BC93966F7A0F76D (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
{
// get => m_DeviceId;
int32_t L_0 = __this->___m_DeviceId_4;
return L_0;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_deviceId(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_deviceId_m7D55C7F5557FE912EB6615478B2D54C3C9451538 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_DeviceId = value;
int32_t L_0 = ___value0;
__this->___m_DeviceId_4 = L_0;
return;
}
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::get_enabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_get_enabled_m00962912C56398A72D8DC35529506F06A934CF8D (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
{
// public bool enabled => m_Enabled;
bool L_0 = __this->___m_Enabled_2;
return L_0;
}
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::get_recordFrameMarkers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_get_recordFrameMarkers_m15BCAEC63810DD7CC8CC8D33A6702359BC986F45 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
{
// get => m_RecordFrameMarkers;
bool L_0 = __this->___m_RecordFrameMarkers_15;
return L_0;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_recordFrameMarkers(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_recordFrameMarkers_mEE70080B94B12C2EE4A7C8BEF2DCC9027419BC92 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
{
// if (m_RecordFrameMarkers == value)
bool L_0 = __this->___m_RecordFrameMarkers_15;
bool L_1 = ___value0;
V_0 = (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_0010;
}
}
{
// return;
goto IL_004e;
}
IL_0010:
{
// m_RecordFrameMarkers = value;
bool L_3 = ___value0;
__this->___m_RecordFrameMarkers_15 = L_3;
// if (m_Enabled)
bool L_4 = __this->___m_Enabled_2;
V_1 = L_4;
bool L_5 = V_1;
if (!L_5)
{
goto IL_004e;
}
}
{
// if (value)
bool L_6 = ___value0;
V_2 = L_6;
bool L_7 = V_2;
if (!L_7)
{
goto IL_003b;
}
}
{
// InputSystem.onBeforeUpdate += OnBeforeUpdate;
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_8 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
NullCheck(L_8);
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_8, __this, (intptr_t)((void*)InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83_RuntimeMethod_var), NULL);
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSystem_add_onBeforeUpdate_mB479D148F4C1684B66FB64B79C9331813A596ECD(L_8, NULL);
goto IL_004d;
}
IL_003b:
{
// InputSystem.onBeforeUpdate -= OnBeforeUpdate;
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
NullCheck(L_9);
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_9, __this, (intptr_t)((void*)InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83_RuntimeMethod_var), NULL);
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSystem_remove_onBeforeUpdate_mBF0659BB33E2FD7874CD45067CEFF08C3A7A9EE4(L_9, NULL);
}
IL_004d:
{
}
IL_004e:
{
// }
return;
}
}
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::get_eventCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventTrace_get_eventCount_m400E514AB29EC8BD933226B92A9EAE434FBADF44 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
{
// public long eventCount => m_EventCount;
int64_t L_0 = __this->___m_EventCount_9;
return L_0;
}
}
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::get_totalEventSizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventTrace_get_totalEventSizeInBytes_m6E588386064DF072AF51B246671979EFBB33B79F (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
{
// public long totalEventSizeInBytes => m_EventSizeInBytes;
int64_t L_0 = __this->___m_EventSizeInBytes_10;
return L_0;
}
}
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::get_allocatedSizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventTrace_get_allocatedSizeInBytes_m92FBB6A9439DC0F84BC095293F7F3C091AA23E70 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
int64_t G_B3_0 = 0;
{
// public long allocatedSizeInBytes => m_EventBuffer != default ? m_EventBufferSize : 0;
uint8_t* L_0;
L_0 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
if ((!(((uintptr_t)L_0) == ((uintptr_t)((uintptr_t)0)))))
{
goto IL_000e;
}
}
{
G_B3_0 = ((int64_t)0);
goto IL_0014;
}
IL_000e:
{
int64_t L_1 = __this->___m_EventBufferSize_6;
G_B3_0 = L_1;
}
IL_0014:
{
return G_B3_0;
}
}
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::get_maxSizeInBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventTrace_get_maxSizeInBytes_m8461E7D740F6835EE26F299892A3A1966E7152B0 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
{
// public long maxSizeInBytes => m_MaxEventBufferSize;
int64_t L_0 = __this->___m_MaxEventBufferSize_7;
return L_0;
}
}
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo> UnityEngine.InputSystem.LowLevel.InputEventTrace::get_deviceInfos()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570 InputEventTrace_get_deviceInfos_m66BCE6CE81C634A9352F04CF76CEA14F4E8B3942 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_op_Implicit_m1291C740F5550F006C2001EAF01E1EF009677B22_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public ReadOnlyArray<DeviceInfo> deviceInfos => m_DeviceInfos;
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_0 = __this->___m_DeviceInfos_16;
ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570 L_1;
L_1 = ReadOnlyArray_1_op_Implicit_m1291C740F5550F006C2001EAF01E1EF009677B22(L_0, ReadOnlyArray_1_op_Implicit_m1291C740F5550F006C2001EAF01E1EF009677B22_RuntimeMethod_var);
return L_1;
}
}
// System.Func`3<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice,System.Boolean> UnityEngine.InputSystem.LowLevel.InputEventTrace::get_onFilterEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0* InputEventTrace_get_onFilterEvent_m883B3922540DED6722C92672C6CB92DA80D9422F (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
{
// get => m_OnFilterEvent;
Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0* L_0 = __this->___m_OnFilterEvent_3;
return L_0;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_onFilterEvent(System.Func`3<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_onFilterEvent_mC1AB9C3AC3D72126B25F9D843582B089FA88D556 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0* ___value0, const RuntimeMethod* method)
{
{
// set => m_OnFilterEvent = value;
Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0* L_0 = ___value0;
__this->___m_OnFilterEvent_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OnFilterEvent_3), (void*)L_0);
return;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::add_onEvent(System.Action`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_add_onEvent_m846B93E3502E964A9AEF3278F60FC712684AF692 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_m3952EFDAB87F62F3748292CDF90AB17DFB3BC72B_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// add => m_EventListeners.AddCallback(value);
CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* L_0 = (&__this->___m_EventListeners_5);
Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* L_1 = ___value0;
CallbackArray_1_AddCallback_m3952EFDAB87F62F3748292CDF90AB17DFB3BC72B(L_0, L_1, CallbackArray_1_AddCallback_m3952EFDAB87F62F3748292CDF90AB17DFB3BC72B_RuntimeMethod_var);
return;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::remove_onEvent(System.Action`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_remove_onEvent_m5E2C96FA1CF3AC89345942705C784DBD3A598588 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_m193ADCFAE914FE65AB4E5206FA645A02CDC9890D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// remove => m_EventListeners.RemoveCallback(value);
CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* L_0 = (&__this->___m_EventListeners_5);
Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* L_1 = ___value0;
CallbackArray_1_RemoveCallback_m193ADCFAE914FE65AB4E5206FA645A02CDC9890D(L_0, L_1, CallbackArray_1_RemoveCallback_m193ADCFAE914FE65AB4E5206FA645A02CDC9890D_RuntimeMethod_var);
return;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::.ctor(UnityEngine.InputSystem.InputDevice,System.Int64,System.Boolean,System.Int64,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace__ctor_m8FF4728B5B37E6D481CD0118EB102B69BC22B138 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device0, int64_t ___bufferSizeInBytes1, bool ___growBuffer2, int64_t ___maxBufferSizeInBytes3, int64_t ___growIncrementSizeInBytes4, const RuntimeMethod* method)
{
bool V_0 = false;
{
// : this(bufferSizeInBytes, growBuffer, maxBufferSizeInBytes, growIncrementSizeInBytes)
int64_t L_0 = ___bufferSizeInBytes1;
bool L_1 = ___growBuffer2;
int64_t L_2 = ___maxBufferSizeInBytes3;
int64_t L_3 = ___growIncrementSizeInBytes4;
InputEventTrace__ctor_m33E71735CDB4DEC9D50431B1DF90CA88BD532AB3(__this, L_0, L_1, L_2, L_3, NULL);
// if (device == null)
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_4 = ___device0;
V_0 = (bool)((((RuntimeObject*)(InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_5 = V_0;
if (!L_5)
{
goto IL_0021;
}
}
{
// throw new ArgumentNullException(nameof(device));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_6 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_6);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace__ctor_m8FF4728B5B37E6D481CD0118EB102B69BC22B138_RuntimeMethod_var)));
}
IL_0021:
{
// m_DeviceId = device.deviceId;
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_7 = ___device0;
NullCheck(L_7);
int32_t L_8;
L_8 = InputDevice_get_deviceId_mC65E69E6117B78DB2F4963F5CF9BF031488AD588_inline(L_7, NULL);
__this->___m_DeviceId_4 = L_8;
// }
return;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::.ctor(System.Int64,System.Boolean,System.Int64,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace__ctor_m33E71735CDB4DEC9D50431B1DF90CA88BD532AB3 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, int64_t ___bufferSizeInBytes0, bool ___growBuffer1, int64_t ___maxBufferSizeInBytes2, int64_t ___growIncrementSizeInBytes3, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
{
// [SerializeField] private int m_DeviceId = InputDevice.InvalidDeviceId;
__this->___m_DeviceId_4 = 0;
// public InputEventTrace(long bufferSizeInBytes = kDefaultBufferSize, bool growBuffer = false, long maxBufferSizeInBytes = -1, long growIncrementSizeInBytes = -1)
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
// m_EventBufferSize = (uint)bufferSizeInBytes;
int64_t L_0 = ___bufferSizeInBytes0;
__this->___m_EventBufferSize_6 = ((int64_t)(uint64_t)((uint32_t)((int32_t)(uint32_t)L_0)));
// if (growBuffer)
bool L_1 = ___growBuffer1;
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_005f;
}
}
{
// if (maxBufferSizeInBytes < 0)
int64_t L_3 = ___maxBufferSizeInBytes2;
V_1 = (bool)((((int64_t)L_3) < ((int64_t)((int64_t)0)))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_0035;
}
}
{
// m_MaxEventBufferSize = 256 * kDefaultBufferSize;
__this->___m_MaxEventBufferSize_7 = ((int64_t)((int32_t)268435456));
goto IL_003c;
}
IL_0035:
{
// m_MaxEventBufferSize = maxBufferSizeInBytes;
int64_t L_5 = ___maxBufferSizeInBytes2;
__this->___m_MaxEventBufferSize_7 = L_5;
}
IL_003c:
{
// if (growIncrementSizeInBytes < 0)
int64_t L_6 = ___growIncrementSizeInBytes3;
V_2 = (bool)((((int64_t)L_6) < ((int64_t)((int64_t)0)))? 1 : 0);
bool L_7 = V_2;
if (!L_7)
{
goto IL_0054;
}
}
{
// m_GrowIncrementSize = kDefaultBufferSize;
__this->___m_GrowIncrementSize_8 = ((int64_t)((int32_t)1048576));
goto IL_005c;
}
IL_0054:
{
// m_GrowIncrementSize = growIncrementSizeInBytes;
int64_t L_8 = ___growIncrementSizeInBytes3;
__this->___m_GrowIncrementSize_8 = L_8;
}
IL_005c:
{
goto IL_006d;
}
IL_005f:
{
// m_MaxEventBufferSize = m_EventBufferSize;
int64_t L_9 = __this->___m_EventBufferSize_6;
__this->___m_MaxEventBufferSize_7 = L_9;
}
IL_006d:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::WriteTo(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_WriteTo_mE0CBA14E395823FF215130CF48644ED14E8875CF (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, String_t* ___filePath0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* V_1 = NULL;
{
// if (string.IsNullOrEmpty(filePath))
String_t* L_0 = ___filePath0;
bool L_1;
L_1 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_0, NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0016;
}
}
{
// throw new ArgumentNullException(nameof(filePath));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_3 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E6231226F0A62484622AE51964EB5710BB528F9)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_WriteTo_mE0CBA14E395823FF215130CF48644ED14E8875CF_RuntimeMethod_var)));
}
IL_0016:
{
// using (var stream = File.OpenWrite(filePath))
String_t* L_4 = ___filePath0;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_5;
L_5 = File_OpenWrite_m6B0534629A4C3130AA4B611FFB492D3905081D69(L_4, NULL);
V_1 = L_5;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0027:
{// begin finally (depth: 1)
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_6 = V_1;
if (!L_6)
{
goto IL_0031;
}
}
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_7 = V_1;
NullCheck(L_7);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
}
IL_0031:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
// WriteTo(stream);
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_8 = V_1;
InputEventTrace_WriteTo_mCCAB194CB8909F1BEC6854A0CA39FF87160629D7(__this, L_8, NULL);
goto IL_0032;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0032:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::WriteTo(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_WriteTo_mCCAB194CB8909F1BEC6854A0CA39FF87160629D7 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_LengthSafe_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m23FEE5388406AABEE411B02BE7EB7F6CFB9B5DFF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tC686F7806DE87459BEAA5E37865B3E8BD4DAA1A0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* V_0 = NULL;
int32_t V_1 = 0;
int64_t V_2 = 0;
int32_t V_3 = 0;
int64_t V_4 = 0;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
RuntimeObject* V_8 = NULL;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_9;
memset((&V_9), 0, sizeof(V_9));
uint32_t V_10 = 0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_11 = NULL;
uint8_t* V_12 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_13 = NULL;
int32_t V_14 = 0;
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* V_15 = NULL;
bool V_16 = false;
String_t* G_B24_0 = NULL;
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* G_B24_1 = NULL;
String_t* G_B23_0 = NULL;
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* G_B23_1 = NULL;
{
// if (stream == null)
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___stream0;
V_5 = (bool)((((RuntimeObject*)(Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_5;
if (!L_1)
{
goto IL_0016;
}
}
{
// throw new ArgumentNullException(nameof(stream));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_WriteTo_mCCAB194CB8909F1BEC6854A0CA39FF87160629D7_RuntimeMethod_var)));
}
IL_0016:
{
// if (!stream.CanSeek)
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_3 = ___stream0;
NullCheck(L_3);
bool L_4;
L_4 = VirtualFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.IO.Stream::get_CanSeek() */, L_3);
V_6 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
bool L_5 = V_6;
if (!L_5)
{
goto IL_0035;
}
}
{
// throw new ArgumentException("Stream does not support seeking", nameof(stream));
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_6 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_6);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4541DABAC4FE8FD5D7C4DBCDA1190481B5A90229)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_WriteTo_mCCAB194CB8909F1BEC6854A0CA39FF87160629D7_RuntimeMethod_var)));
}
IL_0035:
{
// var writer = new BinaryWriter(stream);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_7 = ___stream0;
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_8 = (BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E*)il2cpp_codegen_object_new(BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E_il2cpp_TypeInfo_var);
NullCheck(L_8);
BinaryWriter__ctor_mF2F1235E378C3EC493A8C816597BCEB4205A9CA0(L_8, L_7, NULL);
V_0 = L_8;
// var flags = default(FileFlags);
V_1 = 0;
// if (InputSystem.settings.updateMode == InputSettings.UpdateMode.ProcessEventsInFixedUpdate)
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF* L_9;
L_9 = InputSystem_get_settings_mFAFDCA4665DFE068CEBBBB379972A390BD0E45C7(NULL);
NullCheck(L_9);
int32_t L_10;
L_10 = InputSettings_get_updateMode_mD37EABFC0678912846EABBC3CF31AC82E4ACE79E_inline(L_9, NULL);
V_7 = (bool)((((int32_t)L_10) == ((int32_t)2))? 1 : 0);
bool L_11 = V_7;
if (!L_11)
{
goto IL_0055;
}
}
{
// flags |= FileFlags.FixedUpdate;
int32_t L_12 = V_1;
V_1 = ((int32_t)((int32_t)L_12|1));
}
IL_0055:
{
// writer.Write(kFileFormat);
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_13 = V_0;
il2cpp_codegen_runtime_class_init_inline(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_14;
L_14 = InputEventTrace_get_kFileFormat_m100D583854AC0253CD6C32A04AB729C55AB7D46F(NULL);
int32_t L_15;
L_15 = FourCC_op_Implicit_m754D657392DC63F1F125F3391002C84ABD26144A(L_14, NULL);
NullCheck(L_13);
VirtualActionInvoker1< int32_t >::Invoke(18 /* System.Void System.IO.BinaryWriter::Write(System.Int32) */, L_13, L_15);
// writer.Write(kFileVersion);
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_16 = V_0;
int32_t L_17 = ((InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_StaticFields*)il2cpp_codegen_static_fields_for(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var))->___kFileVersion_17;
NullCheck(L_16);
VirtualActionInvoker1< int32_t >::Invoke(18 /* System.Void System.IO.BinaryWriter::Write(System.Int32) */, L_16, L_17);
// writer.Write((int)flags);
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_18 = V_0;
int32_t L_19 = V_1;
NullCheck(L_18);
VirtualActionInvoker1< int32_t >::Invoke(18 /* System.Void System.IO.BinaryWriter::Write(System.Int32) */, L_18, L_19);
// writer.Write((int)Application.platform);
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_20 = V_0;
int32_t L_21;
L_21 = Application_get_platform_m1AB34E71D9885B120F6021EB2B11DCB28CD6008D(NULL);
NullCheck(L_20);
VirtualActionInvoker1< int32_t >::Invoke(18 /* System.Void System.IO.BinaryWriter::Write(System.Int32) */, L_20, L_21);
// writer.Write((ulong)m_EventCount);
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_22 = V_0;
int64_t L_23 = __this->___m_EventCount_9;
NullCheck(L_22);
VirtualActionInvoker1< uint64_t >::Invoke(21 /* System.Void System.IO.BinaryWriter::Write(System.UInt64) */, L_22, L_23);
// writer.Write((ulong)m_EventSizeInBytes);
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_24 = V_0;
int64_t L_25 = __this->___m_EventSizeInBytes_10;
NullCheck(L_24);
VirtualActionInvoker1< uint64_t >::Invoke(21 /* System.Void System.IO.BinaryWriter::Write(System.UInt64) */, L_24, L_25);
// foreach (var eventPtr in this)
RuntimeObject* L_26;
L_26 = InputEventTrace_GetEnumerator_mEB8437D4B14D194CBA901FB9DD034AB0BD1015E3(__this, NULL);
V_8 = L_26;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0114:
{// begin finally (depth: 1)
{
RuntimeObject* L_27 = V_8;
if (!L_27)
{
goto IL_0120;
}
}
{
RuntimeObject* L_28 = V_8;
NullCheck(L_28);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_28);
}
IL_0120:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0109_1;
}
IL_00ab_1:
{
// foreach (var eventPtr in this)
RuntimeObject* L_29 = V_8;
NullCheck(L_29);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_30;
L_30 = InterfaceFuncInvoker0< InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>::get_Current() */, IEnumerator_1_tC686F7806DE87459BEAA5E37865B3E8BD4DAA1A0_il2cpp_TypeInfo_var, L_29);
V_9 = L_30;
// var sizeInBytes = eventPtr.sizeInBytes;
uint32_t L_31;
L_31 = InputEventPtr_get_sizeInBytes_mE060F5A7176AAF8ED749DB4A3DC7976249716597((&V_9), NULL);
V_10 = L_31;
// var buffer = new byte[sizeInBytes];
uint32_t L_32 = V_10;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_33 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_32);
V_11 = L_33;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0104_1:
{// begin finally (depth: 2)
V_13 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
return;
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
// fixed(byte* bufferPtr = buffer)
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_34 = V_11;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_35 = L_34;
V_13 = L_35;
if (!L_35)
{
goto IL_00d4_2;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_36 = V_13;
NullCheck(L_36);
if (((int32_t)(((RuntimeArray*)L_36)->max_length)))
{
goto IL_00da_2;
}
}
IL_00d4_2:
{
V_12 = (uint8_t*)((uintptr_t)0);
goto IL_00e5_2;
}
IL_00da_2:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_37 = V_13;
NullCheck(L_37);
V_12 = (uint8_t*)((uintptr_t)((L_37)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_00e5_2:
{
// UnsafeUtility.MemCpy(bufferPtr, eventPtr.data, sizeInBytes);
uint8_t* L_38 = V_12;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_39;
L_39 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&V_9), NULL);
uint32_t L_40 = V_10;
UnsafeUtility_MemCpy_m019E657B952C27F705607F0F3D371EEE526B716B((void*)L_38, (void*)L_39, ((int64_t)(uint64_t)L_40), NULL);
// writer.Write(buffer);
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_41 = V_0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_42 = V_11;
NullCheck(L_41);
VirtualActionInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(11 /* System.Void System.IO.BinaryWriter::Write(System.Byte[]) */, L_41, L_42);
goto IL_0108_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0108_1:
{
}
IL_0109_1:
{
// foreach (var eventPtr in this)
RuntimeObject* L_43 = V_8;
NullCheck(L_43);
bool L_44;
L_44 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_43);
if (L_44)
{
goto IL_00ab_1;
}
}
{
goto IL_0121;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0121:
{
// writer.Flush();
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_45 = V_0;
NullCheck(L_45);
VirtualActionInvoker0::Invoke(7 /* System.Void System.IO.BinaryWriter::Flush() */, L_45);
// var positionOfDeviceList = stream.Position;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_46 = ___stream0;
NullCheck(L_46);
int64_t L_47;
L_47 = VirtualFuncInvoker0< int64_t >::Invoke(12 /* System.Int64 System.IO.Stream::get_Position() */, L_46);
V_2 = L_47;
// var deviceCount = m_DeviceInfos.LengthSafe();
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_48 = __this->___m_DeviceInfos_16;
int32_t L_49;
L_49 = ArrayHelpers_LengthSafe_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m23FEE5388406AABEE411B02BE7EB7F6CFB9B5DFF(L_48, ArrayHelpers_LengthSafe_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m23FEE5388406AABEE411B02BE7EB7F6CFB9B5DFF_RuntimeMethod_var);
V_3 = L_49;
// writer.Write(deviceCount);
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_50 = V_0;
int32_t L_51 = V_3;
NullCheck(L_50);
VirtualActionInvoker1< int32_t >::Invoke(18 /* System.Void System.IO.BinaryWriter::Write(System.Int32) */, L_50, L_51);
// for (var i = 0; i < deviceCount; ++i)
V_14 = 0;
goto IL_01b3;
}
IL_0148:
{
// ref var device = ref m_DeviceInfos[i];
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_52 = __this->___m_DeviceInfos_16;
int32_t L_53 = V_14;
NullCheck(L_52);
V_15 = ((L_52)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_53)));
// writer.Write(device.deviceId);
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_54 = V_0;
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* L_55 = V_15;
int32_t L_56;
L_56 = DeviceInfo_get_deviceId_m1F56DCC1850CA1B775C357DA6D521F04EA74F0C6_inline(L_55, NULL);
NullCheck(L_54);
VirtualActionInvoker1< int32_t >::Invoke(18 /* System.Void System.IO.BinaryWriter::Write(System.Int32) */, L_54, L_56);
// writer.Write(device.layout);
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_57 = V_0;
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* L_58 = V_15;
String_t* L_59;
L_59 = DeviceInfo_get_layout_mC531D6400FCF8EE7CCBE96D0DC9328BC0A5AC24C_inline(L_58, NULL);
NullCheck(L_57);
VirtualActionInvoker1< String_t* >::Invoke(23 /* System.Void System.IO.BinaryWriter::Write(System.String) */, L_57, L_59);
// writer.Write(device.stateFormat);
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_60 = V_0;
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* L_61 = V_15;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_62;
L_62 = DeviceInfo_get_stateFormat_mA04A926E1277535752AC4117996C3B0F89D26916_inline(L_61, NULL);
int32_t L_63;
L_63 = FourCC_op_Implicit_m754D657392DC63F1F125F3391002C84ABD26144A(L_62, NULL);
NullCheck(L_60);
VirtualActionInvoker1< int32_t >::Invoke(18 /* System.Void System.IO.BinaryWriter::Write(System.Int32) */, L_60, L_63);
// writer.Write(device.stateSizeInBytes);
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_64 = V_0;
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* L_65 = V_15;
int32_t L_66;
L_66 = DeviceInfo_get_stateSizeInBytes_mD21A7DBF02B25079F7A1F1482AC2EFE5A86F5C9C_inline(L_65, NULL);
NullCheck(L_64);
VirtualActionInvoker1< int32_t >::Invoke(18 /* System.Void System.IO.BinaryWriter::Write(System.Int32) */, L_64, L_66);
// writer.Write(device.m_FullLayoutJson ?? string.Empty);
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_67 = V_0;
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* L_68 = V_15;
String_t* L_69 = L_68->___m_FullLayoutJson_4;
String_t* L_70 = L_69;
G_B23_0 = L_70;
G_B23_1 = L_67;
if (L_70)
{
G_B24_0 = L_70;
G_B24_1 = L_67;
goto IL_01a6;
}
}
{
String_t* L_71 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B24_0 = L_71;
G_B24_1 = G_B23_1;
}
IL_01a6:
{
NullCheck(G_B24_1);
VirtualActionInvoker1< String_t* >::Invoke(23 /* System.Void System.IO.BinaryWriter::Write(System.String) */, G_B24_1, G_B24_0);
// for (var i = 0; i < deviceCount; ++i)
int32_t L_72 = V_14;
V_14 = ((int32_t)il2cpp_codegen_add(L_72, 1));
}
IL_01b3:
{
// for (var i = 0; i < deviceCount; ++i)
int32_t L_73 = V_14;
int32_t L_74 = V_3;
V_16 = (bool)((((int32_t)L_73) < ((int32_t)L_74))? 1 : 0);
bool L_75 = V_16;
if (L_75)
{
goto IL_0148;
}
}
{
// writer.Flush();
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_76 = V_0;
NullCheck(L_76);
VirtualActionInvoker0::Invoke(7 /* System.Void System.IO.BinaryWriter::Flush() */, L_76);
// var offsetOfDeviceList = stream.Position - positionOfDeviceList;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_77 = ___stream0;
NullCheck(L_77);
int64_t L_78;
L_78 = VirtualFuncInvoker0< int64_t >::Invoke(12 /* System.Int64 System.IO.Stream::get_Position() */, L_77);
int64_t L_79 = V_2;
V_4 = ((int64_t)il2cpp_codegen_subtract(L_78, L_79));
// writer.Write(offsetOfDeviceList);
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_80 = V_0;
int64_t L_81 = V_4;
NullCheck(L_80);
VirtualActionInvoker1< int64_t >::Invoke(20 /* System.Void System.IO.BinaryWriter::Write(System.Int64) */, L_80, L_81);
// }
return;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::ReadFrom(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_ReadFrom_m0B3DB3EBB340BBD3B9AE3A819C432B09BF4F358F (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, String_t* ___filePath0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* V_1 = NULL;
{
// if (string.IsNullOrEmpty(filePath))
String_t* L_0 = ___filePath0;
bool L_1;
L_1 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_0, NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0016;
}
}
{
// throw new ArgumentNullException(nameof(filePath));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_3 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E6231226F0A62484622AE51964EB5710BB528F9)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_ReadFrom_m0B3DB3EBB340BBD3B9AE3A819C432B09BF4F358F_RuntimeMethod_var)));
}
IL_0016:
{
// using (var stream = File.OpenRead(filePath))
String_t* L_4 = ___filePath0;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_5;
L_5 = File_OpenRead_m32C8C37542B7A02A2F643E3B816D16ABE690FF50(L_4, NULL);
V_1 = L_5;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0027:
{// begin finally (depth: 1)
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_6 = V_1;
if (!L_6)
{
goto IL_0031;
}
}
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_7 = V_1;
NullCheck(L_7);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
}
IL_0031:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
// ReadFrom(stream);
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_8 = V_1;
InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327(__this, L_8, NULL);
goto IL_0032;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0032:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::ReadFrom(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* V_0 = NULL;
uint64_t V_1 = 0;
uint64_t V_2 = 0;
uint8_t* V_3 = NULL;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
uint8_t* V_9 = NULL;
bool V_10 = false;
uint8_t* V_11 = NULL;
uint8_t* V_12 = NULL;
int64_t V_13 = 0;
int32_t V_14 = 0;
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* V_15 = NULL;
uint64_t V_16 = 0;
int32_t V_17 = 0;
uint32_t V_18 = 0;
uint32_t V_19 = 0;
int32_t V_20 = 0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_21 = NULL;
bool V_22 = false;
uint8_t* V_23 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_24 = NULL;
bool V_25 = false;
bool V_26 = false;
int32_t V_27 = 0;
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 V_28;
memset((&V_28), 0, sizeof(V_28));
bool V_29 = false;
bool V_30 = false;
bool V_31 = false;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
int32_t G_B11_0 = 0;
int32_t G_B15_0 = 0;
int32_t G_B45_0 = 0;
{
// if (stream == null)
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___stream0;
V_4 = (bool)((((RuntimeObject*)(Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_4;
if (!L_1)
{
goto IL_0016;
}
}
{
// throw new ArgumentNullException(nameof(stream));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327_RuntimeMethod_var)));
}
IL_0016:
{
// if (!stream.CanRead)
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_3 = ___stream0;
NullCheck(L_3);
bool L_4;
L_4 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, L_3);
V_5 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
bool L_5 = V_5;
if (!L_5)
{
goto IL_0035;
}
}
{
// throw new ArgumentException("Stream does not support reading", nameof(stream));
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_6 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_6);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA4EC35FE30A8C73BDAEF7A654EEEA3953D7FAE24)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327_RuntimeMethod_var)));
}
IL_0035:
{
// var reader = new BinaryReader(stream);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_7 = ___stream0;
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_8 = (BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158*)il2cpp_codegen_object_new(BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158_il2cpp_TypeInfo_var);
NullCheck(L_8);
BinaryReader__ctor_m898732FE0DBEDD480B24F6DE45A9AC696E44CC0F(L_8, L_7, NULL);
V_0 = L_8;
// if (reader.ReadInt32() != kFileFormat)
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_9 = V_0;
NullCheck(L_9);
int32_t L_10;
L_10 = VirtualFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_9);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_11;
L_11 = FourCC_op_Implicit_mE034DF02D6986EFBFA80055EC94936D958CBEF66(L_10, NULL);
il2cpp_codegen_runtime_class_init_inline(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_12;
L_12 = InputEventTrace_get_kFileFormat_m100D583854AC0253CD6C32A04AB729C55AB7D46F(NULL);
bool L_13;
L_13 = FourCC_op_Inequality_mD7122B2F4332BFE2AA18A50FC62C071E8CB7FDB2(L_11, L_12, NULL);
V_6 = L_13;
bool L_14 = V_6;
if (!L_14)
{
goto IL_0071;
}
}
{
// throw new IOException($"Stream does not appear to be an InputEventTrace (no '{kFileFormat}' code)");
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var)));
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_15;
L_15 = InputEventTrace_get_kFileFormat_m100D583854AC0253CD6C32A04AB729C55AB7D46F(NULL);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_16 = L_15;
RuntimeObject* L_17 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED_il2cpp_TypeInfo_var)), &L_16);
String_t* L_18;
L_18 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral589E6D8BD59F7D804E4A1A1C559787B0B2549B6C)), L_17, NULL);
IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* L_19 = (IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var)));
NullCheck(L_19);
IOException__ctor_mE0612A16064F93C7EBB468D6874777BD70CB50CA(L_19, L_18, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327_RuntimeMethod_var)));
}
IL_0071:
{
// if (reader.ReadInt32() > kFileVersion)
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_20 = V_0;
NullCheck(L_20);
int32_t L_21;
L_21 = VirtualFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_20);
il2cpp_codegen_runtime_class_init_inline(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
int32_t L_22 = ((InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_StaticFields*)il2cpp_codegen_static_fields_for(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var))->___kFileVersion_17;
V_7 = (bool)((((int32_t)L_21) > ((int32_t)L_22))? 1 : 0);
bool L_23 = V_7;
if (!L_23)
{
goto IL_009e;
}
}
{
// throw new IOException($"Stream is an InputEventTrace but a newer version (expected version {kFileVersion} or below)");
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var)));
int32_t L_24 = ((InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var))))->___kFileVersion_17;
int32_t L_25 = L_24;
RuntimeObject* L_26 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_25);
String_t* L_27;
L_27 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral34E2E1D5D393F33E08B55532C6B7D27294F02F4C)), L_26, NULL);
IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* L_28 = (IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var)));
NullCheck(L_28);
IOException__ctor_mE0612A16064F93C7EBB468D6874777BD70CB50CA(L_28, L_27, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327_RuntimeMethod_var)));
}
IL_009e:
{
// reader.ReadInt32(); // Flags; ignored for now.
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_29 = V_0;
NullCheck(L_29);
int32_t L_30;
L_30 = VirtualFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_29);
// reader.ReadInt32(); // Platform; for now we're not doing anything with it.
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_31 = V_0;
NullCheck(L_31);
int32_t L_32;
L_32 = VirtualFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_31);
// var eventCount = reader.ReadUInt64();
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_33 = V_0;
NullCheck(L_33);
uint64_t L_34;
L_34 = VirtualFuncInvoker0< uint64_t >::Invoke(18 /* System.UInt64 System.IO.BinaryReader::ReadUInt64() */, L_33);
V_1 = L_34;
// var totalEventSizeInBytes = reader.ReadUInt64();
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_35 = V_0;
NullCheck(L_35);
uint64_t L_36;
L_36 = VirtualFuncInvoker0< uint64_t >::Invoke(18 /* System.UInt64 System.IO.BinaryReader::ReadUInt64() */, L_35);
V_2 = L_36;
// var oldBuffer = m_EventBuffer;
uint8_t* L_37;
L_37 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
V_3 = L_37;
// if (eventCount > 0 && totalEventSizeInBytes > 0)
uint64_t L_38 = V_1;
if ((!(((uint64_t)L_38) > ((uint64_t)((int64_t)0)))))
{
goto IL_00cd;
}
}
{
uint64_t L_39 = V_2;
G_B11_0 = ((!(((uint64_t)L_39) <= ((uint64_t)((int64_t)0))))? 1 : 0);
goto IL_00ce;
}
IL_00cd:
{
G_B11_0 = 0;
}
IL_00ce:
{
V_8 = (bool)G_B11_0;
bool L_40 = V_8;
if (!L_40)
{
goto IL_02dd;
}
}
{
// if (m_EventBuffer != null && m_EventBufferSize >= (long)totalEventSizeInBytes)
uint8_t* L_41;
L_41 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
if ((((intptr_t)L_41) == ((intptr_t)((uintptr_t)0))))
{
goto IL_00f0;
}
}
{
int64_t L_42 = __this->___m_EventBufferSize_6;
uint64_t L_43 = V_2;
G_B15_0 = ((((int32_t)((((int64_t)L_42) < ((int64_t)L_43))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_00f1;
}
IL_00f0:
{
G_B15_0 = 0;
}
IL_00f1:
{
V_10 = (bool)G_B15_0;
bool L_44 = V_10;
if (!L_44)
{
goto IL_0103;
}
}
{
// buffer = m_EventBuffer;
uint8_t* L_45;
L_45 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
V_9 = L_45;
goto IL_0116;
}
IL_0103:
{
// buffer = (byte*)UnsafeUtility.Malloc((long)totalEventSizeInBytes, 4, Allocator.Persistent);
uint64_t L_46 = V_2;
void* L_47;
L_47 = UnsafeUtility_Malloc_mA79BF3D6FC86F67D4354A6C8481DB0F13FD6777B(L_46, 4, 4, NULL);
V_9 = (uint8_t*)L_47;
// m_EventBufferSize = (long)totalEventSizeInBytes;
uint64_t L_48 = V_2;
__this->___m_EventBufferSize_6 = L_48;
}
IL_0116:
{
}
try
{// begin try (depth: 1)
{
// var tailPtr = buffer;
uint8_t* L_49 = V_9;
V_11 = L_49;
// var endPtr = tailPtr + totalEventSizeInBytes;
uint8_t* L_50 = V_11;
uint64_t L_51 = V_2;
V_12 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_50, (intptr_t)((uintptr_t)L_51)));
// var totalEventSize = 0L;
V_13 = ((int64_t)0);
// for (var i = 0ul; i < eventCount; ++i)
V_16 = ((int64_t)0);
goto IL_01f1_1;
}
IL_0130_1:
{
// var eventType = reader.ReadInt32();
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_52 = V_0;
NullCheck(L_52);
int32_t L_53;
L_53 = VirtualFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_52);
V_17 = L_53;
// var eventSizeInBytes = (uint)reader.ReadUInt16();
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_54 = V_0;
NullCheck(L_54);
uint16_t L_55;
L_55 = VirtualFuncInvoker0< uint16_t >::Invoke(14 /* System.UInt16 System.IO.BinaryReader::ReadUInt16() */, L_54);
V_18 = L_55;
// var eventDeviceId = (uint)reader.ReadUInt16();
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_56 = V_0;
NullCheck(L_56);
uint16_t L_57;
L_57 = VirtualFuncInvoker0< uint16_t >::Invoke(14 /* System.UInt16 System.IO.BinaryReader::ReadUInt16() */, L_56);
V_19 = L_57;
// if (eventSizeInBytes > endPtr - tailPtr)
uint32_t L_58 = V_18;
uint8_t* L_59 = V_12;
uint8_t* L_60 = V_11;
V_22 = (bool)((((int64_t)((int64_t)(uint64_t)L_58)) > ((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_59, (intptr_t)L_60))/1)))))? 1 : 0);
bool L_61 = V_22;
if (!L_61)
{
goto IL_0161_1;
}
}
{
// break;
goto IL_01ff_1;
}
IL_0161_1:
{
// *(int*)tailPtr = eventType;
uint8_t* L_62 = V_11;
int32_t L_63 = V_17;
*((int32_t*)L_62) = (int32_t)L_63;
// tailPtr += 4;
uint8_t* L_64 = V_11;
V_11 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_64, 4));
// *(ushort*)tailPtr = (ushort)eventSizeInBytes;
uint8_t* L_65 = V_11;
uint32_t L_66 = V_18;
*((int16_t*)L_65) = (int16_t)((int32_t)(uint16_t)L_66);
// tailPtr += 2;
uint8_t* L_67 = V_11;
V_11 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_67, 2));
// *(ushort*)tailPtr = (ushort)eventDeviceId;
uint8_t* L_68 = V_11;
uint32_t L_69 = V_19;
*((int16_t*)L_68) = (int16_t)((int32_t)(uint16_t)L_69);
// tailPtr += 2;
uint8_t* L_70 = V_11;
V_11 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_70, 2));
// var remainingSize = (int)eventSizeInBytes - sizeof(int) - sizeof(short) - sizeof(short);
uint32_t L_71 = V_18;
V_20 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract((int32_t)L_71, 4)), 2)), 2));
// var tempBuffer = reader.ReadBytes(remainingSize);
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_72 = V_0;
int32_t L_73 = V_20;
NullCheck(L_72);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_74;
L_74 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t >::Invoke(25 /* System.Byte[] System.IO.BinaryReader::ReadBytes(System.Int32) */, L_72, L_73);
V_21 = L_74;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_01c5_1:
{// begin finally (depth: 2)
V_24 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
return;
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
// fixed(byte* tempBufferPtr = tempBuffer)
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_75 = V_21;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_76 = L_75;
V_24 = L_76;
if (!L_76)
{
goto IL_01a5_2;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_77 = V_24;
NullCheck(L_77);
if (((int32_t)(((RuntimeArray*)L_77)->max_length)))
{
goto IL_01ab_2;
}
}
IL_01a5_2:
{
V_23 = (uint8_t*)((uintptr_t)0);
goto IL_01b6_2;
}
IL_01ab_2:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_78 = V_24;
NullCheck(L_78);
V_23 = (uint8_t*)((uintptr_t)((L_78)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_01b6_2:
{
// UnsafeUtility.MemCpy(tailPtr, tempBufferPtr, remainingSize);
uint8_t* L_79 = V_11;
uint8_t* L_80 = V_23;
int32_t L_81 = V_20;
UnsafeUtility_MemCpy_m019E657B952C27F705607F0F3D371EEE526B716B((void*)L_79, (void*)L_80, ((int64_t)L_81), NULL);
goto IL_01c9_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01c9_1:
{
// tailPtr += remainingSize;
uint8_t* L_82 = V_11;
int32_t L_83 = V_20;
V_11 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_82, L_83));
// totalEventSize += eventSizeInBytes;
int64_t L_84 = V_13;
uint32_t L_85 = V_18;
V_13 = ((int64_t)il2cpp_codegen_add(L_84, ((int64_t)(uint64_t)L_85)));
// if (tailPtr >= endPtr)
uint8_t* L_86 = V_11;
uint8_t* L_87 = V_12;
V_25 = (bool)((((int32_t)((!(((uintptr_t)L_86) >= ((uintptr_t)L_87)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_88 = V_25;
if (!L_88)
{
goto IL_01e9_1;
}
}
{
// break;
goto IL_01ff_1;
}
IL_01e9_1:
{
// for (var i = 0ul; i < eventCount; ++i)
uint64_t L_89 = V_16;
V_16 = ((int64_t)il2cpp_codegen_add((int64_t)L_89, ((int64_t)1)));
}
IL_01f1_1:
{
// for (var i = 0ul; i < eventCount; ++i)
uint64_t L_90 = V_16;
uint64_t L_91 = V_1;
V_26 = (bool)((!(((uint64_t)L_90) >= ((uint64_t)L_91)))? 1 : 0);
bool L_92 = V_26;
if (L_92)
{
goto IL_0130_1;
}
}
IL_01ff_1:
{
// var deviceCount = reader.ReadInt32();
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_93 = V_0;
NullCheck(L_93);
int32_t L_94;
L_94 = VirtualFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_93);
V_14 = L_94;
// var deviceInfos = new DeviceInfo[deviceCount];
int32_t L_95 = V_14;
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_96 = (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A*)(DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A*)SZArrayNew(DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A_il2cpp_TypeInfo_var, (uint32_t)L_95);
V_15 = L_96;
// for (var i = 0; i < deviceCount; ++i)
V_27 = 0;
goto IL_027a_1;
}
IL_0215_1:
{
// deviceInfos[i] = new DeviceInfo
// {
// deviceId = reader.ReadInt32(),
// layout = reader.ReadString(),
// stateFormat = reader.ReadInt32(),
// stateSizeInBytes = reader.ReadInt32(),
// m_FullLayoutJson = reader.ReadString()
// };
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_97 = V_15;
int32_t L_98 = V_27;
il2cpp_codegen_initobj((&V_28), sizeof(DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52));
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_99 = V_0;
NullCheck(L_99);
int32_t L_100;
L_100 = VirtualFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_99);
DeviceInfo_set_deviceId_m76EE4AFBA1FA3FFACF2E017498621E66A819DEBD_inline((&V_28), L_100, NULL);
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_101 = V_0;
NullCheck(L_101);
String_t* L_102;
L_102 = VirtualFuncInvoker0< String_t* >::Invoke(22 /* System.String System.IO.BinaryReader::ReadString() */, L_101);
DeviceInfo_set_layout_mB0175279434FFE48B744FE2CA4800A1EF24B2D69_inline((&V_28), L_102, NULL);
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_103 = V_0;
NullCheck(L_103);
int32_t L_104;
L_104 = VirtualFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_103);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_105;
L_105 = FourCC_op_Implicit_mE034DF02D6986EFBFA80055EC94936D958CBEF66(L_104, NULL);
DeviceInfo_set_stateFormat_mFC8581D56C34FFCBF8264CFD61BA12CE56755478_inline((&V_28), L_105, NULL);
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_106 = V_0;
NullCheck(L_106);
int32_t L_107;
L_107 = VirtualFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_106);
DeviceInfo_set_stateSizeInBytes_m7D7507BD0D817A86E99E3E44E216B31855ED06B3_inline((&V_28), L_107, NULL);
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_108 = V_0;
NullCheck(L_108);
String_t* L_109;
L_109 = VirtualFuncInvoker0< String_t* >::Invoke(22 /* System.String System.IO.BinaryReader::ReadString() */, L_108);
(&V_28)->___m_FullLayoutJson_4 = L_109;
Il2CppCodeGenWriteBarrier((void**)(&(&V_28)->___m_FullLayoutJson_4), (void*)L_109);
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 L_110 = V_28;
NullCheck(L_97);
(L_97)->SetAt(static_cast<il2cpp_array_size_t>(L_98), (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52)L_110);
// for (var i = 0; i < deviceCount; ++i)
int32_t L_111 = V_27;
V_27 = ((int32_t)il2cpp_codegen_add(L_111, 1));
}
IL_027a_1:
{
// for (var i = 0; i < deviceCount; ++i)
int32_t L_112 = V_27;
int32_t L_113 = V_14;
V_29 = (bool)((((int32_t)L_112) < ((int32_t)L_113))? 1 : 0);
bool L_114 = V_29;
if (L_114)
{
goto IL_0215_1;
}
}
{
// m_EventBuffer = buffer;
uint8_t* L_115 = V_9;
InputEventTrace_set_m_EventBuffer_m9E277FFE218D8DB8738E10166B8685AAEBF20A56(__this, L_115, NULL);
// m_EventBufferHead = m_EventBuffer;
uint8_t* L_116;
L_116 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156(__this, L_116, NULL);
// m_EventBufferTail = endPtr;
uint8_t* L_117 = V_12;
InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B(__this, L_117, NULL);
// m_EventCount = (long)eventCount;
uint64_t L_118 = V_1;
__this->___m_EventCount_9 = L_118;
// m_EventSizeInBytes = totalEventSize;
int64_t L_119 = V_13;
__this->___m_EventSizeInBytes_10 = L_119;
// m_DeviceInfos = deviceInfos;
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_120 = V_15;
__this->___m_DeviceInfos_16 = L_120;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DeviceInfos_16), (void*)L_120);
goto IL_02da;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_02bf;
}
throw e;
}
CATCH_02bf:
{// begin catch(System.Object)
{
// catch
// if (buffer != oldBuffer)
uint8_t* L_121 = V_9;
uint8_t* L_122 = V_3;
V_30 = (bool)((((int32_t)((((intptr_t)L_121) == ((intptr_t)L_122))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_123 = V_30;
if (!L_123)
{
goto IL_02d8;
}
}
{
// UnsafeUtility.Free(buffer, Allocator.Persistent);
uint8_t* L_124 = V_9;
UnsafeUtility_Free_mA951B190894E1755DE821FCBD35F7AD9FB388F18((void*)L_124, 4, NULL);
}
IL_02d8:
{
// throw;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327_RuntimeMethod_var)));
}
}// end catch (depth: 1)
IL_02da:
{
goto IL_02fa;
}
IL_02dd:
{
// m_EventBuffer = default;
InputEventTrace_set_m_EventBuffer_m9E277FFE218D8DB8738E10166B8685AAEBF20A56(__this, (uint8_t*)((uintptr_t)0), NULL);
// m_EventBufferHead = default;
InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156(__this, (uint8_t*)((uintptr_t)0), NULL);
// m_EventBufferTail = default;
InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B(__this, (uint8_t*)((uintptr_t)0), NULL);
}
IL_02fa:
{
// if (m_EventBuffer != oldBuffer && oldBuffer != null)
uint8_t* L_125;
L_125 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
uint8_t* L_126 = V_3;
if ((((intptr_t)L_125) == ((intptr_t)L_126)))
{
goto IL_030d;
}
}
{
uint8_t* L_127 = V_3;
G_B45_0 = ((((int32_t)((((intptr_t)L_127) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_030e;
}
IL_030d:
{
G_B45_0 = 0;
}
IL_030e:
{
V_31 = (bool)G_B45_0;
bool L_128 = V_31;
if (!L_128)
{
goto IL_031c;
}
}
{
// UnsafeUtility.Free(oldBuffer, Allocator.Persistent);
uint8_t* L_129 = V_3;
UnsafeUtility_Free_mA951B190894E1755DE821FCBD35F7AD9FB388F18((void*)L_129, 4, NULL);
}
IL_031c:
{
// ++m_ChangeCounter;
int32_t L_130 = __this->___m_ChangeCounter_1;
__this->___m_ChangeCounter_1 = ((int32_t)il2cpp_codegen_add(L_130, 1));
// }
return;
}
}
// UnityEngine.InputSystem.LowLevel.InputEventTrace UnityEngine.InputSystem.LowLevel.InputEventTrace::LoadFrom(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* InputEventTrace_LoadFrom_mBF5C50471E480D9416B0F0503CEA5518CE658E36 (String_t* ___filePath0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* V_1 = NULL;
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* V_2 = NULL;
{
// if (string.IsNullOrEmpty(filePath))
String_t* L_0 = ___filePath0;
bool L_1;
L_1 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_0, NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0016;
}
}
{
// throw new ArgumentNullException(nameof(filePath));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_3 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E6231226F0A62484622AE51964EB5710BB528F9)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_LoadFrom_mBF5C50471E480D9416B0F0503CEA5518CE658E36_RuntimeMethod_var)));
}
IL_0016:
{
// using (var stream = File.OpenRead(filePath))
String_t* L_4 = ___filePath0;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_5;
L_5 = File_OpenRead_m32C8C37542B7A02A2F643E3B816D16ABE690FF50(L_4, NULL);
V_1 = L_5;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0026:
{// begin finally (depth: 1)
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_6 = V_1;
if (!L_6)
{
goto IL_0030;
}
}
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_7 = V_1;
NullCheck(L_7);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
}
IL_0030:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
// return LoadFrom(stream);
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_8 = V_1;
il2cpp_codegen_runtime_class_init_inline(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_9;
L_9 = InputEventTrace_LoadFrom_mE21BD1BF696EB9B7756199C143AE32FBEBDFB49C(L_8, NULL);
V_2 = L_9;
goto IL_0031;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0031:
{
// }
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_10 = V_2;
return L_10;
}
}
// UnityEngine.InputSystem.LowLevel.InputEventTrace UnityEngine.InputSystem.LowLevel.InputEventTrace::LoadFrom(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* InputEventTrace_LoadFrom_mE21BD1BF696EB9B7756199C143AE32FBEBDFB49C (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* V_3 = NULL;
{
// if (stream == null)
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___stream0;
V_1 = (bool)((((RuntimeObject*)(Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_0014;
}
}
{
// throw new ArgumentNullException(nameof(stream));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_LoadFrom_mE21BD1BF696EB9B7756199C143AE32FBEBDFB49C_RuntimeMethod_var)));
}
IL_0014:
{
// if (!stream.CanRead)
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_3 = ___stream0;
NullCheck(L_3);
bool L_4;
L_4 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, L_3);
V_2 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
bool L_5 = V_2;
if (!L_5)
{
goto IL_0031;
}
}
{
// throw new ArgumentException("Stream must be readable", nameof(stream));
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_6 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_6);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE518FE2FD73613C259C98F83F70015A67E8459D1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_LoadFrom_mE21BD1BF696EB9B7756199C143AE32FBEBDFB49C_RuntimeMethod_var)));
}
IL_0031:
{
// var trace = new InputEventTrace();
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_7 = (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD*)il2cpp_codegen_object_new(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
NullCheck(L_7);
InputEventTrace__ctor_m33E71735CDB4DEC9D50431B1DF90CA88BD532AB3(L_7, ((int64_t)((int32_t)1048576)), (bool)0, ((int64_t)(-1)), ((int64_t)(-1)), NULL);
V_0 = L_7;
// trace.ReadFrom(stream);
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_8 = V_0;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_9 = ___stream0;
NullCheck(L_8);
InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327(L_8, L_9, NULL);
// return trace;
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_10 = V_0;
V_3 = L_10;
goto IL_004e;
}
IL_004e:
{
// }
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_11 = V_3;
return L_11;
}
}
// UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController UnityEngine.InputSystem.LowLevel.InputEventTrace::Replay()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* InputEventTrace_Replay_m6AF6120FF577F3025FEF03C4D21B018A1B5C6335 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* V_0 = NULL;
{
// Disable();
InputEventTrace_Disable_m58CF35DBD23C6091AEE498C2DFC14E40D51BA8D9(__this, NULL);
// return new ReplayController(this);
ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* L_0 = (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C*)il2cpp_codegen_object_new(ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C_il2cpp_TypeInfo_var);
NullCheck(L_0);
ReplayController__ctor_mFACECC15923550957D306EF31786A98FD37F1F03(L_0, __this, NULL);
V_0 = L_0;
goto IL_0011;
}
IL_0011:
{
// }
ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* L_1 = V_0;
return L_1;
}
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::Resize(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_Resize_m0319AC81996595EBA1C5C16A7C2C2EB24310DB0A (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, int64_t ___newBufferSize0, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_7;
memset((&V_7), 0, sizeof(V_7));
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_8 = NULL;
int32_t V_9 = 0;
int32_t V_10 = 0;
int64_t V_11 = 0;
int32_t V_12 = 0;
uint32_t V_13 = 0;
uint32_t V_14 = 0;
bool V_15 = false;
bool V_16 = false;
bool V_17 = false;
bool V_18 = false;
bool V_19 = false;
int32_t G_B10_0 = 0;
{
// if (newBufferSize <= 0)
int64_t L_0 = ___newBufferSize0;
V_1 = (bool)((((int32_t)((((int64_t)L_0) > ((int64_t)((int64_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_001d;
}
}
{
// throw new ArgumentException("Size must be positive", nameof(newBufferSize));
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5278FC49D5DD7EE6B7B489211DF85A018916ACB6)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC5F6475699851D077E0F965E3C29BEB8A33E339A)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_Resize_m0319AC81996595EBA1C5C16A7C2C2EB24310DB0A_RuntimeMethod_var)));
}
IL_001d:
{
// if (m_EventBufferSize == newBufferSize)
int64_t L_3 = __this->___m_EventBufferSize_6;
int64_t L_4 = ___newBufferSize0;
V_2 = (bool)((((int64_t)L_3) == ((int64_t)L_4))? 1 : 0);
bool L_5 = V_2;
if (!L_5)
{
goto IL_0031;
}
}
{
// return true;
V_3 = (bool)1;
goto IL_01c4;
}
IL_0031:
{
// var newEventBuffer = (byte*)UnsafeUtility.Malloc(newBufferSize, 4, Allocator.Persistent);
int64_t L_6 = ___newBufferSize0;
void* L_7;
L_7 = UnsafeUtility_Malloc_mA79BF3D6FC86F67D4354A6C8481DB0F13FD6777B(L_6, 4, 4, NULL);
V_0 = (uint8_t*)L_7;
// if (newEventBuffer == default)
uint8_t* L_8 = V_0;
V_4 = (bool)((((intptr_t)L_8) == ((intptr_t)((uintptr_t)0)))? 1 : 0);
bool L_9 = V_4;
if (!L_9)
{
goto IL_004c;
}
}
{
// return false;
V_3 = (bool)0;
goto IL_01c4;
}
IL_004c:
{
// if (m_EventCount > 0)
int64_t L_10 = __this->___m_EventCount_9;
V_5 = (bool)((((int64_t)L_10) > ((int64_t)((int64_t)0)))? 1 : 0);
bool L_11 = V_5;
if (!L_11)
{
goto IL_0150;
}
}
{
// if (newBufferSize < m_EventBufferSize || m_HasWrapped)
int64_t L_12 = ___newBufferSize0;
int64_t L_13 = __this->___m_EventBufferSize_6;
if ((((int64_t)L_12) < ((int64_t)L_13)))
{
goto IL_0071;
}
}
{
bool L_14 = __this->___m_HasWrapped_14;
G_B10_0 = ((int32_t)(L_14));
goto IL_0072;
}
IL_0071:
{
G_B10_0 = 1;
}
IL_0072:
{
V_6 = (bool)G_B10_0;
bool L_15 = V_6;
if (!L_15)
{
goto IL_013a;
}
}
{
// var fromPtr = new InputEventPtr((InputEvent*)m_EventBufferHead);
uint8_t* L_16;
L_16 = InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75(__this, NULL);
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0((&V_7), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_16, NULL);
// var toPtr = (InputEvent*)newEventBuffer;
uint8_t* L_17 = V_0;
V_8 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_17;
// var newEventCount = 0;
V_9 = 0;
// var newEventSizeInBytes = 0;
V_10 = 0;
// var remainingEventBytes = m_EventSizeInBytes;
int64_t L_18 = __this->___m_EventSizeInBytes_10;
V_11 = L_18;
// for (var i = 0; i < m_EventCount; ++i)
V_12 = 0;
goto IL_010d;
}
IL_009f:
{
// var eventSizeInBytes = fromPtr.sizeInBytes;
uint32_t L_19;
L_19 = InputEventPtr_get_sizeInBytes_mE060F5A7176AAF8ED749DB4A3DC7976249716597((&V_7), NULL);
V_13 = L_19;
// var alignedEventSizeInBytes = eventSizeInBytes.AlignToMultipleOf(4);
uint32_t L_20 = V_13;
uint32_t L_21;
L_21 = NumberHelpers_AlignToMultipleOf_mEB8F85FE2BA604AC7B15C1FA171ECDF1A5D107C2_inline(L_20, 4, NULL);
V_14 = L_21;
// if (remainingEventBytes <= newBufferSize)
int64_t L_22 = V_11;
int64_t L_23 = ___newBufferSize0;
V_15 = (bool)((((int32_t)((((int64_t)L_22) > ((int64_t)L_23))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_24 = V_15;
if (!L_24)
{
goto IL_00eb;
}
}
{
// UnsafeUtility.MemCpy(toPtr, fromPtr.ToPointer(), eventSizeInBytes);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_25 = V_8;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_26;
L_26 = InputEventPtr_ToPointer_m2DE1A988A02CC6E632A5262095B719513F166CA6((&V_7), NULL);
uint32_t L_27 = V_13;
UnsafeUtility_MemCpy_m019E657B952C27F705607F0F3D371EEE526B716B((void*)L_25, (void*)L_26, ((int64_t)(uint64_t)L_27), NULL);
// toPtr = InputEvent.GetNextInMemory(toPtr);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_28 = V_8;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_29;
L_29 = InputEvent_GetNextInMemory_m236F5B3C61DB3F992C08B3A8366AE0BD9EDE2FAA(L_28, NULL);
V_8 = L_29;
// newEventSizeInBytes += (int)alignedEventSizeInBytes;
int32_t L_30 = V_10;
uint32_t L_31 = V_14;
V_10 = ((int32_t)il2cpp_codegen_add(L_30, (int32_t)L_31));
// ++newEventCount;
int32_t L_32 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add(L_32, 1));
}
IL_00eb:
{
// remainingEventBytes -= alignedEventSizeInBytes;
int64_t L_33 = V_11;
uint32_t L_34 = V_14;
V_11 = ((int64_t)il2cpp_codegen_subtract(L_33, ((int64_t)(uint64_t)L_34)));
// if (!GetNextEvent(ref fromPtr))
bool L_35;
L_35 = InputEventTrace_GetNextEvent_mDF7ED13DD6F42BA87EDE532CAB99BB697C8B108A(__this, (&V_7), NULL);
V_16 = (bool)((((int32_t)L_35) == ((int32_t)0))? 1 : 0);
bool L_36 = V_16;
if (!L_36)
{
goto IL_0106;
}
}
{
// break;
goto IL_011e;
}
IL_0106:
{
// for (var i = 0; i < m_EventCount; ++i)
int32_t L_37 = V_12;
V_12 = ((int32_t)il2cpp_codegen_add(L_37, 1));
}
IL_010d:
{
// for (var i = 0; i < m_EventCount; ++i)
int32_t L_38 = V_12;
int64_t L_39 = __this->___m_EventCount_9;
V_17 = (bool)((((int64_t)((int64_t)L_38)) < ((int64_t)L_39))? 1 : 0);
bool L_40 = V_17;
if (L_40)
{
goto IL_009f;
}
}
IL_011e:
{
// m_HasWrapped = false;
__this->___m_HasWrapped_14 = (bool)0;
// m_EventCount = newEventCount;
int32_t L_41 = V_9;
__this->___m_EventCount_9 = ((int64_t)L_41);
// m_EventSizeInBytes = newEventSizeInBytes;
int32_t L_42 = V_10;
__this->___m_EventSizeInBytes_10 = ((int64_t)L_42);
goto IL_014f;
}
IL_013a:
{
// UnsafeUtility.MemCpy(newEventBuffer,
// m_EventBufferHead,
// m_EventSizeInBytes);
uint8_t* L_43 = V_0;
uint8_t* L_44;
L_44 = InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75(__this, NULL);
int64_t L_45 = __this->___m_EventSizeInBytes_10;
UnsafeUtility_MemCpy_m019E657B952C27F705607F0F3D371EEE526B716B((void*)L_43, (void*)L_44, L_45, NULL);
}
IL_014f:
{
}
IL_0150:
{
// if (m_EventBuffer != null)
uint8_t* L_46;
L_46 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
V_18 = (bool)((((int32_t)((((intptr_t)L_46) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_47 = V_18;
if (!L_47)
{
goto IL_0170;
}
}
{
// UnsafeUtility.Free(m_EventBuffer, Allocator.Persistent);
uint8_t* L_48;
L_48 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
UnsafeUtility_Free_mA951B190894E1755DE821FCBD35F7AD9FB388F18((void*)L_48, 4, NULL);
}
IL_0170:
{
// m_EventBufferSize = newBufferSize;
int64_t L_49 = ___newBufferSize0;
__this->___m_EventBufferSize_6 = L_49;
// m_EventBuffer = newEventBuffer;
uint8_t* L_50 = V_0;
InputEventTrace_set_m_EventBuffer_m9E277FFE218D8DB8738E10166B8685AAEBF20A56(__this, L_50, NULL);
// m_EventBufferHead = newEventBuffer;
uint8_t* L_51 = V_0;
InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156(__this, L_51, NULL);
// m_EventBufferTail = m_EventBuffer + m_EventSizeInBytes;
uint8_t* L_52;
L_52 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
int64_t L_53 = __this->___m_EventSizeInBytes_10;
InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B(__this, ((uint8_t*)il2cpp_codegen_add((intptr_t)L_52, ((intptr_t)L_53))), NULL);
// if (m_MaxEventBufferSize < newBufferSize)
int64_t L_54 = __this->___m_MaxEventBufferSize_7;
int64_t L_55 = ___newBufferSize0;
V_19 = (bool)((((int64_t)L_54) < ((int64_t)L_55))? 1 : 0);
bool L_56 = V_19;
if (!L_56)
{
goto IL_01b2;
}
}
{
// m_MaxEventBufferSize = newBufferSize;
int64_t L_57 = ___newBufferSize0;
__this->___m_MaxEventBufferSize_7 = L_57;
}
IL_01b2:
{
// ++m_ChangeCounter;
int32_t L_58 = __this->___m_ChangeCounter_1;
__this->___m_ChangeCounter_1 = ((int32_t)il2cpp_codegen_add(L_58, 1));
// return true;
V_3 = (bool)1;
goto IL_01c4;
}
IL_01c4:
{
// }
bool L_59 = V_3;
return L_59;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Clear_mA0F23B4A934720A074AF146EDC4B1758BE341ED2 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
{
// m_EventBufferHead = m_EventBufferTail = default;
il2cpp_codegen_initobj((&V_0), sizeof(uint8_t*));
uint8_t* L_0 = V_0;
InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B(__this, L_0, NULL);
uint8_t* L_1 = V_0;
InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156(__this, L_1, NULL);
// m_EventCount = 0;
__this->___m_EventCount_9 = ((int64_t)0);
// m_EventSizeInBytes = 0;
__this->___m_EventSizeInBytes_10 = ((int64_t)0);
// ++m_ChangeCounter;
int32_t L_2 = __this->___m_ChangeCounter_1;
__this->___m_ChangeCounter_1 = ((int32_t)il2cpp_codegen_add(L_2, 1));
// m_DeviceInfos = null;
__this->___m_DeviceInfos_16 = (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DeviceInfos_16), (void*)(DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A*)NULL);
// }
return;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Enable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Enable_mF9369AEAFDEDC7C4ED2995DA4F385AF308506DD3 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_OnInputEvent_m119567393F344B8F53888E8564191B1280414AC8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
{
// if (m_Enabled)
bool L_0 = __this->___m_Enabled_2;
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_000d;
}
}
{
// return;
goto IL_0061;
}
IL_000d:
{
// if (m_EventBuffer == default)
uint8_t* L_2;
L_2 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
V_1 = (bool)((((intptr_t)L_2) == ((intptr_t)((uintptr_t)0)))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_0022;
}
}
{
// Allocate();
InputEventTrace_Allocate_mDF187B47860B3630C655626FC6745DA0CC927E9D(__this, NULL);
}
IL_0022:
{
// InputSystem.onEvent += OnInputEvent;
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_4;
L_4 = InputSystem_get_onEvent_m69B71DB23BBEE4E244701D3A5A42D962C791AD18(NULL);
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_5 = (Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA*)il2cpp_codegen_object_new(Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var);
NullCheck(L_5);
Action_2__ctor_m43B5BA62418FAB32773B12CEFF46A46855BF5B10(L_5, __this, (intptr_t)((void*)InputEventTrace_OnInputEvent_m119567393F344B8F53888E8564191B1280414AC8_RuntimeMethod_var), NULL);
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_6;
L_6 = InputEventListener_op_Addition_m122B39C12D9ADEDFA730C3B3A0B2530AA23172A2(L_4, L_5, NULL);
InputSystem_set_onEvent_m6B177A8A8F08BE00B5409F0C3136BE803316A4B5(L_6, NULL);
// if (m_RecordFrameMarkers)
bool L_7 = __this->___m_RecordFrameMarkers_15;
V_2 = L_7;
bool L_8 = V_2;
if (!L_8)
{
goto IL_005a;
}
}
{
// InputSystem.onBeforeUpdate += OnBeforeUpdate;
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
NullCheck(L_9);
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_9, __this, (intptr_t)((void*)InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83_RuntimeMethod_var), NULL);
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputSystem_add_onBeforeUpdate_mB479D148F4C1684B66FB64B79C9331813A596ECD(L_9, NULL);
}
IL_005a:
{
// m_Enabled = true;
__this->___m_Enabled_2 = (bool)1;
}
IL_0061:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Disable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Disable_m58CF35DBD23C6091AEE498C2DFC14E40D51BA8D9 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_OnInputEvent_m119567393F344B8F53888E8564191B1280414AC8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// if (!m_Enabled)
bool L_0 = __this->___m_Enabled_2;
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0010;
}
}
{
// return;
goto IL_0045;
}
IL_0010:
{
// InputSystem.onEvent -= OnInputEvent;
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_2;
L_2 = InputSystem_get_onEvent_m69B71DB23BBEE4E244701D3A5A42D962C791AD18(NULL);
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_3 = (Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA*)il2cpp_codegen_object_new(Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var);
NullCheck(L_3);
Action_2__ctor_m43B5BA62418FAB32773B12CEFF46A46855BF5B10(L_3, __this, (intptr_t)((void*)InputEventTrace_OnInputEvent_m119567393F344B8F53888E8564191B1280414AC8_RuntimeMethod_var), NULL);
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_4;
L_4 = InputEventListener_op_Subtraction_m64F5559B543948C414AC7A0D3E7BA1FE95743328(L_2, L_3, NULL);
InputSystem_set_onEvent_m6B177A8A8F08BE00B5409F0C3136BE803316A4B5(L_4, NULL);
// InputSystem.onBeforeUpdate -= OnBeforeUpdate;
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_5 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
NullCheck(L_5);
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_5, __this, (intptr_t)((void*)InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83_RuntimeMethod_var), NULL);
InputSystem_remove_onBeforeUpdate_mBF0659BB33E2FD7874CD45067CEFF08C3A7A9EE4(L_5, NULL);
// m_Enabled = false;
__this->___m_Enabled_2 = (bool)0;
}
IL_0045:
{
// }
return;
}
}
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::GetNextEvent(UnityEngine.InputSystem.LowLevel.InputEventPtr&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_GetNextEvent_mDF7ED13DD6F42BA87EDE532CAB99BB697C8B108A (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* ___current0, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
uint8_t* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_6;
memset((&V_6), 0, sizeof(V_6));
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
int32_t G_B11_0 = 0;
{
// if (m_EventBuffer == default)
uint8_t* L_0;
L_0 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
V_2 = (bool)((((intptr_t)L_0) == ((intptr_t)((uintptr_t)0)))? 1 : 0);
bool L_1 = V_2;
if (!L_1)
{
goto IL_0016;
}
}
{
// return false;
V_3 = (bool)0;
goto IL_00cd;
}
IL_0016:
{
// if (m_EventBufferHead == default)
uint8_t* L_2;
L_2 = InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75(__this, NULL);
V_4 = (bool)((((intptr_t)L_2) == ((intptr_t)((uintptr_t)0)))? 1 : 0);
bool L_3 = V_4;
if (!L_3)
{
goto IL_002d;
}
}
{
// return false;
V_3 = (bool)0;
goto IL_00cd;
}
IL_002d:
{
// if (!current.valid)
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_4 = ___current0;
bool L_5;
L_5 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(L_4, NULL);
V_5 = (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
bool L_6 = V_5;
if (!L_6)
{
goto IL_0052;
}
}
{
// current = new InputEventPtr((InputEvent*)m_EventBufferHead);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_7 = ___current0;
uint8_t* L_8;
L_8 = InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75(__this, NULL);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_9;
memset((&L_9), 0, sizeof(L_9));
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0((&L_9), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_8, /*hidden argument*/NULL);
*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)L_7 = L_9;
// return true;
V_3 = (bool)1;
goto IL_00cd;
}
IL_0052:
{
// var nextEvent = (byte*)current.Next().data;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_10 = ___current0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_11;
L_11 = InputEventPtr_Next_m401E057F7E6DAB9468F04D705173539E8876809D(L_10, NULL);
V_6 = L_11;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_12;
L_12 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&V_6), NULL);
V_0 = (uint8_t*)L_12;
// var endOfBuffer = m_EventBuffer + m_EventBufferSize;
uint8_t* L_13;
L_13 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
int64_t L_14 = __this->___m_EventBufferSize_6;
V_1 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, ((intptr_t)L_14)));
// if (nextEvent == m_EventBufferTail)
uint8_t* L_15 = V_0;
uint8_t* L_16;
L_16 = InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF(__this, NULL);
V_7 = (bool)((((intptr_t)L_15) == ((intptr_t)L_16))? 1 : 0);
bool L_17 = V_7;
if (!L_17)
{
goto IL_0084;
}
}
{
// return false;
V_3 = (bool)0;
goto IL_00cd;
}
IL_0084:
{
// if (endOfBuffer - nextEvent < InputEvent.kBaseEventSize ||
// ((InputEvent*)nextEvent)->sizeInBytes == 0)
uint8_t* L_18 = V_1;
uint8_t* L_19 = V_0;
if ((((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_18, (intptr_t)L_19))/1)))) < ((int64_t)((int64_t)((int32_t)20)))))
{
goto IL_009a;
}
}
{
uint8_t* L_20 = V_0;
uint32_t L_21;
L_21 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_20, NULL);
G_B11_0 = ((((int32_t)L_21) == ((int32_t)0))? 1 : 0);
goto IL_009b;
}
IL_009a:
{
G_B11_0 = 1;
}
IL_009b:
{
V_8 = (bool)G_B11_0;
bool L_22 = V_8;
if (!L_22)
{
goto IL_00bd;
}
}
{
// nextEvent = m_EventBuffer;
uint8_t* L_23;
L_23 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
V_0 = L_23;
// if (nextEvent == current.ToPointer())
uint8_t* L_24 = V_0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_25 = ___current0;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_26;
L_26 = InputEventPtr_ToPointer_m2DE1A988A02CC6E632A5262095B719513F166CA6(L_25, NULL);
V_9 = (bool)((((intptr_t)L_24) == ((intptr_t)L_26))? 1 : 0);
bool L_27 = V_9;
if (!L_27)
{
goto IL_00bc;
}
}
{
// return false; // There's only a single event in the buffer.
V_3 = (bool)0;
goto IL_00cd;
}
IL_00bc:
{
}
IL_00bd:
{
// current = new InputEventPtr((InputEvent*)nextEvent);
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_28 = ___current0;
uint8_t* L_29 = V_0;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_30;
memset((&L_30), 0, sizeof(L_30));
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0((&L_30), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_29, /*hidden argument*/NULL);
*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)L_28 = L_30;
// return true;
V_3 = (bool)1;
goto IL_00cd;
}
IL_00cd:
{
// }
bool L_31 = V_3;
return L_31;
}
}
// System.Collections.Generic.IEnumerator`1<UnityEngine.InputSystem.LowLevel.InputEventPtr> UnityEngine.InputSystem.LowLevel.InputEventTrace::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventTrace_GetEnumerator_mEB8437D4B14D194CBA901FB9DD034AB0BD1015E3 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
// return new Enumerator(this);
Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* L_0 = (Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75*)il2cpp_codegen_object_new(Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75_il2cpp_TypeInfo_var);
NullCheck(L_0);
Enumerator__ctor_m4F5637FFD01430441D557749B2443A43E2E52575(L_0, __this, NULL);
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
// }
RuntimeObject* L_1 = V_0;
return L_1;
}
}
// System.Collections.IEnumerator UnityEngine.InputSystem.LowLevel.InputEventTrace::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventTrace_System_Collections_IEnumerable_GetEnumerator_m35DFC81CECF28C55A9C7674E80AE9C2C4CFF02BD (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
// return GetEnumerator();
RuntimeObject* L_0;
L_0 = InputEventTrace_GetEnumerator_mEB8437D4B14D194CBA901FB9DD034AB0BD1015E3(__this, NULL);
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
// }
RuntimeObject* L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Dispose_m863313DA63405B01E2654F5B69ADAF01D8D6805F (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
{
// Disable();
InputEventTrace_Disable_m58CF35DBD23C6091AEE498C2DFC14E40D51BA8D9(__this, NULL);
// Release();
InputEventTrace_Release_m07D09F2199EA12E1DA722C54B84C4E1398081D01(__this, NULL);
// }
return;
}
}
// System.Byte* UnityEngine.InputSystem.LowLevel.InputEventTrace::get_m_EventBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
{
// get => (byte*)m_EventBufferStorage;
uint64_t L_0 = __this->___m_EventBufferStorage_11;
return (uint8_t*)(((uintptr_t)L_0));
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_m_EventBuffer(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBuffer_m9E277FFE218D8DB8738E10166B8685AAEBF20A56 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, uint8_t* ___value0, const RuntimeMethod* method)
{
{
// set => m_EventBufferStorage = (ulong)value;
uint8_t* L_0 = ___value0;
__this->___m_EventBufferStorage_11 = ((int64_t)(uint64_t)(intptr_t)L_0);
return;
}
}
// System.Byte* UnityEngine.InputSystem.LowLevel.InputEventTrace::get_m_EventBufferHead()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
{
// get => (byte*)m_EventBufferHeadStorage;
uint64_t L_0 = __this->___m_EventBufferHeadStorage_12;
return (uint8_t*)(((uintptr_t)L_0));
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_m_EventBufferHead(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, uint8_t* ___value0, const RuntimeMethod* method)
{
{
// set => m_EventBufferHeadStorage = (ulong)value;
uint8_t* L_0 = ___value0;
__this->___m_EventBufferHeadStorage_12 = ((int64_t)(uint64_t)(intptr_t)L_0);
return;
}
}
// System.Byte* UnityEngine.InputSystem.LowLevel.InputEventTrace::get_m_EventBufferTail()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
{
// get => (byte*)m_EventBufferTailStorage;
uint64_t L_0 = __this->___m_EventBufferTailStorage_13;
return (uint8_t*)(((uintptr_t)L_0));
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_m_EventBufferTail(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, uint8_t* ___value0, const RuntimeMethod* method)
{
{
// set => m_EventBufferTailStorage = (ulong)value;
uint8_t* L_0 = ___value0;
__this->___m_EventBufferTailStorage_13 = ((int64_t)(uint64_t)(intptr_t)L_0);
return;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Allocate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Allocate_mDF187B47860B3630C655626FC6745DA0CC927E9D (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
{
// m_EventBuffer = (byte*)UnsafeUtility.Malloc(m_EventBufferSize, 4, Allocator.Persistent);
int64_t L_0 = __this->___m_EventBufferSize_6;
void* L_1;
L_1 = UnsafeUtility_Malloc_mA79BF3D6FC86F67D4354A6C8481DB0F13FD6777B(L_0, 4, 4, NULL);
InputEventTrace_set_m_EventBuffer_m9E277FFE218D8DB8738E10166B8685AAEBF20A56(__this, (uint8_t*)L_1, NULL);
// }
return;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Release()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Release_m07D09F2199EA12E1DA722C54B84C4E1398081D01 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
// Clear();
InputEventTrace_Clear_mA0F23B4A934720A074AF146EDC4B1758BE341ED2(__this, NULL);
// if (m_EventBuffer != default)
uint8_t* L_0;
L_0 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
V_0 = (bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0031;
}
}
{
// UnsafeUtility.Free(m_EventBuffer, Allocator.Persistent);
uint8_t* L_2;
L_2 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
UnsafeUtility_Free_mA951B190894E1755DE821FCBD35F7AD9FB388F18((void*)L_2, 4, NULL);
// m_EventBuffer = default;
InputEventTrace_set_m_EventBuffer_m9E277FFE218D8DB8738E10166B8685AAEBF20A56(__this, (uint8_t*)((uintptr_t)0), NULL);
}
IL_0031:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::OnBeforeUpdate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_SizeOf_TisInputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5_mE272E24745A5A5359FDC77837068A5C4B9421E75_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 V_1;
memset((&V_1), 0, sizeof(V_1));
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 V_2;
memset((&V_2), 0, sizeof(V_2));
{
// if (m_RecordFrameMarkers)
bool L_0 = __this->___m_RecordFrameMarkers_15;
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_0057;
}
}
{
// var frameMarkerEvent = new InputEvent
// {
// type = FrameMarkerEvent,
// internalTime = InputRuntime.s_Instance.currentTime,
// sizeInBytes = (uint)UnsafeUtility.SizeOf<InputEvent>()
// };
il2cpp_codegen_initobj((&V_2), sizeof(InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5));
il2cpp_codegen_runtime_class_init_inline(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_2;
L_2 = InputEventTrace_get_FrameMarkerEvent_m2AABF936DE8A85187532D4A6B98B41DDB9955561(NULL);
InputEvent_set_type_mA12F3F32108A0B88A4EE7BCA8AE7F2972F8E9740((&V_2), L_2, NULL);
RuntimeObject* L_3 = ((InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var))->___s_Instance_0;
NullCheck(L_3);
double L_4;
L_4 = InterfaceFuncInvoker0< double >::Invoke(19 /* System.Double UnityEngine.InputSystem.LowLevel.IInputRuntime::get_currentTime() */, IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var, L_3);
InputEvent_set_internalTime_m914C4E1111E2A886D56B9D0A888ECE911F894980((&V_2), L_4, NULL);
int32_t L_5;
L_5 = UnsafeUtility_SizeOf_TisInputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5_mE272E24745A5A5359FDC77837068A5C4B9421E75(UnsafeUtility_SizeOf_TisInputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5_mE272E24745A5A5359FDC77837068A5C4B9421E75_RuntimeMethod_var);
InputEvent_set_sizeInBytes_m0F44793DDA0884B427B82447CE1106FC4E6F691C((&V_2), L_5, NULL);
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 L_6 = V_2;
V_1 = L_6;
// OnInputEvent(new InputEventPtr((InputEvent*)UnsafeUtility.AddressOf(ref frameMarkerEvent)), null);
void* L_7;
L_7 = il2cpp_codegen_unsafe_cast((&V_1));
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_8;
memset((&L_8), 0, sizeof(L_8));
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0((&L_8), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_7, /*hidden argument*/NULL);
InputEventTrace_OnInputEvent_m119567393F344B8F53888E8564191B1280414AC8(__this, L_8, (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)NULL, NULL);
}
IL_0057:
{
// }
return;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::OnInputEvent(UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_OnInputEvent_m119567393F344B8F53888E8564191B1280414AC8 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___inputEvent0, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___device1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_Append_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m50A8921FF90F5A6E5BA2D15D6D58D486B3D882BC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_get_length_m096E657BAB53406356BABE16CE03C92212CF5A52_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_m4EA8E60C61F02A061BF6D95B1411AC917E54A074_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6CD29DF87BDE4FB4030DE06320C56337EE9127EF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF33AEA4F74EB3F443686A5ABBEB28AFF89059C6F);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
uint8_t* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
uint8_t* V_4 = NULL;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
int64_t V_12 = 0;
bool V_13 = false;
int64_t V_14 = 0;
int64_t V_15 = 0;
bool V_16 = false;
bool V_17 = false;
bool V_18 = false;
bool V_19 = false;
bool V_20 = false;
bool V_21 = false;
uint8_t* V_22 = NULL;
uint8_t* V_23 = NULL;
uint32_t V_24 = 0;
bool V_25 = false;
bool V_26 = false;
bool V_27 = false;
bool V_28 = false;
bool V_29 = false;
int32_t V_30 = 0;
bool V_31 = false;
bool V_32 = false;
bool V_33 = false;
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 V_34;
memset((&V_34), 0, sizeof(V_34));
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 V_35;
memset((&V_35), 0, sizeof(V_35));
bool V_36 = false;
int32_t G_B6_0 = 0;
int32_t G_B11_0 = 0;
int32_t G_B22_0 = 0;
int32_t G_B26_0 = 0;
int32_t G_B44_0 = 0;
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* G_B59_0 = NULL;
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A** G_B59_1 = NULL;
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* G_B58_0 = NULL;
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A** G_B58_1 = NULL;
String_t* G_B60_0 = NULL;
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* G_B60_1 = NULL;
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A** G_B60_2 = NULL;
{
// if (inputEvent.handled)
bool L_0;
L_0 = InputEventPtr_get_handled_m6981E3A01858EB383B2420DA720DE82BF7A8ADFF((&___inputEvent0), NULL);
V_5 = L_0;
bool L_1 = V_5;
if (!L_1)
{
goto IL_0013;
}
}
{
// return;
goto IL_0437;
}
IL_0013:
{
// if (m_DeviceId != InputDevice.InvalidDeviceId && inputEvent.deviceId != m_DeviceId && inputEvent.type != FrameMarkerEvent)
int32_t L_2 = __this->___m_DeviceId_4;
if (!L_2)
{
goto IL_003d;
}
}
{
int32_t L_3;
L_3 = InputEventPtr_get_deviceId_mD8B68EDC37D90A69EE67A47B3E17F4D80D4620D3((&___inputEvent0), NULL);
int32_t L_4 = __this->___m_DeviceId_4;
if ((((int32_t)L_3) == ((int32_t)L_4)))
{
goto IL_003d;
}
}
{
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_5;
L_5 = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69((&___inputEvent0), NULL);
il2cpp_codegen_runtime_class_init_inline(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_6;
L_6 = InputEventTrace_get_FrameMarkerEvent_m2AABF936DE8A85187532D4A6B98B41DDB9955561(NULL);
bool L_7;
L_7 = FourCC_op_Inequality_mD7122B2F4332BFE2AA18A50FC62C071E8CB7FDB2(L_5, L_6, NULL);
G_B6_0 = ((int32_t)(L_7));
goto IL_003e;
}
IL_003d:
{
G_B6_0 = 0;
}
IL_003e:
{
V_6 = (bool)G_B6_0;
bool L_8 = V_6;
if (!L_8)
{
goto IL_0049;
}
}
{
// return;
goto IL_0437;
}
IL_0049:
{
// if (m_OnFilterEvent != null && !m_OnFilterEvent(inputEvent, device))
Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0* L_9 = __this->___m_OnFilterEvent_3;
if (!L_9)
{
goto IL_0063;
}
}
{
Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0* L_10 = __this->___m_OnFilterEvent_3;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_11 = ___inputEvent0;
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_12 = ___device1;
NullCheck(L_10);
bool L_13;
L_13 = Func_3_Invoke_mF26F7E74E56162E7527FB17F4A83729B04772C55_inline(L_10, L_11, L_12, NULL);
G_B11_0 = ((((int32_t)L_13) == ((int32_t)0))? 1 : 0);
goto IL_0064;
}
IL_0063:
{
G_B11_0 = 0;
}
IL_0064:
{
V_7 = (bool)G_B11_0;
bool L_14 = V_7;
if (!L_14)
{
goto IL_006f;
}
}
{
// return;
goto IL_0437;
}
IL_006f:
{
// if (m_EventBuffer == default)
uint8_t* L_15;
L_15 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
V_8 = (bool)((((intptr_t)L_15) == ((intptr_t)((uintptr_t)0)))? 1 : 0);
bool L_16 = V_8;
if (!L_16)
{
goto IL_0084;
}
}
{
// return;
goto IL_0437;
}
IL_0084:
{
// var bytesNeeded = inputEvent.sizeInBytes.AlignToMultipleOf(4);
uint32_t L_17;
L_17 = InputEventPtr_get_sizeInBytes_mE060F5A7176AAF8ED749DB4A3DC7976249716597((&___inputEvent0), NULL);
uint32_t L_18;
L_18 = NumberHelpers_AlignToMultipleOf_mEB8F85FE2BA604AC7B15C1FA171ECDF1A5D107C2_inline(L_17, 4, NULL);
V_0 = L_18;
// if (bytesNeeded > m_MaxEventBufferSize)
uint32_t L_19 = V_0;
int64_t L_20 = __this->___m_MaxEventBufferSize_7;
V_9 = (bool)((((int64_t)((int64_t)(uint64_t)L_19)) > ((int64_t)L_20))? 1 : 0);
bool L_21 = V_9;
if (!L_21)
{
goto IL_00a7;
}
}
{
// return;
goto IL_0437;
}
IL_00a7:
{
// Profiler.BeginSample("InputEventTrace");
Profiler_BeginSample_mA836D6E554511CBEAD80F55EE41AAA5D1B26B3DE_inline(_stringLiteralF33AEA4F74EB3F443686A5ABBEB28AFF89059C6F, NULL);
// if (m_EventBufferTail == default)
uint8_t* L_22;
L_22 = InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF(__this, NULL);
V_10 = (bool)((((intptr_t)L_22) == ((intptr_t)((uintptr_t)0)))? 1 : 0);
bool L_23 = V_10;
if (!L_23)
{
goto IL_00de;
}
}
{
// m_EventBufferHead = m_EventBuffer;
uint8_t* L_24;
L_24 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156(__this, L_24, NULL);
// m_EventBufferTail = m_EventBuffer;
uint8_t* L_25;
L_25 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B(__this, L_25, NULL);
}
IL_00de:
{
// var newTail = m_EventBufferTail + bytesNeeded;
uint8_t* L_26;
L_26 = InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF(__this, NULL);
uint32_t L_27 = V_0;
V_1 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_26, (intptr_t)((uintptr_t)L_27)));
// var newTailOvertakesHead = newTail > m_EventBufferHead && m_EventBufferHead != m_EventBuffer;
uint8_t* L_28 = V_1;
uint8_t* L_29;
L_29 = InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75(__this, NULL);
if ((!(((uintptr_t)L_28) > ((uintptr_t)L_29))))
{
goto IL_0104;
}
}
{
uint8_t* L_30;
L_30 = InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75(__this, NULL);
uint8_t* L_31;
L_31 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
G_B22_0 = ((((int32_t)((((intptr_t)L_30) == ((intptr_t)L_31))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0105;
}
IL_0104:
{
G_B22_0 = 0;
}
IL_0105:
{
V_2 = (bool)G_B22_0;
// var newTailGoesPastEndOfBuffer = newTail > m_EventBuffer + m_EventBufferSize;
uint8_t* L_32 = V_1;
uint8_t* L_33;
L_33 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
int64_t L_34 = __this->___m_EventBufferSize_6;
V_3 = (bool)((!(((uintptr_t)L_32) <= ((uintptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_33, ((intptr_t)L_34))))))? 1 : 0);
// if (newTailGoesPastEndOfBuffer)
bool L_35 = V_3;
V_11 = L_35;
bool L_36 = V_11;
if (!L_36)
{
goto IL_0224;
}
}
{
// if (m_EventBufferSize < m_MaxEventBufferSize && !m_HasWrapped)
int64_t L_37 = __this->___m_EventBufferSize_6;
int64_t L_38 = __this->___m_MaxEventBufferSize_7;
if ((((int64_t)L_37) >= ((int64_t)L_38)))
{
goto IL_013c;
}
}
{
bool L_39 = __this->___m_HasWrapped_14;
G_B26_0 = ((((int32_t)L_39) == ((int32_t)0))? 1 : 0);
goto IL_013d;
}
IL_013c:
{
G_B26_0 = 0;
}
IL_013d:
{
V_13 = (bool)G_B26_0;
bool L_40 = V_13;
if (!L_40)
{
goto IL_01a1;
}
}
{
// var increment = Math.Max(m_GrowIncrementSize, bytesNeeded.AlignToMultipleOf(4));
int64_t L_41 = __this->___m_GrowIncrementSize_8;
uint32_t L_42 = V_0;
uint32_t L_43;
L_43 = NumberHelpers_AlignToMultipleOf_mEB8F85FE2BA604AC7B15C1FA171ECDF1A5D107C2_inline(L_42, 4, NULL);
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int64_t L_44;
L_44 = Math_Max_mA040C488C0D1F062F109992835E8498A7D24EFA5(L_41, ((int64_t)(uint64_t)L_43), NULL);
V_14 = L_44;
// var newBufferSize = m_EventBufferSize + increment;
int64_t L_45 = __this->___m_EventBufferSize_6;
int64_t L_46 = V_14;
V_15 = ((int64_t)il2cpp_codegen_add(L_45, L_46));
// if (newBufferSize > m_MaxEventBufferSize)
int64_t L_47 = V_15;
int64_t L_48 = __this->___m_MaxEventBufferSize_7;
V_16 = (bool)((((int64_t)L_47) > ((int64_t)L_48))? 1 : 0);
bool L_49 = V_16;
if (!L_49)
{
goto IL_017c;
}
}
{
// newBufferSize = m_MaxEventBufferSize;
int64_t L_50 = __this->___m_MaxEventBufferSize_7;
V_15 = L_50;
}
IL_017c:
{
// if (newBufferSize < bytesNeeded)
int64_t L_51 = V_15;
uint32_t L_52 = V_0;
V_17 = (bool)((((int64_t)L_51) < ((int64_t)((int64_t)(uint64_t)L_52)))? 1 : 0);
bool L_53 = V_17;
if (!L_53)
{
goto IL_018d;
}
}
{
// return;
goto IL_0437;
}
IL_018d:
{
// Resize(newBufferSize);
int64_t L_54 = V_15;
bool L_55;
L_55 = InputEventTrace_Resize_m0319AC81996595EBA1C5C16A7C2C2EB24310DB0A(__this, L_54, NULL);
// newTail = m_EventBufferTail + bytesNeeded;
uint8_t* L_56;
L_56 = InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF(__this, NULL);
uint32_t L_57 = V_0;
V_1 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_56, (intptr_t)((uintptr_t)L_57)));
}
IL_01a1:
{
// var spaceLeft = m_EventBufferSize - (m_EventBufferTail - m_EventBuffer);
int64_t L_58 = __this->___m_EventBufferSize_6;
uint8_t* L_59;
L_59 = InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF(__this, NULL);
uint8_t* L_60;
L_60 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
V_12 = ((int64_t)il2cpp_codegen_subtract(L_58, ((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_59, (intptr_t)L_60))/1)))));
// if (spaceLeft < bytesNeeded)
int64_t L_61 = V_12;
uint32_t L_62 = V_0;
V_18 = (bool)((((int64_t)L_61) < ((int64_t)((int64_t)(uint64_t)L_62)))? 1 : 0);
bool L_63 = V_18;
if (!L_63)
{
goto IL_0223;
}
}
{
// m_HasWrapped = true;
__this->___m_HasWrapped_14 = (bool)1;
// if (spaceLeft >= InputEvent.kBaseEventSize)
int64_t L_64 = V_12;
V_19 = (bool)((((int32_t)((((int64_t)L_64) < ((int64_t)((int64_t)((int32_t)20))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_65 = V_19;
if (!L_65)
{
goto IL_01ed;
}
}
{
// UnsafeUtility.MemClear(m_EventBufferTail, InputEvent.kBaseEventSize);
uint8_t* L_66;
L_66 = InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF(__this, NULL);
UnsafeUtility_MemClear_m0535B03E39A2A8CF84AE517549902F0025F67460((void*)L_66, ((int64_t)((int32_t)20)), NULL);
}
IL_01ed:
{
// m_EventBufferTail = m_EventBuffer;
uint8_t* L_67;
L_67 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B(__this, L_67, NULL);
// newTail = m_EventBuffer + bytesNeeded;
uint8_t* L_68;
L_68 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
uint32_t L_69 = V_0;
V_1 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_68, (intptr_t)((uintptr_t)L_69)));
// if (newTailOvertakesHead)
bool L_70 = V_2;
V_20 = L_70;
bool L_71 = V_20;
if (!L_71)
{
goto IL_0218;
}
}
{
// m_EventBufferHead = m_EventBuffer;
uint8_t* L_72;
L_72 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156(__this, L_72, NULL);
}
IL_0218:
{
// newTailOvertakesHead = newTail > m_EventBufferHead;
uint8_t* L_73 = V_1;
uint8_t* L_74;
L_74 = InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75(__this, NULL);
V_2 = (bool)((!(((uintptr_t)L_73) <= ((uintptr_t)L_74)))? 1 : 0);
}
IL_0223:
{
}
IL_0224:
{
// if (newTailOvertakesHead)
bool L_75 = V_2;
V_21 = L_75;
bool L_76 = V_21;
if (!L_76)
{
goto IL_02b7;
}
}
{
// var newHead = m_EventBufferHead;
uint8_t* L_77;
L_77 = InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75(__this, NULL);
V_22 = L_77;
// var endOfBufferMinusOneEvent =
// m_EventBuffer + m_EventBufferSize - InputEvent.kBaseEventSize;
uint8_t* L_78;
L_78 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
int64_t L_79 = __this->___m_EventBufferSize_6;
V_23 = ((uint8_t*)il2cpp_codegen_subtract((intptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_78, ((intptr_t)L_79))), ((int32_t)20)));
goto IL_02a2;
}
IL_024c:
{
// var numBytes = ((InputEvent*)newHead)->sizeInBytes;
uint8_t* L_80 = V_22;
uint32_t L_81;
L_81 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_80, NULL);
V_24 = L_81;
// newHead += numBytes;
uint8_t* L_82 = V_22;
uint32_t L_83 = V_24;
V_22 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_82, (intptr_t)((uintptr_t)L_83)));
// --m_EventCount;
int64_t L_84 = __this->___m_EventCount_9;
__this->___m_EventCount_9 = ((int64_t)il2cpp_codegen_subtract(L_84, ((int64_t)1)));
// m_EventSizeInBytes -= numBytes;
int64_t L_85 = __this->___m_EventSizeInBytes_10;
uint32_t L_86 = V_24;
__this->___m_EventSizeInBytes_10 = ((int64_t)il2cpp_codegen_subtract(L_85, ((int64_t)(uint64_t)L_86)));
// if (newHead > endOfBufferMinusOneEvent || ((InputEvent*)newHead)->sizeInBytes == 0)
uint8_t* L_87 = V_22;
uint8_t* L_88 = V_23;
if ((!(((uintptr_t)L_87) <= ((uintptr_t)L_88))))
{
goto IL_028f;
}
}
{
uint8_t* L_89 = V_22;
uint32_t L_90;
L_90 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_89, NULL);
G_B44_0 = ((((int32_t)L_90) == ((int32_t)0))? 1 : 0);
goto IL_0290;
}
IL_028f:
{
G_B44_0 = 1;
}
IL_0290:
{
V_25 = (bool)G_B44_0;
bool L_91 = V_25;
if (!L_91)
{
goto IL_02a1;
}
}
{
// newHead = m_EventBuffer;
uint8_t* L_92;
L_92 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
V_22 = L_92;
// break;
goto IL_02ad;
}
IL_02a1:
{
}
IL_02a2:
{
// while (newHead < newTail)
uint8_t* L_93 = V_22;
uint8_t* L_94 = V_1;
V_26 = (bool)((!(((uintptr_t)L_93) >= ((uintptr_t)L_94)))? 1 : 0);
bool L_95 = V_26;
if (L_95)
{
goto IL_024c;
}
}
IL_02ad:
{
// m_EventBufferHead = newHead;
uint8_t* L_96 = V_22;
InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156(__this, L_96, NULL);
}
IL_02b7:
{
// var buffer = m_EventBufferTail;
uint8_t* L_97;
L_97 = InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF(__this, NULL);
V_4 = L_97;
// m_EventBufferTail = newTail;
uint8_t* L_98 = V_1;
InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B(__this, L_98, NULL);
// UnsafeUtility.MemCpy(buffer, inputEvent.data, inputEvent.sizeInBytes);
uint8_t* L_99 = V_4;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_100;
L_100 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&___inputEvent0), NULL);
uint32_t L_101;
L_101 = InputEventPtr_get_sizeInBytes_mE060F5A7176AAF8ED749DB4A3DC7976249716597((&___inputEvent0), NULL);
UnsafeUtility_MemCpy_m019E657B952C27F705607F0F3D371EEE526B716B((void*)L_99, (void*)L_100, ((int64_t)(uint64_t)L_101), NULL);
// ++m_ChangeCounter;
int32_t L_102 = __this->___m_ChangeCounter_1;
__this->___m_ChangeCounter_1 = ((int32_t)il2cpp_codegen_add(L_102, 1));
// ++m_EventCount;
int64_t L_103 = __this->___m_EventCount_9;
__this->___m_EventCount_9 = ((int64_t)il2cpp_codegen_add(L_103, ((int64_t)1)));
// m_EventSizeInBytes += bytesNeeded;
int64_t L_104 = __this->___m_EventSizeInBytes_10;
uint32_t L_105 = V_0;
__this->___m_EventSizeInBytes_10 = ((int64_t)il2cpp_codegen_add(L_104, ((int64_t)(uint64_t)L_105)));
// if (device != null)
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_106 = ___device1;
V_27 = (bool)((!(((RuntimeObject*)(InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)L_106) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_107 = V_27;
if (!L_107)
{
goto IL_0404;
}
}
{
// var haveRecord = false;
V_28 = (bool)0;
// if (m_DeviceInfos != null)
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_108 = __this->___m_DeviceInfos_16;
V_29 = (bool)((!(((RuntimeObject*)(DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A*)L_108) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_109 = V_29;
if (!L_109)
{
goto IL_036d;
}
}
{
// for (var i = 0; i < m_DeviceInfos.Length; ++i)
V_30 = 0;
goto IL_035b;
}
IL_032f:
{
// if (m_DeviceInfos[i].deviceId == device.deviceId)
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_110 = __this->___m_DeviceInfos_16;
int32_t L_111 = V_30;
NullCheck(L_110);
int32_t L_112;
L_112 = DeviceInfo_get_deviceId_m1F56DCC1850CA1B775C357DA6D521F04EA74F0C6_inline(((L_110)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_111))), NULL);
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_113 = ___device1;
NullCheck(L_113);
int32_t L_114;
L_114 = InputDevice_get_deviceId_mC65E69E6117B78DB2F4963F5CF9BF031488AD588_inline(L_113, NULL);
V_31 = (bool)((((int32_t)L_112) == ((int32_t)L_114))? 1 : 0);
bool L_115 = V_31;
if (!L_115)
{
goto IL_0355;
}
}
{
// haveRecord = true;
V_28 = (bool)1;
// break;
goto IL_036d;
}
IL_0355:
{
// for (var i = 0; i < m_DeviceInfos.Length; ++i)
int32_t L_116 = V_30;
V_30 = ((int32_t)il2cpp_codegen_add(L_116, 1));
}
IL_035b:
{
// for (var i = 0; i < m_DeviceInfos.Length; ++i)
int32_t L_117 = V_30;
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_118 = __this->___m_DeviceInfos_16;
NullCheck(L_118);
V_32 = (bool)((((int32_t)L_117) < ((int32_t)((int32_t)(((RuntimeArray*)L_118)->max_length))))? 1 : 0);
bool L_119 = V_32;
if (L_119)
{
goto IL_032f;
}
}
IL_036d:
{
// if (!haveRecord)
bool L_120 = V_28;
V_33 = (bool)((((int32_t)L_120) == ((int32_t)0))? 1 : 0);
bool L_121 = V_33;
if (!L_121)
{
goto IL_0403;
}
}
{
// ArrayHelpers.Append(ref m_DeviceInfos, new DeviceInfo
// {
// m_DeviceId = device.deviceId,
// m_Layout = device.layout,
// m_StateFormat = device.stateBlock.format,
// m_StateSizeInBytes = (int)device.stateBlock.alignedSizeInBytes,
//
// // If it's a generated layout, store the full layout JSON in the device info. We do this so that
// // when saving traces for this kind of input, we can recreate the device.
// m_FullLayoutJson = InputControlLayout.s_Layouts.IsGeneratedLayout(device.m_Layout)
// ? InputSystem.LoadLayout(device.layout).ToJson()
// : null
// });
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A** L_122 = (&__this->___m_DeviceInfos_16);
il2cpp_codegen_initobj((&V_34), sizeof(DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52));
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_123 = ___device1;
NullCheck(L_123);
int32_t L_124;
L_124 = InputDevice_get_deviceId_mC65E69E6117B78DB2F4963F5CF9BF031488AD588_inline(L_123, NULL);
(&V_34)->___m_DeviceId_0 = L_124;
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_125 = ___device1;
NullCheck(L_125);
String_t* L_126;
L_126 = InputControl_get_layout_mE6054F87BB94A1F1D06355E137A1840B2EFF7971(L_125, NULL);
(&V_34)->___m_Layout_1 = L_126;
Il2CppCodeGenWriteBarrier((void**)(&(&V_34)->___m_Layout_1), (void*)L_126);
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_127 = ___device1;
NullCheck(L_127);
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 L_128;
L_128 = InputControl_get_stateBlock_mCAE31879EDC6621B35B368B4916219D30EAA0B0B_inline(L_127, NULL);
V_35 = L_128;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_129;
L_129 = InputStateBlock_get_format_mA393354EDC4A58DDCBE0990902A49E0A22F15F86_inline((&V_35), NULL);
(&V_34)->___m_StateFormat_2 = L_129;
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_130 = ___device1;
NullCheck(L_130);
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 L_131;
L_131 = InputControl_get_stateBlock_mCAE31879EDC6621B35B368B4916219D30EAA0B0B_inline(L_130, NULL);
V_35 = L_131;
uint32_t L_132;
L_132 = InputStateBlock_get_alignedSizeInBytes_mF360E8CFBEE9BE05FC7DFA3533E069A5A96827F5((&V_35), NULL);
(&V_34)->___m_StateSizeInBytes_3 = L_132;
il2cpp_codegen_runtime_class_init_inline(InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D_il2cpp_TypeInfo_var);
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_133 = ___device1;
NullCheck(L_133);
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 L_134 = ((InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E*)L_133)->___m_Layout_7;
bool L_135;
L_135 = Collection_IsGeneratedLayout_mAD9527FC1D6FA3C9075ACAF2F0215E3B5C0C359C((&((InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D_StaticFields*)il2cpp_codegen_static_fields_for(InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D_il2cpp_TypeInfo_var))->___s_Layouts_15), L_134, NULL);
G_B58_0 = (&V_34);
G_B58_1 = L_122;
if (L_135)
{
G_B59_0 = (&V_34);
G_B59_1 = L_122;
goto IL_03e6;
}
}
{
G_B60_0 = ((String_t*)(NULL));
G_B60_1 = G_B58_0;
G_B60_2 = G_B58_1;
goto IL_03f6;
}
IL_03e6:
{
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_136 = ___device1;
NullCheck(L_136);
String_t* L_137;
L_137 = InputControl_get_layout_mE6054F87BB94A1F1D06355E137A1840B2EFF7971(L_136, NULL);
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D* L_138;
L_138 = InputSystem_LoadLayout_mA58ABD2C31E63EC4E2F47F9E2B7F08A6185366FC(L_137, NULL);
NullCheck(L_138);
String_t* L_139;
L_139 = InputControlLayout_ToJson_mC3A56BD729D0884D80D6215145CBB99BBB3AE358(L_138, NULL);
G_B60_0 = L_139;
G_B60_1 = G_B59_0;
G_B60_2 = G_B59_1;
}
IL_03f6:
{
G_B60_1->___m_FullLayoutJson_4 = G_B60_0;
Il2CppCodeGenWriteBarrier((void**)(&G_B60_1->___m_FullLayoutJson_4), (void*)G_B60_0);
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 L_140 = V_34;
int32_t L_141;
L_141 = ArrayHelpers_Append_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m50A8921FF90F5A6E5BA2D15D6D58D486B3D882BC(G_B60_2, L_140, ArrayHelpers_Append_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m50A8921FF90F5A6E5BA2D15D6D58D486B3D882BC_RuntimeMethod_var);
}
IL_0403:
{
}
IL_0404:
{
// if (m_EventListeners.length > 0)
CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* L_142 = (&__this->___m_EventListeners_5);
int32_t L_143;
L_143 = CallbackArray_1_get_length_m096E657BAB53406356BABE16CE03C92212CF5A52(L_142, CallbackArray_1_get_length_m096E657BAB53406356BABE16CE03C92212CF5A52_RuntimeMethod_var);
V_36 = (bool)((((int32_t)L_143) > ((int32_t)0))? 1 : 0);
bool L_144 = V_36;
if (!L_144)
{
goto IL_0431;
}
}
{
// DelegateHelpers.InvokeCallbacksSafe(ref m_EventListeners, new InputEventPtr((InputEvent*)buffer),
// "InputEventTrace.onEvent");
CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* L_145 = (&__this->___m_EventListeners_5);
uint8_t* L_146 = V_4;
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_147;
memset((&L_147), 0, sizeof(L_147));
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0((&L_147), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_146, /*hidden argument*/NULL);
DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_m4EA8E60C61F02A061BF6D95B1411AC917E54A074(L_145, L_147, _stringLiteral6CD29DF87BDE4FB4030DE06320C56337EE9127EF, NULL, DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_m4EA8E60C61F02A061BF6D95B1411AC917E54A074_RuntimeMethod_var);
}
IL_0431:
{
// Profiler.EndSample();
Profiler_EndSample_m450653E4210CC1B4E1210C29F62FC48F8F250437(NULL);
}
IL_0437:
{
// }
return;
}
}
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventTrace::get_kFileFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventTrace_get_kFileFormat_m100D583854AC0253CD6C32A04AB729C55AB7D46F (const RuntimeMethod* method)
{
{
// private static FourCC kFileFormat => new FourCC('I', 'E', 'V', 'T');
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
memset((&L_0), 0, sizeof(L_0));
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)73), ((int32_t)69), ((int32_t)86), ((int32_t)84), /*hidden argument*/NULL);
return L_0;
}
}
// System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace__cctor_mE8D3662C520B3ED5EDA8EF5CDEE294BA4C34BC79 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// private static int kFileVersion = 1;
((InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_StaticFields*)il2cpp_codegen_static_fields_for(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var))->___kFileVersion_17 = 1;
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputSettings_get_updateMode_mD37EABFC0678912846EABBC3CF31AC82E4ACE79E_inline (InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF* __this, const RuntimeMethod* method)
{
{
// get => m_UpdateMode;
int32_t L_0 = __this->___m_UpdateMode_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputStateHistory_get_Count_m23DF78272A6C97F6C8782A953482772CDF6FFA81_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method)
{
{
// public int Count => m_RecordCount;
int32_t L_0 = __this->___m_RecordCount_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline (Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* __this, const RuntimeMethod* method)
{
{
// public ReadOnlyArray<TouchControl> touches { get; protected set; }
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_0 = __this->___U3CtouchesU3Ek__BackingField_46;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputStateHistory_set_onRecordAdded_m6F35EA7B2352BE8359FD22FE803E6AAC1CD2E93A_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7* ___value0, const RuntimeMethod* method)
{
{
// public Action<Record> onRecordAdded { get; set; }
Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7* L_0 = ___value0;
__this->___U3ConRecordAddedU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3ConRecordAddedU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputStateHistory_set_onShouldRecordStateChange_m4553C7A82A01BE25B5F1D0D2567B70FCE375F30E_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2* ___value0, const RuntimeMethod* method)
{
{
// public Func<InputControl, double, InputEventPtr, bool> onShouldRecordStateChange { get; set; }
Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2* L_0 = ___value0;
__this->___U3ConShouldRecordStateChangeU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3ConShouldRecordStateChangeU3Ek__BackingField_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 InputControl_get_stateBlock_mCAE31879EDC6621B35B368B4916219D30EAA0B0B_inline (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, const RuntimeMethod* method)
{
{
// public InputStateBlock stateBlock => m_StateBlock;
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 L_0 = __this->___m_StateBlock_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_byteOffset_m6EADE5C9C8B346D38E543E38777ED67ED2AEA0AC_inline (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* __this, const RuntimeMethod* method)
{
{
// public uint byteOffset { get; set; }
uint32_t L_0 = __this->___U3CbyteOffsetU3Ek__BackingField_34;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
{
{
// get => (TouchPhase)phaseId;
uint8_t L_0 = __this->___phaseId_6;
return (int32_t)(L_0);
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputStateHistory_get_historyDepth_mBAFA4592E170099C0E8BB360B148A854517AA561_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method)
{
{
// get => m_HistoryDepth;
int32_t L_0 = __this->___m_HistoryDepth_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Subtraction_m664419831773D5BBF06D9DE4E515F6409B2F92B8_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___b1, const RuntimeMethod* method)
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___a0;
float L_1 = L_0.___x_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___b1;
float L_3 = L_2.___x_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = ___a0;
float L_5 = L_4.___y_1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___b1;
float L_7 = L_6.___y_1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
memset((&L_8), 0, sizeof(L_8));
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_8), ((float)il2cpp_codegen_subtract(L_1, L_3)), ((float)il2cpp_codegen_subtract(L_5, L_7)), /*hidden argument*/NULL);
V_0 = L_8;
goto IL_0023;
}
IL_0023:
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9 = V_0;
return L_9;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* Touch_get_finger_m414E1AF302CAC737C934AF1FB24FC869873B8420_inline (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
{
{
// public Finger finger => m_Finger;
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_0 = __this->___m_Finger_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* Finger_get_screen_mBA2D1364604CB55F7386EFB844B12B7CFA7EE744_inline (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
{
{
// public Touchscreen screen { get; }
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = __this->___U3CscreenU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Finger_get_index_mB409A9B5711767D3A6046AEAA4931A0B3633934C_inline (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
{
{
// public int index { get; }
int32_t L_0 = __this->___U3CindexU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputStateHistory_get_extraMemoryPerRecord_m4E4C9D89BC37B9CD7E6AFFD58D95A9030F92E653_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method)
{
{
// get => m_ExtraMemoryPerRecord;
int32_t L_0 = __this->___m_ExtraMemoryPerRecord_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateHistory_get_version_m89DDB085F1210A84797C85822792F5FBF73C25F0_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method)
{
{
// public uint version => m_CurrentVersion;
uint32_t L_0 = __this->___m_CurrentVersion_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TouchHistory_get_Count_mDEFAFCC5D44BE56B17E0949448CE3C48E9DC3277_inline (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method)
{
{
// public int Count => m_Count;
int32_t L_0 = __this->___m_Count_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* TouchSimulation_get_instance_m709E6C7D760D03ABF44C3CA7AB6CD38B70145C85_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static TouchSimulation instance => s_Instance;
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_0 = ((TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields*)il2cpp_codegen_static_fields_for(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var))->___s_Instance_13;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* InputControl_get_device_mAB3E013F566CF3407B8C36BC781EBD751DFAB324_inline (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, const RuntimeMethod* method)
{
{
// public InputDevice device => m_Device;
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_0 = __this->___m_Device_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* Pointer_get_position_m4286004169788483EEDA6AF833CEFDB04FEDF3D8_inline (Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* __this, const RuntimeMethod* method)
{
{
// public Vector2Control position { get; protected set; }
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* L_0 = __this->___U3CpositionU3Ek__BackingField_39;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* InputEventControlEnumerator_get_Current_mD0540A0B5BE8EC847B80D28B66BA8389A1AF17BB_inline (InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB* __this, const RuntimeMethod* method)
{
{
// public InputControl Current => m_CurrentControl;
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_0 = __this->___m_CurrentControl_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, const RuntimeMethod* method)
{
{
// public Touchscreen simulatedTouchscreen { get; private set; }
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = __this->___U3CsimulatedTouchscreenU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TouchSimulation_set_simulatedTouchscreen_m59218EBAFC13C1FF0019F59F12378749620C9EEF_inline (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___value0, const RuntimeMethod* method)
{
{
// public Touchscreen simulatedTouchscreen { get; private set; }
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = ___value0;
__this->___U3CsimulatedTouchscreenU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CsimulatedTouchscreenU3Ek__BackingField_4), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->___x_0;
float L_1 = __this->___x_0;
float L_2 = __this->___y_1;
float L_3 = __this->___y_1;
V_0 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_0, L_1)), ((float)il2cpp_codegen_multiply(L_2, L_3))));
goto IL_001f;
}
IL_001f:
{
float L_4 = V_0;
return L_4;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* Touchscreen_get_primaryTouch_mABAC4C0F1DBA6A718B83682A91DF40FD3563F413_inline (Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* __this, const RuntimeMethod* method)
{
{
// public TouchControl primaryTouch { get; protected set; }
TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* L_0 = __this->___U3CprimaryTouchU3Ek__BackingField_45;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_current_mBD60E097751CCEB0D6E05FD0F46F43D0AA0A5856_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public new static DualShockGamepad current { get; private set; }
DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* L_0 = ___value0;
((DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_StaticFields*)il2cpp_codegen_static_fields_for(DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var))->___U3CcurrentU3Ek__BackingField_67 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_StaticFields*)il2cpp_codegen_static_fields_for(DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var))->___U3CcurrentU3Ek__BackingField_67), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* DualShockGamepad_get_current_m554DD5CB50BDBEABFC161A1EDE8F28B061882C17_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public new static DualShockGamepad current { get; private set; }
DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* L_0 = ((DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_StaticFields*)il2cpp_codegen_static_fields_for(DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var))->___U3CcurrentU3Ek__BackingField_67;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_touchpadButton_m85056E5E5A92D34208235FB409393690A472601D_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl touchpadButton { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CtouchpadButtonU3Ek__BackingField_58 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CtouchpadButtonU3Ek__BackingField_58), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_startButton_m29450F01D3AC6A6377DD6820C1E8A19E3FB257B1_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method)
{
{
// public ButtonControl startButton { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CstartButtonU3Ek__BackingField_45;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_optionsButton_m1FE2766F3657D92F605EB85A030FE7C89D0DD580_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl optionsButton { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CoptionsButtonU3Ek__BackingField_59 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CoptionsButtonU3Ek__BackingField_59), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_selectButton_mE20183D2C1EBD7B7EF87EE29C24E56F1731E85BE_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method)
{
{
// public ButtonControl selectButton { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CselectButtonU3Ek__BackingField_46;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_shareButton_mE3EF1DF6E0E1B8EFF21AC7DD493CC0494AEC6155_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl shareButton { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CshareButtonU3Ek__BackingField_60 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CshareButtonU3Ek__BackingField_60), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_leftShoulder_m2522E913D1A9361FE16FE01D717BF49D3B1632AE_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method)
{
{
// public ButtonControl leftShoulder { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CleftShoulderU3Ek__BackingField_48;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_L1_m53A630A39C6EA91CD8A806D739D51782A7062D8E_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl L1 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CL1U3Ek__BackingField_61 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CL1U3Ek__BackingField_61), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_rightShoulder_m221A61E28BDBABD1B1E51A0E325D9A55BB5E347A_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method)
{
{
// public ButtonControl rightShoulder { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CrightShoulderU3Ek__BackingField_49;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_R1_m578DFA09EC86DB70693B666AC53AE39E97C6F22C_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl R1 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CR1U3Ek__BackingField_62 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CR1U3Ek__BackingField_62), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_leftTrigger_mE19F2FCA9A7F195107FA0C14293732C0F3075A38_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method)
{
{
// public ButtonControl leftTrigger { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CleftTriggerU3Ek__BackingField_52;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_L2_m944079645ACBBB274527C169EE5670D1ED142616_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl L2 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CL2U3Ek__BackingField_63 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CL2U3Ek__BackingField_63), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_rightTrigger_mD1587CDED475B78A56BE8B6FC493EDA08AE6F3A6_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method)
{
{
// public ButtonControl rightTrigger { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CrightTriggerU3Ek__BackingField_53;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_R2_mCCFF64B80DC2E5DA8920AB9B9A9CEB61AB8C0079_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl R2 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CR2U3Ek__BackingField_64 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CR2U3Ek__BackingField_64), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_leftStickButton_mEACF0F726788DA012905DCD7A44AA88DF91593ED_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method)
{
{
// public ButtonControl leftStickButton { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CleftStickButtonU3Ek__BackingField_43;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_L3_mD8C16E42401A03362170FB255D0F2E0A70F36531_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl L3 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CL3U3Ek__BackingField_65 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CL3U3Ek__BackingField_65), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_rightStickButton_m9A8377135FDA7EA2EA6219A715092F0E62ADBC55_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method)
{
{
// public ButtonControl rightStickButton { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CrightStickButtonU3Ek__BackingField_44;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_R3_mF4834C8E3EB76B2C7C91F874D6022770604A5CDC_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___value0, const RuntimeMethod* method)
{
{
// public ButtonControl R3 { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___value0;
__this->___U3CR3U3Ek__BackingField_66 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CR3U3Ek__BackingField_66), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_interfaceName_m087CF7E83BAF1E6C6375B3F16A9FAA3A71717D07_inline (InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* __this, const RuntimeMethod* method)
{
{
// get => m_InterfaceName;
String_t* L_0 = __this->___m_InterfaceName_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_capabilities_mEBF36ED5663709FCA039D1AEA87F6B6C404E76CD_inline (InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* __this, const RuntimeMethod* method)
{
{
// get => m_Capabilities;
String_t* L_0 = __this->___m_Capabilities_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_deviceClass_m59E89FD7B104B4E23CB6AA979500CD0330FFBF26_inline (InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* __this, const RuntimeMethod* method)
{
{
// get => m_DeviceClass;
String_t* L_0 = __this->___m_DeviceClass_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AndroidSensorState_get_format_m31BF80D110BEEF071B7795ED0D2D05664B42379F_inline (AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public FourCC format => kFormat;
il2cpp_codegen_runtime_class_init_inline(AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29_il2cpp_TypeInfo_var);
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = ((AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29_StaticFields*)il2cpp_codegen_static_fields_for(AndroidSensorState_t0BBC4FEDC493C59AF9590E1EECB8F557020DAF29_il2cpp_TypeInfo_var))->___kFormat_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Multiply_m516FE285F5342F922C6EB3FCB33197E9017FF484_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___a0, float ___d1, const RuntimeMethod* method)
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___a0;
float L_1 = L_0.___x_2;
float L_2 = ___d1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___a0;
float L_4 = L_3.___y_3;
float L_5 = ___d1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___a0;
float L_7 = L_6.___z_4;
float L_8 = ___d1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9;
memset((&L_9), 0, sizeof(L_9));
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_9), ((float)il2cpp_codegen_multiply(L_1, L_2)), ((float)il2cpp_codegen_multiply(L_4, L_5)), ((float)il2cpp_codegen_multiply(L_7, L_8)), /*hidden argument*/NULL);
V_0 = L_9;
goto IL_0021;
}
IL_0021:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = V_0;
return L_10;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DualMotorRumble_get_lowFrequencyMotorSpeed_m510597E97F499185330B45B4691421807F5199E6_inline (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, const RuntimeMethod* method)
{
{
// public float lowFrequencyMotorSpeed { get; private set; }
float L_0 = __this->___U3ClowFrequencyMotorSpeedU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualMotorRumble_set_lowFrequencyMotorSpeed_m9872E9EFA5CD0E26E2E9F55E759D5B17FD0BC843_inline (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, float ___value0, const RuntimeMethod* method)
{
{
// public float lowFrequencyMotorSpeed { get; private set; }
float L_0 = ___value0;
__this->___U3ClowFrequencyMotorSpeedU3Ek__BackingField_0 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DualMotorRumble_get_highFrequencyMotorSpeed_mDF2890FFAEBCEE59E02E02845139481E8442073A_inline (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, const RuntimeMethod* method)
{
{
// public float highFrequencyMotorSpeed { get; private set; }
float L_0 = __this->___U3ChighFrequencyMotorSpeedU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualMotorRumble_set_highFrequencyMotorSpeed_mBE076CAE63721822E1B23B6CBB52836CBEAF3107_inline (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, float ___value0, const RuntimeMethod* method)
{
{
// public float highFrequencyMotorSpeed { get; private set; }
float L_0 = ___value0;
__this->___U3ChighFrequencyMotorSpeedU3Ek__BackingField_1 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mathf_Approximately_m1C8DD0BB6A2D22A7DCF09AD7F8EE9ABD12D3F620_inline (float ___a0, float ___b1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
float L_0 = ___b1;
float L_1 = ___a0;
float L_2;
L_2 = fabsf(((float)il2cpp_codegen_subtract(L_0, L_1)));
float L_3 = ___a0;
float L_4;
L_4 = fabsf(L_3);
float L_5 = ___b1;
float L_6;
L_6 = fabsf(L_5);
float L_7;
L_7 = Mathf_Max_mA9DCA91E87D6D27034F56ABA52606A9090406016_inline(L_4, L_6, NULL);
float L_8 = ((Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields*)il2cpp_codegen_static_fields_for(Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var))->___Epsilon_0;
float L_9;
L_9 = Mathf_Max_mA9DCA91E87D6D27034F56ABA52606A9090406016_inline(((float)il2cpp_codegen_multiply((9.99999997E-07f), L_7)), ((float)il2cpp_codegen_multiply(L_8, (8.0f))), NULL);
V_0 = (bool)((((float)L_2) < ((float)L_9))? 1 : 0);
goto IL_0035;
}
IL_0035:
{
bool L_10 = V_0;
return L_10;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp_m154E404AF275A3B2EC99ECAA3879B4CB9F0606DC_inline (float ___value0, float ___min1, float ___max2, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
float V_2 = 0.0f;
{
float L_0 = ___value0;
float L_1 = ___min1;
V_0 = (bool)((((float)L_0) < ((float)L_1))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_000e;
}
}
{
float L_3 = ___min1;
___value0 = L_3;
goto IL_0019;
}
IL_000e:
{
float L_4 = ___value0;
float L_5 = ___max2;
V_1 = (bool)((((float)L_4) > ((float)L_5))? 1 : 0);
bool L_6 = V_1;
if (!L_6)
{
goto IL_0019;
}
}
{
float L_7 = ___max2;
___value0 = L_7;
}
IL_0019:
{
float L_8 = ___value0;
V_2 = L_8;
goto IL_001d;
}
IL_001d:
{
float L_9 = V_2;
return L_9;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline (intptr_t* __this, void* ___value0, const RuntimeMethod* method)
{
{
void* L_0 = ___value0;
*__this = ((intptr_t)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____stringLength_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double ActionEvent_get_startTime_mFC441D783C0FF36A0DCF844F6CB4C51F7B507DC9_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
{
{
// get => m_StartTime;
double L_0 = __this->___m_StartTime_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ActionEvent_set_startTime_m421136E6914BF478860D9A2A4C302A8E5C0128F2_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, double ___value0, const RuntimeMethod* method)
{
{
// set => m_StartTime = value;
double L_0 = ___value0;
__this->___m_StartTime_6 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionEvent_get_phase_mA5D0A72C4C5DD7D0F562AAC03812667D7D467AC9_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
{
{
// get => (InputActionPhase)m_Phase;
uint8_t L_0 = __this->___m_Phase_5;
return (int32_t)(L_0);
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionEvent_get_stateIndex_m9B25D23E723CFD517FEA65A61D0D3587E4205450_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
{
{
// get => m_StateIndex;
uint8_t L_0 = __this->___m_StateIndex_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionEvent_get_controlIndex_m6AD8C96BCD3A38D6FFC823F98673549CAADB1715_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
{
{
// get => m_ControlIndex;
uint16_t L_0 = __this->___m_ControlIndex_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionEvent_get_bindingIndex_m95BC43710F538E6E696644A9CABD5EC4FAA97400_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
{
{
// get => m_BindingIndex;
uint16_t L_0 = __this->___m_BindingIndex_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
{
{
// public InputEvent* data => m_EventPtr;
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = __this->___m_EventPtr_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputStateBlock_get_format_mA393354EDC4A58DDCBE0990902A49E0A22F15F86_inline (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* __this, const RuntimeMethod* method)
{
{
// public FourCC format { get; set; }
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = __this->___U3CformatU3Ek__BackingField_33;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_bitOffset_m3165625FF638183247012307A8AC012AEA3D1143_inline (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* __this, const RuntimeMethod* method)
{
{
// public uint bitOffset { get; set; }
uint32_t L_0 = __this->___U3CbitOffsetU3Ek__BackingField_35;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputDevice_get_deviceId_mC65E69E6117B78DB2F4963F5CF9BF031488AD588_inline (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* __this, const RuntimeMethod* method)
{
{
// public int deviceId => m_DeviceId;
int32_t L_0 = __this->___m_DeviceId_25;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t IMECompositionString_get_Count_m118217BDAE905FA6F01D5F61D3D1A85319A5AA1D_inline (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method)
{
{
// public int Count => size;
int32_t L_0 = __this->___size_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar Enumerator_get_Current_m52C5B2EFD3B6598435E54801806413118B0C7F40_inline (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method)
{
{
// public char Current => m_CurrentCharacter;
Il2CppChar L_0 = __this->___m_CurrentCharacter_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t NumberHelpers_AlignToMultipleOf_mEB8F85FE2BA604AC7B15C1FA171ECDF1A5D107C2_inline (uint32_t ___number0, uint32_t ___alignment1, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
bool V_1 = false;
uint32_t V_2 = 0;
{
// var remainder = number % alignment;
uint32_t L_0 = ___number0;
uint32_t L_1 = ___alignment1;
V_0 = ((int32_t)((uint32_t)(int32_t)L_0%(uint32_t)(int32_t)L_1));
// if (remainder == 0)
uint32_t L_2 = V_0;
V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_0011;
}
}
{
// return number;
uint32_t L_4 = ___number0;
V_2 = L_4;
goto IL_0019;
}
IL_0011:
{
// return number + alignment - remainder;
uint32_t L_5 = ___number0;
uint32_t L_6 = ___alignment1;
uint32_t L_7 = V_0;
V_2 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)L_6)), (int32_t)L_7));
goto IL_0019;
}
IL_0019:
{
// }
uint32_t L_8 = V_2;
return L_8;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_inline (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
{
{
// public long sizeInBytes => m_SizeInBytes;
int64_t L_0 = __this->___m_SizeInBytes_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputEventBuffer_get_eventCount_mD120699C5A1CEBA76C878BC37DB2E39458F56C8E_inline (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
{
{
// public int eventCount => m_EventCount;
int32_t L_0 = __this->___m_EventCount_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
{
{
// public NativeArray<byte> data => m_Buffer;
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_0 = __this->___m_Buffer_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t NumberHelpers_AlignToMultipleOf_mC0AB871E2290467B6E6661572B87E57888FB36E0_inline (int32_t ___number0, int32_t ___alignment1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
int32_t V_2 = 0;
{
// var remainder = number % alignment;
int32_t L_0 = ___number0;
int32_t L_1 = ___alignment1;
V_0 = ((int32_t)(L_0%L_1));
// if (remainder == 0)
int32_t L_2 = V_0;
V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_0011;
}
}
{
// return number;
int32_t L_4 = ___number0;
V_2 = L_4;
goto IL_0019;
}
IL_0011:
{
// return number + alignment - remainder;
int32_t L_5 = ___number0;
int32_t L_6 = ___alignment1;
int32_t L_7 = V_0;
V_2 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(L_5, L_6)), L_7));
goto IL_0019;
}
IL_0019:
{
// }
int32_t L_8 = V_2;
return L_8;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t NumberHelpers_AlignToMultipleOf_m645FD7986206E11C0148F37E59E84ADB693022D3_inline (int64_t ___number0, int64_t ___alignment1, const RuntimeMethod* method)
{
int64_t V_0 = 0;
bool V_1 = false;
int64_t V_2 = 0;
{
// var remainder = number % alignment;
int64_t L_0 = ___number0;
int64_t L_1 = ___alignment1;
V_0 = ((int64_t)(L_0%L_1));
// if (remainder == 0)
int64_t L_2 = V_0;
V_1 = (bool)((((int64_t)L_2) == ((int64_t)((int64_t)0)))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_0012;
}
}
{
// return number;
int64_t L_4 = ___number0;
V_2 = L_4;
goto IL_001a;
}
IL_0012:
{
// return number + alignment - remainder;
int64_t L_5 = ___number0;
int64_t L_6 = ___alignment1;
int64_t L_7 = V_0;
V_2 = ((int64_t)il2cpp_codegen_subtract(((int64_t)il2cpp_codegen_add(L_5, L_6)), L_7));
goto IL_001a;
}
IL_001a:
{
// }
int64_t L_8 = V_2;
return L_8;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool InputEventStream_get_isOpen_mEE33B97DA48F80B43BCE58D08FCAE51958E6459D_inline (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
{
{
// public bool isOpen => m_IsOpen;
bool L_0 = __this->___m_IsOpen_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputEventStream_get_numEventsRetainedInBuffer_m4656DA6E9272986459D283EE8B8F74773C2D130A_inline (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
{
{
// public int numEventsRetainedInBuffer => m_NumEventsRetainedInBuffer;
int32_t L_0 = __this->___m_NumEventsRetainedInBuffer_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DeviceInfo_get_deviceId_m1F56DCC1850CA1B775C357DA6D521F04EA74F0C6_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method)
{
{
// get => m_DeviceId;
int32_t L_0 = __this->___m_DeviceId_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DeviceInfo_get_layout_mC531D6400FCF8EE7CCBE96D0DC9328BC0A5AC24C_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method)
{
{
// get => m_Layout;
String_t* L_0 = __this->___m_Layout_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceInfo_get_stateFormat_mA04A926E1277535752AC4117996C3B0F89D26916_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method)
{
{
// get => m_StateFormat;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = __this->___m_StateFormat_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DeviceInfo_get_stateSizeInBytes_mD21A7DBF02B25079F7A1F1482AC2EFE5A86F5C9C_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method)
{
{
// get => m_StateSizeInBytes;
int32_t L_0 = __this->___m_StateSizeInBytes_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_deviceId_m76EE4AFBA1FA3FFACF2E017498621E66A819DEBD_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_DeviceId = value;
int32_t L_0 = ___value0;
__this->___m_DeviceId_0 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_layout_mB0175279434FFE48B744FE2CA4800A1EF24B2D69_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// set => m_Layout = value;
String_t* L_0 = ___value0;
__this->___m_Layout_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Layout_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_stateFormat_mFC8581D56C34FFCBF8264CFD61BA12CE56755478_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___value0, const RuntimeMethod* method)
{
{
// set => m_StateFormat = value;
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = ___value0;
__this->___m_StateFormat_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_stateSizeInBytes_m7D7507BD0D817A86E99E3E44E216B31855ED06B3_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_StateSizeInBytes = value;
int32_t L_0 = ___value0;
__this->___m_StateSizeInBytes_3 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Profiler_BeginSample_mA836D6E554511CBEAD80F55EE41AAA5D1B26B3DE_inline (String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
Profiler_ValidateArguments_m732E71FF4C28CBEDD8D4CD51DA409198224ED395_inline(L_0, NULL);
String_t* L_1 = ___name0;
Profiler_BeginSampleImpl_m11DCED1F062EEB6A07FE36224080BAEDC65D5A87(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED Enumerator_get_Current_m5EA592269528B338C04111C5D99C9FA016762671_gshared_inline (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60* __this, const RuntimeMethod* method)
{
{
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_0 = (HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED)__this->____current_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_gshared_inline (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED ___item0, const RuntimeMethod* method)
{
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* L_1 = (HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* L_6 = V_0;
int32_t L_7 = V_1;
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED)L_8);
return;
}
IL_0034:
{
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_9 = ___item0;
(( void (*) (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_gshared_inline (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4339FB05BC7860D417DA2CDFFD8B356B9DF262B0_gshared_inline (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m8E820017C1FBE8A372423716AE53545CD6BA9F39_gshared_inline (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 ___item0, const RuntimeMethod* method)
{
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* L_1 = (HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* L_6 = V_0;
int32_t L_7 = V_1;
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7)L_8);
return;
}
IL_0034:
{
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_9 = ___item0;
(( void (*) (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->___hasValue_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 Enumerator_get_Current_m61FE609D85AF8173D12BD2876CCD1039024B4F54_gshared_inline (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8* __this, const RuntimeMethod* method)
{
{
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_0 = (HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7)__this->____current_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_gshared_inline (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m1FD2135A63F0BDE6E3127763ACDA2591AFC774F4_gshared_inline (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F ___item0, const RuntimeMethod* method)
{
HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955* L_1 = (HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955* L_6 = V_0;
int32_t L_7 = V_1;
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F)L_8);
return;
}
IL_0034:
{
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_9 = ___item0;
(( void (*) (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6*, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
if (!false)
{
goto IL_0035;
}
}
{
int32_t L_1 = (int32_t)__this->____size_2;
V_0 = L_1;
__this->____size_2 = 0;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_003c;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)__this->____items_1;
int32_t L_4 = V_0;
Array_Clear_m48B57EC27CADC3463CA98A33373D557DA587FF1B((RuntimeArray*)L_3, 0, L_4, NULL);
return;
}
IL_0035:
{
__this->____size_2 = 0;
}
IL_003c:
{
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___item0, const RuntimeMethod* method)
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = V_0;
int32_t L_7 = V_1;
int32_t L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (int32_t)L_8);
return;
}
IL_0034:
{
int32_t L_9 = ___item0;
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlyArray_1_get_Count_m37AE229E2BFB74375A7BD545982B745F982762F8_gshared_inline (ReadOnlyArray_1_t40B8DDDCD6ACBA3B2C0AF1387BE23D68DAEF77B5* __this, const RuntimeMethod* method)
{
{
// public int Count => m_Length;
int32_t L_0 = (int32_t)__this->___m_Length_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* Record_get_owner_mE1A451C654D70DF2754170FA45A6A19AD3483471_gshared_inline (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
{
{
// public InputStateHistory<TValue> owner => m_Owner;
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_0 = (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*)__this->___m_Owner_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Func_3_Invoke_m0F49563C5B847FD0AA5D523797CC38C4C1476D8F_gshared_inline (Func_3_t0072F82DFBE56A425CAA051639D6DF09CB126719* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___arg10, RuntimeObject* ___arg21, const RuntimeMethod* method)
{
typedef bool (*FunctionPointerType) (Func_3_t0072F82DFBE56A425CAA051639D6DF09CB126719* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___arg10, RuntimeObject* ___arg21, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___arg10, ___arg21, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___x0, float ___y1, const RuntimeMethod* method)
{
{
float L_0 = ___x0;
__this->___x_0 = L_0;
float L_1 = ___y1;
__this->___y_1 = L_1;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, float ___x0, float ___y1, float ___z2, const RuntimeMethod* method)
{
{
float L_0 = ___x0;
__this->___x_2 = L_0;
float L_1 = ___y1;
__this->___y_3 = L_1;
float L_2 = ___z2;
__this->___z_4 = L_2;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Max_mA9DCA91E87D6D27034F56ABA52606A9090406016_inline (float ___a0, float ___b1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
float G_B3_0 = 0.0f;
{
float L_0 = ___a0;
float L_1 = ___b1;
if ((((float)L_0) > ((float)L_1)))
{
goto IL_0008;
}
}
{
float L_2 = ___b1;
G_B3_0 = L_2;
goto IL_0009;
}
IL_0008:
{
float L_3 = ___a0;
G_B3_0 = L_3;
}
IL_0009:
{
V_0 = G_B3_0;
goto IL_000c;
}
IL_000c:
{
float L_4 = V_0;
return L_4;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Profiler_ValidateArguments_m732E71FF4C28CBEDD8D4CD51DA409198224ED395_inline (String_t* ___name0, const RuntimeMethod* method)
{
bool V_0 = false;
{
String_t* L_0 = ___name0;
bool L_1;
L_1 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_0, NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_001c;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral31D159E683556C06B3B3963D92483B6867EB3233)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Profiler_ValidateArguments_m732E71FF4C28CBEDD8D4CD51DA409198224ED395_RuntimeMethod_var)));
}
IL_001c:
{
return;
}
}