ArduinoBluetoothAPI_Attr.cpp 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <limits>
  8. #include <stdint.h>
  9. // System.Char[]
  10. struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
  11. // System.Type[]
  12. struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
  13. // System.Reflection.AssemblyCompanyAttribute
  14. struct AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4;
  15. // System.Reflection.AssemblyConfigurationAttribute
  16. struct AssemblyConfigurationAttribute_t071B324A83314FBA14A43F37BE7206C420218B7C;
  17. // System.Reflection.AssemblyCopyrightAttribute
  18. struct AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC;
  19. // System.Reflection.AssemblyDescriptionAttribute
  20. struct AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3;
  21. // System.Reflection.AssemblyProductAttribute
  22. struct AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA;
  23. // System.Reflection.AssemblyTitleAttribute
  24. struct AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7;
  25. // System.Reflection.AssemblyTrademarkAttribute
  26. struct AssemblyTrademarkAttribute_t0602679435F8EBECC5DDB55CFE3A7A4A4CA2B5E2;
  27. // System.Reflection.Binder
  28. struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30;
  29. // System.Runtime.InteropServices.ComVisibleAttribute
  30. struct ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A;
  31. // System.Runtime.CompilerServices.CompilationRelaxationsAttribute
  32. struct CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF;
  33. // System.Runtime.CompilerServices.CompilerGeneratedAttribute
  34. struct CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C;
  35. // System.Diagnostics.DebuggableAttribute
  36. struct DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B;
  37. // System.Reflection.MemberFilter
  38. struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81;
  39. // AOT.MonoPInvokeCallbackAttribute
  40. struct MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E;
  41. // System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
  42. struct RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80;
  43. // System.String
  44. struct String_t;
  45. // System.Runtime.Versioning.TargetFrameworkAttribute
  46. struct TargetFrameworkAttribute_t9FA66D5D5B274F0E1A4FE20162AA70F62BFFB517;
  47. // System.Type
  48. struct Type_t;
  49. // System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute
  50. struct UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F;
  51. // System.Void
  52. struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
  53. IL2CPP_EXTERN_C const RuntimeType* BluetoothBinaryEvent_t2463B974D6B841460BEEB57E5E6C3EB5FF5A484D_0_0_0_var;
  54. IL2CPP_EXTERN_C const RuntimeType* BluetoothBinaryEvent_t390198A623BFFFD6228C82678AA37E20594BFD96_0_0_0_var;
  55. IL2CPP_EXTERN_C const RuntimeType* BluetoothStringEvent2_t69557F848AE18CD55A413567974DDDB0B078E3C4_0_0_0_var;
  56. IL2CPP_EXTERN_C const RuntimeType* BluetoothStringEvent2_tF4195055E00D905F1129552F50E69E878026E8F8_0_0_0_var;
  57. IL2CPP_EXTERN_C const RuntimeType* BluetoothStringEvent_t2E03EB27189D6E298D604A2E1CD9D8AEA39A6105_0_0_0_var;
  58. IL2CPP_EXTERN_C const RuntimeType* BluetoothStringEvent_t7DE0358FA9D005FB18DA0C03BE83DBB5725AD956_0_0_0_var;
  59. IL2CPP_EXTERN_C const RuntimeType* BluetoothVoidEvent_tAA768568395191A3CCAE9B616E3DD7E7B48AD7E8_0_0_0_var;
  60. IL2CPP_EXTERN_C const RuntimeType* BluetoothVoidEvent_tE178FAB100D11847192D1598B31E6DD27BA88945_0_0_0_var;
  61. IL2CPP_EXTERN_C const RuntimeType* byteByteDelegate_t1F6B297554F23A4CD708AA90AABD00AD081DD281_0_0_0_var;
  62. IL2CPP_EXTERN_C const RuntimeType* byteByteDelegate_t685D01AB19C23D95AA200D1A111D03F83852FA27_0_0_0_var;
  63. IL2CPP_EXTERN_C const RuntimeType* voidByteDelegate_t2BC234CDA291C7E0A615562EB03D2E2B95E322AA_0_0_0_var;
  64. IL2CPP_EXTERN_C const RuntimeType* voidByteDelegate_tEE89A03AF012B59AE874C267771ECE94BAB32C71_0_0_0_var;
  65. IL2CPP_EXTERN_C const RuntimeType* voidObjDelegate_t96130CDF6A9EF5B6E7BAF95F0F3AB10458D5A640_0_0_0_var;
  66. IL2CPP_EXTERN_C const RuntimeType* voidObjDelegate_tABC7DE4C7A56EE3C56F9AF4872BC663AD0F72F67_0_0_0_var;
  67. IL2CPP_EXTERN_C_BEGIN
  68. IL2CPP_EXTERN_C_END
  69. #ifdef __clang__
  70. #pragma clang diagnostic push
  71. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  72. #pragma clang diagnostic ignored "-Wunused-variable"
  73. #endif
  74. // System.Object
  75. // System.Attribute
  76. struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 : public RuntimeObject
  77. {
  78. public:
  79. public:
  80. };
  81. // System.Reflection.MemberInfo
  82. struct MemberInfo_t : public RuntimeObject
  83. {
  84. public:
  85. public:
  86. };
  87. // System.String
  88. struct String_t : public RuntimeObject
  89. {
  90. public:
  91. // System.Int32 System.String::m_stringLength
  92. int32_t ___m_stringLength_0;
  93. // System.Char System.String::m_firstChar
  94. Il2CppChar ___m_firstChar_1;
  95. public:
  96. inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
  97. inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
  98. inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
  99. inline void set_m_stringLength_0(int32_t value)
  100. {
  101. ___m_stringLength_0 = value;
  102. }
  103. inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
  104. inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
  105. inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
  106. inline void set_m_firstChar_1(Il2CppChar value)
  107. {
  108. ___m_firstChar_1 = value;
  109. }
  110. };
  111. struct String_t_StaticFields
  112. {
  113. public:
  114. // System.String System.String::Empty
  115. String_t* ___Empty_5;
  116. public:
  117. inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
  118. inline String_t* get_Empty_5() const { return ___Empty_5; }
  119. inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
  120. inline void set_Empty_5(String_t* value)
  121. {
  122. ___Empty_5 = value;
  123. Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
  124. }
  125. };
  126. // System.ValueType
  127. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
  128. {
  129. public:
  130. public:
  131. };
  132. // Native definition for P/Invoke marshalling of System.ValueType
  133. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
  134. {
  135. };
  136. // Native definition for COM marshalling of System.ValueType
  137. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
  138. {
  139. };
  140. // System.Reflection.AssemblyCompanyAttribute
  141. struct AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  142. {
  143. public:
  144. // System.String System.Reflection.AssemblyCompanyAttribute::m_company
  145. String_t* ___m_company_0;
  146. public:
  147. inline static int32_t get_offset_of_m_company_0() { return static_cast<int32_t>(offsetof(AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4, ___m_company_0)); }
  148. inline String_t* get_m_company_0() const { return ___m_company_0; }
  149. inline String_t** get_address_of_m_company_0() { return &___m_company_0; }
  150. inline void set_m_company_0(String_t* value)
  151. {
  152. ___m_company_0 = value;
  153. Il2CppCodeGenWriteBarrier((void**)(&___m_company_0), (void*)value);
  154. }
  155. };
  156. // System.Reflection.AssemblyConfigurationAttribute
  157. struct AssemblyConfigurationAttribute_t071B324A83314FBA14A43F37BE7206C420218B7C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  158. {
  159. public:
  160. // System.String System.Reflection.AssemblyConfigurationAttribute::m_configuration
  161. String_t* ___m_configuration_0;
  162. public:
  163. inline static int32_t get_offset_of_m_configuration_0() { return static_cast<int32_t>(offsetof(AssemblyConfigurationAttribute_t071B324A83314FBA14A43F37BE7206C420218B7C, ___m_configuration_0)); }
  164. inline String_t* get_m_configuration_0() const { return ___m_configuration_0; }
  165. inline String_t** get_address_of_m_configuration_0() { return &___m_configuration_0; }
  166. inline void set_m_configuration_0(String_t* value)
  167. {
  168. ___m_configuration_0 = value;
  169. Il2CppCodeGenWriteBarrier((void**)(&___m_configuration_0), (void*)value);
  170. }
  171. };
  172. // System.Reflection.AssemblyCopyrightAttribute
  173. struct AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  174. {
  175. public:
  176. // System.String System.Reflection.AssemblyCopyrightAttribute::m_copyright
  177. String_t* ___m_copyright_0;
  178. public:
  179. inline static int32_t get_offset_of_m_copyright_0() { return static_cast<int32_t>(offsetof(AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC, ___m_copyright_0)); }
  180. inline String_t* get_m_copyright_0() const { return ___m_copyright_0; }
  181. inline String_t** get_address_of_m_copyright_0() { return &___m_copyright_0; }
  182. inline void set_m_copyright_0(String_t* value)
  183. {
  184. ___m_copyright_0 = value;
  185. Il2CppCodeGenWriteBarrier((void**)(&___m_copyright_0), (void*)value);
  186. }
  187. };
  188. // System.Reflection.AssemblyDescriptionAttribute
  189. struct AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  190. {
  191. public:
  192. // System.String System.Reflection.AssemblyDescriptionAttribute::m_description
  193. String_t* ___m_description_0;
  194. public:
  195. inline static int32_t get_offset_of_m_description_0() { return static_cast<int32_t>(offsetof(AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3, ___m_description_0)); }
  196. inline String_t* get_m_description_0() const { return ___m_description_0; }
  197. inline String_t** get_address_of_m_description_0() { return &___m_description_0; }
  198. inline void set_m_description_0(String_t* value)
  199. {
  200. ___m_description_0 = value;
  201. Il2CppCodeGenWriteBarrier((void**)(&___m_description_0), (void*)value);
  202. }
  203. };
  204. // System.Reflection.AssemblyProductAttribute
  205. struct AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  206. {
  207. public:
  208. // System.String System.Reflection.AssemblyProductAttribute::m_product
  209. String_t* ___m_product_0;
  210. public:
  211. inline static int32_t get_offset_of_m_product_0() { return static_cast<int32_t>(offsetof(AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA, ___m_product_0)); }
  212. inline String_t* get_m_product_0() const { return ___m_product_0; }
  213. inline String_t** get_address_of_m_product_0() { return &___m_product_0; }
  214. inline void set_m_product_0(String_t* value)
  215. {
  216. ___m_product_0 = value;
  217. Il2CppCodeGenWriteBarrier((void**)(&___m_product_0), (void*)value);
  218. }
  219. };
  220. // System.Reflection.AssemblyTitleAttribute
  221. struct AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  222. {
  223. public:
  224. // System.String System.Reflection.AssemblyTitleAttribute::m_title
  225. String_t* ___m_title_0;
  226. public:
  227. inline static int32_t get_offset_of_m_title_0() { return static_cast<int32_t>(offsetof(AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7, ___m_title_0)); }
  228. inline String_t* get_m_title_0() const { return ___m_title_0; }
  229. inline String_t** get_address_of_m_title_0() { return &___m_title_0; }
  230. inline void set_m_title_0(String_t* value)
  231. {
  232. ___m_title_0 = value;
  233. Il2CppCodeGenWriteBarrier((void**)(&___m_title_0), (void*)value);
  234. }
  235. };
  236. // System.Reflection.AssemblyTrademarkAttribute
  237. struct AssemblyTrademarkAttribute_t0602679435F8EBECC5DDB55CFE3A7A4A4CA2B5E2 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  238. {
  239. public:
  240. // System.String System.Reflection.AssemblyTrademarkAttribute::m_trademark
  241. String_t* ___m_trademark_0;
  242. public:
  243. inline static int32_t get_offset_of_m_trademark_0() { return static_cast<int32_t>(offsetof(AssemblyTrademarkAttribute_t0602679435F8EBECC5DDB55CFE3A7A4A4CA2B5E2, ___m_trademark_0)); }
  244. inline String_t* get_m_trademark_0() const { return ___m_trademark_0; }
  245. inline String_t** get_address_of_m_trademark_0() { return &___m_trademark_0; }
  246. inline void set_m_trademark_0(String_t* value)
  247. {
  248. ___m_trademark_0 = value;
  249. Il2CppCodeGenWriteBarrier((void**)(&___m_trademark_0), (void*)value);
  250. }
  251. };
  252. // System.Boolean
  253. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
  254. {
  255. public:
  256. // System.Boolean System.Boolean::m_value
  257. bool ___m_value_0;
  258. public:
  259. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
  260. inline bool get_m_value_0() const { return ___m_value_0; }
  261. inline bool* get_address_of_m_value_0() { return &___m_value_0; }
  262. inline void set_m_value_0(bool value)
  263. {
  264. ___m_value_0 = value;
  265. }
  266. };
  267. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
  268. {
  269. public:
  270. // System.String System.Boolean::TrueString
  271. String_t* ___TrueString_5;
  272. // System.String System.Boolean::FalseString
  273. String_t* ___FalseString_6;
  274. public:
  275. inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
  276. inline String_t* get_TrueString_5() const { return ___TrueString_5; }
  277. inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
  278. inline void set_TrueString_5(String_t* value)
  279. {
  280. ___TrueString_5 = value;
  281. Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
  282. }
  283. inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
  284. inline String_t* get_FalseString_6() const { return ___FalseString_6; }
  285. inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
  286. inline void set_FalseString_6(String_t* value)
  287. {
  288. ___FalseString_6 = value;
  289. Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
  290. }
  291. };
  292. // System.Runtime.InteropServices.ComVisibleAttribute
  293. struct ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  294. {
  295. public:
  296. // System.Boolean System.Runtime.InteropServices.ComVisibleAttribute::_val
  297. bool ____val_0;
  298. public:
  299. inline static int32_t get_offset_of__val_0() { return static_cast<int32_t>(offsetof(ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A, ____val_0)); }
  300. inline bool get__val_0() const { return ____val_0; }
  301. inline bool* get_address_of__val_0() { return &____val_0; }
  302. inline void set__val_0(bool value)
  303. {
  304. ____val_0 = value;
  305. }
  306. };
  307. // System.Runtime.CompilerServices.CompilationRelaxationsAttribute
  308. struct CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  309. {
  310. public:
  311. // System.Int32 System.Runtime.CompilerServices.CompilationRelaxationsAttribute::m_relaxations
  312. int32_t ___m_relaxations_0;
  313. public:
  314. inline static int32_t get_offset_of_m_relaxations_0() { return static_cast<int32_t>(offsetof(CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF, ___m_relaxations_0)); }
  315. inline int32_t get_m_relaxations_0() const { return ___m_relaxations_0; }
  316. inline int32_t* get_address_of_m_relaxations_0() { return &___m_relaxations_0; }
  317. inline void set_m_relaxations_0(int32_t value)
  318. {
  319. ___m_relaxations_0 = value;
  320. }
  321. };
  322. // System.Runtime.CompilerServices.CompilerGeneratedAttribute
  323. struct CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  324. {
  325. public:
  326. public:
  327. };
  328. // System.Enum
  329. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
  330. {
  331. public:
  332. public:
  333. };
  334. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
  335. {
  336. public:
  337. // System.Char[] System.Enum::enumSeperatorCharArray
  338. CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
  339. public:
  340. inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
  341. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
  342. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
  343. inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
  344. {
  345. ___enumSeperatorCharArray_0 = value;
  346. Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
  347. }
  348. };
  349. // Native definition for P/Invoke marshalling of System.Enum
  350. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
  351. {
  352. };
  353. // Native definition for COM marshalling of System.Enum
  354. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
  355. {
  356. };
  357. // System.IntPtr
  358. struct IntPtr_t
  359. {
  360. public:
  361. // System.Void* System.IntPtr::m_value
  362. void* ___m_value_0;
  363. public:
  364. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
  365. inline void* get_m_value_0() const { return ___m_value_0; }
  366. inline void** get_address_of_m_value_0() { return &___m_value_0; }
  367. inline void set_m_value_0(void* value)
  368. {
  369. ___m_value_0 = value;
  370. }
  371. };
  372. struct IntPtr_t_StaticFields
  373. {
  374. public:
  375. // System.IntPtr System.IntPtr::Zero
  376. intptr_t ___Zero_1;
  377. public:
  378. inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
  379. inline intptr_t get_Zero_1() const { return ___Zero_1; }
  380. inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
  381. inline void set_Zero_1(intptr_t value)
  382. {
  383. ___Zero_1 = value;
  384. }
  385. };
  386. // AOT.MonoPInvokeCallbackAttribute
  387. struct MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  388. {
  389. public:
  390. public:
  391. };
  392. // System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
  393. struct RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  394. {
  395. public:
  396. // System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::m_wrapNonExceptionThrows
  397. bool ___m_wrapNonExceptionThrows_0;
  398. public:
  399. inline static int32_t get_offset_of_m_wrapNonExceptionThrows_0() { return static_cast<int32_t>(offsetof(RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80, ___m_wrapNonExceptionThrows_0)); }
  400. inline bool get_m_wrapNonExceptionThrows_0() const { return ___m_wrapNonExceptionThrows_0; }
  401. inline bool* get_address_of_m_wrapNonExceptionThrows_0() { return &___m_wrapNonExceptionThrows_0; }
  402. inline void set_m_wrapNonExceptionThrows_0(bool value)
  403. {
  404. ___m_wrapNonExceptionThrows_0 = value;
  405. }
  406. };
  407. // System.Runtime.Versioning.TargetFrameworkAttribute
  408. struct TargetFrameworkAttribute_t9FA66D5D5B274F0E1A4FE20162AA70F62BFFB517 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  409. {
  410. public:
  411. // System.String System.Runtime.Versioning.TargetFrameworkAttribute::_frameworkName
  412. String_t* ____frameworkName_0;
  413. // System.String System.Runtime.Versioning.TargetFrameworkAttribute::_frameworkDisplayName
  414. String_t* ____frameworkDisplayName_1;
  415. public:
  416. inline static int32_t get_offset_of__frameworkName_0() { return static_cast<int32_t>(offsetof(TargetFrameworkAttribute_t9FA66D5D5B274F0E1A4FE20162AA70F62BFFB517, ____frameworkName_0)); }
  417. inline String_t* get__frameworkName_0() const { return ____frameworkName_0; }
  418. inline String_t** get_address_of__frameworkName_0() { return &____frameworkName_0; }
  419. inline void set__frameworkName_0(String_t* value)
  420. {
  421. ____frameworkName_0 = value;
  422. Il2CppCodeGenWriteBarrier((void**)(&____frameworkName_0), (void*)value);
  423. }
  424. inline static int32_t get_offset_of__frameworkDisplayName_1() { return static_cast<int32_t>(offsetof(TargetFrameworkAttribute_t9FA66D5D5B274F0E1A4FE20162AA70F62BFFB517, ____frameworkDisplayName_1)); }
  425. inline String_t* get__frameworkDisplayName_1() const { return ____frameworkDisplayName_1; }
  426. inline String_t** get_address_of__frameworkDisplayName_1() { return &____frameworkDisplayName_1; }
  427. inline void set__frameworkDisplayName_1(String_t* value)
  428. {
  429. ____frameworkDisplayName_1 = value;
  430. Il2CppCodeGenWriteBarrier((void**)(&____frameworkDisplayName_1), (void*)value);
  431. }
  432. };
  433. // System.Void
  434. struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
  435. {
  436. public:
  437. union
  438. {
  439. struct
  440. {
  441. };
  442. uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
  443. };
  444. public:
  445. };
  446. // System.Reflection.BindingFlags
  447. struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733
  448. {
  449. public:
  450. // System.Int32 System.Reflection.BindingFlags::value__
  451. int32_t ___value___2;
  452. public:
  453. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); }
  454. inline int32_t get_value___2() const { return ___value___2; }
  455. inline int32_t* get_address_of_value___2() { return &___value___2; }
  456. inline void set_value___2(int32_t value)
  457. {
  458. ___value___2 = value;
  459. }
  460. };
  461. // System.Runtime.InteropServices.CallingConvention
  462. struct CallingConvention_tCD05DC1A211D9713286784F4DDDE1BA18B839924
  463. {
  464. public:
  465. // System.Int32 System.Runtime.InteropServices.CallingConvention::value__
  466. int32_t ___value___2;
  467. public:
  468. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CallingConvention_tCD05DC1A211D9713286784F4DDDE1BA18B839924, ___value___2)); }
  469. inline int32_t get_value___2() const { return ___value___2; }
  470. inline int32_t* get_address_of_value___2() { return &___value___2; }
  471. inline void set_value___2(int32_t value)
  472. {
  473. ___value___2 = value;
  474. }
  475. };
  476. // System.Runtime.InteropServices.CharSet
  477. struct CharSet_tF37E3433B83409C49A52A325333BFBC08ACD6E4B
  478. {
  479. public:
  480. // System.Int32 System.Runtime.InteropServices.CharSet::value__
  481. int32_t ___value___2;
  482. public:
  483. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CharSet_tF37E3433B83409C49A52A325333BFBC08ACD6E4B, ___value___2)); }
  484. inline int32_t get_value___2() const { return ___value___2; }
  485. inline int32_t* get_address_of_value___2() { return &___value___2; }
  486. inline void set_value___2(int32_t value)
  487. {
  488. ___value___2 = value;
  489. }
  490. };
  491. // System.RuntimeTypeHandle
  492. struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9
  493. {
  494. public:
  495. // System.IntPtr System.RuntimeTypeHandle::value
  496. intptr_t ___value_0;
  497. public:
  498. inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); }
  499. inline intptr_t get_value_0() const { return ___value_0; }
  500. inline intptr_t* get_address_of_value_0() { return &___value_0; }
  501. inline void set_value_0(intptr_t value)
  502. {
  503. ___value_0 = value;
  504. }
  505. };
  506. // System.Diagnostics.DebuggableAttribute/DebuggingModes
  507. struct DebuggingModes_t279D5B9C012ABA935887CB73C5A63A1F46AF08A8
  508. {
  509. public:
  510. // System.Int32 System.Diagnostics.DebuggableAttribute/DebuggingModes::value__
  511. int32_t ___value___2;
  512. public:
  513. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DebuggingModes_t279D5B9C012ABA935887CB73C5A63A1F46AF08A8, ___value___2)); }
  514. inline int32_t get_value___2() const { return ___value___2; }
  515. inline int32_t* get_address_of_value___2() { return &___value___2; }
  516. inline void set_value___2(int32_t value)
  517. {
  518. ___value___2 = value;
  519. }
  520. };
  521. // System.Diagnostics.DebuggableAttribute
  522. struct DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  523. {
  524. public:
  525. // System.Diagnostics.DebuggableAttribute/DebuggingModes System.Diagnostics.DebuggableAttribute::m_debuggingModes
  526. int32_t ___m_debuggingModes_0;
  527. public:
  528. inline static int32_t get_offset_of_m_debuggingModes_0() { return static_cast<int32_t>(offsetof(DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B, ___m_debuggingModes_0)); }
  529. inline int32_t get_m_debuggingModes_0() const { return ___m_debuggingModes_0; }
  530. inline int32_t* get_address_of_m_debuggingModes_0() { return &___m_debuggingModes_0; }
  531. inline void set_m_debuggingModes_0(int32_t value)
  532. {
  533. ___m_debuggingModes_0 = value;
  534. }
  535. };
  536. // System.Type
  537. struct Type_t : public MemberInfo_t
  538. {
  539. public:
  540. // System.RuntimeTypeHandle System.Type::_impl
  541. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9;
  542. public:
  543. inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
  544. inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; }
  545. inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; }
  546. inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value)
  547. {
  548. ____impl_9 = value;
  549. }
  550. };
  551. struct Type_t_StaticFields
  552. {
  553. public:
  554. // System.Reflection.MemberFilter System.Type::FilterAttribute
  555. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0;
  556. // System.Reflection.MemberFilter System.Type::FilterName
  557. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1;
  558. // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
  559. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2;
  560. // System.Object System.Type::Missing
  561. RuntimeObject * ___Missing_3;
  562. // System.Char System.Type::Delimiter
  563. Il2CppChar ___Delimiter_4;
  564. // System.Type[] System.Type::EmptyTypes
  565. TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5;
  566. // System.Reflection.Binder System.Type::defaultBinder
  567. Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6;
  568. public:
  569. inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
  570. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
  571. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
  572. inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  573. {
  574. ___FilterAttribute_0 = value;
  575. Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
  576. }
  577. inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
  578. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; }
  579. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; }
  580. inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  581. {
  582. ___FilterName_1 = value;
  583. Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
  584. }
  585. inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
  586. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
  587. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
  588. inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  589. {
  590. ___FilterNameIgnoreCase_2 = value;
  591. Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
  592. }
  593. inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
  594. inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
  595. inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
  596. inline void set_Missing_3(RuntimeObject * value)
  597. {
  598. ___Missing_3 = value;
  599. Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
  600. }
  601. inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
  602. inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
  603. inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
  604. inline void set_Delimiter_4(Il2CppChar value)
  605. {
  606. ___Delimiter_4 = value;
  607. }
  608. inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
  609. inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
  610. inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
  611. inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
  612. {
  613. ___EmptyTypes_5 = value;
  614. Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
  615. }
  616. inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
  617. inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; }
  618. inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
  619. inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value)
  620. {
  621. ___defaultBinder_6 = value;
  622. Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
  623. }
  624. };
  625. // System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute
  626. struct UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  627. {
  628. public:
  629. // System.Runtime.InteropServices.CallingConvention System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute::m_callingConvention
  630. int32_t ___m_callingConvention_0;
  631. // System.Runtime.InteropServices.CharSet System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute::CharSet
  632. int32_t ___CharSet_1;
  633. // System.Boolean System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute::BestFitMapping
  634. bool ___BestFitMapping_2;
  635. // System.Boolean System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute::ThrowOnUnmappableChar
  636. bool ___ThrowOnUnmappableChar_3;
  637. // System.Boolean System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute::SetLastError
  638. bool ___SetLastError_4;
  639. public:
  640. inline static int32_t get_offset_of_m_callingConvention_0() { return static_cast<int32_t>(offsetof(UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F, ___m_callingConvention_0)); }
  641. inline int32_t get_m_callingConvention_0() const { return ___m_callingConvention_0; }
  642. inline int32_t* get_address_of_m_callingConvention_0() { return &___m_callingConvention_0; }
  643. inline void set_m_callingConvention_0(int32_t value)
  644. {
  645. ___m_callingConvention_0 = value;
  646. }
  647. inline static int32_t get_offset_of_CharSet_1() { return static_cast<int32_t>(offsetof(UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F, ___CharSet_1)); }
  648. inline int32_t get_CharSet_1() const { return ___CharSet_1; }
  649. inline int32_t* get_address_of_CharSet_1() { return &___CharSet_1; }
  650. inline void set_CharSet_1(int32_t value)
  651. {
  652. ___CharSet_1 = value;
  653. }
  654. inline static int32_t get_offset_of_BestFitMapping_2() { return static_cast<int32_t>(offsetof(UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F, ___BestFitMapping_2)); }
  655. inline bool get_BestFitMapping_2() const { return ___BestFitMapping_2; }
  656. inline bool* get_address_of_BestFitMapping_2() { return &___BestFitMapping_2; }
  657. inline void set_BestFitMapping_2(bool value)
  658. {
  659. ___BestFitMapping_2 = value;
  660. }
  661. inline static int32_t get_offset_of_ThrowOnUnmappableChar_3() { return static_cast<int32_t>(offsetof(UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F, ___ThrowOnUnmappableChar_3)); }
  662. inline bool get_ThrowOnUnmappableChar_3() const { return ___ThrowOnUnmappableChar_3; }
  663. inline bool* get_address_of_ThrowOnUnmappableChar_3() { return &___ThrowOnUnmappableChar_3; }
  664. inline void set_ThrowOnUnmappableChar_3(bool value)
  665. {
  666. ___ThrowOnUnmappableChar_3 = value;
  667. }
  668. inline static int32_t get_offset_of_SetLastError_4() { return static_cast<int32_t>(offsetof(UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F, ___SetLastError_4)); }
  669. inline bool get_SetLastError_4() const { return ___SetLastError_4; }
  670. inline bool* get_address_of_SetLastError_4() { return &___SetLastError_4; }
  671. inline void set_SetLastError_4(bool value)
  672. {
  673. ___SetLastError_4 = value;
  674. }
  675. };
  676. #ifdef __clang__
  677. #pragma clang diagnostic pop
  678. #endif
  679. // System.Void System.Reflection.AssemblyTrademarkAttribute::.ctor(System.String)
  680. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyTrademarkAttribute__ctor_m6FBD5AAE48F00120043AD8BECF2586896CFB6C02 (AssemblyTrademarkAttribute_t0602679435F8EBECC5DDB55CFE3A7A4A4CA2B5E2 * __this, String_t* ___trademark0, const RuntimeMethod* method);
  681. // System.Void System.Reflection.AssemblyCopyrightAttribute::.ctor(System.String)
  682. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyCopyrightAttribute__ctor_mB0B5F5C1A7A8B172289CC694E2711F07A37CE3F3 (AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC * __this, String_t* ___copyright0, const RuntimeMethod* method);
  683. // System.Void System.Reflection.AssemblyProductAttribute::.ctor(System.String)
  684. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyProductAttribute__ctor_m26DF1EBC1C86E7DA4786C66B44123899BE8DBCB8 (AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA * __this, String_t* ___product0, const RuntimeMethod* method);
  685. // System.Void System.Reflection.AssemblyCompanyAttribute::.ctor(System.String)
  686. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyCompanyAttribute__ctor_m435C9FEC405646617645636E67860598A0C46FF0 (AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4 * __this, String_t* ___company0, const RuntimeMethod* method);
  687. // System.Void System.Reflection.AssemblyConfigurationAttribute::.ctor(System.String)
  688. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyConfigurationAttribute__ctor_m6EE76F5A155EDEA71967A32F78D777038ADD0757 (AssemblyConfigurationAttribute_t071B324A83314FBA14A43F37BE7206C420218B7C * __this, String_t* ___configuration0, const RuntimeMethod* method);
  689. // System.Void System.Reflection.AssemblyDescriptionAttribute::.ctor(System.String)
  690. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyDescriptionAttribute__ctor_m3A0BD500FF352A67235FBA499FBA58EFF15B1F25 (AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3 * __this, String_t* ___description0, const RuntimeMethod* method);
  691. // System.Void System.Reflection.AssemblyTitleAttribute::.ctor(System.String)
  692. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyTitleAttribute__ctor_mE239F206B3B369C48AE1F3B4211688778FE99E8D (AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7 * __this, String_t* ___title0, const RuntimeMethod* method);
  693. // System.Void System.Diagnostics.DebuggableAttribute::.ctor(System.Diagnostics.DebuggableAttribute/DebuggingModes)
  694. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggableAttribute__ctor_m7FF445C8435494A4847123A668D889E692E55550 (DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B * __this, int32_t ___modes0, const RuntimeMethod* method);
  695. // System.Void System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::.ctor()
  696. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute__ctor_m551DDF1438CE97A984571949723F30F44CF7317C (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, const RuntimeMethod* method);
  697. // System.Void System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::set_WrapNonExceptionThrows(System.Boolean)
  698. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, bool ___value0, const RuntimeMethod* method);
  699. // System.Void System.Runtime.CompilerServices.CompilationRelaxationsAttribute::.ctor(System.Int32)
  700. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompilationRelaxationsAttribute__ctor_mAC3079EBC4EEAB474EED8208EF95DB39C922333B (CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF * __this, int32_t ___relaxations0, const RuntimeMethod* method);
  701. // System.Void System.Runtime.InteropServices.ComVisibleAttribute::.ctor(System.Boolean)
  702. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComVisibleAttribute__ctor_mBDE8E12A0233C07B98D6D5103511F4DD5B1FC172 (ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A * __this, bool ___visibility0, const RuntimeMethod* method);
  703. // System.Void System.Runtime.Versioning.TargetFrameworkAttribute::.ctor(System.String)
  704. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TargetFrameworkAttribute__ctor_m0F8E5550F9199AC44F2CBCCD3E968EC26731187D (TargetFrameworkAttribute_t9FA66D5D5B274F0E1A4FE20162AA70F62BFFB517 * __this, String_t* ___frameworkName0, const RuntimeMethod* method);
  705. // System.Void System.Runtime.Versioning.TargetFrameworkAttribute::set_FrameworkDisplayName(System.String)
  706. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TargetFrameworkAttribute_set_FrameworkDisplayName_mB89F1A63CB77A414AF46D5695B37CD520EAB52AB_inline (TargetFrameworkAttribute_t9FA66D5D5B274F0E1A4FE20162AA70F62BFFB517 * __this, String_t* ___value0, const RuntimeMethod* method);
  707. // System.Void System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor()
  708. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35 (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * __this, const RuntimeMethod* method);
  709. // System.Void AOT.MonoPInvokeCallbackAttribute::.ctor(System.Type)
  710. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344 (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * __this, Type_t * ___type0, const RuntimeMethod* method);
  711. // System.Void System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute::.ctor(System.Runtime.InteropServices.CallingConvention)
  712. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnmanagedFunctionPointerAttribute__ctor_m4EE271163D421DF82BBCD7D91ED68D8EE26544F7 (UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F * __this, int32_t ___callingConvention0, const RuntimeMethod* method);
  713. static void ArduinoBluetoothAPI_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  714. {
  715. {
  716. AssemblyTrademarkAttribute_t0602679435F8EBECC5DDB55CFE3A7A4A4CA2B5E2 * tmp = (AssemblyTrademarkAttribute_t0602679435F8EBECC5DDB55CFE3A7A4A4CA2B5E2 *)cache->attributes[0];
  717. AssemblyTrademarkAttribute__ctor_m6FBD5AAE48F00120043AD8BECF2586896CFB6C02(tmp, il2cpp_codegen_string_new_wrapper(""), NULL);
  718. }
  719. {
  720. AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC * tmp = (AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC *)cache->attributes[1];
  721. AssemblyCopyrightAttribute__ctor_mB0B5F5C1A7A8B172289CC694E2711F07A37CE3F3(tmp, il2cpp_codegen_string_new_wrapper("\x54\x6F\x6E\x79"), NULL);
  722. }
  723. {
  724. AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA * tmp = (AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA *)cache->attributes[2];
  725. AssemblyProductAttribute__ctor_m26DF1EBC1C86E7DA4786C66B44123899BE8DBCB8(tmp, il2cpp_codegen_string_new_wrapper(""), NULL);
  726. }
  727. {
  728. AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4 * tmp = (AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4 *)cache->attributes[3];
  729. AssemblyCompanyAttribute__ctor_m435C9FEC405646617645636E67860598A0C46FF0(tmp, il2cpp_codegen_string_new_wrapper(""), NULL);
  730. }
  731. {
  732. AssemblyConfigurationAttribute_t071B324A83314FBA14A43F37BE7206C420218B7C * tmp = (AssemblyConfigurationAttribute_t071B324A83314FBA14A43F37BE7206C420218B7C *)cache->attributes[4];
  733. AssemblyConfigurationAttribute__ctor_m6EE76F5A155EDEA71967A32F78D777038ADD0757(tmp, il2cpp_codegen_string_new_wrapper(""), NULL);
  734. }
  735. {
  736. AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3 * tmp = (AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3 *)cache->attributes[5];
  737. AssemblyDescriptionAttribute__ctor_m3A0BD500FF352A67235FBA499FBA58EFF15B1F25(tmp, il2cpp_codegen_string_new_wrapper(""), NULL);
  738. }
  739. {
  740. AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7 * tmp = (AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7 *)cache->attributes[6];
  741. AssemblyTitleAttribute__ctor_mE239F206B3B369C48AE1F3B4211688778FE99E8D(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x42\x6C\x75\x65\x74\x6F\x6F\x74\x68\x41\x50\x49"), NULL);
  742. }
  743. {
  744. DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B * tmp = (DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B *)cache->attributes[7];
  745. DebuggableAttribute__ctor_m7FF445C8435494A4847123A668D889E692E55550(tmp, 2LL, NULL);
  746. }
  747. {
  748. RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * tmp = (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 *)cache->attributes[8];
  749. RuntimeCompatibilityAttribute__ctor_m551DDF1438CE97A984571949723F30F44CF7317C(tmp, NULL);
  750. RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline(tmp, true, NULL);
  751. }
  752. {
  753. CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF * tmp = (CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF *)cache->attributes[9];
  754. CompilationRelaxationsAttribute__ctor_mAC3079EBC4EEAB474EED8208EF95DB39C922333B(tmp, 8LL, NULL);
  755. }
  756. {
  757. ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A * tmp = (ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A *)cache->attributes[10];
  758. ComVisibleAttribute__ctor_mBDE8E12A0233C07B98D6D5103511F4DD5B1FC172(tmp, false, NULL);
  759. }
  760. {
  761. TargetFrameworkAttribute_t9FA66D5D5B274F0E1A4FE20162AA70F62BFFB517 * tmp = (TargetFrameworkAttribute_t9FA66D5D5B274F0E1A4FE20162AA70F62BFFB517 *)cache->attributes[11];
  762. TargetFrameworkAttribute__ctor_m0F8E5550F9199AC44F2CBCCD3E968EC26731187D(tmp, il2cpp_codegen_string_new_wrapper("\x2E\x4E\x45\x54\x46\x72\x61\x6D\x65\x77\x6F\x72\x6B\x2C\x56\x65\x72\x73\x69\x6F\x6E\x3D\x76\x34\x2E\x36\x2E\x31"), NULL);
  763. TargetFrameworkAttribute_set_FrameworkDisplayName_mB89F1A63CB77A414AF46D5695B37CD520EAB52AB_inline(tmp, il2cpp_codegen_string_new_wrapper("\x2E\x4E\x45\x54\x20\x46\x72\x61\x6D\x65\x77\x6F\x72\x6B\x20\x34\x2E\x36\x2E\x31"), NULL);
  764. }
  765. }
  766. static void BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_U3CDeviceNameU3Ek__BackingField(CustomAttributesCache* cache)
  767. {
  768. {
  769. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  770. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  771. }
  772. }
  773. static void BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_U3CDeviceAddressU3Ek__BackingField(CustomAttributesCache* cache)
  774. {
  775. {
  776. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  777. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  778. }
  779. }
  780. static void BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_U3CRssiU3Ek__BackingField(CustomAttributesCache* cache)
  781. {
  782. {
  783. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  784. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  785. }
  786. }
  787. static void BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_BluetoothDevice_set_DeviceName_mF90D96BDCEDFCAA1C0900E9BF1E41ABB3738CCC5(CustomAttributesCache* cache)
  788. {
  789. {
  790. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  791. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  792. }
  793. }
  794. static void BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_BluetoothDevice_get_DeviceName_m87AF25A8E0F489903372EA4ABCC9BFDF138C2865(CustomAttributesCache* cache)
  795. {
  796. {
  797. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  798. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  799. }
  800. }
  801. static void BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_BluetoothDevice_set_DeviceAddress_m814AC9B25E9F8DEEBF4470A264094E98A79EA91F(CustomAttributesCache* cache)
  802. {
  803. {
  804. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  805. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  806. }
  807. }
  808. static void BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_BluetoothDevice_get_DeviceAddress_mE54A6B6FF804468B82F19065A3393DD65E656F7C(CustomAttributesCache* cache)
  809. {
  810. {
  811. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  812. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  813. }
  814. }
  815. static void BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_BluetoothDevice_set_Rssi_m746A37D26249758D92E5406B8985021EB184E3CC(CustomAttributesCache* cache)
  816. {
  817. {
  818. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  819. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  820. }
  821. }
  822. static void BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_BluetoothDevice_get_Rssi_mA3FED34C8B41BB21FEF70FCE48132019A3009601(CustomAttributesCache* cache)
  823. {
  824. {
  825. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  826. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  827. }
  828. }
  829. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_OnConnected(CustomAttributesCache* cache)
  830. {
  831. {
  832. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  833. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  834. }
  835. }
  836. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_OnConnectionFailed(CustomAttributesCache* cache)
  837. {
  838. {
  839. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  840. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  841. }
  842. }
  843. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_OnDataReceived(CustomAttributesCache* cache)
  844. {
  845. {
  846. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  847. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  848. }
  849. }
  850. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_OnServiceNotFound(CustomAttributesCache* cache)
  851. {
  852. {
  853. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  854. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  855. }
  856. }
  857. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_OnCharacteristicNotFound(CustomAttributesCache* cache)
  858. {
  859. {
  860. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  861. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  862. }
  863. }
  864. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_OnDescriptorNotFound(CustomAttributesCache* cache)
  865. {
  866. {
  867. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  868. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  869. }
  870. }
  871. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_OnScanEnded(CustomAttributesCache* cache)
  872. {
  873. {
  874. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  875. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  876. }
  877. }
  878. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_OnCharacteristicChanged(CustomAttributesCache* cache)
  879. {
  880. {
  881. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  882. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  883. }
  884. }
  885. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_add_OnConnected_m5CE1875A1281B94F1FD5B265DE15CA4D1CC1807F(CustomAttributesCache* cache)
  886. {
  887. {
  888. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  889. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  890. }
  891. }
  892. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_remove_OnConnected_mE870425B28C112231D8B7B3DAB59B709C6D5AD28(CustomAttributesCache* cache)
  893. {
  894. {
  895. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  896. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  897. }
  898. }
  899. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_add_OnConnectionFailed_mEFBC9568FA0492A45442EDE15EF9D93641967D5F(CustomAttributesCache* cache)
  900. {
  901. {
  902. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  903. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  904. }
  905. }
  906. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_remove_OnConnectionFailed_m8E8020C665F5F2853416AE83BF9466DBBE8DBD8B(CustomAttributesCache* cache)
  907. {
  908. {
  909. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  910. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  911. }
  912. }
  913. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_add_OnDataReceived_mD01145C46F0B8B886F3DE1AC292B692D20C0512A(CustomAttributesCache* cache)
  914. {
  915. {
  916. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  917. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  918. }
  919. }
  920. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_remove_OnDataReceived_mA2F14CC63101ED55B18413453D29BD24E5C195BD(CustomAttributesCache* cache)
  921. {
  922. {
  923. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  924. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  925. }
  926. }
  927. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_add_OnServiceNotFound_m5517430450852DCE2F94E4AD0C7C4C23A355D62F(CustomAttributesCache* cache)
  928. {
  929. {
  930. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  931. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  932. }
  933. }
  934. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_remove_OnServiceNotFound_mB19D5344C0DEC85F587BB6E1DA200D972D8668DA(CustomAttributesCache* cache)
  935. {
  936. {
  937. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  938. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  939. }
  940. }
  941. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_add_OnCharacteristicNotFound_m39C0CBF8270673D0B2F1065808AE83C03E2AE734(CustomAttributesCache* cache)
  942. {
  943. {
  944. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  945. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  946. }
  947. }
  948. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_remove_OnCharacteristicNotFound_m0A14071C519BF7C965A8807E71B65898BDB1E729(CustomAttributesCache* cache)
  949. {
  950. {
  951. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  952. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  953. }
  954. }
  955. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_add_OnScanEnded_m29C2C4D0D6C05C482081DB00D47ADA32CEF7D3F0(CustomAttributesCache* cache)
  956. {
  957. {
  958. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  959. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  960. }
  961. }
  962. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_remove_OnScanEnded_m3EB177481DC5E87DDDF61AB4995FAA05274DF948(CustomAttributesCache* cache)
  963. {
  964. {
  965. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  966. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  967. }
  968. }
  969. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_add_OnCharacteristicChanged_mCF3C6E16969F2199776FEC9D2ACC99B4D06780F1(CustomAttributesCache* cache)
  970. {
  971. {
  972. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  973. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  974. }
  975. }
  976. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_remove_OnCharacteristicChanged_mB8A0AF2E56F47F4423A2B55D42672B3305A8F956(CustomAttributesCache* cache)
  977. {
  978. {
  979. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  980. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  981. }
  982. }
  983. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_U3CInvokeOnDataReceivedU3Eb__76_0_mC3131CF50DC93B726D3C203A54A78F110CE07565(CustomAttributesCache* cache)
  984. {
  985. {
  986. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  987. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  988. }
  989. }
  990. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_U3CInvokeOnConnectedU3Eb__77_0_m9EDD1F9B98D6847E56E0145192B9C0E5F2B69B26(CustomAttributesCache* cache)
  991. {
  992. {
  993. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  994. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  995. }
  996. }
  997. static void BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_U3CInvokeOnConnectionFailedU3Eb__78_0_mA55BA7E1C56C5FA2A49CD7DE9721A3B4CA9BCA70(CustomAttributesCache* cache)
  998. {
  999. {
  1000. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1001. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1002. }
  1003. }
  1004. static void U3CU3Ec__DisplayClass79_0_t396137FC8A13F64CEE19B2B585EF6297ACE5645B_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1005. {
  1006. {
  1007. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1008. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1009. }
  1010. }
  1011. static void U3CU3Ec__DisplayClass80_0_tF35EC2A6BFBC897DE3B16377F29C82E0BD76D742_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1012. {
  1013. {
  1014. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1015. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1016. }
  1017. }
  1018. static void U3CU3Ec__DisplayClass81_0_tDA889CCC71A9AD92A6F34FE75015F35C23AFE590_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1019. {
  1020. {
  1021. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1022. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1023. }
  1024. }
  1025. static void U3CU3Ec__DisplayClass82_0_t5DF194895FE7D96BE202EAF7E53135593AB80AB1_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1026. {
  1027. {
  1028. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1029. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1030. }
  1031. }
  1032. static void U3CU3Ec__DisplayClass89_0_t1212D0B89E654BB6535BE17FA2D4A05CABAB6FC0_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1033. {
  1034. {
  1035. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1036. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1037. }
  1038. }
  1039. static void BluetoothRegistryDevice_t10D95AF92457BE065CBA640327002676B2A9D189_CustomAttributesCacheGenerator_U3CPortNameU3Ek__BackingField(CustomAttributesCache* cache)
  1040. {
  1041. {
  1042. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1043. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1044. }
  1045. }
  1046. static void BluetoothRegistryDevice_t10D95AF92457BE065CBA640327002676B2A9D189_CustomAttributesCacheGenerator_BluetoothRegistryDevice_set_PortName_m46BF49900EE3B4D52EAC48D1CDACC603E24FC8B5(CustomAttributesCache* cache)
  1047. {
  1048. {
  1049. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1050. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1051. }
  1052. }
  1053. static void BluetoothRegistryDevice_t10D95AF92457BE065CBA640327002676B2A9D189_CustomAttributesCacheGenerator_BluetoothRegistryDevice_get_PortName_m3FDFA55554A150488228AE0851F16F136C385E05(CustomAttributesCache* cache)
  1054. {
  1055. {
  1056. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1057. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1058. }
  1059. }
  1060. static void MacOSStreamManager_tB3597589EF0881C142A83F7A288C3DC2700A62CF_CustomAttributesCacheGenerator_MacOSStreamManager___handleReceivedData_m1286DE3E00521D3FE78129F484F9A3735A26A7FB(CustomAttributesCache* cache)
  1061. {
  1062. static bool s_Il2CppMethodInitialized;
  1063. if (!s_Il2CppMethodInitialized)
  1064. {
  1065. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&voidByteDelegate_t2BC234CDA291C7E0A615562EB03D2E2B95E322AA_0_0_0_var);
  1066. s_Il2CppMethodInitialized = true;
  1067. }
  1068. {
  1069. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1070. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(voidByteDelegate_t2BC234CDA291C7E0A615562EB03D2E2B95E322AA_0_0_0_var), NULL);
  1071. }
  1072. }
  1073. static void MacOSStreamManager_tB3597589EF0881C142A83F7A288C3DC2700A62CF_CustomAttributesCacheGenerator_MacOSStreamManager___formatDataToSend_m4F51159FBB0F52859B2E01EF682ADFBE48D8C4D9(CustomAttributesCache* cache)
  1074. {
  1075. static bool s_Il2CppMethodInitialized;
  1076. if (!s_Il2CppMethodInitialized)
  1077. {
  1078. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&byteByteDelegate_t685D01AB19C23D95AA200D1A111D03F83852FA27_0_0_0_var);
  1079. s_Il2CppMethodInitialized = true;
  1080. }
  1081. {
  1082. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1083. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(byteByteDelegate_t685D01AB19C23D95AA200D1A111D03F83852FA27_0_0_0_var), NULL);
  1084. }
  1085. }
  1086. static void MacOSStreamManager_tB3597589EF0881C142A83F7A288C3DC2700A62CF_CustomAttributesCacheGenerator_MacOSStreamManager___setInvokeOnDataReceived_m28B1B0FA5AA8AC6D9565E379F60A4FE4BC8AEB6B(CustomAttributesCache* cache)
  1087. {
  1088. static bool s_Il2CppMethodInitialized;
  1089. if (!s_Il2CppMethodInitialized)
  1090. {
  1091. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&voidObjDelegate_tABC7DE4C7A56EE3C56F9AF4872BC663AD0F72F67_0_0_0_var);
  1092. s_Il2CppMethodInitialized = true;
  1093. }
  1094. {
  1095. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1096. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(voidObjDelegate_tABC7DE4C7A56EE3C56F9AF4872BC663AD0F72F67_0_0_0_var), NULL);
  1097. }
  1098. }
  1099. static void voidByteDelegate_t2BC234CDA291C7E0A615562EB03D2E2B95E322AA_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1100. {
  1101. {
  1102. UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F * tmp = (UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F *)cache->attributes[0];
  1103. UnmanagedFunctionPointerAttribute__ctor_m4EE271163D421DF82BBCD7D91ED68D8EE26544F7(tmp, 2LL, NULL);
  1104. }
  1105. }
  1106. static void byteByteDelegate_t685D01AB19C23D95AA200D1A111D03F83852FA27_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1107. {
  1108. {
  1109. UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F * tmp = (UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F *)cache->attributes[0];
  1110. UnmanagedFunctionPointerAttribute__ctor_m4EE271163D421DF82BBCD7D91ED68D8EE26544F7(tmp, 2LL, NULL);
  1111. }
  1112. }
  1113. static void voidObjDelegate_tABC7DE4C7A56EE3C56F9AF4872BC663AD0F72F67_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1114. {
  1115. {
  1116. UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F * tmp = (UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F *)cache->attributes[0];
  1117. UnmanagedFunctionPointerAttribute__ctor_m4EE271163D421DF82BBCD7D91ED68D8EE26544F7(tmp, 2LL, NULL);
  1118. }
  1119. }
  1120. static void MacOSBluetoothHelper_tBC67AEFB8C46C739A24E09855673DA7D4E16A83A_CustomAttributesCacheGenerator_MacOSBluetoothHelper___OnConnected_mF5AD3755CDB391BBB41D8320C37E6284291F372A(CustomAttributesCache* cache)
  1121. {
  1122. static bool s_Il2CppMethodInitialized;
  1123. if (!s_Il2CppMethodInitialized)
  1124. {
  1125. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothVoidEvent_tE178FAB100D11847192D1598B31E6DD27BA88945_0_0_0_var);
  1126. s_Il2CppMethodInitialized = true;
  1127. }
  1128. {
  1129. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1130. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(BluetoothVoidEvent_tE178FAB100D11847192D1598B31E6DD27BA88945_0_0_0_var), NULL);
  1131. }
  1132. }
  1133. static void MacOSBluetoothHelper_tBC67AEFB8C46C739A24E09855673DA7D4E16A83A_CustomAttributesCacheGenerator_MacOSBluetoothHelper___OnConnectionFailed_mE7ACD21EF36959EE86D34A37BFF0F8091CAAF387(CustomAttributesCache* cache)
  1134. {
  1135. static bool s_Il2CppMethodInitialized;
  1136. if (!s_Il2CppMethodInitialized)
  1137. {
  1138. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothVoidEvent_tE178FAB100D11847192D1598B31E6DD27BA88945_0_0_0_var);
  1139. s_Il2CppMethodInitialized = true;
  1140. }
  1141. {
  1142. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1143. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(BluetoothVoidEvent_tE178FAB100D11847192D1598B31E6DD27BA88945_0_0_0_var), NULL);
  1144. }
  1145. }
  1146. static void MacOSBluetoothHelper_tBC67AEFB8C46C739A24E09855673DA7D4E16A83A_CustomAttributesCacheGenerator_MacOSBluetoothHelper___OnDataReceived_m572E06149DB457646CFBE43C3FDB01EDC63DF5F0(CustomAttributesCache* cache)
  1147. {
  1148. static bool s_Il2CppMethodInitialized;
  1149. if (!s_Il2CppMethodInitialized)
  1150. {
  1151. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothStringEvent_t2E03EB27189D6E298D604A2E1CD9D8AEA39A6105_0_0_0_var);
  1152. s_Il2CppMethodInitialized = true;
  1153. }
  1154. {
  1155. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1156. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(BluetoothStringEvent_t2E03EB27189D6E298D604A2E1CD9D8AEA39A6105_0_0_0_var), NULL);
  1157. }
  1158. }
  1159. static void MacOSBluetoothHelper_tBC67AEFB8C46C739A24E09855673DA7D4E16A83A_CustomAttributesCacheGenerator_MacOSBluetoothHelper___OnBinaryDataReceived_mEE9AAF5227B0F78E06448EDB2487A8749A71C9E6(CustomAttributesCache* cache)
  1160. {
  1161. static bool s_Il2CppMethodInitialized;
  1162. if (!s_Il2CppMethodInitialized)
  1163. {
  1164. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothBinaryEvent_t390198A623BFFFD6228C82678AA37E20594BFD96_0_0_0_var);
  1165. s_Il2CppMethodInitialized = true;
  1166. }
  1167. {
  1168. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1169. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(BluetoothBinaryEvent_t390198A623BFFFD6228C82678AA37E20594BFD96_0_0_0_var), NULL);
  1170. }
  1171. }
  1172. static void MacOSBluetoothHelper_tBC67AEFB8C46C739A24E09855673DA7D4E16A83A_CustomAttributesCacheGenerator_MacOSBluetoothHelper___OnScanEnded_m4988CEC16B87AD644A6465B9C32F66D111524F03(CustomAttributesCache* cache)
  1173. {
  1174. static bool s_Il2CppMethodInitialized;
  1175. if (!s_Il2CppMethodInitialized)
  1176. {
  1177. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothVoidEvent_tE178FAB100D11847192D1598B31E6DD27BA88945_0_0_0_var);
  1178. s_Il2CppMethodInitialized = true;
  1179. }
  1180. {
  1181. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1182. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(BluetoothVoidEvent_tE178FAB100D11847192D1598B31E6DD27BA88945_0_0_0_var), NULL);
  1183. }
  1184. }
  1185. static void MacOSBluetoothHelper_tBC67AEFB8C46C739A24E09855673DA7D4E16A83A_CustomAttributesCacheGenerator_MacOSBluetoothHelper___OnServiceNotFound_mA224AAB4F725E9D5BC3B2D6EEC5042A44F69E062(CustomAttributesCache* cache)
  1186. {
  1187. static bool s_Il2CppMethodInitialized;
  1188. if (!s_Il2CppMethodInitialized)
  1189. {
  1190. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothStringEvent_t2E03EB27189D6E298D604A2E1CD9D8AEA39A6105_0_0_0_var);
  1191. s_Il2CppMethodInitialized = true;
  1192. }
  1193. {
  1194. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1195. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(BluetoothStringEvent_t2E03EB27189D6E298D604A2E1CD9D8AEA39A6105_0_0_0_var), NULL);
  1196. }
  1197. }
  1198. static void MacOSBluetoothHelper_tBC67AEFB8C46C739A24E09855673DA7D4E16A83A_CustomAttributesCacheGenerator_MacOSBluetoothHelper___OnCharacteristicNotFound_mBCF8CA273635656B6F166DCD6B7A9281D98A61BF(CustomAttributesCache* cache)
  1199. {
  1200. static bool s_Il2CppMethodInitialized;
  1201. if (!s_Il2CppMethodInitialized)
  1202. {
  1203. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothStringEvent2_tF4195055E00D905F1129552F50E69E878026E8F8_0_0_0_var);
  1204. s_Il2CppMethodInitialized = true;
  1205. }
  1206. {
  1207. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1208. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(BluetoothStringEvent2_tF4195055E00D905F1129552F50E69E878026E8F8_0_0_0_var), NULL);
  1209. }
  1210. }
  1211. static void MacOSBluetoothHelper_tBC67AEFB8C46C739A24E09855673DA7D4E16A83A_CustomAttributesCacheGenerator_MacOSBluetoothHelper___OnCharacteristicChanged_m4DE042771918694D060075E573E3ADD92DE05D88(CustomAttributesCache* cache)
  1212. {
  1213. static bool s_Il2CppMethodInitialized;
  1214. if (!s_Il2CppMethodInitialized)
  1215. {
  1216. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothVoidEvent_tE178FAB100D11847192D1598B31E6DD27BA88945_0_0_0_var);
  1217. s_Il2CppMethodInitialized = true;
  1218. }
  1219. {
  1220. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1221. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(BluetoothVoidEvent_tE178FAB100D11847192D1598B31E6DD27BA88945_0_0_0_var), NULL);
  1222. }
  1223. }
  1224. static void BluetoothVoidEvent_tE178FAB100D11847192D1598B31E6DD27BA88945_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1225. {
  1226. {
  1227. UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F * tmp = (UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F *)cache->attributes[0];
  1228. UnmanagedFunctionPointerAttribute__ctor_m4EE271163D421DF82BBCD7D91ED68D8EE26544F7(tmp, 2LL, NULL);
  1229. }
  1230. }
  1231. static void BluetoothStringEvent_t2E03EB27189D6E298D604A2E1CD9D8AEA39A6105_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1232. {
  1233. {
  1234. UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F * tmp = (UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F *)cache->attributes[0];
  1235. UnmanagedFunctionPointerAttribute__ctor_m4EE271163D421DF82BBCD7D91ED68D8EE26544F7(tmp, 2LL, NULL);
  1236. }
  1237. }
  1238. static void BluetoothStringEvent2_tF4195055E00D905F1129552F50E69E878026E8F8_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1239. {
  1240. {
  1241. UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F * tmp = (UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F *)cache->attributes[0];
  1242. UnmanagedFunctionPointerAttribute__ctor_m4EE271163D421DF82BBCD7D91ED68D8EE26544F7(tmp, 2LL, NULL);
  1243. }
  1244. }
  1245. static void BluetoothBinaryEvent_t390198A623BFFFD6228C82678AA37E20594BFD96_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1246. {
  1247. {
  1248. UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F * tmp = (UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F *)cache->attributes[0];
  1249. UnmanagedFunctionPointerAttribute__ctor_m4EE271163D421DF82BBCD7D91ED68D8EE26544F7(tmp, 2LL, NULL);
  1250. }
  1251. }
  1252. static void BluetoothBinaryEvent2_tAC7067BD078AE17ADEF339FC8AA16F6CBA4A3FF2_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1253. {
  1254. {
  1255. UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F * tmp = (UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F *)cache->attributes[0];
  1256. UnmanagedFunctionPointerAttribute__ctor_m4EE271163D421DF82BBCD7D91ED68D8EE26544F7(tmp, 2LL, NULL);
  1257. }
  1258. }
  1259. static void IOSStreamManager_tF19A4282FB2D5AFF898C0A220AC2DFE85C7EF6A2_CustomAttributesCacheGenerator_IOSStreamManager___handleReceivedData_m143C75625C45461C4136B89F7ADE997D82020204(CustomAttributesCache* cache)
  1260. {
  1261. static bool s_Il2CppMethodInitialized;
  1262. if (!s_Il2CppMethodInitialized)
  1263. {
  1264. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&voidByteDelegate_tEE89A03AF012B59AE874C267771ECE94BAB32C71_0_0_0_var);
  1265. s_Il2CppMethodInitialized = true;
  1266. }
  1267. {
  1268. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1269. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(voidByteDelegate_tEE89A03AF012B59AE874C267771ECE94BAB32C71_0_0_0_var), NULL);
  1270. }
  1271. }
  1272. static void IOSStreamManager_tF19A4282FB2D5AFF898C0A220AC2DFE85C7EF6A2_CustomAttributesCacheGenerator_IOSStreamManager___formatDataToSend_mE120D8FB2C038F272956BEC7C52F05E2FAC41D09(CustomAttributesCache* cache)
  1273. {
  1274. static bool s_Il2CppMethodInitialized;
  1275. if (!s_Il2CppMethodInitialized)
  1276. {
  1277. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&byteByteDelegate_t1F6B297554F23A4CD708AA90AABD00AD081DD281_0_0_0_var);
  1278. s_Il2CppMethodInitialized = true;
  1279. }
  1280. {
  1281. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1282. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(byteByteDelegate_t1F6B297554F23A4CD708AA90AABD00AD081DD281_0_0_0_var), NULL);
  1283. }
  1284. }
  1285. static void IOSStreamManager_tF19A4282FB2D5AFF898C0A220AC2DFE85C7EF6A2_CustomAttributesCacheGenerator_IOSStreamManager___setInvokeOnDataReceived_m59A0774A7CBF45107EAD0FBB44C3E15F625439E2(CustomAttributesCache* cache)
  1286. {
  1287. static bool s_Il2CppMethodInitialized;
  1288. if (!s_Il2CppMethodInitialized)
  1289. {
  1290. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&voidObjDelegate_t96130CDF6A9EF5B6E7BAF95F0F3AB10458D5A640_0_0_0_var);
  1291. s_Il2CppMethodInitialized = true;
  1292. }
  1293. {
  1294. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1295. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(voidObjDelegate_t96130CDF6A9EF5B6E7BAF95F0F3AB10458D5A640_0_0_0_var), NULL);
  1296. }
  1297. }
  1298. static void voidByteDelegate_tEE89A03AF012B59AE874C267771ECE94BAB32C71_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1299. {
  1300. {
  1301. UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F * tmp = (UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F *)cache->attributes[0];
  1302. UnmanagedFunctionPointerAttribute__ctor_m4EE271163D421DF82BBCD7D91ED68D8EE26544F7(tmp, 2LL, NULL);
  1303. }
  1304. }
  1305. static void byteByteDelegate_t1F6B297554F23A4CD708AA90AABD00AD081DD281_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1306. {
  1307. {
  1308. UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F * tmp = (UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F *)cache->attributes[0];
  1309. UnmanagedFunctionPointerAttribute__ctor_m4EE271163D421DF82BBCD7D91ED68D8EE26544F7(tmp, 2LL, NULL);
  1310. }
  1311. }
  1312. static void voidObjDelegate_t96130CDF6A9EF5B6E7BAF95F0F3AB10458D5A640_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1313. {
  1314. {
  1315. UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F * tmp = (UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F *)cache->attributes[0];
  1316. UnmanagedFunctionPointerAttribute__ctor_m4EE271163D421DF82BBCD7D91ED68D8EE26544F7(tmp, 2LL, NULL);
  1317. }
  1318. }
  1319. static void IOSBluetoothHelper_tC76AF8F63CE3EBF0EB81220567233CF36B817C6C_CustomAttributesCacheGenerator_IOSBluetoothHelper___OnConnected_mEC7E020921ACC08B3F922E59F3377F5028FE5093(CustomAttributesCache* cache)
  1320. {
  1321. static bool s_Il2CppMethodInitialized;
  1322. if (!s_Il2CppMethodInitialized)
  1323. {
  1324. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothVoidEvent_tAA768568395191A3CCAE9B616E3DD7E7B48AD7E8_0_0_0_var);
  1325. s_Il2CppMethodInitialized = true;
  1326. }
  1327. {
  1328. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1329. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(BluetoothVoidEvent_tAA768568395191A3CCAE9B616E3DD7E7B48AD7E8_0_0_0_var), NULL);
  1330. }
  1331. }
  1332. static void IOSBluetoothHelper_tC76AF8F63CE3EBF0EB81220567233CF36B817C6C_CustomAttributesCacheGenerator_IOSBluetoothHelper___OnConnectionFailed_mA70CFF9CCA5BFAB6A0CAB46FCAD433AA3FE3C1B8(CustomAttributesCache* cache)
  1333. {
  1334. static bool s_Il2CppMethodInitialized;
  1335. if (!s_Il2CppMethodInitialized)
  1336. {
  1337. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothVoidEvent_tAA768568395191A3CCAE9B616E3DD7E7B48AD7E8_0_0_0_var);
  1338. s_Il2CppMethodInitialized = true;
  1339. }
  1340. {
  1341. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1342. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(BluetoothVoidEvent_tAA768568395191A3CCAE9B616E3DD7E7B48AD7E8_0_0_0_var), NULL);
  1343. }
  1344. }
  1345. static void IOSBluetoothHelper_tC76AF8F63CE3EBF0EB81220567233CF36B817C6C_CustomAttributesCacheGenerator_IOSBluetoothHelper___OnDataReceived_m3144C70E8BDA142858B4ED3D741C0CB4FDE1DCB1(CustomAttributesCache* cache)
  1346. {
  1347. static bool s_Il2CppMethodInitialized;
  1348. if (!s_Il2CppMethodInitialized)
  1349. {
  1350. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothStringEvent_t7DE0358FA9D005FB18DA0C03BE83DBB5725AD956_0_0_0_var);
  1351. s_Il2CppMethodInitialized = true;
  1352. }
  1353. {
  1354. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1355. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(BluetoothStringEvent_t7DE0358FA9D005FB18DA0C03BE83DBB5725AD956_0_0_0_var), NULL);
  1356. }
  1357. }
  1358. static void IOSBluetoothHelper_tC76AF8F63CE3EBF0EB81220567233CF36B817C6C_CustomAttributesCacheGenerator_IOSBluetoothHelper___OnBinaryDataReceived_m89EDEDE92F765C82C0842C40DF76D5FC3A1F3DBE(CustomAttributesCache* cache)
  1359. {
  1360. static bool s_Il2CppMethodInitialized;
  1361. if (!s_Il2CppMethodInitialized)
  1362. {
  1363. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothBinaryEvent_t2463B974D6B841460BEEB57E5E6C3EB5FF5A484D_0_0_0_var);
  1364. s_Il2CppMethodInitialized = true;
  1365. }
  1366. {
  1367. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1368. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(BluetoothBinaryEvent_t2463B974D6B841460BEEB57E5E6C3EB5FF5A484D_0_0_0_var), NULL);
  1369. }
  1370. }
  1371. static void IOSBluetoothHelper_tC76AF8F63CE3EBF0EB81220567233CF36B817C6C_CustomAttributesCacheGenerator_IOSBluetoothHelper___OnScanEnded_m347F6ED559339974917293A4098987FDB8449356(CustomAttributesCache* cache)
  1372. {
  1373. static bool s_Il2CppMethodInitialized;
  1374. if (!s_Il2CppMethodInitialized)
  1375. {
  1376. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothVoidEvent_tAA768568395191A3CCAE9B616E3DD7E7B48AD7E8_0_0_0_var);
  1377. s_Il2CppMethodInitialized = true;
  1378. }
  1379. {
  1380. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1381. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(BluetoothVoidEvent_tAA768568395191A3CCAE9B616E3DD7E7B48AD7E8_0_0_0_var), NULL);
  1382. }
  1383. }
  1384. static void IOSBluetoothHelper_tC76AF8F63CE3EBF0EB81220567233CF36B817C6C_CustomAttributesCacheGenerator_IOSBluetoothHelper___OnServiceNotFound_mEA352CEBFDD7F71AF71BDF09ED8B532041D5854D(CustomAttributesCache* cache)
  1385. {
  1386. static bool s_Il2CppMethodInitialized;
  1387. if (!s_Il2CppMethodInitialized)
  1388. {
  1389. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothStringEvent_t7DE0358FA9D005FB18DA0C03BE83DBB5725AD956_0_0_0_var);
  1390. s_Il2CppMethodInitialized = true;
  1391. }
  1392. {
  1393. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1394. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(BluetoothStringEvent_t7DE0358FA9D005FB18DA0C03BE83DBB5725AD956_0_0_0_var), NULL);
  1395. }
  1396. }
  1397. static void IOSBluetoothHelper_tC76AF8F63CE3EBF0EB81220567233CF36B817C6C_CustomAttributesCacheGenerator_IOSBluetoothHelper___OnCharacteristicNotFound_mEA814168BA3E8A4831A0CD1BF6E4C0A02F4EEAA2(CustomAttributesCache* cache)
  1398. {
  1399. static bool s_Il2CppMethodInitialized;
  1400. if (!s_Il2CppMethodInitialized)
  1401. {
  1402. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothStringEvent2_t69557F848AE18CD55A413567974DDDB0B078E3C4_0_0_0_var);
  1403. s_Il2CppMethodInitialized = true;
  1404. }
  1405. {
  1406. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1407. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(BluetoothStringEvent2_t69557F848AE18CD55A413567974DDDB0B078E3C4_0_0_0_var), NULL);
  1408. }
  1409. }
  1410. static void IOSBluetoothHelper_tC76AF8F63CE3EBF0EB81220567233CF36B817C6C_CustomAttributesCacheGenerator_IOSBluetoothHelper___OnCharacteristicChanged_m02A0B27FB30BF8AC43732EB5BD8A515525BC9B87(CustomAttributesCache* cache)
  1411. {
  1412. static bool s_Il2CppMethodInitialized;
  1413. if (!s_Il2CppMethodInitialized)
  1414. {
  1415. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothVoidEvent_tAA768568395191A3CCAE9B616E3DD7E7B48AD7E8_0_0_0_var);
  1416. s_Il2CppMethodInitialized = true;
  1417. }
  1418. {
  1419. MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E * tmp = (MonoPInvokeCallbackAttribute_t99C8CC5CE6CC69C51F99A6CE88F4F792D4777B2E *)cache->attributes[0];
  1420. MonoPInvokeCallbackAttribute__ctor_mA23FC56D16F76D90C3F76B1C41D0765BB21FE344(tmp, il2cpp_codegen_type_get_object(BluetoothVoidEvent_tAA768568395191A3CCAE9B616E3DD7E7B48AD7E8_0_0_0_var), NULL);
  1421. }
  1422. }
  1423. static void BluetoothVoidEvent_tAA768568395191A3CCAE9B616E3DD7E7B48AD7E8_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1424. {
  1425. {
  1426. UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F * tmp = (UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F *)cache->attributes[0];
  1427. UnmanagedFunctionPointerAttribute__ctor_m4EE271163D421DF82BBCD7D91ED68D8EE26544F7(tmp, 2LL, NULL);
  1428. }
  1429. }
  1430. static void BluetoothStringEvent_t7DE0358FA9D005FB18DA0C03BE83DBB5725AD956_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1431. {
  1432. {
  1433. UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F * tmp = (UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F *)cache->attributes[0];
  1434. UnmanagedFunctionPointerAttribute__ctor_m4EE271163D421DF82BBCD7D91ED68D8EE26544F7(tmp, 2LL, NULL);
  1435. }
  1436. }
  1437. static void BluetoothStringEvent2_t69557F848AE18CD55A413567974DDDB0B078E3C4_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1438. {
  1439. {
  1440. UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F * tmp = (UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F *)cache->attributes[0];
  1441. UnmanagedFunctionPointerAttribute__ctor_m4EE271163D421DF82BBCD7D91ED68D8EE26544F7(tmp, 2LL, NULL);
  1442. }
  1443. }
  1444. static void BluetoothBinaryEvent_t2463B974D6B841460BEEB57E5E6C3EB5FF5A484D_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1445. {
  1446. {
  1447. UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F * tmp = (UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F *)cache->attributes[0];
  1448. UnmanagedFunctionPointerAttribute__ctor_m4EE271163D421DF82BBCD7D91ED68D8EE26544F7(tmp, 2LL, NULL);
  1449. }
  1450. }
  1451. static void BluetoothBinaryEvent2_tC5603E1BD26FC9DCAE4C567A708F5EA737E6239A_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1452. {
  1453. {
  1454. UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F * tmp = (UnmanagedFunctionPointerAttribute_t3361C55E19F9905230FD9C1691B0FE0FD341B43F *)cache->attributes[0];
  1455. UnmanagedFunctionPointerAttribute__ctor_m4EE271163D421DF82BBCD7D91ED68D8EE26544F7(tmp, 2LL, NULL);
  1456. }
  1457. }
  1458. IL2CPP_EXTERN_C const CustomAttributesCacheGenerator g_ArduinoBluetoothAPI_AttributeGenerators[];
  1459. const CustomAttributesCacheGenerator g_ArduinoBluetoothAPI_AttributeGenerators[81] =
  1460. {
  1461. U3CU3Ec__DisplayClass79_0_t396137FC8A13F64CEE19B2B585EF6297ACE5645B_CustomAttributesCacheGenerator,
  1462. U3CU3Ec__DisplayClass80_0_tF35EC2A6BFBC897DE3B16377F29C82E0BD76D742_CustomAttributesCacheGenerator,
  1463. U3CU3Ec__DisplayClass81_0_tDA889CCC71A9AD92A6F34FE75015F35C23AFE590_CustomAttributesCacheGenerator,
  1464. U3CU3Ec__DisplayClass82_0_t5DF194895FE7D96BE202EAF7E53135593AB80AB1_CustomAttributesCacheGenerator,
  1465. U3CU3Ec__DisplayClass89_0_t1212D0B89E654BB6535BE17FA2D4A05CABAB6FC0_CustomAttributesCacheGenerator,
  1466. voidByteDelegate_t2BC234CDA291C7E0A615562EB03D2E2B95E322AA_CustomAttributesCacheGenerator,
  1467. byteByteDelegate_t685D01AB19C23D95AA200D1A111D03F83852FA27_CustomAttributesCacheGenerator,
  1468. voidObjDelegate_tABC7DE4C7A56EE3C56F9AF4872BC663AD0F72F67_CustomAttributesCacheGenerator,
  1469. BluetoothVoidEvent_tE178FAB100D11847192D1598B31E6DD27BA88945_CustomAttributesCacheGenerator,
  1470. BluetoothStringEvent_t2E03EB27189D6E298D604A2E1CD9D8AEA39A6105_CustomAttributesCacheGenerator,
  1471. BluetoothStringEvent2_tF4195055E00D905F1129552F50E69E878026E8F8_CustomAttributesCacheGenerator,
  1472. BluetoothBinaryEvent_t390198A623BFFFD6228C82678AA37E20594BFD96_CustomAttributesCacheGenerator,
  1473. BluetoothBinaryEvent2_tAC7067BD078AE17ADEF339FC8AA16F6CBA4A3FF2_CustomAttributesCacheGenerator,
  1474. voidByteDelegate_tEE89A03AF012B59AE874C267771ECE94BAB32C71_CustomAttributesCacheGenerator,
  1475. byteByteDelegate_t1F6B297554F23A4CD708AA90AABD00AD081DD281_CustomAttributesCacheGenerator,
  1476. voidObjDelegate_t96130CDF6A9EF5B6E7BAF95F0F3AB10458D5A640_CustomAttributesCacheGenerator,
  1477. BluetoothVoidEvent_tAA768568395191A3CCAE9B616E3DD7E7B48AD7E8_CustomAttributesCacheGenerator,
  1478. BluetoothStringEvent_t7DE0358FA9D005FB18DA0C03BE83DBB5725AD956_CustomAttributesCacheGenerator,
  1479. BluetoothStringEvent2_t69557F848AE18CD55A413567974DDDB0B078E3C4_CustomAttributesCacheGenerator,
  1480. BluetoothBinaryEvent_t2463B974D6B841460BEEB57E5E6C3EB5FF5A484D_CustomAttributesCacheGenerator,
  1481. BluetoothBinaryEvent2_tC5603E1BD26FC9DCAE4C567A708F5EA737E6239A_CustomAttributesCacheGenerator,
  1482. BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_U3CDeviceNameU3Ek__BackingField,
  1483. BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_U3CDeviceAddressU3Ek__BackingField,
  1484. BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_U3CRssiU3Ek__BackingField,
  1485. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_OnConnected,
  1486. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_OnConnectionFailed,
  1487. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_OnDataReceived,
  1488. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_OnServiceNotFound,
  1489. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_OnCharacteristicNotFound,
  1490. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_OnDescriptorNotFound,
  1491. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_OnScanEnded,
  1492. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_OnCharacteristicChanged,
  1493. BluetoothRegistryDevice_t10D95AF92457BE065CBA640327002676B2A9D189_CustomAttributesCacheGenerator_U3CPortNameU3Ek__BackingField,
  1494. BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_BluetoothDevice_set_DeviceName_mF90D96BDCEDFCAA1C0900E9BF1E41ABB3738CCC5,
  1495. BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_BluetoothDevice_get_DeviceName_m87AF25A8E0F489903372EA4ABCC9BFDF138C2865,
  1496. BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_BluetoothDevice_set_DeviceAddress_m814AC9B25E9F8DEEBF4470A264094E98A79EA91F,
  1497. BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_BluetoothDevice_get_DeviceAddress_mE54A6B6FF804468B82F19065A3393DD65E656F7C,
  1498. BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_BluetoothDevice_set_Rssi_m746A37D26249758D92E5406B8985021EB184E3CC,
  1499. BluetoothDevice_t556A4363604D42D9FA3C5DA1B41DC56726C93100_CustomAttributesCacheGenerator_BluetoothDevice_get_Rssi_mA3FED34C8B41BB21FEF70FCE48132019A3009601,
  1500. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_add_OnConnected_m5CE1875A1281B94F1FD5B265DE15CA4D1CC1807F,
  1501. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_remove_OnConnected_mE870425B28C112231D8B7B3DAB59B709C6D5AD28,
  1502. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_add_OnConnectionFailed_mEFBC9568FA0492A45442EDE15EF9D93641967D5F,
  1503. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_remove_OnConnectionFailed_m8E8020C665F5F2853416AE83BF9466DBBE8DBD8B,
  1504. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_add_OnDataReceived_mD01145C46F0B8B886F3DE1AC292B692D20C0512A,
  1505. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_remove_OnDataReceived_mA2F14CC63101ED55B18413453D29BD24E5C195BD,
  1506. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_add_OnServiceNotFound_m5517430450852DCE2F94E4AD0C7C4C23A355D62F,
  1507. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_remove_OnServiceNotFound_mB19D5344C0DEC85F587BB6E1DA200D972D8668DA,
  1508. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_add_OnCharacteristicNotFound_m39C0CBF8270673D0B2F1065808AE83C03E2AE734,
  1509. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_remove_OnCharacteristicNotFound_m0A14071C519BF7C965A8807E71B65898BDB1E729,
  1510. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_add_OnScanEnded_m29C2C4D0D6C05C482081DB00D47ADA32CEF7D3F0,
  1511. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_remove_OnScanEnded_m3EB177481DC5E87DDDF61AB4995FAA05274DF948,
  1512. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_add_OnCharacteristicChanged_mCF3C6E16969F2199776FEC9D2ACC99B4D06780F1,
  1513. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_remove_OnCharacteristicChanged_mB8A0AF2E56F47F4423A2B55D42672B3305A8F956,
  1514. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_U3CInvokeOnDataReceivedU3Eb__76_0_mC3131CF50DC93B726D3C203A54A78F110CE07565,
  1515. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_U3CInvokeOnConnectedU3Eb__77_0_m9EDD1F9B98D6847E56E0145192B9C0E5F2B69B26,
  1516. BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_CustomAttributesCacheGenerator_BluetoothHelper_U3CInvokeOnConnectionFailedU3Eb__78_0_mA55BA7E1C56C5FA2A49CD7DE9721A3B4CA9BCA70,
  1517. BluetoothRegistryDevice_t10D95AF92457BE065CBA640327002676B2A9D189_CustomAttributesCacheGenerator_BluetoothRegistryDevice_set_PortName_m46BF49900EE3B4D52EAC48D1CDACC603E24FC8B5,
  1518. BluetoothRegistryDevice_t10D95AF92457BE065CBA640327002676B2A9D189_CustomAttributesCacheGenerator_BluetoothRegistryDevice_get_PortName_m3FDFA55554A150488228AE0851F16F136C385E05,
  1519. MacOSStreamManager_tB3597589EF0881C142A83F7A288C3DC2700A62CF_CustomAttributesCacheGenerator_MacOSStreamManager___handleReceivedData_m1286DE3E00521D3FE78129F484F9A3735A26A7FB,
  1520. MacOSStreamManager_tB3597589EF0881C142A83F7A288C3DC2700A62CF_CustomAttributesCacheGenerator_MacOSStreamManager___formatDataToSend_m4F51159FBB0F52859B2E01EF682ADFBE48D8C4D9,
  1521. MacOSStreamManager_tB3597589EF0881C142A83F7A288C3DC2700A62CF_CustomAttributesCacheGenerator_MacOSStreamManager___setInvokeOnDataReceived_m28B1B0FA5AA8AC6D9565E379F60A4FE4BC8AEB6B,
  1522. MacOSBluetoothHelper_tBC67AEFB8C46C739A24E09855673DA7D4E16A83A_CustomAttributesCacheGenerator_MacOSBluetoothHelper___OnConnected_mF5AD3755CDB391BBB41D8320C37E6284291F372A,
  1523. MacOSBluetoothHelper_tBC67AEFB8C46C739A24E09855673DA7D4E16A83A_CustomAttributesCacheGenerator_MacOSBluetoothHelper___OnConnectionFailed_mE7ACD21EF36959EE86D34A37BFF0F8091CAAF387,
  1524. MacOSBluetoothHelper_tBC67AEFB8C46C739A24E09855673DA7D4E16A83A_CustomAttributesCacheGenerator_MacOSBluetoothHelper___OnDataReceived_m572E06149DB457646CFBE43C3FDB01EDC63DF5F0,
  1525. MacOSBluetoothHelper_tBC67AEFB8C46C739A24E09855673DA7D4E16A83A_CustomAttributesCacheGenerator_MacOSBluetoothHelper___OnBinaryDataReceived_mEE9AAF5227B0F78E06448EDB2487A8749A71C9E6,
  1526. MacOSBluetoothHelper_tBC67AEFB8C46C739A24E09855673DA7D4E16A83A_CustomAttributesCacheGenerator_MacOSBluetoothHelper___OnScanEnded_m4988CEC16B87AD644A6465B9C32F66D111524F03,
  1527. MacOSBluetoothHelper_tBC67AEFB8C46C739A24E09855673DA7D4E16A83A_CustomAttributesCacheGenerator_MacOSBluetoothHelper___OnServiceNotFound_mA224AAB4F725E9D5BC3B2D6EEC5042A44F69E062,
  1528. MacOSBluetoothHelper_tBC67AEFB8C46C739A24E09855673DA7D4E16A83A_CustomAttributesCacheGenerator_MacOSBluetoothHelper___OnCharacteristicNotFound_mBCF8CA273635656B6F166DCD6B7A9281D98A61BF,
  1529. MacOSBluetoothHelper_tBC67AEFB8C46C739A24E09855673DA7D4E16A83A_CustomAttributesCacheGenerator_MacOSBluetoothHelper___OnCharacteristicChanged_m4DE042771918694D060075E573E3ADD92DE05D88,
  1530. IOSStreamManager_tF19A4282FB2D5AFF898C0A220AC2DFE85C7EF6A2_CustomAttributesCacheGenerator_IOSStreamManager___handleReceivedData_m143C75625C45461C4136B89F7ADE997D82020204,
  1531. IOSStreamManager_tF19A4282FB2D5AFF898C0A220AC2DFE85C7EF6A2_CustomAttributesCacheGenerator_IOSStreamManager___formatDataToSend_mE120D8FB2C038F272956BEC7C52F05E2FAC41D09,
  1532. IOSStreamManager_tF19A4282FB2D5AFF898C0A220AC2DFE85C7EF6A2_CustomAttributesCacheGenerator_IOSStreamManager___setInvokeOnDataReceived_m59A0774A7CBF45107EAD0FBB44C3E15F625439E2,
  1533. IOSBluetoothHelper_tC76AF8F63CE3EBF0EB81220567233CF36B817C6C_CustomAttributesCacheGenerator_IOSBluetoothHelper___OnConnected_mEC7E020921ACC08B3F922E59F3377F5028FE5093,
  1534. IOSBluetoothHelper_tC76AF8F63CE3EBF0EB81220567233CF36B817C6C_CustomAttributesCacheGenerator_IOSBluetoothHelper___OnConnectionFailed_mA70CFF9CCA5BFAB6A0CAB46FCAD433AA3FE3C1B8,
  1535. IOSBluetoothHelper_tC76AF8F63CE3EBF0EB81220567233CF36B817C6C_CustomAttributesCacheGenerator_IOSBluetoothHelper___OnDataReceived_m3144C70E8BDA142858B4ED3D741C0CB4FDE1DCB1,
  1536. IOSBluetoothHelper_tC76AF8F63CE3EBF0EB81220567233CF36B817C6C_CustomAttributesCacheGenerator_IOSBluetoothHelper___OnBinaryDataReceived_m89EDEDE92F765C82C0842C40DF76D5FC3A1F3DBE,
  1537. IOSBluetoothHelper_tC76AF8F63CE3EBF0EB81220567233CF36B817C6C_CustomAttributesCacheGenerator_IOSBluetoothHelper___OnScanEnded_m347F6ED559339974917293A4098987FDB8449356,
  1538. IOSBluetoothHelper_tC76AF8F63CE3EBF0EB81220567233CF36B817C6C_CustomAttributesCacheGenerator_IOSBluetoothHelper___OnServiceNotFound_mEA352CEBFDD7F71AF71BDF09ED8B532041D5854D,
  1539. IOSBluetoothHelper_tC76AF8F63CE3EBF0EB81220567233CF36B817C6C_CustomAttributesCacheGenerator_IOSBluetoothHelper___OnCharacteristicNotFound_mEA814168BA3E8A4831A0CD1BF6E4C0A02F4EEAA2,
  1540. IOSBluetoothHelper_tC76AF8F63CE3EBF0EB81220567233CF36B817C6C_CustomAttributesCacheGenerator_IOSBluetoothHelper___OnCharacteristicChanged_m02A0B27FB30BF8AC43732EB5BD8A515525BC9B87,
  1541. ArduinoBluetoothAPI_CustomAttributesCacheGenerator,
  1542. };
  1543. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, bool ___value0, const RuntimeMethod* method)
  1544. {
  1545. {
  1546. bool L_0 = ___value0;
  1547. __this->set_m_wrapNonExceptionThrows_0(L_0);
  1548. return;
  1549. }
  1550. }
  1551. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TargetFrameworkAttribute_set_FrameworkDisplayName_mB89F1A63CB77A414AF46D5695B37CD520EAB52AB_inline (TargetFrameworkAttribute_t9FA66D5D5B274F0E1A4FE20162AA70F62BFFB517 * __this, String_t* ___value0, const RuntimeMethod* method)
  1552. {
  1553. {
  1554. String_t* L_0 = ___value0;
  1555. __this->set__frameworkDisplayName_1(L_0);
  1556. return;
  1557. }
  1558. }