No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UnityEngine.AudioModule.cpp 62KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360
  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. template <typename T1>
  9. struct VirtualActionInvoker1
  10. {
  11. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  12. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  13. {
  14. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  15. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  16. }
  17. };
  18. template <typename T1>
  19. struct GenericVirtualActionInvoker1
  20. {
  21. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  22. static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
  23. {
  24. VirtualInvokeData invokeData;
  25. il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
  26. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  27. }
  28. };
  29. template <typename T1>
  30. struct InterfaceActionInvoker1
  31. {
  32. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  33. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
  34. {
  35. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  36. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  37. }
  38. };
  39. template <typename T1>
  40. struct GenericInterfaceActionInvoker1
  41. {
  42. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  43. static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
  44. {
  45. VirtualInvokeData invokeData;
  46. il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
  47. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  48. }
  49. };
  50. struct Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C;
  51. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  52. struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C;
  53. struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
  54. struct AudioClip_t5D272C4EB4F2D3ED49F1C346DEA373CF6D585F20;
  55. struct AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2;
  56. struct Delegate_t;
  57. struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
  58. struct MethodInfo_t;
  59. struct String_t;
  60. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  61. struct PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E;
  62. struct PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072;
  63. struct SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30;
  64. struct AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177;
  65. IL2CPP_EXTERN_C RuntimeClass* AudioSettings_t66C4BCA1E463B061E2EC9063FB882ACED20D47BD_il2cpp_TypeInfo_var;
  66. IL2CPP_EXTERN_C RuntimeClass* Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var;
  67. IL2CPP_EXTERN_C RuntimeClass* PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var;
  68. struct Delegate_t_marshaled_com;
  69. struct Delegate_t_marshaled_pinvoke;
  70. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  71. struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C;
  72. IL2CPP_EXTERN_C_BEGIN
  73. IL2CPP_EXTERN_C_END
  74. #ifdef __clang__
  75. #pragma clang diagnostic push
  76. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  77. #pragma clang diagnostic ignored "-Wunused-variable"
  78. #endif
  79. struct U3CModuleU3E_t462BCCFB9B78348533823E0754F65F52A5348F89
  80. {
  81. };
  82. struct AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2 : public RuntimeObject
  83. {
  84. SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* ___sampleFramesAvailable;
  85. SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* ___sampleFramesOverflow;
  86. };
  87. struct AudioSettings_t66C4BCA1E463B061E2EC9063FB882ACED20D47BD : public RuntimeObject
  88. {
  89. };
  90. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  91. {
  92. };
  93. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  94. {
  95. };
  96. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  97. {
  98. };
  99. struct Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD : public RuntimeObject
  100. {
  101. };
  102. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
  103. {
  104. bool ___m_value;
  105. };
  106. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
  107. {
  108. int32_t ___m_value;
  109. };
  110. struct IntPtr_t
  111. {
  112. void* ___m_value;
  113. };
  114. struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
  115. {
  116. float ___m_value;
  117. };
  118. struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
  119. {
  120. uint32_t ___m_value;
  121. };
  122. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
  123. {
  124. union
  125. {
  126. struct
  127. {
  128. };
  129. uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
  130. };
  131. };
  132. struct Delegate_t : public RuntimeObject
  133. {
  134. intptr_t ___method_ptr;
  135. intptr_t ___invoke_impl;
  136. RuntimeObject* ___m_target;
  137. intptr_t ___method;
  138. intptr_t ___delegate_trampoline;
  139. intptr_t ___extra_arg;
  140. intptr_t ___method_code;
  141. intptr_t ___interp_method;
  142. intptr_t ___interp_invoke_impl;
  143. MethodInfo_t* ___method_info;
  144. MethodInfo_t* ___original_method_info;
  145. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  146. bool ___method_is_virtual;
  147. };
  148. struct Delegate_t_marshaled_pinvoke
  149. {
  150. intptr_t ___method_ptr;
  151. intptr_t ___invoke_impl;
  152. Il2CppIUnknown* ___m_target;
  153. intptr_t ___method;
  154. intptr_t ___delegate_trampoline;
  155. intptr_t ___extra_arg;
  156. intptr_t ___method_code;
  157. intptr_t ___interp_method;
  158. intptr_t ___interp_invoke_impl;
  159. MethodInfo_t* ___method_info;
  160. MethodInfo_t* ___original_method_info;
  161. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  162. int32_t ___method_is_virtual;
  163. };
  164. struct Delegate_t_marshaled_com
  165. {
  166. intptr_t ___method_ptr;
  167. intptr_t ___invoke_impl;
  168. Il2CppIUnknown* ___m_target;
  169. intptr_t ___method;
  170. intptr_t ___delegate_trampoline;
  171. intptr_t ___extra_arg;
  172. intptr_t ___method_code;
  173. intptr_t ___interp_method;
  174. intptr_t ___interp_invoke_impl;
  175. MethodInfo_t* ___method_info;
  176. MethodInfo_t* ___original_method_info;
  177. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  178. int32_t ___method_is_virtual;
  179. };
  180. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
  181. {
  182. intptr_t ___m_CachedPtr;
  183. };
  184. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
  185. {
  186. intptr_t ___m_CachedPtr;
  187. };
  188. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
  189. {
  190. intptr_t ___m_CachedPtr;
  191. };
  192. struct PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4
  193. {
  194. intptr_t ___m_Handle;
  195. uint32_t ___m_Version;
  196. };
  197. struct PlayableOutputHandle_tEB217645A8C0356A3AC6F964F283003B9740E883
  198. {
  199. intptr_t ___m_Handle;
  200. uint32_t ___m_Version;
  201. };
  202. struct AudioClip_t5D272C4EB4F2D3ED49F1C346DEA373CF6D585F20 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  203. {
  204. PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E* ___m_PCMReaderCallback;
  205. PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072* ___m_PCMSetPositionCallback;
  206. };
  207. struct AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0
  208. {
  209. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  210. };
  211. struct AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C
  212. {
  213. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  214. };
  215. struct AudioPlayableOutput_tC3DFF8095F429D90129A367EAB98A24F6D6ADF20
  216. {
  217. PlayableOutputHandle_tEB217645A8C0356A3AC6F964F283003B9740E883 ___m_Handle;
  218. };
  219. struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  220. {
  221. };
  222. struct MulticastDelegate_t : public Delegate_t
  223. {
  224. DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
  225. };
  226. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  227. {
  228. Delegate_t_marshaled_pinvoke** ___delegates;
  229. };
  230. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  231. {
  232. Delegate_t_marshaled_com** ___delegates;
  233. };
  234. struct Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C : public MulticastDelegate_t
  235. {
  236. };
  237. struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07 : public MulticastDelegate_t
  238. {
  239. };
  240. struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
  241. {
  242. };
  243. struct PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E : public MulticastDelegate_t
  244. {
  245. };
  246. struct PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072 : public MulticastDelegate_t
  247. {
  248. };
  249. struct SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30 : public MulticastDelegate_t
  250. {
  251. };
  252. struct AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177 : public MulticastDelegate_t
  253. {
  254. };
  255. struct AudioBehaviour_t2DC0BEF7B020C952F3D2DA5AAAC88501C7EEB941 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
  256. {
  257. };
  258. struct AudioListener_t1D629CE9BC079C8ECDE8F822616E8A8E319EAE35 : public AudioBehaviour_t2DC0BEF7B020C952F3D2DA5AAAC88501C7EEB941
  259. {
  260. };
  261. struct AudioSettings_t66C4BCA1E463B061E2EC9063FB882ACED20D47BD_StaticFields
  262. {
  263. AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177* ___OnAudioConfigurationChanged;
  264. Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___OnAudioSystemShuttingDown;
  265. Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___OnAudioSystemStartedUp;
  266. };
  267. struct Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_StaticFields
  268. {
  269. bool ___U3CmuteStateU3Ek__BackingField;
  270. bool ____stopAudioOutputOnMute;
  271. Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* ___OnMuteStateChanged;
  272. };
  273. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
  274. {
  275. String_t* ___TrueString;
  276. String_t* ___FalseString;
  277. };
  278. struct IntPtr_t_StaticFields
  279. {
  280. intptr_t ___Zero;
  281. };
  282. struct PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_StaticFields
  283. {
  284. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Null;
  285. };
  286. #ifdef __clang__
  287. #pragma clang diagnostic pop
  288. #endif
  289. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
  290. {
  291. ALIGN_FIELD (8) Delegate_t* m_Items[1];
  292. inline Delegate_t* GetAt(il2cpp_array_size_t index) const
  293. {
  294. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  295. return m_Items[index];
  296. }
  297. inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
  298. {
  299. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  300. return m_Items + index;
  301. }
  302. inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
  303. {
  304. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  305. m_Items[index] = value;
  306. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  307. }
  308. inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
  309. {
  310. return m_Items[index];
  311. }
  312. inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
  313. {
  314. return m_Items + index;
  315. }
  316. inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
  317. {
  318. m_Items[index] = value;
  319. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  320. }
  321. };
  322. struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C : public RuntimeArray
  323. {
  324. ALIGN_FIELD (8) float m_Items[1];
  325. inline float GetAt(il2cpp_array_size_t index) const
  326. {
  327. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  328. return m_Items[index];
  329. }
  330. inline float* GetAddressAt(il2cpp_array_size_t index)
  331. {
  332. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  333. return m_Items + index;
  334. }
  335. inline void SetAt(il2cpp_array_size_t index, float value)
  336. {
  337. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  338. m_Items[index] = value;
  339. }
  340. inline float GetAtUnchecked(il2cpp_array_size_t index) const
  341. {
  342. return m_Items[index];
  343. }
  344. inline float* GetAddressAtUnchecked(il2cpp_array_size_t index)
  345. {
  346. return m_Items + index;
  347. }
  348. inline void SetAtUnchecked(il2cpp_array_size_t index, float value)
  349. {
  350. m_Items[index] = value;
  351. }
  352. };
  353. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_gshared_inline (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* __this, bool ___0_obj, const RuntimeMethod* method) ;
  354. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AudioConfigurationChangeHandler_Invoke_m4DC27DD11512481B60071B20284E6886DAE54DE2_inline (AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177* __this, bool ___0_deviceWasChanged, const RuntimeMethod* method) ;
  355. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) ;
  356. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mobile_get_muteState_m64C1E8C61537317A7F153E1A72F7D39D85DA684D_inline (const RuntimeMethod* method) ;
  357. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Mobile_set_muteState_m7C9A464BCA3762330E18CCAD79AF6C47B863CA02_inline (bool ___0_value, const RuntimeMethod* method) ;
  358. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Mobile_get_stopAudioOutputOnMute_m43EC82258D38C418353DFE19F32B51B64B18DCCA (const RuntimeMethod* method) ;
  359. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Mobile_StopAudioOutput_m10B8CEF668EE4967D0AD1D6741B6A37540C28A46 (const RuntimeMethod* method) ;
  360. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Mobile_StartAudioOutput_m731D1EEEE7A0D56BAADD571BA0FCAC13FB071223 (const RuntimeMethod* method) ;
  361. inline void Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_inline (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* __this, bool ___0_obj, const RuntimeMethod* method)
  362. {
  363. (( void (*) (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C*, bool, const RuntimeMethod*))Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_gshared_inline)(__this, ___0_obj, method);
  364. }
  365. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AudioSettings_StartAudioOutput_mB04D851DD0E6115DEEFB55779F880146263C67BE (const RuntimeMethod* method) ;
  366. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AudioSettings_StopAudioOutput_m3FE7A8EADAB2FB570BB05F7C353E25E15885D1CB (const RuntimeMethod* method) ;
  367. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PCMReaderCallback_Invoke_m76784C690C36B513E2AA5B0E4FD9831B2C7E5152_inline (PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_data, const RuntimeMethod* method) ;
  368. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PCMSetPositionCallback_Invoke_m434D4F02FA25F91DF6199EC5A799C551C7F93702_inline (PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072* __this, int32_t ___0_position, const RuntimeMethod* method) ;
  369. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_inline (SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method) ;
  370. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AudioClipPlayable_GetHandle_mEA1D664328FF9B08E4F7D5EBCD4B51A754D97C44 (AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0* __this, const RuntimeMethod* method) ;
  371. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_x, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___1_y, const RuntimeMethod* method) ;
  372. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AudioClipPlayable_Equals_m9C1C75ACBB74FE06AD02BE4643F6EB39413EFF83 (AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0* __this, AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0 ___0_other, const RuntimeMethod* method) ;
  373. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AudioMixerPlayable_GetHandle_m6C182D9794E901D123223BB57738A302BEAB41FD (AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C* __this, const RuntimeMethod* method) ;
  374. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AudioMixerPlayable_Equals_mDFB945EB48199A338BAD00D40FB8EEC34CF64D57 (AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C* __this, AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C ___0_other, const RuntimeMethod* method) ;
  375. #ifdef __clang__
  376. #pragma clang diagnostic push
  377. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  378. #pragma clang diagnostic ignored "-Wunused-variable"
  379. #endif
  380. #ifdef __clang__
  381. #pragma clang diagnostic pop
  382. #endif
  383. #ifdef __clang__
  384. #pragma clang diagnostic push
  385. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  386. #pragma clang diagnostic ignored "-Wunused-variable"
  387. #endif
  388. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AudioSettings_InvokeOnAudioConfigurationChanged_m8273D3AEB24F4C3E374238B6F699BE6696808E85 (bool ___0_deviceWasChanged, const RuntimeMethod* method)
  389. {
  390. static bool s_Il2CppMethodInitialized;
  391. if (!s_Il2CppMethodInitialized)
  392. {
  393. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AudioSettings_t66C4BCA1E463B061E2EC9063FB882ACED20D47BD_il2cpp_TypeInfo_var);
  394. s_Il2CppMethodInitialized = true;
  395. }
  396. bool V_0 = false;
  397. {
  398. AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177* L_0 = ((AudioSettings_t66C4BCA1E463B061E2EC9063FB882ACED20D47BD_StaticFields*)il2cpp_codegen_static_fields_for(AudioSettings_t66C4BCA1E463B061E2EC9063FB882ACED20D47BD_il2cpp_TypeInfo_var))->___OnAudioConfigurationChanged;
  399. V_0 = (bool)((!(((RuntimeObject*)(AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  400. bool L_1 = V_0;
  401. if (!L_1)
  402. {
  403. goto IL_0019;
  404. }
  405. }
  406. {
  407. AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177* L_2 = ((AudioSettings_t66C4BCA1E463B061E2EC9063FB882ACED20D47BD_StaticFields*)il2cpp_codegen_static_fields_for(AudioSettings_t66C4BCA1E463B061E2EC9063FB882ACED20D47BD_il2cpp_TypeInfo_var))->___OnAudioConfigurationChanged;
  408. bool L_3 = ___0_deviceWasChanged;
  409. NullCheck(L_2);
  410. AudioConfigurationChangeHandler_Invoke_m4DC27DD11512481B60071B20284E6886DAE54DE2_inline(L_2, L_3, NULL);
  411. }
  412. IL_0019:
  413. {
  414. return;
  415. }
  416. }
  417. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AudioSettings_InvokeOnAudioSystemShuttingDown_m1B9895D60B3267EBDEC69B9169730DBAD8325E90 (const RuntimeMethod* method)
  418. {
  419. static bool s_Il2CppMethodInitialized;
  420. if (!s_Il2CppMethodInitialized)
  421. {
  422. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AudioSettings_t66C4BCA1E463B061E2EC9063FB882ACED20D47BD_il2cpp_TypeInfo_var);
  423. s_Il2CppMethodInitialized = true;
  424. }
  425. Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B2_0 = NULL;
  426. Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B1_0 = NULL;
  427. {
  428. Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = ((AudioSettings_t66C4BCA1E463B061E2EC9063FB882ACED20D47BD_StaticFields*)il2cpp_codegen_static_fields_for(AudioSettings_t66C4BCA1E463B061E2EC9063FB882ACED20D47BD_il2cpp_TypeInfo_var))->___OnAudioSystemShuttingDown;
  429. Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = L_0;
  430. if (L_1)
  431. {
  432. G_B2_0 = L_1;
  433. goto IL_000b;
  434. }
  435. G_B1_0 = L_1;
  436. }
  437. {
  438. goto IL_0011;
  439. }
  440. IL_000b:
  441. {
  442. NullCheck(G_B2_0);
  443. Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(G_B2_0, NULL);
  444. }
  445. IL_0011:
  446. {
  447. return;
  448. }
  449. }
  450. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AudioSettings_InvokeOnAudioSystemStartedUp_m7FE042936237E5BDCB20299D8C4CF583B661468C (const RuntimeMethod* method)
  451. {
  452. static bool s_Il2CppMethodInitialized;
  453. if (!s_Il2CppMethodInitialized)
  454. {
  455. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AudioSettings_t66C4BCA1E463B061E2EC9063FB882ACED20D47BD_il2cpp_TypeInfo_var);
  456. s_Il2CppMethodInitialized = true;
  457. }
  458. Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B2_0 = NULL;
  459. Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B1_0 = NULL;
  460. {
  461. Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = ((AudioSettings_t66C4BCA1E463B061E2EC9063FB882ACED20D47BD_StaticFields*)il2cpp_codegen_static_fields_for(AudioSettings_t66C4BCA1E463B061E2EC9063FB882ACED20D47BD_il2cpp_TypeInfo_var))->___OnAudioSystemStartedUp;
  462. Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = L_0;
  463. if (L_1)
  464. {
  465. G_B2_0 = L_1;
  466. goto IL_000b;
  467. }
  468. G_B1_0 = L_1;
  469. }
  470. {
  471. goto IL_0011;
  472. }
  473. IL_000b:
  474. {
  475. NullCheck(G_B2_0);
  476. Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(G_B2_0, NULL);
  477. }
  478. IL_0011:
  479. {
  480. return;
  481. }
  482. }
  483. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AudioSettings_StartAudioOutput_mB04D851DD0E6115DEEFB55779F880146263C67BE (const RuntimeMethod* method)
  484. {
  485. typedef bool (*AudioSettings_StartAudioOutput_mB04D851DD0E6115DEEFB55779F880146263C67BE_ftn) ();
  486. static AudioSettings_StartAudioOutput_mB04D851DD0E6115DEEFB55779F880146263C67BE_ftn _il2cpp_icall_func;
  487. if (!_il2cpp_icall_func)
  488. _il2cpp_icall_func = (AudioSettings_StartAudioOutput_mB04D851DD0E6115DEEFB55779F880146263C67BE_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.AudioSettings::StartAudioOutput()");
  489. bool icallRetVal = _il2cpp_icall_func();
  490. return icallRetVal;
  491. }
  492. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AudioSettings_StopAudioOutput_m3FE7A8EADAB2FB570BB05F7C353E25E15885D1CB (const RuntimeMethod* method)
  493. {
  494. typedef bool (*AudioSettings_StopAudioOutput_m3FE7A8EADAB2FB570BB05F7C353E25E15885D1CB_ftn) ();
  495. static AudioSettings_StopAudioOutput_m3FE7A8EADAB2FB570BB05F7C353E25E15885D1CB_ftn _il2cpp_icall_func;
  496. if (!_il2cpp_icall_func)
  497. _il2cpp_icall_func = (AudioSettings_StopAudioOutput_m3FE7A8EADAB2FB570BB05F7C353E25E15885D1CB_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.AudioSettings::StopAudioOutput()");
  498. bool icallRetVal = _il2cpp_icall_func();
  499. return icallRetVal;
  500. }
  501. #ifdef __clang__
  502. #pragma clang diagnostic pop
  503. #endif
  504. #ifdef __clang__
  505. #pragma clang diagnostic push
  506. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  507. #pragma clang diagnostic ignored "-Wunused-variable"
  508. #endif
  509. void AudioConfigurationChangeHandler_Invoke_m4DC27DD11512481B60071B20284E6886DAE54DE2_Multicast(AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177* __this, bool ___0_deviceWasChanged, const RuntimeMethod* method)
  510. {
  511. il2cpp_array_size_t length = __this->___delegates->max_length;
  512. Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
  513. for (il2cpp_array_size_t i = 0; i < length; i++)
  514. {
  515. AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177* currentDelegate = reinterpret_cast<AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177*>(delegatesToInvoke[i]);
  516. typedef void (*FunctionPointerType) (RuntimeObject*, bool, const RuntimeMethod*);
  517. ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, ___0_deviceWasChanged, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
  518. }
  519. }
  520. void AudioConfigurationChangeHandler_Invoke_m4DC27DD11512481B60071B20284E6886DAE54DE2_OpenInst(AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177* __this, bool ___0_deviceWasChanged, const RuntimeMethod* method)
  521. {
  522. typedef void (*FunctionPointerType) (bool, const RuntimeMethod*);
  523. ((FunctionPointerType)__this->___method_ptr)(___0_deviceWasChanged, method);
  524. }
  525. void AudioConfigurationChangeHandler_Invoke_m4DC27DD11512481B60071B20284E6886DAE54DE2_OpenStatic(AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177* __this, bool ___0_deviceWasChanged, const RuntimeMethod* method)
  526. {
  527. typedef void (*FunctionPointerType) (bool, const RuntimeMethod*);
  528. ((FunctionPointerType)__this->___method_ptr)(___0_deviceWasChanged, method);
  529. }
  530. IL2CPP_EXTERN_C void DelegatePInvokeWrapper_AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177 (AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177* __this, bool ___0_deviceWasChanged, const RuntimeMethod* method)
  531. {
  532. typedef void (DEFAULT_CALL *PInvokeFunc)(int32_t);
  533. PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
  534. il2cppPInvokeFunc(static_cast<int32_t>(___0_deviceWasChanged));
  535. }
  536. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AudioConfigurationChangeHandler__ctor_mA9827AB9472EC8EE0A0F0FC24EBC06B4740DD944 (AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
  537. {
  538. __this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
  539. __this->___method = ___1_method;
  540. __this->___m_target = ___0_object;
  541. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
  542. int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
  543. __this->___method_code = (intptr_t)__this;
  544. if (MethodIsStatic((RuntimeMethod*)___1_method))
  545. {
  546. bool isOpen = parameterCount == 1;
  547. if (isOpen)
  548. __this->___invoke_impl = (intptr_t)&AudioConfigurationChangeHandler_Invoke_m4DC27DD11512481B60071B20284E6886DAE54DE2_OpenStatic;
  549. else
  550. {
  551. __this->___invoke_impl = __this->___method_ptr;
  552. __this->___method_code = (intptr_t)__this->___m_target;
  553. }
  554. }
  555. else
  556. {
  557. if (___0_object == NULL)
  558. il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
  559. __this->___invoke_impl = __this->___method_ptr;
  560. __this->___method_code = (intptr_t)__this->___m_target;
  561. }
  562. __this->___extra_arg = (intptr_t)&AudioConfigurationChangeHandler_Invoke_m4DC27DD11512481B60071B20284E6886DAE54DE2_Multicast;
  563. }
  564. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AudioConfigurationChangeHandler_Invoke_m4DC27DD11512481B60071B20284E6886DAE54DE2 (AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177* __this, bool ___0_deviceWasChanged, const RuntimeMethod* method)
  565. {
  566. typedef void (*FunctionPointerType) (RuntimeObject*, bool, const RuntimeMethod*);
  567. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_deviceWasChanged, reinterpret_cast<RuntimeMethod*>(__this->___method));
  568. }
  569. #ifdef __clang__
  570. #pragma clang diagnostic pop
  571. #endif
  572. #ifdef __clang__
  573. #pragma clang diagnostic push
  574. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  575. #pragma clang diagnostic ignored "-Wunused-variable"
  576. #endif
  577. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Mobile_get_muteState_m64C1E8C61537317A7F153E1A72F7D39D85DA684D (const RuntimeMethod* method)
  578. {
  579. static bool s_Il2CppMethodInitialized;
  580. if (!s_Il2CppMethodInitialized)
  581. {
  582. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var);
  583. s_Il2CppMethodInitialized = true;
  584. }
  585. {
  586. bool L_0 = ((Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_StaticFields*)il2cpp_codegen_static_fields_for(Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var))->___U3CmuteStateU3Ek__BackingField;
  587. return L_0;
  588. }
  589. }
  590. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Mobile_set_muteState_m7C9A464BCA3762330E18CCAD79AF6C47B863CA02 (bool ___0_value, const RuntimeMethod* method)
  591. {
  592. static bool s_Il2CppMethodInitialized;
  593. if (!s_Il2CppMethodInitialized)
  594. {
  595. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var);
  596. s_Il2CppMethodInitialized = true;
  597. }
  598. {
  599. bool L_0 = ___0_value;
  600. ((Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_StaticFields*)il2cpp_codegen_static_fields_for(Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var))->___U3CmuteStateU3Ek__BackingField = L_0;
  601. return;
  602. }
  603. }
  604. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Mobile_get_stopAudioOutputOnMute_m43EC82258D38C418353DFE19F32B51B64B18DCCA (const RuntimeMethod* method)
  605. {
  606. static bool s_Il2CppMethodInitialized;
  607. if (!s_Il2CppMethodInitialized)
  608. {
  609. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var);
  610. s_Il2CppMethodInitialized = true;
  611. }
  612. bool V_0 = false;
  613. {
  614. bool L_0 = ((Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_StaticFields*)il2cpp_codegen_static_fields_for(Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var))->____stopAudioOutputOnMute;
  615. V_0 = L_0;
  616. goto IL_0009;
  617. }
  618. IL_0009:
  619. {
  620. bool L_1 = V_0;
  621. return L_1;
  622. }
  623. }
  624. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Mobile_InvokeOnMuteStateChanged_mE5242862F948BA9FBB013A2B45F645B6A21E6198 (bool ___0_mute, const RuntimeMethod* method)
  625. {
  626. static bool s_Il2CppMethodInitialized;
  627. if (!s_Il2CppMethodInitialized)
  628. {
  629. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var);
  630. s_Il2CppMethodInitialized = true;
  631. }
  632. bool V_0 = false;
  633. bool V_1 = false;
  634. bool V_2 = false;
  635. bool V_3 = false;
  636. {
  637. bool L_0 = ___0_mute;
  638. bool L_1;
  639. L_1 = Mobile_get_muteState_m64C1E8C61537317A7F153E1A72F7D39D85DA684D_inline(NULL);
  640. V_0 = (bool)((((int32_t)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  641. bool L_2 = V_0;
  642. if (!L_2)
  643. {
  644. goto IL_0053;
  645. }
  646. }
  647. {
  648. bool L_3 = ___0_mute;
  649. Mobile_set_muteState_m7C9A464BCA3762330E18CCAD79AF6C47B863CA02_inline(L_3, NULL);
  650. bool L_4;
  651. L_4 = Mobile_get_stopAudioOutputOnMute_m43EC82258D38C418353DFE19F32B51B64B18DCCA(NULL);
  652. V_1 = L_4;
  653. bool L_5 = V_1;
  654. if (!L_5)
  655. {
  656. goto IL_003a;
  657. }
  658. }
  659. {
  660. bool L_6;
  661. L_6 = Mobile_get_muteState_m64C1E8C61537317A7F153E1A72F7D39D85DA684D_inline(NULL);
  662. V_2 = L_6;
  663. bool L_7 = V_2;
  664. if (!L_7)
  665. {
  666. goto IL_0033;
  667. }
  668. }
  669. {
  670. Mobile_StopAudioOutput_m10B8CEF668EE4967D0AD1D6741B6A37540C28A46(NULL);
  671. goto IL_0039;
  672. }
  673. IL_0033:
  674. {
  675. Mobile_StartAudioOutput_m731D1EEEE7A0D56BAADD571BA0FCAC13FB071223(NULL);
  676. }
  677. IL_0039:
  678. {
  679. }
  680. IL_003a:
  681. {
  682. Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* L_8 = ((Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_StaticFields*)il2cpp_codegen_static_fields_for(Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var))->___OnMuteStateChanged;
  683. V_3 = (bool)((!(((RuntimeObject*)(Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C*)L_8) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  684. bool L_9 = V_3;
  685. if (!L_9)
  686. {
  687. goto IL_0052;
  688. }
  689. }
  690. {
  691. Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* L_10 = ((Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_StaticFields*)il2cpp_codegen_static_fields_for(Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var))->___OnMuteStateChanged;
  692. bool L_11 = ___0_mute;
  693. NullCheck(L_10);
  694. Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_inline(L_10, L_11, NULL);
  695. }
  696. IL_0052:
  697. {
  698. }
  699. IL_0053:
  700. {
  701. return;
  702. }
  703. }
  704. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Mobile_InvokeIsStopAudioOutputOnMuteEnabled_m854CB455C7BE7ADC06BABCB9AA24F60309AE7ED1 (const RuntimeMethod* method)
  705. {
  706. bool V_0 = false;
  707. {
  708. bool L_0;
  709. L_0 = Mobile_get_stopAudioOutputOnMute_m43EC82258D38C418353DFE19F32B51B64B18DCCA(NULL);
  710. V_0 = L_0;
  711. goto IL_0009;
  712. }
  713. IL_0009:
  714. {
  715. bool L_1 = V_0;
  716. return L_1;
  717. }
  718. }
  719. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Mobile_StartAudioOutput_m731D1EEEE7A0D56BAADD571BA0FCAC13FB071223 (const RuntimeMethod* method)
  720. {
  721. {
  722. bool L_0;
  723. L_0 = AudioSettings_StartAudioOutput_mB04D851DD0E6115DEEFB55779F880146263C67BE(NULL);
  724. return;
  725. }
  726. }
  727. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Mobile_StopAudioOutput_m10B8CEF668EE4967D0AD1D6741B6A37540C28A46 (const RuntimeMethod* method)
  728. {
  729. {
  730. bool L_0;
  731. L_0 = AudioSettings_StopAudioOutput_m3FE7A8EADAB2FB570BB05F7C353E25E15885D1CB(NULL);
  732. return;
  733. }
  734. }
  735. #ifdef __clang__
  736. #pragma clang diagnostic pop
  737. #endif
  738. #ifdef __clang__
  739. #pragma clang diagnostic push
  740. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  741. #pragma clang diagnostic ignored "-Wunused-variable"
  742. #endif
  743. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AudioClip_InvokePCMReaderCallback_Internal_m766E5705AB5AE16F5F142867CC3758ABE4BF462C (AudioClip_t5D272C4EB4F2D3ED49F1C346DEA373CF6D585F20* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_data, const RuntimeMethod* method)
  744. {
  745. bool V_0 = false;
  746. {
  747. PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E* L_0 = __this->___m_PCMReaderCallback;
  748. V_0 = (bool)((!(((RuntimeObject*)(PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  749. bool L_1 = V_0;
  750. if (!L_1)
  751. {
  752. goto IL_001b;
  753. }
  754. }
  755. {
  756. PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E* L_2 = __this->___m_PCMReaderCallback;
  757. SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_3 = ___0_data;
  758. NullCheck(L_2);
  759. PCMReaderCallback_Invoke_m76784C690C36B513E2AA5B0E4FD9831B2C7E5152_inline(L_2, L_3, NULL);
  760. }
  761. IL_001b:
  762. {
  763. return;
  764. }
  765. }
  766. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AudioClip_InvokePCMSetPositionCallback_Internal_m986EF703B7DDE42343730DE93A095D05B9F4DBB8 (AudioClip_t5D272C4EB4F2D3ED49F1C346DEA373CF6D585F20* __this, int32_t ___0_position, const RuntimeMethod* method)
  767. {
  768. bool V_0 = false;
  769. {
  770. PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072* L_0 = __this->___m_PCMSetPositionCallback;
  771. V_0 = (bool)((!(((RuntimeObject*)(PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  772. bool L_1 = V_0;
  773. if (!L_1)
  774. {
  775. goto IL_001b;
  776. }
  777. }
  778. {
  779. PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072* L_2 = __this->___m_PCMSetPositionCallback;
  780. int32_t L_3 = ___0_position;
  781. NullCheck(L_2);
  782. PCMSetPositionCallback_Invoke_m434D4F02FA25F91DF6199EC5A799C551C7F93702_inline(L_2, L_3, NULL);
  783. }
  784. IL_001b:
  785. {
  786. return;
  787. }
  788. }
  789. #ifdef __clang__
  790. #pragma clang diagnostic pop
  791. #endif
  792. #ifdef __clang__
  793. #pragma clang diagnostic push
  794. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  795. #pragma clang diagnostic ignored "-Wunused-variable"
  796. #endif
  797. void PCMReaderCallback_Invoke_m76784C690C36B513E2AA5B0E4FD9831B2C7E5152_Multicast(PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_data, const RuntimeMethod* method)
  798. {
  799. il2cpp_array_size_t length = __this->___delegates->max_length;
  800. Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
  801. for (il2cpp_array_size_t i = 0; i < length; i++)
  802. {
  803. PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E* currentDelegate = reinterpret_cast<PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E*>(delegatesToInvoke[i]);
  804. typedef void (*FunctionPointerType) (RuntimeObject*, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, const RuntimeMethod*);
  805. ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, ___0_data, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
  806. }
  807. }
  808. void PCMReaderCallback_Invoke_m76784C690C36B513E2AA5B0E4FD9831B2C7E5152_OpenInst(PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_data, const RuntimeMethod* method)
  809. {
  810. NullCheck(___0_data);
  811. typedef void (*FunctionPointerType) (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, const RuntimeMethod*);
  812. ((FunctionPointerType)__this->___method_ptr)(___0_data, method);
  813. }
  814. void PCMReaderCallback_Invoke_m76784C690C36B513E2AA5B0E4FD9831B2C7E5152_OpenStatic(PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_data, const RuntimeMethod* method)
  815. {
  816. typedef void (*FunctionPointerType) (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, const RuntimeMethod*);
  817. ((FunctionPointerType)__this->___method_ptr)(___0_data, method);
  818. }
  819. IL2CPP_EXTERN_C void DelegatePInvokeWrapper_PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E (PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_data, const RuntimeMethod* method)
  820. {
  821. typedef void (DEFAULT_CALL *PInvokeFunc)(float*);
  822. PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
  823. float* ____0_data_marshaled = NULL;
  824. if (___0_data != NULL)
  825. {
  826. ____0_data_marshaled = reinterpret_cast<float*>((___0_data)->GetAddressAtUnchecked(0));
  827. }
  828. il2cppPInvokeFunc(____0_data_marshaled);
  829. }
  830. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PCMReaderCallback__ctor_mF621B6CC1A4BA6525190C5037401CF2FD5C0CF28 (PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
  831. {
  832. __this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
  833. __this->___method = ___1_method;
  834. __this->___m_target = ___0_object;
  835. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
  836. int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
  837. __this->___method_code = (intptr_t)__this;
  838. if (MethodIsStatic((RuntimeMethod*)___1_method))
  839. {
  840. bool isOpen = parameterCount == 1;
  841. if (isOpen)
  842. __this->___invoke_impl = (intptr_t)&PCMReaderCallback_Invoke_m76784C690C36B513E2AA5B0E4FD9831B2C7E5152_OpenStatic;
  843. else
  844. {
  845. __this->___invoke_impl = __this->___method_ptr;
  846. __this->___method_code = (intptr_t)__this->___m_target;
  847. }
  848. }
  849. else
  850. {
  851. bool isOpen = parameterCount == 0;
  852. if (isOpen)
  853. {
  854. __this->___invoke_impl = (intptr_t)&PCMReaderCallback_Invoke_m76784C690C36B513E2AA5B0E4FD9831B2C7E5152_OpenInst;
  855. }
  856. else
  857. {
  858. if (___0_object == NULL)
  859. il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
  860. __this->___invoke_impl = __this->___method_ptr;
  861. __this->___method_code = (intptr_t)__this->___m_target;
  862. }
  863. }
  864. __this->___extra_arg = (intptr_t)&PCMReaderCallback_Invoke_m76784C690C36B513E2AA5B0E4FD9831B2C7E5152_Multicast;
  865. }
  866. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PCMReaderCallback_Invoke_m76784C690C36B513E2AA5B0E4FD9831B2C7E5152 (PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_data, const RuntimeMethod* method)
  867. {
  868. typedef void (*FunctionPointerType) (RuntimeObject*, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, const RuntimeMethod*);
  869. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_data, reinterpret_cast<RuntimeMethod*>(__this->___method));
  870. }
  871. #ifdef __clang__
  872. #pragma clang diagnostic pop
  873. #endif
  874. #ifdef __clang__
  875. #pragma clang diagnostic push
  876. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  877. #pragma clang diagnostic ignored "-Wunused-variable"
  878. #endif
  879. void PCMSetPositionCallback_Invoke_m434D4F02FA25F91DF6199EC5A799C551C7F93702_Multicast(PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072* __this, int32_t ___0_position, const RuntimeMethod* method)
  880. {
  881. il2cpp_array_size_t length = __this->___delegates->max_length;
  882. Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
  883. for (il2cpp_array_size_t i = 0; i < length; i++)
  884. {
  885. PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072* currentDelegate = reinterpret_cast<PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072*>(delegatesToInvoke[i]);
  886. typedef void (*FunctionPointerType) (RuntimeObject*, int32_t, const RuntimeMethod*);
  887. ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, ___0_position, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
  888. }
  889. }
  890. void PCMSetPositionCallback_Invoke_m434D4F02FA25F91DF6199EC5A799C551C7F93702_OpenInst(PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072* __this, int32_t ___0_position, const RuntimeMethod* method)
  891. {
  892. typedef void (*FunctionPointerType) (int32_t, const RuntimeMethod*);
  893. ((FunctionPointerType)__this->___method_ptr)(___0_position, method);
  894. }
  895. void PCMSetPositionCallback_Invoke_m434D4F02FA25F91DF6199EC5A799C551C7F93702_OpenStatic(PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072* __this, int32_t ___0_position, const RuntimeMethod* method)
  896. {
  897. typedef void (*FunctionPointerType) (int32_t, const RuntimeMethod*);
  898. ((FunctionPointerType)__this->___method_ptr)(___0_position, method);
  899. }
  900. IL2CPP_EXTERN_C void DelegatePInvokeWrapper_PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072 (PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072* __this, int32_t ___0_position, const RuntimeMethod* method)
  901. {
  902. typedef void (DEFAULT_CALL *PInvokeFunc)(int32_t);
  903. PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
  904. il2cppPInvokeFunc(___0_position);
  905. }
  906. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PCMSetPositionCallback__ctor_mD16F77DDB552EB69BB3F5EF39420B2F09F95455B (PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
  907. {
  908. __this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
  909. __this->___method = ___1_method;
  910. __this->___m_target = ___0_object;
  911. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
  912. int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
  913. __this->___method_code = (intptr_t)__this;
  914. if (MethodIsStatic((RuntimeMethod*)___1_method))
  915. {
  916. bool isOpen = parameterCount == 1;
  917. if (isOpen)
  918. __this->___invoke_impl = (intptr_t)&PCMSetPositionCallback_Invoke_m434D4F02FA25F91DF6199EC5A799C551C7F93702_OpenStatic;
  919. else
  920. {
  921. __this->___invoke_impl = __this->___method_ptr;
  922. __this->___method_code = (intptr_t)__this->___m_target;
  923. }
  924. }
  925. else
  926. {
  927. if (___0_object == NULL)
  928. il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
  929. __this->___invoke_impl = __this->___method_ptr;
  930. __this->___method_code = (intptr_t)__this->___m_target;
  931. }
  932. __this->___extra_arg = (intptr_t)&PCMSetPositionCallback_Invoke_m434D4F02FA25F91DF6199EC5A799C551C7F93702_Multicast;
  933. }
  934. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PCMSetPositionCallback_Invoke_m434D4F02FA25F91DF6199EC5A799C551C7F93702 (PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072* __this, int32_t ___0_position, const RuntimeMethod* method)
  935. {
  936. typedef void (*FunctionPointerType) (RuntimeObject*, int32_t, const RuntimeMethod*);
  937. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_position, reinterpret_cast<RuntimeMethod*>(__this->___method));
  938. }
  939. #ifdef __clang__
  940. #pragma clang diagnostic pop
  941. #endif
  942. #ifdef __clang__
  943. #pragma clang diagnostic push
  944. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  945. #pragma clang diagnostic ignored "-Wunused-variable"
  946. #endif
  947. #ifdef __clang__
  948. #pragma clang diagnostic pop
  949. #endif
  950. #ifdef __clang__
  951. #pragma clang diagnostic push
  952. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  953. #pragma clang diagnostic ignored "-Wunused-variable"
  954. #endif
  955. #ifdef __clang__
  956. #pragma clang diagnostic pop
  957. #endif
  958. #ifdef __clang__
  959. #pragma clang diagnostic push
  960. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  961. #pragma clang diagnostic ignored "-Wunused-variable"
  962. #endif
  963. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AudioSampleProvider_InvokeSampleFramesAvailable_mEB16F7230AB65A3576BF053AC5719F8E134FBCD4 (AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* __this, int32_t ___0_sampleFrameCount, const RuntimeMethod* method)
  964. {
  965. bool V_0 = false;
  966. {
  967. SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* L_0 = __this->___sampleFramesAvailable;
  968. V_0 = (bool)((!(((RuntimeObject*)(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  969. bool L_1 = V_0;
  970. if (!L_1)
  971. {
  972. goto IL_001c;
  973. }
  974. }
  975. {
  976. SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* L_2 = __this->___sampleFramesAvailable;
  977. int32_t L_3 = ___0_sampleFrameCount;
  978. NullCheck(L_2);
  979. SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_inline(L_2, __this, L_3, NULL);
  980. }
  981. IL_001c:
  982. {
  983. return;
  984. }
  985. }
  986. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AudioSampleProvider_InvokeSampleFramesOverflow_m66593173A527981F5EB2A5EF77B0C9119DAB5E15 (AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* __this, int32_t ___0_droppedSampleFrameCount, const RuntimeMethod* method)
  987. {
  988. bool V_0 = false;
  989. {
  990. SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* L_0 = __this->___sampleFramesOverflow;
  991. V_0 = (bool)((!(((RuntimeObject*)(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  992. bool L_1 = V_0;
  993. if (!L_1)
  994. {
  995. goto IL_001c;
  996. }
  997. }
  998. {
  999. SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* L_2 = __this->___sampleFramesOverflow;
  1000. int32_t L_3 = ___0_droppedSampleFrameCount;
  1001. NullCheck(L_2);
  1002. SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_inline(L_2, __this, L_3, NULL);
  1003. }
  1004. IL_001c:
  1005. {
  1006. return;
  1007. }
  1008. }
  1009. #ifdef __clang__
  1010. #pragma clang diagnostic pop
  1011. #endif
  1012. #ifdef __clang__
  1013. #pragma clang diagnostic push
  1014. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1015. #pragma clang diagnostic ignored "-Wunused-variable"
  1016. #endif
  1017. void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_Multicast(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method)
  1018. {
  1019. il2cpp_array_size_t length = __this->___delegates->max_length;
  1020. Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
  1021. for (il2cpp_array_size_t i = 0; i < length; i++)
  1022. {
  1023. SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* currentDelegate = reinterpret_cast<SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30*>(delegatesToInvoke[i]);
  1024. typedef void (*FunctionPointerType) (RuntimeObject*, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2*, uint32_t, const RuntimeMethod*);
  1025. ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, ___0_provider, ___1_sampleFrameCount, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
  1026. }
  1027. }
  1028. void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenInst(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method)
  1029. {
  1030. NullCheck(___0_provider);
  1031. typedef void (*FunctionPointerType) (AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2*, uint32_t, const RuntimeMethod*);
  1032. ((FunctionPointerType)__this->___method_ptr)(___0_provider, ___1_sampleFrameCount, method);
  1033. }
  1034. void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenStatic(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method)
  1035. {
  1036. typedef void (*FunctionPointerType) (AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2*, uint32_t, const RuntimeMethod*);
  1037. ((FunctionPointerType)__this->___method_ptr)(___0_provider, ___1_sampleFrameCount, method);
  1038. }
  1039. void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenVirtual(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method)
  1040. {
  1041. NullCheck(___0_provider);
  1042. VirtualActionInvoker1< uint32_t >::Invoke(il2cpp_codegen_method_get_slot(method), ___0_provider, ___1_sampleFrameCount);
  1043. }
  1044. void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenInterface(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method)
  1045. {
  1046. NullCheck(___0_provider);
  1047. InterfaceActionInvoker1< uint32_t >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___0_provider, ___1_sampleFrameCount);
  1048. }
  1049. void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenGenericVirtual(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method)
  1050. {
  1051. NullCheck(___0_provider);
  1052. GenericVirtualActionInvoker1< uint32_t >::Invoke(method, ___0_provider, ___1_sampleFrameCount);
  1053. }
  1054. void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenGenericInterface(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method)
  1055. {
  1056. NullCheck(___0_provider);
  1057. GenericInterfaceActionInvoker1< uint32_t >::Invoke(method, ___0_provider, ___1_sampleFrameCount);
  1058. }
  1059. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SampleFramesHandler__ctor_m7DDE0BAD439CD80791140C7D42D661B598A7663A (SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
  1060. {
  1061. __this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
  1062. __this->___method = ___1_method;
  1063. __this->___m_target = ___0_object;
  1064. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
  1065. int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
  1066. __this->___method_code = (intptr_t)__this;
  1067. if (MethodIsStatic((RuntimeMethod*)___1_method))
  1068. {
  1069. bool isOpen = parameterCount == 2;
  1070. if (isOpen)
  1071. __this->___invoke_impl = (intptr_t)&SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenStatic;
  1072. else
  1073. {
  1074. __this->___invoke_impl = __this->___method_ptr;
  1075. __this->___method_code = (intptr_t)__this->___m_target;
  1076. }
  1077. }
  1078. else
  1079. {
  1080. bool isOpen = parameterCount == 1;
  1081. if (isOpen)
  1082. {
  1083. if (__this->___method_is_virtual)
  1084. {
  1085. if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___1_method))
  1086. if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
  1087. __this->___invoke_impl = (intptr_t)&SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenGenericInterface;
  1088. else
  1089. __this->___invoke_impl = (intptr_t)&SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenGenericVirtual;
  1090. else
  1091. if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
  1092. __this->___invoke_impl = (intptr_t)&SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenInterface;
  1093. else
  1094. __this->___invoke_impl = (intptr_t)&SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenVirtual;
  1095. }
  1096. else
  1097. {
  1098. __this->___invoke_impl = (intptr_t)&SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenInst;
  1099. }
  1100. }
  1101. else
  1102. {
  1103. if (___0_object == NULL)
  1104. il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
  1105. __this->___invoke_impl = __this->___method_ptr;
  1106. __this->___method_code = (intptr_t)__this->___m_target;
  1107. }
  1108. }
  1109. __this->___extra_arg = (intptr_t)&SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_Multicast;
  1110. }
  1111. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC (SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method)
  1112. {
  1113. typedef void (*FunctionPointerType) (RuntimeObject*, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2*, uint32_t, const RuntimeMethod*);
  1114. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_provider, ___1_sampleFrameCount, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1115. }
  1116. #ifdef __clang__
  1117. #pragma clang diagnostic pop
  1118. #endif
  1119. #ifdef __clang__
  1120. #pragma clang diagnostic push
  1121. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1122. #pragma clang diagnostic ignored "-Wunused-variable"
  1123. #endif
  1124. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AudioClipPlayable_GetHandle_mEA1D664328FF9B08E4F7D5EBCD4B51A754D97C44 (AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0* __this, const RuntimeMethod* method)
  1125. {
  1126. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  1127. memset((&V_0), 0, sizeof(V_0));
  1128. {
  1129. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  1130. V_0 = L_0;
  1131. goto IL_000a;
  1132. }
  1133. IL_000a:
  1134. {
  1135. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  1136. return L_1;
  1137. }
  1138. }
  1139. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AudioClipPlayable_GetHandle_mEA1D664328FF9B08E4F7D5EBCD4B51A754D97C44_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1140. {
  1141. AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0* _thisAdjusted;
  1142. int32_t _offset = 1;
  1143. _thisAdjusted = reinterpret_cast<AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0*>(__this + _offset);
  1144. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  1145. _returnValue = AudioClipPlayable_GetHandle_mEA1D664328FF9B08E4F7D5EBCD4B51A754D97C44(_thisAdjusted, method);
  1146. return _returnValue;
  1147. }
  1148. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AudioClipPlayable_Equals_m9C1C75ACBB74FE06AD02BE4643F6EB39413EFF83 (AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0* __this, AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0 ___0_other, const RuntimeMethod* method)
  1149. {
  1150. static bool s_Il2CppMethodInitialized;
  1151. if (!s_Il2CppMethodInitialized)
  1152. {
  1153. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1154. s_Il2CppMethodInitialized = true;
  1155. }
  1156. bool V_0 = false;
  1157. {
  1158. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  1159. L_0 = AudioClipPlayable_GetHandle_mEA1D664328FF9B08E4F7D5EBCD4B51A754D97C44(__this, NULL);
  1160. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1;
  1161. L_1 = AudioClipPlayable_GetHandle_mEA1D664328FF9B08E4F7D5EBCD4B51A754D97C44((&___0_other), NULL);
  1162. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1163. bool L_2;
  1164. L_2 = PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C(L_0, L_1, NULL);
  1165. V_0 = L_2;
  1166. goto IL_0016;
  1167. }
  1168. IL_0016:
  1169. {
  1170. bool L_3 = V_0;
  1171. return L_3;
  1172. }
  1173. }
  1174. IL2CPP_EXTERN_C bool AudioClipPlayable_Equals_m9C1C75ACBB74FE06AD02BE4643F6EB39413EFF83_AdjustorThunk (RuntimeObject* __this, AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0 ___0_other, const RuntimeMethod* method)
  1175. {
  1176. AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0* _thisAdjusted;
  1177. int32_t _offset = 1;
  1178. _thisAdjusted = reinterpret_cast<AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0*>(__this + _offset);
  1179. bool _returnValue;
  1180. _returnValue = AudioClipPlayable_Equals_m9C1C75ACBB74FE06AD02BE4643F6EB39413EFF83(_thisAdjusted, ___0_other, method);
  1181. return _returnValue;
  1182. }
  1183. #ifdef __clang__
  1184. #pragma clang diagnostic pop
  1185. #endif
  1186. #ifdef __clang__
  1187. #pragma clang diagnostic push
  1188. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1189. #pragma clang diagnostic ignored "-Wunused-variable"
  1190. #endif
  1191. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AudioMixerPlayable_GetHandle_m6C182D9794E901D123223BB57738A302BEAB41FD (AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C* __this, const RuntimeMethod* method)
  1192. {
  1193. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  1194. memset((&V_0), 0, sizeof(V_0));
  1195. {
  1196. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  1197. V_0 = L_0;
  1198. goto IL_000a;
  1199. }
  1200. IL_000a:
  1201. {
  1202. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  1203. return L_1;
  1204. }
  1205. }
  1206. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AudioMixerPlayable_GetHandle_m6C182D9794E901D123223BB57738A302BEAB41FD_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1207. {
  1208. AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C* _thisAdjusted;
  1209. int32_t _offset = 1;
  1210. _thisAdjusted = reinterpret_cast<AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C*>(__this + _offset);
  1211. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  1212. _returnValue = AudioMixerPlayable_GetHandle_m6C182D9794E901D123223BB57738A302BEAB41FD(_thisAdjusted, method);
  1213. return _returnValue;
  1214. }
  1215. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AudioMixerPlayable_Equals_mDFB945EB48199A338BAD00D40FB8EEC34CF64D57 (AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C* __this, AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C ___0_other, const RuntimeMethod* method)
  1216. {
  1217. static bool s_Il2CppMethodInitialized;
  1218. if (!s_Il2CppMethodInitialized)
  1219. {
  1220. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1221. s_Il2CppMethodInitialized = true;
  1222. }
  1223. bool V_0 = false;
  1224. {
  1225. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  1226. L_0 = AudioMixerPlayable_GetHandle_m6C182D9794E901D123223BB57738A302BEAB41FD(__this, NULL);
  1227. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1;
  1228. L_1 = AudioMixerPlayable_GetHandle_m6C182D9794E901D123223BB57738A302BEAB41FD((&___0_other), NULL);
  1229. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1230. bool L_2;
  1231. L_2 = PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C(L_0, L_1, NULL);
  1232. V_0 = L_2;
  1233. goto IL_0016;
  1234. }
  1235. IL_0016:
  1236. {
  1237. bool L_3 = V_0;
  1238. return L_3;
  1239. }
  1240. }
  1241. IL2CPP_EXTERN_C bool AudioMixerPlayable_Equals_mDFB945EB48199A338BAD00D40FB8EEC34CF64D57_AdjustorThunk (RuntimeObject* __this, AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C ___0_other, const RuntimeMethod* method)
  1242. {
  1243. AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C* _thisAdjusted;
  1244. int32_t _offset = 1;
  1245. _thisAdjusted = reinterpret_cast<AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C*>(__this + _offset);
  1246. bool _returnValue;
  1247. _returnValue = AudioMixerPlayable_Equals_mDFB945EB48199A338BAD00D40FB8EEC34CF64D57(_thisAdjusted, ___0_other, method);
  1248. return _returnValue;
  1249. }
  1250. #ifdef __clang__
  1251. #pragma clang diagnostic pop
  1252. #endif
  1253. #ifdef __clang__
  1254. #pragma clang diagnostic push
  1255. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1256. #pragma clang diagnostic ignored "-Wunused-variable"
  1257. #endif
  1258. #ifdef __clang__
  1259. #pragma clang diagnostic pop
  1260. #endif
  1261. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AudioConfigurationChangeHandler_Invoke_m4DC27DD11512481B60071B20284E6886DAE54DE2_inline (AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177* __this, bool ___0_deviceWasChanged, const RuntimeMethod* method)
  1262. {
  1263. typedef void (*FunctionPointerType) (RuntimeObject*, bool, const RuntimeMethod*);
  1264. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_deviceWasChanged, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1265. }
  1266. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method)
  1267. {
  1268. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  1269. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1270. }
  1271. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mobile_get_muteState_m64C1E8C61537317A7F153E1A72F7D39D85DA684D_inline (const RuntimeMethod* method)
  1272. {
  1273. static bool s_Il2CppMethodInitialized;
  1274. if (!s_Il2CppMethodInitialized)
  1275. {
  1276. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var);
  1277. s_Il2CppMethodInitialized = true;
  1278. }
  1279. {
  1280. bool L_0 = ((Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_StaticFields*)il2cpp_codegen_static_fields_for(Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var))->___U3CmuteStateU3Ek__BackingField;
  1281. return L_0;
  1282. }
  1283. }
  1284. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Mobile_set_muteState_m7C9A464BCA3762330E18CCAD79AF6C47B863CA02_inline (bool ___0_value, const RuntimeMethod* method)
  1285. {
  1286. static bool s_Il2CppMethodInitialized;
  1287. if (!s_Il2CppMethodInitialized)
  1288. {
  1289. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var);
  1290. s_Il2CppMethodInitialized = true;
  1291. }
  1292. {
  1293. bool L_0 = ___0_value;
  1294. ((Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_StaticFields*)il2cpp_codegen_static_fields_for(Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var))->___U3CmuteStateU3Ek__BackingField = L_0;
  1295. return;
  1296. }
  1297. }
  1298. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PCMReaderCallback_Invoke_m76784C690C36B513E2AA5B0E4FD9831B2C7E5152_inline (PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_data, const RuntimeMethod* method)
  1299. {
  1300. typedef void (*FunctionPointerType) (RuntimeObject*, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, const RuntimeMethod*);
  1301. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_data, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1302. }
  1303. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PCMSetPositionCallback_Invoke_m434D4F02FA25F91DF6199EC5A799C551C7F93702_inline (PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072* __this, int32_t ___0_position, const RuntimeMethod* method)
  1304. {
  1305. typedef void (*FunctionPointerType) (RuntimeObject*, int32_t, const RuntimeMethod*);
  1306. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_position, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1307. }
  1308. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_inline (SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method)
  1309. {
  1310. typedef void (*FunctionPointerType) (RuntimeObject*, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2*, uint32_t, const RuntimeMethod*);
  1311. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_provider, ___1_sampleFrameCount, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1312. }
  1313. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_gshared_inline (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* __this, bool ___0_obj, const RuntimeMethod* method)
  1314. {
  1315. typedef void (*FunctionPointerType) (RuntimeObject*, bool, const RuntimeMethod*);
  1316. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1317. }