説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

UnityEngine.AudioModule.cpp 62KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376
  1. #include "pch-cpp.hpp"
  2. template <typename T1>
  3. struct VirtualActionInvoker1
  4. {
  5. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  6. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  7. {
  8. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  9. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  10. }
  11. };
  12. template <typename T1>
  13. struct GenericVirtualActionInvoker1
  14. {
  15. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  16. static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
  17. {
  18. VirtualInvokeData invokeData;
  19. il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
  20. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  21. }
  22. };
  23. template <typename T1>
  24. struct InterfaceActionInvoker1
  25. {
  26. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  27. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
  28. {
  29. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  30. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  31. }
  32. };
  33. template <typename T1>
  34. struct GenericInterfaceActionInvoker1
  35. {
  36. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  37. static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
  38. {
  39. VirtualInvokeData invokeData;
  40. il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
  41. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  42. }
  43. };
  44. struct Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C;
  45. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  46. struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C;
  47. struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
  48. struct AudioClip_t5D272C4EB4F2D3ED49F1C346DEA373CF6D585F20;
  49. struct AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2;
  50. struct Delegate_t;
  51. struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
  52. struct MethodInfo_t;
  53. struct String_t;
  54. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  55. struct PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E;
  56. struct PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072;
  57. struct SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30;
  58. struct AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177;
  59. IL2CPP_EXTERN_C RuntimeClass* AudioSettings_t66C4BCA1E463B061E2EC9063FB882ACED20D47BD_il2cpp_TypeInfo_var;
  60. IL2CPP_EXTERN_C RuntimeClass* Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var;
  61. IL2CPP_EXTERN_C RuntimeClass* PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var;
  62. struct Delegate_t_marshaled_com;
  63. struct Delegate_t_marshaled_pinvoke;
  64. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  65. struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C;
  66. IL2CPP_EXTERN_C_BEGIN
  67. IL2CPP_EXTERN_C_END
  68. #ifdef __clang__
  69. #pragma clang diagnostic push
  70. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  71. #pragma clang diagnostic ignored "-Wunused-variable"
  72. #endif
  73. struct U3CModuleU3E_t462BCCFB9B78348533823E0754F65F52A5348F89
  74. {
  75. };
  76. struct AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2 : public RuntimeObject
  77. {
  78. SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* ___sampleFramesAvailable;
  79. SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* ___sampleFramesOverflow;
  80. };
  81. struct AudioSettings_t66C4BCA1E463B061E2EC9063FB882ACED20D47BD : public RuntimeObject
  82. {
  83. };
  84. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  85. {
  86. };
  87. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  88. {
  89. };
  90. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  91. {
  92. };
  93. struct Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD : public RuntimeObject
  94. {
  95. };
  96. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
  97. {
  98. bool ___m_value;
  99. };
  100. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
  101. {
  102. int32_t ___m_value;
  103. };
  104. struct IntPtr_t
  105. {
  106. void* ___m_value;
  107. };
  108. struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
  109. {
  110. float ___m_value;
  111. };
  112. struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
  113. {
  114. uint32_t ___m_value;
  115. };
  116. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
  117. {
  118. union
  119. {
  120. struct
  121. {
  122. };
  123. uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
  124. };
  125. };
  126. struct Delegate_t : public RuntimeObject
  127. {
  128. intptr_t ___method_ptr;
  129. intptr_t ___invoke_impl;
  130. RuntimeObject* ___m_target;
  131. intptr_t ___method;
  132. intptr_t ___delegate_trampoline;
  133. intptr_t ___extra_arg;
  134. intptr_t ___method_code;
  135. intptr_t ___interp_method;
  136. intptr_t ___interp_invoke_impl;
  137. MethodInfo_t* ___method_info;
  138. MethodInfo_t* ___original_method_info;
  139. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  140. bool ___method_is_virtual;
  141. };
  142. struct Delegate_t_marshaled_pinvoke
  143. {
  144. intptr_t ___method_ptr;
  145. intptr_t ___invoke_impl;
  146. Il2CppIUnknown* ___m_target;
  147. intptr_t ___method;
  148. intptr_t ___delegate_trampoline;
  149. intptr_t ___extra_arg;
  150. intptr_t ___method_code;
  151. intptr_t ___interp_method;
  152. intptr_t ___interp_invoke_impl;
  153. MethodInfo_t* ___method_info;
  154. MethodInfo_t* ___original_method_info;
  155. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  156. int32_t ___method_is_virtual;
  157. };
  158. struct Delegate_t_marshaled_com
  159. {
  160. intptr_t ___method_ptr;
  161. intptr_t ___invoke_impl;
  162. Il2CppIUnknown* ___m_target;
  163. intptr_t ___method;
  164. intptr_t ___delegate_trampoline;
  165. intptr_t ___extra_arg;
  166. intptr_t ___method_code;
  167. intptr_t ___interp_method;
  168. intptr_t ___interp_invoke_impl;
  169. MethodInfo_t* ___method_info;
  170. MethodInfo_t* ___original_method_info;
  171. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  172. int32_t ___method_is_virtual;
  173. };
  174. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
  175. {
  176. intptr_t ___m_CachedPtr;
  177. };
  178. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
  179. {
  180. intptr_t ___m_CachedPtr;
  181. };
  182. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
  183. {
  184. intptr_t ___m_CachedPtr;
  185. };
  186. struct PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4
  187. {
  188. intptr_t ___m_Handle;
  189. uint32_t ___m_Version;
  190. };
  191. struct PlayableOutputHandle_tEB217645A8C0356A3AC6F964F283003B9740E883
  192. {
  193. intptr_t ___m_Handle;
  194. uint32_t ___m_Version;
  195. };
  196. struct AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0
  197. {
  198. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  199. };
  200. struct AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C
  201. {
  202. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  203. };
  204. struct AudioPlayableOutput_tC3DFF8095F429D90129A367EAB98A24F6D6ADF20
  205. {
  206. PlayableOutputHandle_tEB217645A8C0356A3AC6F964F283003B9740E883 ___m_Handle;
  207. };
  208. struct AudioResource_t35B84706031E4F08C928B1640B804839F4B6500A : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  209. {
  210. };
  211. struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  212. {
  213. };
  214. struct MulticastDelegate_t : public Delegate_t
  215. {
  216. DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
  217. };
  218. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  219. {
  220. Delegate_t_marshaled_pinvoke** ___delegates;
  221. };
  222. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  223. {
  224. Delegate_t_marshaled_com** ___delegates;
  225. };
  226. struct Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C : public MulticastDelegate_t
  227. {
  228. };
  229. struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07 : public MulticastDelegate_t
  230. {
  231. };
  232. struct AudioClip_t5D272C4EB4F2D3ED49F1C346DEA373CF6D585F20 : public AudioResource_t35B84706031E4F08C928B1640B804839F4B6500A
  233. {
  234. PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E* ___m_PCMReaderCallback;
  235. PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072* ___m_PCMSetPositionCallback;
  236. };
  237. struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
  238. {
  239. };
  240. struct PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E : public MulticastDelegate_t
  241. {
  242. };
  243. struct PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072 : public MulticastDelegate_t
  244. {
  245. };
  246. struct SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30 : public MulticastDelegate_t
  247. {
  248. };
  249. struct AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177 : public MulticastDelegate_t
  250. {
  251. };
  252. struct AudioBehaviour_t2DC0BEF7B020C952F3D2DA5AAAC88501C7EEB941 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
  253. {
  254. };
  255. struct AudioListener_t1D629CE9BC079C8ECDE8F822616E8A8E319EAE35 : public AudioBehaviour_t2DC0BEF7B020C952F3D2DA5AAAC88501C7EEB941
  256. {
  257. };
  258. struct AudioSource_t871AC2272F896738252F04EE949AEF5B241D3299 : 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. #ifdef __clang__
  964. #pragma clang diagnostic pop
  965. #endif
  966. #ifdef __clang__
  967. #pragma clang diagnostic push
  968. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  969. #pragma clang diagnostic ignored "-Wunused-variable"
  970. #endif
  971. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AudioSampleProvider_InvokeSampleFramesAvailable_mEB16F7230AB65A3576BF053AC5719F8E134FBCD4 (AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* __this, int32_t ___0_sampleFrameCount, const RuntimeMethod* method)
  972. {
  973. bool V_0 = false;
  974. {
  975. SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* L_0 = __this->___sampleFramesAvailable;
  976. V_0 = (bool)((!(((RuntimeObject*)(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  977. bool L_1 = V_0;
  978. if (!L_1)
  979. {
  980. goto IL_001c;
  981. }
  982. }
  983. {
  984. SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* L_2 = __this->___sampleFramesAvailable;
  985. int32_t L_3 = ___0_sampleFrameCount;
  986. NullCheck(L_2);
  987. SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_inline(L_2, __this, L_3, NULL);
  988. }
  989. IL_001c:
  990. {
  991. return;
  992. }
  993. }
  994. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AudioSampleProvider_InvokeSampleFramesOverflow_m66593173A527981F5EB2A5EF77B0C9119DAB5E15 (AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* __this, int32_t ___0_droppedSampleFrameCount, const RuntimeMethod* method)
  995. {
  996. bool V_0 = false;
  997. {
  998. SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* L_0 = __this->___sampleFramesOverflow;
  999. V_0 = (bool)((!(((RuntimeObject*)(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  1000. bool L_1 = V_0;
  1001. if (!L_1)
  1002. {
  1003. goto IL_001c;
  1004. }
  1005. }
  1006. {
  1007. SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* L_2 = __this->___sampleFramesOverflow;
  1008. int32_t L_3 = ___0_droppedSampleFrameCount;
  1009. NullCheck(L_2);
  1010. SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_inline(L_2, __this, L_3, NULL);
  1011. }
  1012. IL_001c:
  1013. {
  1014. return;
  1015. }
  1016. }
  1017. #ifdef __clang__
  1018. #pragma clang diagnostic pop
  1019. #endif
  1020. #ifdef __clang__
  1021. #pragma clang diagnostic push
  1022. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1023. #pragma clang diagnostic ignored "-Wunused-variable"
  1024. #endif
  1025. void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_Multicast(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method)
  1026. {
  1027. il2cpp_array_size_t length = __this->___delegates->max_length;
  1028. Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
  1029. for (il2cpp_array_size_t i = 0; i < length; i++)
  1030. {
  1031. SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* currentDelegate = reinterpret_cast<SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30*>(delegatesToInvoke[i]);
  1032. typedef void (*FunctionPointerType) (RuntimeObject*, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2*, uint32_t, const RuntimeMethod*);
  1033. ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, ___0_provider, ___1_sampleFrameCount, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
  1034. }
  1035. }
  1036. void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenInst(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method)
  1037. {
  1038. NullCheck(___0_provider);
  1039. typedef void (*FunctionPointerType) (AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2*, uint32_t, const RuntimeMethod*);
  1040. ((FunctionPointerType)__this->___method_ptr)(___0_provider, ___1_sampleFrameCount, method);
  1041. }
  1042. void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenStatic(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method)
  1043. {
  1044. typedef void (*FunctionPointerType) (AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2*, uint32_t, const RuntimeMethod*);
  1045. ((FunctionPointerType)__this->___method_ptr)(___0_provider, ___1_sampleFrameCount, method);
  1046. }
  1047. void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenVirtual(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method)
  1048. {
  1049. NullCheck(___0_provider);
  1050. VirtualActionInvoker1< uint32_t >::Invoke(il2cpp_codegen_method_get_slot(method), ___0_provider, ___1_sampleFrameCount);
  1051. }
  1052. void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenInterface(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method)
  1053. {
  1054. NullCheck(___0_provider);
  1055. InterfaceActionInvoker1< uint32_t >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___0_provider, ___1_sampleFrameCount);
  1056. }
  1057. void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenGenericVirtual(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method)
  1058. {
  1059. NullCheck(___0_provider);
  1060. GenericVirtualActionInvoker1< uint32_t >::Invoke(method, ___0_provider, ___1_sampleFrameCount);
  1061. }
  1062. void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenGenericInterface(SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method)
  1063. {
  1064. NullCheck(___0_provider);
  1065. GenericInterfaceActionInvoker1< uint32_t >::Invoke(method, ___0_provider, ___1_sampleFrameCount);
  1066. }
  1067. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SampleFramesHandler__ctor_m7DDE0BAD439CD80791140C7D42D661B598A7663A (SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
  1068. {
  1069. __this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
  1070. __this->___method = ___1_method;
  1071. __this->___m_target = ___0_object;
  1072. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
  1073. int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
  1074. __this->___method_code = (intptr_t)__this;
  1075. if (MethodIsStatic((RuntimeMethod*)___1_method))
  1076. {
  1077. bool isOpen = parameterCount == 2;
  1078. if (isOpen)
  1079. __this->___invoke_impl = (intptr_t)&SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenStatic;
  1080. else
  1081. {
  1082. __this->___invoke_impl = __this->___method_ptr;
  1083. __this->___method_code = (intptr_t)__this->___m_target;
  1084. }
  1085. }
  1086. else
  1087. {
  1088. bool isOpen = parameterCount == 1;
  1089. if (isOpen)
  1090. {
  1091. if (__this->___method_is_virtual)
  1092. {
  1093. if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___1_method))
  1094. if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
  1095. __this->___invoke_impl = (intptr_t)&SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenGenericInterface;
  1096. else
  1097. __this->___invoke_impl = (intptr_t)&SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenGenericVirtual;
  1098. else
  1099. if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
  1100. __this->___invoke_impl = (intptr_t)&SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenInterface;
  1101. else
  1102. __this->___invoke_impl = (intptr_t)&SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenVirtual;
  1103. }
  1104. else
  1105. {
  1106. __this->___invoke_impl = (intptr_t)&SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_OpenInst;
  1107. }
  1108. }
  1109. else
  1110. {
  1111. if (___0_object == NULL)
  1112. il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
  1113. __this->___invoke_impl = __this->___method_ptr;
  1114. __this->___method_code = (intptr_t)__this->___m_target;
  1115. }
  1116. }
  1117. __this->___extra_arg = (intptr_t)&SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC_Multicast;
  1118. }
  1119. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC (SampleFramesHandler_tFE84FF9BBCEFB880D46227188F375BEF680AAA30* __this, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2* ___0_provider, uint32_t ___1_sampleFrameCount, const RuntimeMethod* method)
  1120. {
  1121. typedef void (*FunctionPointerType) (RuntimeObject*, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2*, uint32_t, const RuntimeMethod*);
  1122. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_provider, ___1_sampleFrameCount, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1123. }
  1124. #ifdef __clang__
  1125. #pragma clang diagnostic pop
  1126. #endif
  1127. #ifdef __clang__
  1128. #pragma clang diagnostic push
  1129. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1130. #pragma clang diagnostic ignored "-Wunused-variable"
  1131. #endif
  1132. #ifdef __clang__
  1133. #pragma clang diagnostic pop
  1134. #endif
  1135. #ifdef __clang__
  1136. #pragma clang diagnostic push
  1137. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1138. #pragma clang diagnostic ignored "-Wunused-variable"
  1139. #endif
  1140. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AudioClipPlayable_GetHandle_mEA1D664328FF9B08E4F7D5EBCD4B51A754D97C44 (AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0* __this, const RuntimeMethod* method)
  1141. {
  1142. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  1143. memset((&V_0), 0, sizeof(V_0));
  1144. {
  1145. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  1146. V_0 = L_0;
  1147. goto IL_000a;
  1148. }
  1149. IL_000a:
  1150. {
  1151. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  1152. return L_1;
  1153. }
  1154. }
  1155. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AudioClipPlayable_GetHandle_mEA1D664328FF9B08E4F7D5EBCD4B51A754D97C44_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1156. {
  1157. AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0* _thisAdjusted;
  1158. int32_t _offset = 1;
  1159. _thisAdjusted = reinterpret_cast<AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0*>(__this + _offset);
  1160. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  1161. _returnValue = AudioClipPlayable_GetHandle_mEA1D664328FF9B08E4F7D5EBCD4B51A754D97C44(_thisAdjusted, method);
  1162. return _returnValue;
  1163. }
  1164. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AudioClipPlayable_Equals_m9C1C75ACBB74FE06AD02BE4643F6EB39413EFF83 (AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0* __this, AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0 ___0_other, const RuntimeMethod* method)
  1165. {
  1166. static bool s_Il2CppMethodInitialized;
  1167. if (!s_Il2CppMethodInitialized)
  1168. {
  1169. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1170. s_Il2CppMethodInitialized = true;
  1171. }
  1172. bool V_0 = false;
  1173. {
  1174. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  1175. L_0 = AudioClipPlayable_GetHandle_mEA1D664328FF9B08E4F7D5EBCD4B51A754D97C44(__this, NULL);
  1176. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1;
  1177. L_1 = AudioClipPlayable_GetHandle_mEA1D664328FF9B08E4F7D5EBCD4B51A754D97C44((&___0_other), NULL);
  1178. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1179. bool L_2;
  1180. L_2 = PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C(L_0, L_1, NULL);
  1181. V_0 = L_2;
  1182. goto IL_0016;
  1183. }
  1184. IL_0016:
  1185. {
  1186. bool L_3 = V_0;
  1187. return L_3;
  1188. }
  1189. }
  1190. IL2CPP_EXTERN_C bool AudioClipPlayable_Equals_m9C1C75ACBB74FE06AD02BE4643F6EB39413EFF83_AdjustorThunk (RuntimeObject* __this, AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0 ___0_other, const RuntimeMethod* method)
  1191. {
  1192. AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0* _thisAdjusted;
  1193. int32_t _offset = 1;
  1194. _thisAdjusted = reinterpret_cast<AudioClipPlayable_tD4B758E68CAE03CB0CD31F90C8A3E603B97143A0*>(__this + _offset);
  1195. bool _returnValue;
  1196. _returnValue = AudioClipPlayable_Equals_m9C1C75ACBB74FE06AD02BE4643F6EB39413EFF83(_thisAdjusted, ___0_other, method);
  1197. return _returnValue;
  1198. }
  1199. #ifdef __clang__
  1200. #pragma clang diagnostic pop
  1201. #endif
  1202. #ifdef __clang__
  1203. #pragma clang diagnostic push
  1204. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1205. #pragma clang diagnostic ignored "-Wunused-variable"
  1206. #endif
  1207. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AudioMixerPlayable_GetHandle_m6C182D9794E901D123223BB57738A302BEAB41FD (AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C* __this, const RuntimeMethod* method)
  1208. {
  1209. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  1210. memset((&V_0), 0, sizeof(V_0));
  1211. {
  1212. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  1213. V_0 = L_0;
  1214. goto IL_000a;
  1215. }
  1216. IL_000a:
  1217. {
  1218. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  1219. return L_1;
  1220. }
  1221. }
  1222. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AudioMixerPlayable_GetHandle_m6C182D9794E901D123223BB57738A302BEAB41FD_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1223. {
  1224. AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C* _thisAdjusted;
  1225. int32_t _offset = 1;
  1226. _thisAdjusted = reinterpret_cast<AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C*>(__this + _offset);
  1227. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  1228. _returnValue = AudioMixerPlayable_GetHandle_m6C182D9794E901D123223BB57738A302BEAB41FD(_thisAdjusted, method);
  1229. return _returnValue;
  1230. }
  1231. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AudioMixerPlayable_Equals_mDFB945EB48199A338BAD00D40FB8EEC34CF64D57 (AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C* __this, AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C ___0_other, const RuntimeMethod* method)
  1232. {
  1233. static bool s_Il2CppMethodInitialized;
  1234. if (!s_Il2CppMethodInitialized)
  1235. {
  1236. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1237. s_Il2CppMethodInitialized = true;
  1238. }
  1239. bool V_0 = false;
  1240. {
  1241. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  1242. L_0 = AudioMixerPlayable_GetHandle_m6C182D9794E901D123223BB57738A302BEAB41FD(__this, NULL);
  1243. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1;
  1244. L_1 = AudioMixerPlayable_GetHandle_m6C182D9794E901D123223BB57738A302BEAB41FD((&___0_other), NULL);
  1245. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1246. bool L_2;
  1247. L_2 = PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C(L_0, L_1, NULL);
  1248. V_0 = L_2;
  1249. goto IL_0016;
  1250. }
  1251. IL_0016:
  1252. {
  1253. bool L_3 = V_0;
  1254. return L_3;
  1255. }
  1256. }
  1257. IL2CPP_EXTERN_C bool AudioMixerPlayable_Equals_mDFB945EB48199A338BAD00D40FB8EEC34CF64D57_AdjustorThunk (RuntimeObject* __this, AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C ___0_other, const RuntimeMethod* method)
  1258. {
  1259. AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C* _thisAdjusted;
  1260. int32_t _offset = 1;
  1261. _thisAdjusted = reinterpret_cast<AudioMixerPlayable_t6AADDF0C53DF1B4C17969EC24B3B4E4975F3A56C*>(__this + _offset);
  1262. bool _returnValue;
  1263. _returnValue = AudioMixerPlayable_Equals_mDFB945EB48199A338BAD00D40FB8EEC34CF64D57(_thisAdjusted, ___0_other, method);
  1264. return _returnValue;
  1265. }
  1266. #ifdef __clang__
  1267. #pragma clang diagnostic pop
  1268. #endif
  1269. #ifdef __clang__
  1270. #pragma clang diagnostic push
  1271. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1272. #pragma clang diagnostic ignored "-Wunused-variable"
  1273. #endif
  1274. #ifdef __clang__
  1275. #pragma clang diagnostic pop
  1276. #endif
  1277. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AudioConfigurationChangeHandler_Invoke_m4DC27DD11512481B60071B20284E6886DAE54DE2_inline (AudioConfigurationChangeHandler_tE071B0CBA3B3A77D3E41F5FCB65B4017885B3177* __this, bool ___0_deviceWasChanged, const RuntimeMethod* method)
  1278. {
  1279. typedef void (*FunctionPointerType) (RuntimeObject*, bool, const RuntimeMethod*);
  1280. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_deviceWasChanged, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1281. }
  1282. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method)
  1283. {
  1284. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  1285. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1286. }
  1287. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mobile_get_muteState_m64C1E8C61537317A7F153E1A72F7D39D85DA684D_inline (const RuntimeMethod* method)
  1288. {
  1289. static bool s_Il2CppMethodInitialized;
  1290. if (!s_Il2CppMethodInitialized)
  1291. {
  1292. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var);
  1293. s_Il2CppMethodInitialized = true;
  1294. }
  1295. {
  1296. bool L_0 = ((Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_StaticFields*)il2cpp_codegen_static_fields_for(Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var))->___U3CmuteStateU3Ek__BackingField;
  1297. return L_0;
  1298. }
  1299. }
  1300. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Mobile_set_muteState_m7C9A464BCA3762330E18CCAD79AF6C47B863CA02_inline (bool ___0_value, const RuntimeMethod* method)
  1301. {
  1302. static bool s_Il2CppMethodInitialized;
  1303. if (!s_Il2CppMethodInitialized)
  1304. {
  1305. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var);
  1306. s_Il2CppMethodInitialized = true;
  1307. }
  1308. {
  1309. bool L_0 = ___0_value;
  1310. ((Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_StaticFields*)il2cpp_codegen_static_fields_for(Mobile_t304A73480DF447472BDB16BA19A9E4FE2C8CB2DD_il2cpp_TypeInfo_var))->___U3CmuteStateU3Ek__BackingField = L_0;
  1311. return;
  1312. }
  1313. }
  1314. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PCMReaderCallback_Invoke_m76784C690C36B513E2AA5B0E4FD9831B2C7E5152_inline (PCMReaderCallback_t3396D9613664F0AFF65FB91018FD0F901CC16F1E* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_data, const RuntimeMethod* method)
  1315. {
  1316. typedef void (*FunctionPointerType) (RuntimeObject*, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, const RuntimeMethod*);
  1317. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_data, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1318. }
  1319. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PCMSetPositionCallback_Invoke_m434D4F02FA25F91DF6199EC5A799C551C7F93702_inline (PCMSetPositionCallback_t8D7135A2FB40647CAEC93F5254AD59E18DEB6072* __this, int32_t ___0_position, const RuntimeMethod* method)
  1320. {
  1321. typedef void (*FunctionPointerType) (RuntimeObject*, int32_t, const RuntimeMethod*);
  1322. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_position, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1323. }
  1324. 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)
  1325. {
  1326. typedef void (*FunctionPointerType) (RuntimeObject*, AudioSampleProvider_t602353124A2F6F2AEC38E56C3C21932344F712E2*, uint32_t, const RuntimeMethod*);
  1327. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_provider, ___1_sampleFrameCount, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1328. }
  1329. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_gshared_inline (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* __this, bool ___0_obj, const RuntimeMethod* method)
  1330. {
  1331. typedef void (*FunctionPointerType) (RuntimeObject*, bool, const RuntimeMethod*);
  1332. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1333. }