Bulk_UnityEngine.VideoModule_0.cpp 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803
  1. #include "il2cpp-config.h"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <cstring>
  8. #include <string.h>
  9. #include <stdio.h>
  10. #include <cmath>
  11. #include <limits>
  12. #include <assert.h>
  13. #include <stdint.h>
  14. #include "il2cpp-class-internals.h"
  15. #include "codegen/il2cpp-codegen.h"
  16. #include "il2cpp-object-internals.h"
  17. template <typename T1, typename T2>
  18. struct VirtActionInvoker2
  19. {
  20. typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
  21. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
  22. {
  23. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  24. ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
  25. }
  26. };
  27. template <typename T1>
  28. struct VirtActionInvoker1
  29. {
  30. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  31. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  32. {
  33. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  34. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  35. }
  36. };
  37. struct VirtActionInvoker0
  38. {
  39. typedef void (*Action)(void*, const RuntimeMethod*);
  40. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  41. {
  42. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  43. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  44. }
  45. };
  46. template <typename T1, typename T2>
  47. struct GenericVirtActionInvoker2
  48. {
  49. typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
  50. static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
  51. {
  52. VirtualInvokeData invokeData;
  53. il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
  54. ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
  55. }
  56. };
  57. template <typename T1>
  58. struct GenericVirtActionInvoker1
  59. {
  60. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  61. static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
  62. {
  63. VirtualInvokeData invokeData;
  64. il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
  65. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  66. }
  67. };
  68. struct GenericVirtActionInvoker0
  69. {
  70. typedef void (*Action)(void*, const RuntimeMethod*);
  71. static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
  72. {
  73. VirtualInvokeData invokeData;
  74. il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
  75. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  76. }
  77. };
  78. template <typename T1, typename T2>
  79. struct InterfaceActionInvoker2
  80. {
  81. typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
  82. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
  83. {
  84. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  85. ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
  86. }
  87. };
  88. template <typename T1>
  89. struct InterfaceActionInvoker1
  90. {
  91. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  92. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
  93. {
  94. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  95. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  96. }
  97. };
  98. struct InterfaceActionInvoker0
  99. {
  100. typedef void (*Action)(void*, const RuntimeMethod*);
  101. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  102. {
  103. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  104. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  105. }
  106. };
  107. template <typename T1, typename T2>
  108. struct GenericInterfaceActionInvoker2
  109. {
  110. typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
  111. static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
  112. {
  113. VirtualInvokeData invokeData;
  114. il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
  115. ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
  116. }
  117. };
  118. template <typename T1>
  119. struct GenericInterfaceActionInvoker1
  120. {
  121. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  122. static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
  123. {
  124. VirtualInvokeData invokeData;
  125. il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
  126. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  127. }
  128. };
  129. struct GenericInterfaceActionInvoker0
  130. {
  131. typedef void (*Action)(void*, const RuntimeMethod*);
  132. static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
  133. {
  134. VirtualInvokeData invokeData;
  135. il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
  136. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  137. }
  138. };
  139. // UnityEngine.Video.VideoPlayer
  140. struct VideoPlayer_t1683042537;
  141. // UnityEngine.Video.VideoPlayer/EventHandler
  142. struct EventHandler_t3436254912;
  143. // UnityEngine.Video.VideoPlayer/FrameReadyEventHandler
  144. struct FrameReadyEventHandler_t3848515759;
  145. // System.String
  146. struct String_t;
  147. // UnityEngine.Video.VideoPlayer/ErrorEventHandler
  148. struct ErrorEventHandler_t3211687919;
  149. // UnityEngine.Video.VideoPlayer/TimeEventHandler
  150. struct TimeEventHandler_t445758600;
  151. // System.IAsyncResult
  152. struct IAsyncResult_t767004451;
  153. // System.AsyncCallback
  154. struct AsyncCallback_t3962456242;
  155. // System.Char[]
  156. struct CharU5BU5D_t3528271667;
  157. // System.Void
  158. struct Void_t1185182177;
  159. // System.Reflection.MethodInfo
  160. struct MethodInfo_t;
  161. // System.DelegateData
  162. struct DelegateData_t1677132599;
  163. extern RuntimeClass* Int64_t3736567304_il2cpp_TypeInfo_var;
  164. extern const uint32_t FrameReadyEventHandler_BeginInvoke_m3423367811_MetadataUsageId;
  165. extern RuntimeClass* Double_t594665363_il2cpp_TypeInfo_var;
  166. extern const uint32_t TimeEventHandler_BeginInvoke_m2542334896_MetadataUsageId;
  167. #ifndef U3CMODULEU3E_T692745558_H
  168. #define U3CMODULEU3E_T692745558_H
  169. #ifdef __clang__
  170. #pragma clang diagnostic push
  171. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  172. #pragma clang diagnostic ignored "-Wunused-variable"
  173. #endif
  174. // <Module>
  175. struct U3CModuleU3E_t692745558
  176. {
  177. public:
  178. public:
  179. };
  180. #ifdef __clang__
  181. #pragma clang diagnostic pop
  182. #endif
  183. #endif // U3CMODULEU3E_T692745558_H
  184. #ifndef RUNTIMEOBJECT_H
  185. #define RUNTIMEOBJECT_H
  186. #ifdef __clang__
  187. #pragma clang diagnostic push
  188. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  189. #pragma clang diagnostic ignored "-Wunused-variable"
  190. #endif
  191. // System.Object
  192. #ifdef __clang__
  193. #pragma clang diagnostic pop
  194. #endif
  195. #endif // RUNTIMEOBJECT_H
  196. struct Il2CppArrayBounds;
  197. #ifndef RUNTIMEARRAY_H
  198. #define RUNTIMEARRAY_H
  199. #ifdef __clang__
  200. #pragma clang diagnostic push
  201. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  202. #pragma clang diagnostic ignored "-Wunused-variable"
  203. #endif
  204. // System.Array
  205. #ifdef __clang__
  206. #pragma clang diagnostic pop
  207. #endif
  208. #endif // RUNTIMEARRAY_H
  209. #ifndef STRING_T_H
  210. #define STRING_T_H
  211. #ifdef __clang__
  212. #pragma clang diagnostic push
  213. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  214. #pragma clang diagnostic ignored "-Wunused-variable"
  215. #endif
  216. // System.String
  217. struct String_t : public RuntimeObject
  218. {
  219. public:
  220. // System.Int32 System.String::length
  221. int32_t ___length_0;
  222. // System.Char System.String::start_char
  223. Il2CppChar ___start_char_1;
  224. public:
  225. inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(String_t, ___length_0)); }
  226. inline int32_t get_length_0() const { return ___length_0; }
  227. inline int32_t* get_address_of_length_0() { return &___length_0; }
  228. inline void set_length_0(int32_t value)
  229. {
  230. ___length_0 = value;
  231. }
  232. inline static int32_t get_offset_of_start_char_1() { return static_cast<int32_t>(offsetof(String_t, ___start_char_1)); }
  233. inline Il2CppChar get_start_char_1() const { return ___start_char_1; }
  234. inline Il2CppChar* get_address_of_start_char_1() { return &___start_char_1; }
  235. inline void set_start_char_1(Il2CppChar value)
  236. {
  237. ___start_char_1 = value;
  238. }
  239. };
  240. struct String_t_StaticFields
  241. {
  242. public:
  243. // System.String System.String::Empty
  244. String_t* ___Empty_2;
  245. // System.Char[] System.String::WhiteChars
  246. CharU5BU5D_t3528271667* ___WhiteChars_3;
  247. public:
  248. inline static int32_t get_offset_of_Empty_2() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_2)); }
  249. inline String_t* get_Empty_2() const { return ___Empty_2; }
  250. inline String_t** get_address_of_Empty_2() { return &___Empty_2; }
  251. inline void set_Empty_2(String_t* value)
  252. {
  253. ___Empty_2 = value;
  254. Il2CppCodeGenWriteBarrier((&___Empty_2), value);
  255. }
  256. inline static int32_t get_offset_of_WhiteChars_3() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___WhiteChars_3)); }
  257. inline CharU5BU5D_t3528271667* get_WhiteChars_3() const { return ___WhiteChars_3; }
  258. inline CharU5BU5D_t3528271667** get_address_of_WhiteChars_3() { return &___WhiteChars_3; }
  259. inline void set_WhiteChars_3(CharU5BU5D_t3528271667* value)
  260. {
  261. ___WhiteChars_3 = value;
  262. Il2CppCodeGenWriteBarrier((&___WhiteChars_3), value);
  263. }
  264. };
  265. #ifdef __clang__
  266. #pragma clang diagnostic pop
  267. #endif
  268. #endif // STRING_T_H
  269. #ifndef VALUETYPE_T3640485471_H
  270. #define VALUETYPE_T3640485471_H
  271. #ifdef __clang__
  272. #pragma clang diagnostic push
  273. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  274. #pragma clang diagnostic ignored "-Wunused-variable"
  275. #endif
  276. // System.ValueType
  277. struct ValueType_t3640485471 : public RuntimeObject
  278. {
  279. public:
  280. public:
  281. };
  282. #ifdef __clang__
  283. #pragma clang diagnostic pop
  284. #endif
  285. // Native definition for P/Invoke marshalling of System.ValueType
  286. struct ValueType_t3640485471_marshaled_pinvoke
  287. {
  288. };
  289. // Native definition for COM marshalling of System.ValueType
  290. struct ValueType_t3640485471_marshaled_com
  291. {
  292. };
  293. #endif // VALUETYPE_T3640485471_H
  294. #ifndef DOUBLE_T594665363_H
  295. #define DOUBLE_T594665363_H
  296. #ifdef __clang__
  297. #pragma clang diagnostic push
  298. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  299. #pragma clang diagnostic ignored "-Wunused-variable"
  300. #endif
  301. // System.Double
  302. struct Double_t594665363
  303. {
  304. public:
  305. // System.Double System.Double::m_value
  306. double ___m_value_13;
  307. public:
  308. inline static int32_t get_offset_of_m_value_13() { return static_cast<int32_t>(offsetof(Double_t594665363, ___m_value_13)); }
  309. inline double get_m_value_13() const { return ___m_value_13; }
  310. inline double* get_address_of_m_value_13() { return &___m_value_13; }
  311. inline void set_m_value_13(double value)
  312. {
  313. ___m_value_13 = value;
  314. }
  315. };
  316. #ifdef __clang__
  317. #pragma clang diagnostic pop
  318. #endif
  319. #endif // DOUBLE_T594665363_H
  320. #ifndef INT64_T3736567304_H
  321. #define INT64_T3736567304_H
  322. #ifdef __clang__
  323. #pragma clang diagnostic push
  324. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  325. #pragma clang diagnostic ignored "-Wunused-variable"
  326. #endif
  327. // System.Int64
  328. struct Int64_t3736567304
  329. {
  330. public:
  331. // System.Int64 System.Int64::m_value
  332. int64_t ___m_value_2;
  333. public:
  334. inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Int64_t3736567304, ___m_value_2)); }
  335. inline int64_t get_m_value_2() const { return ___m_value_2; }
  336. inline int64_t* get_address_of_m_value_2() { return &___m_value_2; }
  337. inline void set_m_value_2(int64_t value)
  338. {
  339. ___m_value_2 = value;
  340. }
  341. };
  342. #ifdef __clang__
  343. #pragma clang diagnostic pop
  344. #endif
  345. #endif // INT64_T3736567304_H
  346. #ifndef VOID_T1185182177_H
  347. #define VOID_T1185182177_H
  348. #ifdef __clang__
  349. #pragma clang diagnostic push
  350. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  351. #pragma clang diagnostic ignored "-Wunused-variable"
  352. #endif
  353. // System.Void
  354. struct Void_t1185182177
  355. {
  356. public:
  357. public:
  358. };
  359. #ifdef __clang__
  360. #pragma clang diagnostic pop
  361. #endif
  362. #endif // VOID_T1185182177_H
  363. #ifndef INTPTR_T_H
  364. #define INTPTR_T_H
  365. #ifdef __clang__
  366. #pragma clang diagnostic push
  367. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  368. #pragma clang diagnostic ignored "-Wunused-variable"
  369. #endif
  370. // System.IntPtr
  371. struct IntPtr_t
  372. {
  373. public:
  374. // System.Void* System.IntPtr::m_value
  375. void* ___m_value_0;
  376. public:
  377. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
  378. inline void* get_m_value_0() const { return ___m_value_0; }
  379. inline void** get_address_of_m_value_0() { return &___m_value_0; }
  380. inline void set_m_value_0(void* value)
  381. {
  382. ___m_value_0 = value;
  383. }
  384. };
  385. struct IntPtr_t_StaticFields
  386. {
  387. public:
  388. // System.IntPtr System.IntPtr::Zero
  389. intptr_t ___Zero_1;
  390. public:
  391. inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
  392. inline intptr_t get_Zero_1() const { return ___Zero_1; }
  393. inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
  394. inline void set_Zero_1(intptr_t value)
  395. {
  396. ___Zero_1 = value;
  397. }
  398. };
  399. #ifdef __clang__
  400. #pragma clang diagnostic pop
  401. #endif
  402. #endif // INTPTR_T_H
  403. #ifndef BOOLEAN_T97287965_H
  404. #define BOOLEAN_T97287965_H
  405. #ifdef __clang__
  406. #pragma clang diagnostic push
  407. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  408. #pragma clang diagnostic ignored "-Wunused-variable"
  409. #endif
  410. // System.Boolean
  411. struct Boolean_t97287965
  412. {
  413. public:
  414. // System.Boolean System.Boolean::m_value
  415. bool ___m_value_2;
  416. public:
  417. inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Boolean_t97287965, ___m_value_2)); }
  418. inline bool get_m_value_2() const { return ___m_value_2; }
  419. inline bool* get_address_of_m_value_2() { return &___m_value_2; }
  420. inline void set_m_value_2(bool value)
  421. {
  422. ___m_value_2 = value;
  423. }
  424. };
  425. struct Boolean_t97287965_StaticFields
  426. {
  427. public:
  428. // System.String System.Boolean::FalseString
  429. String_t* ___FalseString_0;
  430. // System.String System.Boolean::TrueString
  431. String_t* ___TrueString_1;
  432. public:
  433. inline static int32_t get_offset_of_FalseString_0() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___FalseString_0)); }
  434. inline String_t* get_FalseString_0() const { return ___FalseString_0; }
  435. inline String_t** get_address_of_FalseString_0() { return &___FalseString_0; }
  436. inline void set_FalseString_0(String_t* value)
  437. {
  438. ___FalseString_0 = value;
  439. Il2CppCodeGenWriteBarrier((&___FalseString_0), value);
  440. }
  441. inline static int32_t get_offset_of_TrueString_1() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___TrueString_1)); }
  442. inline String_t* get_TrueString_1() const { return ___TrueString_1; }
  443. inline String_t** get_address_of_TrueString_1() { return &___TrueString_1; }
  444. inline void set_TrueString_1(String_t* value)
  445. {
  446. ___TrueString_1 = value;
  447. Il2CppCodeGenWriteBarrier((&___TrueString_1), value);
  448. }
  449. };
  450. #ifdef __clang__
  451. #pragma clang diagnostic pop
  452. #endif
  453. #endif // BOOLEAN_T97287965_H
  454. #ifndef DELEGATE_T1188392813_H
  455. #define DELEGATE_T1188392813_H
  456. #ifdef __clang__
  457. #pragma clang diagnostic push
  458. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  459. #pragma clang diagnostic ignored "-Wunused-variable"
  460. #endif
  461. // System.Delegate
  462. struct Delegate_t1188392813 : public RuntimeObject
  463. {
  464. public:
  465. // System.IntPtr System.Delegate::method_ptr
  466. Il2CppMethodPointer ___method_ptr_0;
  467. // System.IntPtr System.Delegate::invoke_impl
  468. intptr_t ___invoke_impl_1;
  469. // System.Object System.Delegate::m_target
  470. RuntimeObject * ___m_target_2;
  471. // System.IntPtr System.Delegate::method
  472. intptr_t ___method_3;
  473. // System.IntPtr System.Delegate::delegate_trampoline
  474. intptr_t ___delegate_trampoline_4;
  475. // System.IntPtr System.Delegate::method_code
  476. intptr_t ___method_code_5;
  477. // System.Reflection.MethodInfo System.Delegate::method_info
  478. MethodInfo_t * ___method_info_6;
  479. // System.Reflection.MethodInfo System.Delegate::original_method_info
  480. MethodInfo_t * ___original_method_info_7;
  481. // System.DelegateData System.Delegate::data
  482. DelegateData_t1677132599 * ___data_8;
  483. public:
  484. inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_ptr_0)); }
  485. inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
  486. inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
  487. inline void set_method_ptr_0(Il2CppMethodPointer value)
  488. {
  489. ___method_ptr_0 = value;
  490. }
  491. inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___invoke_impl_1)); }
  492. inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
  493. inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
  494. inline void set_invoke_impl_1(intptr_t value)
  495. {
  496. ___invoke_impl_1 = value;
  497. }
  498. inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___m_target_2)); }
  499. inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
  500. inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
  501. inline void set_m_target_2(RuntimeObject * value)
  502. {
  503. ___m_target_2 = value;
  504. Il2CppCodeGenWriteBarrier((&___m_target_2), value);
  505. }
  506. inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_3)); }
  507. inline intptr_t get_method_3() const { return ___method_3; }
  508. inline intptr_t* get_address_of_method_3() { return &___method_3; }
  509. inline void set_method_3(intptr_t value)
  510. {
  511. ___method_3 = value;
  512. }
  513. inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___delegate_trampoline_4)); }
  514. inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
  515. inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
  516. inline void set_delegate_trampoline_4(intptr_t value)
  517. {
  518. ___delegate_trampoline_4 = value;
  519. }
  520. inline static int32_t get_offset_of_method_code_5() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_code_5)); }
  521. inline intptr_t get_method_code_5() const { return ___method_code_5; }
  522. inline intptr_t* get_address_of_method_code_5() { return &___method_code_5; }
  523. inline void set_method_code_5(intptr_t value)
  524. {
  525. ___method_code_5 = value;
  526. }
  527. inline static int32_t get_offset_of_method_info_6() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_info_6)); }
  528. inline MethodInfo_t * get_method_info_6() const { return ___method_info_6; }
  529. inline MethodInfo_t ** get_address_of_method_info_6() { return &___method_info_6; }
  530. inline void set_method_info_6(MethodInfo_t * value)
  531. {
  532. ___method_info_6 = value;
  533. Il2CppCodeGenWriteBarrier((&___method_info_6), value);
  534. }
  535. inline static int32_t get_offset_of_original_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___original_method_info_7)); }
  536. inline MethodInfo_t * get_original_method_info_7() const { return ___original_method_info_7; }
  537. inline MethodInfo_t ** get_address_of_original_method_info_7() { return &___original_method_info_7; }
  538. inline void set_original_method_info_7(MethodInfo_t * value)
  539. {
  540. ___original_method_info_7 = value;
  541. Il2CppCodeGenWriteBarrier((&___original_method_info_7), value);
  542. }
  543. inline static int32_t get_offset_of_data_8() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___data_8)); }
  544. inline DelegateData_t1677132599 * get_data_8() const { return ___data_8; }
  545. inline DelegateData_t1677132599 ** get_address_of_data_8() { return &___data_8; }
  546. inline void set_data_8(DelegateData_t1677132599 * value)
  547. {
  548. ___data_8 = value;
  549. Il2CppCodeGenWriteBarrier((&___data_8), value);
  550. }
  551. };
  552. #ifdef __clang__
  553. #pragma clang diagnostic pop
  554. #endif
  555. #endif // DELEGATE_T1188392813_H
  556. #ifndef OBJECT_T631007953_H
  557. #define OBJECT_T631007953_H
  558. #ifdef __clang__
  559. #pragma clang diagnostic push
  560. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  561. #pragma clang diagnostic ignored "-Wunused-variable"
  562. #endif
  563. // UnityEngine.Object
  564. struct Object_t631007953 : public RuntimeObject
  565. {
  566. public:
  567. // System.IntPtr UnityEngine.Object::m_CachedPtr
  568. intptr_t ___m_CachedPtr_0;
  569. public:
  570. inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_t631007953, ___m_CachedPtr_0)); }
  571. inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
  572. inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
  573. inline void set_m_CachedPtr_0(intptr_t value)
  574. {
  575. ___m_CachedPtr_0 = value;
  576. }
  577. };
  578. struct Object_t631007953_StaticFields
  579. {
  580. public:
  581. // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
  582. int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
  583. public:
  584. inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_t631007953_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
  585. inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
  586. inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
  587. inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
  588. {
  589. ___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
  590. }
  591. };
  592. #ifdef __clang__
  593. #pragma clang diagnostic pop
  594. #endif
  595. // Native definition for P/Invoke marshalling of UnityEngine.Object
  596. struct Object_t631007953_marshaled_pinvoke
  597. {
  598. intptr_t ___m_CachedPtr_0;
  599. };
  600. // Native definition for COM marshalling of UnityEngine.Object
  601. struct Object_t631007953_marshaled_com
  602. {
  603. intptr_t ___m_CachedPtr_0;
  604. };
  605. #endif // OBJECT_T631007953_H
  606. #ifndef PLAYABLEHANDLE_T1095853803_H
  607. #define PLAYABLEHANDLE_T1095853803_H
  608. #ifdef __clang__
  609. #pragma clang diagnostic push
  610. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  611. #pragma clang diagnostic ignored "-Wunused-variable"
  612. #endif
  613. // UnityEngine.Playables.PlayableHandle
  614. struct PlayableHandle_t1095853803
  615. {
  616. public:
  617. // System.IntPtr UnityEngine.Playables.PlayableHandle::m_Handle
  618. intptr_t ___m_Handle_0;
  619. // System.Int32 UnityEngine.Playables.PlayableHandle::m_Version
  620. int32_t ___m_Version_1;
  621. public:
  622. inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableHandle_t1095853803, ___m_Handle_0)); }
  623. inline intptr_t get_m_Handle_0() const { return ___m_Handle_0; }
  624. inline intptr_t* get_address_of_m_Handle_0() { return &___m_Handle_0; }
  625. inline void set_m_Handle_0(intptr_t value)
  626. {
  627. ___m_Handle_0 = value;
  628. }
  629. inline static int32_t get_offset_of_m_Version_1() { return static_cast<int32_t>(offsetof(PlayableHandle_t1095853803, ___m_Version_1)); }
  630. inline int32_t get_m_Version_1() const { return ___m_Version_1; }
  631. inline int32_t* get_address_of_m_Version_1() { return &___m_Version_1; }
  632. inline void set_m_Version_1(int32_t value)
  633. {
  634. ___m_Version_1 = value;
  635. }
  636. };
  637. #ifdef __clang__
  638. #pragma clang diagnostic pop
  639. #endif
  640. #endif // PLAYABLEHANDLE_T1095853803_H
  641. #ifndef VIDEOCLIPPLAYABLE_T2598186649_H
  642. #define VIDEOCLIPPLAYABLE_T2598186649_H
  643. #ifdef __clang__
  644. #pragma clang diagnostic push
  645. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  646. #pragma clang diagnostic ignored "-Wunused-variable"
  647. #endif
  648. // UnityEngine.Experimental.Video.VideoClipPlayable
  649. struct VideoClipPlayable_t2598186649
  650. {
  651. public:
  652. // UnityEngine.Playables.PlayableHandle UnityEngine.Experimental.Video.VideoClipPlayable::m_Handle
  653. PlayableHandle_t1095853803 ___m_Handle_0;
  654. public:
  655. inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(VideoClipPlayable_t2598186649, ___m_Handle_0)); }
  656. inline PlayableHandle_t1095853803 get_m_Handle_0() const { return ___m_Handle_0; }
  657. inline PlayableHandle_t1095853803 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
  658. inline void set_m_Handle_0(PlayableHandle_t1095853803 value)
  659. {
  660. ___m_Handle_0 = value;
  661. }
  662. };
  663. #ifdef __clang__
  664. #pragma clang diagnostic pop
  665. #endif
  666. #endif // VIDEOCLIPPLAYABLE_T2598186649_H
  667. #ifndef COMPONENT_T1923634451_H
  668. #define COMPONENT_T1923634451_H
  669. #ifdef __clang__
  670. #pragma clang diagnostic push
  671. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  672. #pragma clang diagnostic ignored "-Wunused-variable"
  673. #endif
  674. // UnityEngine.Component
  675. struct Component_t1923634451 : public Object_t631007953
  676. {
  677. public:
  678. public:
  679. };
  680. #ifdef __clang__
  681. #pragma clang diagnostic pop
  682. #endif
  683. #endif // COMPONENT_T1923634451_H
  684. #ifndef MULTICASTDELEGATE_T_H
  685. #define MULTICASTDELEGATE_T_H
  686. #ifdef __clang__
  687. #pragma clang diagnostic push
  688. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  689. #pragma clang diagnostic ignored "-Wunused-variable"
  690. #endif
  691. // System.MulticastDelegate
  692. struct MulticastDelegate_t : public Delegate_t1188392813
  693. {
  694. public:
  695. // System.MulticastDelegate System.MulticastDelegate::prev
  696. MulticastDelegate_t * ___prev_9;
  697. // System.MulticastDelegate System.MulticastDelegate::kpm_next
  698. MulticastDelegate_t * ___kpm_next_10;
  699. public:
  700. inline static int32_t get_offset_of_prev_9() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___prev_9)); }
  701. inline MulticastDelegate_t * get_prev_9() const { return ___prev_9; }
  702. inline MulticastDelegate_t ** get_address_of_prev_9() { return &___prev_9; }
  703. inline void set_prev_9(MulticastDelegate_t * value)
  704. {
  705. ___prev_9 = value;
  706. Il2CppCodeGenWriteBarrier((&___prev_9), value);
  707. }
  708. inline static int32_t get_offset_of_kpm_next_10() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___kpm_next_10)); }
  709. inline MulticastDelegate_t * get_kpm_next_10() const { return ___kpm_next_10; }
  710. inline MulticastDelegate_t ** get_address_of_kpm_next_10() { return &___kpm_next_10; }
  711. inline void set_kpm_next_10(MulticastDelegate_t * value)
  712. {
  713. ___kpm_next_10 = value;
  714. Il2CppCodeGenWriteBarrier((&___kpm_next_10), value);
  715. }
  716. };
  717. #ifdef __clang__
  718. #pragma clang diagnostic pop
  719. #endif
  720. #endif // MULTICASTDELEGATE_T_H
  721. #ifndef BEHAVIOUR_T1437897464_H
  722. #define BEHAVIOUR_T1437897464_H
  723. #ifdef __clang__
  724. #pragma clang diagnostic push
  725. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  726. #pragma clang diagnostic ignored "-Wunused-variable"
  727. #endif
  728. // UnityEngine.Behaviour
  729. struct Behaviour_t1437897464 : public Component_t1923634451
  730. {
  731. public:
  732. public:
  733. };
  734. #ifdef __clang__
  735. #pragma clang diagnostic pop
  736. #endif
  737. #endif // BEHAVIOUR_T1437897464_H
  738. #ifndef ASYNCCALLBACK_T3962456242_H
  739. #define ASYNCCALLBACK_T3962456242_H
  740. #ifdef __clang__
  741. #pragma clang diagnostic push
  742. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  743. #pragma clang diagnostic ignored "-Wunused-variable"
  744. #endif
  745. // System.AsyncCallback
  746. struct AsyncCallback_t3962456242 : public MulticastDelegate_t
  747. {
  748. public:
  749. public:
  750. };
  751. #ifdef __clang__
  752. #pragma clang diagnostic pop
  753. #endif
  754. #endif // ASYNCCALLBACK_T3962456242_H
  755. #ifndef EVENTHANDLER_T3436254912_H
  756. #define EVENTHANDLER_T3436254912_H
  757. #ifdef __clang__
  758. #pragma clang diagnostic push
  759. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  760. #pragma clang diagnostic ignored "-Wunused-variable"
  761. #endif
  762. // UnityEngine.Video.VideoPlayer/EventHandler
  763. struct EventHandler_t3436254912 : public MulticastDelegate_t
  764. {
  765. public:
  766. public:
  767. };
  768. #ifdef __clang__
  769. #pragma clang diagnostic pop
  770. #endif
  771. #endif // EVENTHANDLER_T3436254912_H
  772. #ifndef TIMEEVENTHANDLER_T445758600_H
  773. #define TIMEEVENTHANDLER_T445758600_H
  774. #ifdef __clang__
  775. #pragma clang diagnostic push
  776. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  777. #pragma clang diagnostic ignored "-Wunused-variable"
  778. #endif
  779. // UnityEngine.Video.VideoPlayer/TimeEventHandler
  780. struct TimeEventHandler_t445758600 : public MulticastDelegate_t
  781. {
  782. public:
  783. public:
  784. };
  785. #ifdef __clang__
  786. #pragma clang diagnostic pop
  787. #endif
  788. #endif // TIMEEVENTHANDLER_T445758600_H
  789. #ifndef FRAMEREADYEVENTHANDLER_T3848515759_H
  790. #define FRAMEREADYEVENTHANDLER_T3848515759_H
  791. #ifdef __clang__
  792. #pragma clang diagnostic push
  793. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  794. #pragma clang diagnostic ignored "-Wunused-variable"
  795. #endif
  796. // UnityEngine.Video.VideoPlayer/FrameReadyEventHandler
  797. struct FrameReadyEventHandler_t3848515759 : public MulticastDelegate_t
  798. {
  799. public:
  800. public:
  801. };
  802. #ifdef __clang__
  803. #pragma clang diagnostic pop
  804. #endif
  805. #endif // FRAMEREADYEVENTHANDLER_T3848515759_H
  806. #ifndef ERROREVENTHANDLER_T3211687919_H
  807. #define ERROREVENTHANDLER_T3211687919_H
  808. #ifdef __clang__
  809. #pragma clang diagnostic push
  810. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  811. #pragma clang diagnostic ignored "-Wunused-variable"
  812. #endif
  813. // UnityEngine.Video.VideoPlayer/ErrorEventHandler
  814. struct ErrorEventHandler_t3211687919 : public MulticastDelegate_t
  815. {
  816. public:
  817. public:
  818. };
  819. #ifdef __clang__
  820. #pragma clang diagnostic pop
  821. #endif
  822. #endif // ERROREVENTHANDLER_T3211687919_H
  823. #ifndef VIDEOPLAYER_T1683042537_H
  824. #define VIDEOPLAYER_T1683042537_H
  825. #ifdef __clang__
  826. #pragma clang diagnostic push
  827. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  828. #pragma clang diagnostic ignored "-Wunused-variable"
  829. #endif
  830. // UnityEngine.Video.VideoPlayer
  831. struct VideoPlayer_t1683042537 : public Behaviour_t1437897464
  832. {
  833. public:
  834. // UnityEngine.Video.VideoPlayer/EventHandler UnityEngine.Video.VideoPlayer::prepareCompleted
  835. EventHandler_t3436254912 * ___prepareCompleted_2;
  836. // UnityEngine.Video.VideoPlayer/EventHandler UnityEngine.Video.VideoPlayer::loopPointReached
  837. EventHandler_t3436254912 * ___loopPointReached_3;
  838. // UnityEngine.Video.VideoPlayer/EventHandler UnityEngine.Video.VideoPlayer::started
  839. EventHandler_t3436254912 * ___started_4;
  840. // UnityEngine.Video.VideoPlayer/EventHandler UnityEngine.Video.VideoPlayer::frameDropped
  841. EventHandler_t3436254912 * ___frameDropped_5;
  842. // UnityEngine.Video.VideoPlayer/ErrorEventHandler UnityEngine.Video.VideoPlayer::errorReceived
  843. ErrorEventHandler_t3211687919 * ___errorReceived_6;
  844. // UnityEngine.Video.VideoPlayer/EventHandler UnityEngine.Video.VideoPlayer::seekCompleted
  845. EventHandler_t3436254912 * ___seekCompleted_7;
  846. // UnityEngine.Video.VideoPlayer/TimeEventHandler UnityEngine.Video.VideoPlayer::clockResyncOccurred
  847. TimeEventHandler_t445758600 * ___clockResyncOccurred_8;
  848. // UnityEngine.Video.VideoPlayer/FrameReadyEventHandler UnityEngine.Video.VideoPlayer::frameReady
  849. FrameReadyEventHandler_t3848515759 * ___frameReady_9;
  850. public:
  851. inline static int32_t get_offset_of_prepareCompleted_2() { return static_cast<int32_t>(offsetof(VideoPlayer_t1683042537, ___prepareCompleted_2)); }
  852. inline EventHandler_t3436254912 * get_prepareCompleted_2() const { return ___prepareCompleted_2; }
  853. inline EventHandler_t3436254912 ** get_address_of_prepareCompleted_2() { return &___prepareCompleted_2; }
  854. inline void set_prepareCompleted_2(EventHandler_t3436254912 * value)
  855. {
  856. ___prepareCompleted_2 = value;
  857. Il2CppCodeGenWriteBarrier((&___prepareCompleted_2), value);
  858. }
  859. inline static int32_t get_offset_of_loopPointReached_3() { return static_cast<int32_t>(offsetof(VideoPlayer_t1683042537, ___loopPointReached_3)); }
  860. inline EventHandler_t3436254912 * get_loopPointReached_3() const { return ___loopPointReached_3; }
  861. inline EventHandler_t3436254912 ** get_address_of_loopPointReached_3() { return &___loopPointReached_3; }
  862. inline void set_loopPointReached_3(EventHandler_t3436254912 * value)
  863. {
  864. ___loopPointReached_3 = value;
  865. Il2CppCodeGenWriteBarrier((&___loopPointReached_3), value);
  866. }
  867. inline static int32_t get_offset_of_started_4() { return static_cast<int32_t>(offsetof(VideoPlayer_t1683042537, ___started_4)); }
  868. inline EventHandler_t3436254912 * get_started_4() const { return ___started_4; }
  869. inline EventHandler_t3436254912 ** get_address_of_started_4() { return &___started_4; }
  870. inline void set_started_4(EventHandler_t3436254912 * value)
  871. {
  872. ___started_4 = value;
  873. Il2CppCodeGenWriteBarrier((&___started_4), value);
  874. }
  875. inline static int32_t get_offset_of_frameDropped_5() { return static_cast<int32_t>(offsetof(VideoPlayer_t1683042537, ___frameDropped_5)); }
  876. inline EventHandler_t3436254912 * get_frameDropped_5() const { return ___frameDropped_5; }
  877. inline EventHandler_t3436254912 ** get_address_of_frameDropped_5() { return &___frameDropped_5; }
  878. inline void set_frameDropped_5(EventHandler_t3436254912 * value)
  879. {
  880. ___frameDropped_5 = value;
  881. Il2CppCodeGenWriteBarrier((&___frameDropped_5), value);
  882. }
  883. inline static int32_t get_offset_of_errorReceived_6() { return static_cast<int32_t>(offsetof(VideoPlayer_t1683042537, ___errorReceived_6)); }
  884. inline ErrorEventHandler_t3211687919 * get_errorReceived_6() const { return ___errorReceived_6; }
  885. inline ErrorEventHandler_t3211687919 ** get_address_of_errorReceived_6() { return &___errorReceived_6; }
  886. inline void set_errorReceived_6(ErrorEventHandler_t3211687919 * value)
  887. {
  888. ___errorReceived_6 = value;
  889. Il2CppCodeGenWriteBarrier((&___errorReceived_6), value);
  890. }
  891. inline static int32_t get_offset_of_seekCompleted_7() { return static_cast<int32_t>(offsetof(VideoPlayer_t1683042537, ___seekCompleted_7)); }
  892. inline EventHandler_t3436254912 * get_seekCompleted_7() const { return ___seekCompleted_7; }
  893. inline EventHandler_t3436254912 ** get_address_of_seekCompleted_7() { return &___seekCompleted_7; }
  894. inline void set_seekCompleted_7(EventHandler_t3436254912 * value)
  895. {
  896. ___seekCompleted_7 = value;
  897. Il2CppCodeGenWriteBarrier((&___seekCompleted_7), value);
  898. }
  899. inline static int32_t get_offset_of_clockResyncOccurred_8() { return static_cast<int32_t>(offsetof(VideoPlayer_t1683042537, ___clockResyncOccurred_8)); }
  900. inline TimeEventHandler_t445758600 * get_clockResyncOccurred_8() const { return ___clockResyncOccurred_8; }
  901. inline TimeEventHandler_t445758600 ** get_address_of_clockResyncOccurred_8() { return &___clockResyncOccurred_8; }
  902. inline void set_clockResyncOccurred_8(TimeEventHandler_t445758600 * value)
  903. {
  904. ___clockResyncOccurred_8 = value;
  905. Il2CppCodeGenWriteBarrier((&___clockResyncOccurred_8), value);
  906. }
  907. inline static int32_t get_offset_of_frameReady_9() { return static_cast<int32_t>(offsetof(VideoPlayer_t1683042537, ___frameReady_9)); }
  908. inline FrameReadyEventHandler_t3848515759 * get_frameReady_9() const { return ___frameReady_9; }
  909. inline FrameReadyEventHandler_t3848515759 ** get_address_of_frameReady_9() { return &___frameReady_9; }
  910. inline void set_frameReady_9(FrameReadyEventHandler_t3848515759 * value)
  911. {
  912. ___frameReady_9 = value;
  913. Il2CppCodeGenWriteBarrier((&___frameReady_9), value);
  914. }
  915. };
  916. #ifdef __clang__
  917. #pragma clang diagnostic pop
  918. #endif
  919. #endif // VIDEOPLAYER_T1683042537_H
  920. // UnityEngine.Playables.PlayableHandle UnityEngine.Experimental.Video.VideoClipPlayable::GetHandle()
  921. extern "C" IL2CPP_METHOD_ATTR PlayableHandle_t1095853803 VideoClipPlayable_GetHandle_m2166158330 (VideoClipPlayable_t2598186649 * __this, const RuntimeMethod* method);
  922. // System.Boolean UnityEngine.Playables.PlayableHandle::op_Equality(UnityEngine.Playables.PlayableHandle,UnityEngine.Playables.PlayableHandle)
  923. extern "C" IL2CPP_METHOD_ATTR bool PlayableHandle_op_Equality_m3344837515 (RuntimeObject * __this /* static, unused */, PlayableHandle_t1095853803 p0, PlayableHandle_t1095853803 p1, const RuntimeMethod* method);
  924. // System.Boolean UnityEngine.Experimental.Video.VideoClipPlayable::Equals(UnityEngine.Experimental.Video.VideoClipPlayable)
  925. extern "C" IL2CPP_METHOD_ATTR bool VideoClipPlayable_Equals_m2063112376 (VideoClipPlayable_t2598186649 * __this, VideoClipPlayable_t2598186649 ___other0, const RuntimeMethod* method);
  926. // System.Void UnityEngine.Video.VideoPlayer/EventHandler::Invoke(UnityEngine.Video.VideoPlayer)
  927. extern "C" IL2CPP_METHOD_ATTR void EventHandler_Invoke_m264911794 (EventHandler_t3436254912 * __this, VideoPlayer_t1683042537 * ___source0, const RuntimeMethod* method);
  928. // System.Void UnityEngine.Video.VideoPlayer/FrameReadyEventHandler::Invoke(UnityEngine.Video.VideoPlayer,System.Int64)
  929. extern "C" IL2CPP_METHOD_ATTR void FrameReadyEventHandler_Invoke_m4235069853 (FrameReadyEventHandler_t3848515759 * __this, VideoPlayer_t1683042537 * ___source0, int64_t ___frameIdx1, const RuntimeMethod* method);
  930. // System.Void UnityEngine.Video.VideoPlayer/ErrorEventHandler::Invoke(UnityEngine.Video.VideoPlayer,System.String)
  931. extern "C" IL2CPP_METHOD_ATTR void ErrorEventHandler_Invoke_m2692795411 (ErrorEventHandler_t3211687919 * __this, VideoPlayer_t1683042537 * ___source0, String_t* ___message1, const RuntimeMethod* method);
  932. // System.Void UnityEngine.Video.VideoPlayer/TimeEventHandler::Invoke(UnityEngine.Video.VideoPlayer,System.Double)
  933. extern "C" IL2CPP_METHOD_ATTR void TimeEventHandler_Invoke_m2893540100 (TimeEventHandler_t445758600 * __this, VideoPlayer_t1683042537 * ___source0, double ___seconds1, const RuntimeMethod* method);
  934. #ifdef __clang__
  935. #pragma clang diagnostic push
  936. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  937. #pragma clang diagnostic ignored "-Wunused-variable"
  938. #endif
  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. // UnityEngine.Playables.PlayableHandle UnityEngine.Experimental.Video.VideoClipPlayable::GetHandle()
  948. extern "C" IL2CPP_METHOD_ATTR PlayableHandle_t1095853803 VideoClipPlayable_GetHandle_m2166158330 (VideoClipPlayable_t2598186649 * __this, const RuntimeMethod* method)
  949. {
  950. PlayableHandle_t1095853803 V_0;
  951. memset(&V_0, 0, sizeof(V_0));
  952. {
  953. PlayableHandle_t1095853803 L_0 = __this->get_m_Handle_0();
  954. V_0 = L_0;
  955. goto IL_000d;
  956. }
  957. IL_000d:
  958. {
  959. PlayableHandle_t1095853803 L_1 = V_0;
  960. return L_1;
  961. }
  962. }
  963. extern "C" PlayableHandle_t1095853803 VideoClipPlayable_GetHandle_m2166158330_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  964. {
  965. VideoClipPlayable_t2598186649 * _thisAdjusted = reinterpret_cast<VideoClipPlayable_t2598186649 *>(__this + 1);
  966. return VideoClipPlayable_GetHandle_m2166158330(_thisAdjusted, method);
  967. }
  968. // System.Boolean UnityEngine.Experimental.Video.VideoClipPlayable::Equals(UnityEngine.Experimental.Video.VideoClipPlayable)
  969. extern "C" IL2CPP_METHOD_ATTR bool VideoClipPlayable_Equals_m2063112376 (VideoClipPlayable_t2598186649 * __this, VideoClipPlayable_t2598186649 ___other0, const RuntimeMethod* method)
  970. {
  971. bool V_0 = false;
  972. {
  973. PlayableHandle_t1095853803 L_0 = VideoClipPlayable_GetHandle_m2166158330(__this, /*hidden argument*/NULL);
  974. PlayableHandle_t1095853803 L_1 = VideoClipPlayable_GetHandle_m2166158330((&___other0), /*hidden argument*/NULL);
  975. bool L_2 = PlayableHandle_op_Equality_m3344837515(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
  976. V_0 = L_2;
  977. goto IL_0019;
  978. }
  979. IL_0019:
  980. {
  981. bool L_3 = V_0;
  982. return L_3;
  983. }
  984. }
  985. extern "C" bool VideoClipPlayable_Equals_m2063112376_AdjustorThunk (RuntimeObject * __this, VideoClipPlayable_t2598186649 ___other0, const RuntimeMethod* method)
  986. {
  987. VideoClipPlayable_t2598186649 * _thisAdjusted = reinterpret_cast<VideoClipPlayable_t2598186649 *>(__this + 1);
  988. return VideoClipPlayable_Equals_m2063112376(_thisAdjusted, ___other0, method);
  989. }
  990. #ifdef __clang__
  991. #pragma clang diagnostic pop
  992. #endif
  993. #ifdef __clang__
  994. #pragma clang diagnostic push
  995. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  996. #pragma clang diagnostic ignored "-Wunused-variable"
  997. #endif
  998. // System.Void UnityEngine.Video.VideoPlayer::InvokePrepareCompletedCallback_Internal(UnityEngine.Video.VideoPlayer)
  999. extern "C" IL2CPP_METHOD_ATTR void VideoPlayer_InvokePrepareCompletedCallback_Internal_m891859246 (RuntimeObject * __this /* static, unused */, VideoPlayer_t1683042537 * ___source0, const RuntimeMethod* method)
  1000. {
  1001. {
  1002. VideoPlayer_t1683042537 * L_0 = ___source0;
  1003. NullCheck(L_0);
  1004. EventHandler_t3436254912 * L_1 = L_0->get_prepareCompleted_2();
  1005. if (!L_1)
  1006. {
  1007. goto IL_0018;
  1008. }
  1009. }
  1010. {
  1011. VideoPlayer_t1683042537 * L_2 = ___source0;
  1012. NullCheck(L_2);
  1013. EventHandler_t3436254912 * L_3 = L_2->get_prepareCompleted_2();
  1014. VideoPlayer_t1683042537 * L_4 = ___source0;
  1015. NullCheck(L_3);
  1016. EventHandler_Invoke_m264911794(L_3, L_4, /*hidden argument*/NULL);
  1017. }
  1018. IL_0018:
  1019. {
  1020. return;
  1021. }
  1022. }
  1023. // System.Void UnityEngine.Video.VideoPlayer::InvokeFrameReadyCallback_Internal(UnityEngine.Video.VideoPlayer,System.Int64)
  1024. extern "C" IL2CPP_METHOD_ATTR void VideoPlayer_InvokeFrameReadyCallback_Internal_m795190166 (RuntimeObject * __this /* static, unused */, VideoPlayer_t1683042537 * ___source0, int64_t ___frameIdx1, const RuntimeMethod* method)
  1025. {
  1026. {
  1027. VideoPlayer_t1683042537 * L_0 = ___source0;
  1028. NullCheck(L_0);
  1029. FrameReadyEventHandler_t3848515759 * L_1 = L_0->get_frameReady_9();
  1030. if (!L_1)
  1031. {
  1032. goto IL_0019;
  1033. }
  1034. }
  1035. {
  1036. VideoPlayer_t1683042537 * L_2 = ___source0;
  1037. NullCheck(L_2);
  1038. FrameReadyEventHandler_t3848515759 * L_3 = L_2->get_frameReady_9();
  1039. VideoPlayer_t1683042537 * L_4 = ___source0;
  1040. int64_t L_5 = ___frameIdx1;
  1041. NullCheck(L_3);
  1042. FrameReadyEventHandler_Invoke_m4235069853(L_3, L_4, L_5, /*hidden argument*/NULL);
  1043. }
  1044. IL_0019:
  1045. {
  1046. return;
  1047. }
  1048. }
  1049. // System.Void UnityEngine.Video.VideoPlayer::InvokeLoopPointReachedCallback_Internal(UnityEngine.Video.VideoPlayer)
  1050. extern "C" IL2CPP_METHOD_ATTR void VideoPlayer_InvokeLoopPointReachedCallback_Internal_m3470582081 (RuntimeObject * __this /* static, unused */, VideoPlayer_t1683042537 * ___source0, const RuntimeMethod* method)
  1051. {
  1052. {
  1053. VideoPlayer_t1683042537 * L_0 = ___source0;
  1054. NullCheck(L_0);
  1055. EventHandler_t3436254912 * L_1 = L_0->get_loopPointReached_3();
  1056. if (!L_1)
  1057. {
  1058. goto IL_0018;
  1059. }
  1060. }
  1061. {
  1062. VideoPlayer_t1683042537 * L_2 = ___source0;
  1063. NullCheck(L_2);
  1064. EventHandler_t3436254912 * L_3 = L_2->get_loopPointReached_3();
  1065. VideoPlayer_t1683042537 * L_4 = ___source0;
  1066. NullCheck(L_3);
  1067. EventHandler_Invoke_m264911794(L_3, L_4, /*hidden argument*/NULL);
  1068. }
  1069. IL_0018:
  1070. {
  1071. return;
  1072. }
  1073. }
  1074. // System.Void UnityEngine.Video.VideoPlayer::InvokeStartedCallback_Internal(UnityEngine.Video.VideoPlayer)
  1075. extern "C" IL2CPP_METHOD_ATTR void VideoPlayer_InvokeStartedCallback_Internal_m3936194096 (RuntimeObject * __this /* static, unused */, VideoPlayer_t1683042537 * ___source0, const RuntimeMethod* method)
  1076. {
  1077. {
  1078. VideoPlayer_t1683042537 * L_0 = ___source0;
  1079. NullCheck(L_0);
  1080. EventHandler_t3436254912 * L_1 = L_0->get_started_4();
  1081. if (!L_1)
  1082. {
  1083. goto IL_0018;
  1084. }
  1085. }
  1086. {
  1087. VideoPlayer_t1683042537 * L_2 = ___source0;
  1088. NullCheck(L_2);
  1089. EventHandler_t3436254912 * L_3 = L_2->get_started_4();
  1090. VideoPlayer_t1683042537 * L_4 = ___source0;
  1091. NullCheck(L_3);
  1092. EventHandler_Invoke_m264911794(L_3, L_4, /*hidden argument*/NULL);
  1093. }
  1094. IL_0018:
  1095. {
  1096. return;
  1097. }
  1098. }
  1099. // System.Void UnityEngine.Video.VideoPlayer::InvokeFrameDroppedCallback_Internal(UnityEngine.Video.VideoPlayer)
  1100. extern "C" IL2CPP_METHOD_ATTR void VideoPlayer_InvokeFrameDroppedCallback_Internal_m984464440 (RuntimeObject * __this /* static, unused */, VideoPlayer_t1683042537 * ___source0, const RuntimeMethod* method)
  1101. {
  1102. {
  1103. VideoPlayer_t1683042537 * L_0 = ___source0;
  1104. NullCheck(L_0);
  1105. EventHandler_t3436254912 * L_1 = L_0->get_frameDropped_5();
  1106. if (!L_1)
  1107. {
  1108. goto IL_0018;
  1109. }
  1110. }
  1111. {
  1112. VideoPlayer_t1683042537 * L_2 = ___source0;
  1113. NullCheck(L_2);
  1114. EventHandler_t3436254912 * L_3 = L_2->get_frameDropped_5();
  1115. VideoPlayer_t1683042537 * L_4 = ___source0;
  1116. NullCheck(L_3);
  1117. EventHandler_Invoke_m264911794(L_3, L_4, /*hidden argument*/NULL);
  1118. }
  1119. IL_0018:
  1120. {
  1121. return;
  1122. }
  1123. }
  1124. // System.Void UnityEngine.Video.VideoPlayer::InvokeErrorReceivedCallback_Internal(UnityEngine.Video.VideoPlayer,System.String)
  1125. extern "C" IL2CPP_METHOD_ATTR void VideoPlayer_InvokeErrorReceivedCallback_Internal_m3291790132 (RuntimeObject * __this /* static, unused */, VideoPlayer_t1683042537 * ___source0, String_t* ___errorStr1, const RuntimeMethod* method)
  1126. {
  1127. {
  1128. VideoPlayer_t1683042537 * L_0 = ___source0;
  1129. NullCheck(L_0);
  1130. ErrorEventHandler_t3211687919 * L_1 = L_0->get_errorReceived_6();
  1131. if (!L_1)
  1132. {
  1133. goto IL_0019;
  1134. }
  1135. }
  1136. {
  1137. VideoPlayer_t1683042537 * L_2 = ___source0;
  1138. NullCheck(L_2);
  1139. ErrorEventHandler_t3211687919 * L_3 = L_2->get_errorReceived_6();
  1140. VideoPlayer_t1683042537 * L_4 = ___source0;
  1141. String_t* L_5 = ___errorStr1;
  1142. NullCheck(L_3);
  1143. ErrorEventHandler_Invoke_m2692795411(L_3, L_4, L_5, /*hidden argument*/NULL);
  1144. }
  1145. IL_0019:
  1146. {
  1147. return;
  1148. }
  1149. }
  1150. // System.Void UnityEngine.Video.VideoPlayer::InvokeSeekCompletedCallback_Internal(UnityEngine.Video.VideoPlayer)
  1151. extern "C" IL2CPP_METHOD_ATTR void VideoPlayer_InvokeSeekCompletedCallback_Internal_m716586074 (RuntimeObject * __this /* static, unused */, VideoPlayer_t1683042537 * ___source0, const RuntimeMethod* method)
  1152. {
  1153. {
  1154. VideoPlayer_t1683042537 * L_0 = ___source0;
  1155. NullCheck(L_0);
  1156. EventHandler_t3436254912 * L_1 = L_0->get_seekCompleted_7();
  1157. if (!L_1)
  1158. {
  1159. goto IL_0018;
  1160. }
  1161. }
  1162. {
  1163. VideoPlayer_t1683042537 * L_2 = ___source0;
  1164. NullCheck(L_2);
  1165. EventHandler_t3436254912 * L_3 = L_2->get_seekCompleted_7();
  1166. VideoPlayer_t1683042537 * L_4 = ___source0;
  1167. NullCheck(L_3);
  1168. EventHandler_Invoke_m264911794(L_3, L_4, /*hidden argument*/NULL);
  1169. }
  1170. IL_0018:
  1171. {
  1172. return;
  1173. }
  1174. }
  1175. // System.Void UnityEngine.Video.VideoPlayer::InvokeClockResyncOccurredCallback_Internal(UnityEngine.Video.VideoPlayer,System.Double)
  1176. extern "C" IL2CPP_METHOD_ATTR void VideoPlayer_InvokeClockResyncOccurredCallback_Internal_m1660582043 (RuntimeObject * __this /* static, unused */, VideoPlayer_t1683042537 * ___source0, double ___seconds1, const RuntimeMethod* method)
  1177. {
  1178. {
  1179. VideoPlayer_t1683042537 * L_0 = ___source0;
  1180. NullCheck(L_0);
  1181. TimeEventHandler_t445758600 * L_1 = L_0->get_clockResyncOccurred_8();
  1182. if (!L_1)
  1183. {
  1184. goto IL_0019;
  1185. }
  1186. }
  1187. {
  1188. VideoPlayer_t1683042537 * L_2 = ___source0;
  1189. NullCheck(L_2);
  1190. TimeEventHandler_t445758600 * L_3 = L_2->get_clockResyncOccurred_8();
  1191. VideoPlayer_t1683042537 * L_4 = ___source0;
  1192. double L_5 = ___seconds1;
  1193. NullCheck(L_3);
  1194. TimeEventHandler_Invoke_m2893540100(L_3, L_4, L_5, /*hidden argument*/NULL);
  1195. }
  1196. IL_0019:
  1197. {
  1198. return;
  1199. }
  1200. }
  1201. #ifdef __clang__
  1202. #pragma clang diagnostic pop
  1203. #endif
  1204. #ifdef __clang__
  1205. #pragma clang diagnostic push
  1206. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1207. #pragma clang diagnostic ignored "-Wunused-variable"
  1208. #endif
  1209. // System.Void UnityEngine.Video.VideoPlayer/ErrorEventHandler::.ctor(System.Object,System.IntPtr)
  1210. extern "C" IL2CPP_METHOD_ATTR void ErrorEventHandler__ctor_m1187192887 (ErrorEventHandler_t3211687919 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
  1211. {
  1212. __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
  1213. __this->set_method_3(___method1);
  1214. __this->set_m_target_2(___object0);
  1215. }
  1216. // System.Void UnityEngine.Video.VideoPlayer/ErrorEventHandler::Invoke(UnityEngine.Video.VideoPlayer,System.String)
  1217. extern "C" IL2CPP_METHOD_ATTR void ErrorEventHandler_Invoke_m2692795411 (ErrorEventHandler_t3211687919 * __this, VideoPlayer_t1683042537 * ___source0, String_t* ___message1, const RuntimeMethod* method)
  1218. {
  1219. if(__this->get_prev_9() != NULL)
  1220. {
  1221. ErrorEventHandler_Invoke_m2692795411((ErrorEventHandler_t3211687919 *)__this->get_prev_9(), ___source0, ___message1, method);
  1222. }
  1223. Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
  1224. RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
  1225. RuntimeObject* targetThis = __this->get_m_target_2();
  1226. il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
  1227. bool ___methodIsStatic = MethodIsStatic(targetMethod);
  1228. if (___methodIsStatic)
  1229. {
  1230. if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
  1231. {
  1232. // open
  1233. {
  1234. typedef void (*FunctionPointerType) (RuntimeObject *, VideoPlayer_t1683042537 *, String_t*, const RuntimeMethod*);
  1235. ((FunctionPointerType)targetMethodPointer)(NULL, ___source0, ___message1, targetMethod);
  1236. }
  1237. }
  1238. else
  1239. {
  1240. // closed
  1241. {
  1242. typedef void (*FunctionPointerType) (RuntimeObject *, void*, VideoPlayer_t1683042537 *, String_t*, const RuntimeMethod*);
  1243. ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___source0, ___message1, targetMethod);
  1244. }
  1245. }
  1246. }
  1247. else
  1248. {
  1249. if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
  1250. {
  1251. // closed
  1252. if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
  1253. {
  1254. if (il2cpp_codegen_method_is_generic_instance(targetMethod))
  1255. {
  1256. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  1257. GenericInterfaceActionInvoker2< VideoPlayer_t1683042537 *, String_t* >::Invoke(targetMethod, targetThis, ___source0, ___message1);
  1258. else
  1259. GenericVirtActionInvoker2< VideoPlayer_t1683042537 *, String_t* >::Invoke(targetMethod, targetThis, ___source0, ___message1);
  1260. }
  1261. else
  1262. {
  1263. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  1264. InterfaceActionInvoker2< VideoPlayer_t1683042537 *, String_t* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___source0, ___message1);
  1265. else
  1266. VirtActionInvoker2< VideoPlayer_t1683042537 *, String_t* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___source0, ___message1);
  1267. }
  1268. }
  1269. else
  1270. {
  1271. typedef void (*FunctionPointerType) (void*, VideoPlayer_t1683042537 *, String_t*, const RuntimeMethod*);
  1272. ((FunctionPointerType)targetMethodPointer)(targetThis, ___source0, ___message1, targetMethod);
  1273. }
  1274. }
  1275. else
  1276. {
  1277. // open
  1278. if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
  1279. {
  1280. if (il2cpp_codegen_method_is_generic_instance(targetMethod))
  1281. {
  1282. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  1283. GenericInterfaceActionInvoker1< String_t* >::Invoke(targetMethod, ___source0, ___message1);
  1284. else
  1285. GenericVirtActionInvoker1< String_t* >::Invoke(targetMethod, ___source0, ___message1);
  1286. }
  1287. else
  1288. {
  1289. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  1290. InterfaceActionInvoker1< String_t* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___source0, ___message1);
  1291. else
  1292. VirtActionInvoker1< String_t* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___source0, ___message1);
  1293. }
  1294. }
  1295. else
  1296. {
  1297. typedef void (*FunctionPointerType) (VideoPlayer_t1683042537 *, String_t*, const RuntimeMethod*);
  1298. ((FunctionPointerType)targetMethodPointer)(___source0, ___message1, targetMethod);
  1299. }
  1300. }
  1301. }
  1302. }
  1303. // System.IAsyncResult UnityEngine.Video.VideoPlayer/ErrorEventHandler::BeginInvoke(UnityEngine.Video.VideoPlayer,System.String,System.AsyncCallback,System.Object)
  1304. extern "C" IL2CPP_METHOD_ATTR RuntimeObject* ErrorEventHandler_BeginInvoke_m2704839404 (ErrorEventHandler_t3211687919 * __this, VideoPlayer_t1683042537 * ___source0, String_t* ___message1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
  1305. {
  1306. void *__d_args[3] = {0};
  1307. __d_args[0] = ___source0;
  1308. __d_args[1] = ___message1;
  1309. return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
  1310. }
  1311. // System.Void UnityEngine.Video.VideoPlayer/ErrorEventHandler::EndInvoke(System.IAsyncResult)
  1312. extern "C" IL2CPP_METHOD_ATTR void ErrorEventHandler_EndInvoke_m2574503704 (ErrorEventHandler_t3211687919 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
  1313. {
  1314. il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
  1315. }
  1316. #ifdef __clang__
  1317. #pragma clang diagnostic pop
  1318. #endif
  1319. #ifdef __clang__
  1320. #pragma clang diagnostic push
  1321. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1322. #pragma clang diagnostic ignored "-Wunused-variable"
  1323. #endif
  1324. // System.Void UnityEngine.Video.VideoPlayer/EventHandler::.ctor(System.Object,System.IntPtr)
  1325. extern "C" IL2CPP_METHOD_ATTR void EventHandler__ctor_m838423014 (EventHandler_t3436254912 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
  1326. {
  1327. __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
  1328. __this->set_method_3(___method1);
  1329. __this->set_m_target_2(___object0);
  1330. }
  1331. // System.Void UnityEngine.Video.VideoPlayer/EventHandler::Invoke(UnityEngine.Video.VideoPlayer)
  1332. extern "C" IL2CPP_METHOD_ATTR void EventHandler_Invoke_m264911794 (EventHandler_t3436254912 * __this, VideoPlayer_t1683042537 * ___source0, const RuntimeMethod* method)
  1333. {
  1334. if(__this->get_prev_9() != NULL)
  1335. {
  1336. EventHandler_Invoke_m264911794((EventHandler_t3436254912 *)__this->get_prev_9(), ___source0, method);
  1337. }
  1338. Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
  1339. RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
  1340. RuntimeObject* targetThis = __this->get_m_target_2();
  1341. il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
  1342. bool ___methodIsStatic = MethodIsStatic(targetMethod);
  1343. if (___methodIsStatic)
  1344. {
  1345. if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
  1346. {
  1347. // open
  1348. {
  1349. typedef void (*FunctionPointerType) (RuntimeObject *, VideoPlayer_t1683042537 *, const RuntimeMethod*);
  1350. ((FunctionPointerType)targetMethodPointer)(NULL, ___source0, targetMethod);
  1351. }
  1352. }
  1353. else
  1354. {
  1355. // closed
  1356. {
  1357. typedef void (*FunctionPointerType) (RuntimeObject *, void*, VideoPlayer_t1683042537 *, const RuntimeMethod*);
  1358. ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___source0, targetMethod);
  1359. }
  1360. }
  1361. }
  1362. else
  1363. {
  1364. if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
  1365. {
  1366. // closed
  1367. if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
  1368. {
  1369. if (il2cpp_codegen_method_is_generic_instance(targetMethod))
  1370. {
  1371. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  1372. GenericInterfaceActionInvoker1< VideoPlayer_t1683042537 * >::Invoke(targetMethod, targetThis, ___source0);
  1373. else
  1374. GenericVirtActionInvoker1< VideoPlayer_t1683042537 * >::Invoke(targetMethod, targetThis, ___source0);
  1375. }
  1376. else
  1377. {
  1378. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  1379. InterfaceActionInvoker1< VideoPlayer_t1683042537 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___source0);
  1380. else
  1381. VirtActionInvoker1< VideoPlayer_t1683042537 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___source0);
  1382. }
  1383. }
  1384. else
  1385. {
  1386. typedef void (*FunctionPointerType) (void*, VideoPlayer_t1683042537 *, const RuntimeMethod*);
  1387. ((FunctionPointerType)targetMethodPointer)(targetThis, ___source0, targetMethod);
  1388. }
  1389. }
  1390. else
  1391. {
  1392. // open
  1393. if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
  1394. {
  1395. if (il2cpp_codegen_method_is_generic_instance(targetMethod))
  1396. {
  1397. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  1398. GenericInterfaceActionInvoker0::Invoke(targetMethod, ___source0);
  1399. else
  1400. GenericVirtActionInvoker0::Invoke(targetMethod, ___source0);
  1401. }
  1402. else
  1403. {
  1404. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  1405. InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___source0);
  1406. else
  1407. VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___source0);
  1408. }
  1409. }
  1410. else
  1411. {
  1412. typedef void (*FunctionPointerType) (VideoPlayer_t1683042537 *, const RuntimeMethod*);
  1413. ((FunctionPointerType)targetMethodPointer)(___source0, targetMethod);
  1414. }
  1415. }
  1416. }
  1417. }
  1418. // System.IAsyncResult UnityEngine.Video.VideoPlayer/EventHandler::BeginInvoke(UnityEngine.Video.VideoPlayer,System.AsyncCallback,System.Object)
  1419. extern "C" IL2CPP_METHOD_ATTR RuntimeObject* EventHandler_BeginInvoke_m2714081538 (EventHandler_t3436254912 * __this, VideoPlayer_t1683042537 * ___source0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
  1420. {
  1421. void *__d_args[2] = {0};
  1422. __d_args[0] = ___source0;
  1423. return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
  1424. }
  1425. // System.Void UnityEngine.Video.VideoPlayer/EventHandler::EndInvoke(System.IAsyncResult)
  1426. extern "C" IL2CPP_METHOD_ATTR void EventHandler_EndInvoke_m1665908986 (EventHandler_t3436254912 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
  1427. {
  1428. il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
  1429. }
  1430. #ifdef __clang__
  1431. #pragma clang diagnostic pop
  1432. #endif
  1433. #ifdef __clang__
  1434. #pragma clang diagnostic push
  1435. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1436. #pragma clang diagnostic ignored "-Wunused-variable"
  1437. #endif
  1438. // System.Void UnityEngine.Video.VideoPlayer/FrameReadyEventHandler::.ctor(System.Object,System.IntPtr)
  1439. extern "C" IL2CPP_METHOD_ATTR void FrameReadyEventHandler__ctor_m4117293896 (FrameReadyEventHandler_t3848515759 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
  1440. {
  1441. __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
  1442. __this->set_method_3(___method1);
  1443. __this->set_m_target_2(___object0);
  1444. }
  1445. // System.Void UnityEngine.Video.VideoPlayer/FrameReadyEventHandler::Invoke(UnityEngine.Video.VideoPlayer,System.Int64)
  1446. extern "C" IL2CPP_METHOD_ATTR void FrameReadyEventHandler_Invoke_m4235069853 (FrameReadyEventHandler_t3848515759 * __this, VideoPlayer_t1683042537 * ___source0, int64_t ___frameIdx1, const RuntimeMethod* method)
  1447. {
  1448. if(__this->get_prev_9() != NULL)
  1449. {
  1450. FrameReadyEventHandler_Invoke_m4235069853((FrameReadyEventHandler_t3848515759 *)__this->get_prev_9(), ___source0, ___frameIdx1, method);
  1451. }
  1452. Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
  1453. RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
  1454. RuntimeObject* targetThis = __this->get_m_target_2();
  1455. il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
  1456. bool ___methodIsStatic = MethodIsStatic(targetMethod);
  1457. if (___methodIsStatic)
  1458. {
  1459. if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
  1460. {
  1461. // open
  1462. {
  1463. typedef void (*FunctionPointerType) (RuntimeObject *, VideoPlayer_t1683042537 *, int64_t, const RuntimeMethod*);
  1464. ((FunctionPointerType)targetMethodPointer)(NULL, ___source0, ___frameIdx1, targetMethod);
  1465. }
  1466. }
  1467. else
  1468. {
  1469. // closed
  1470. {
  1471. typedef void (*FunctionPointerType) (RuntimeObject *, void*, VideoPlayer_t1683042537 *, int64_t, const RuntimeMethod*);
  1472. ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___source0, ___frameIdx1, targetMethod);
  1473. }
  1474. }
  1475. }
  1476. else
  1477. {
  1478. if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
  1479. {
  1480. // closed
  1481. if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
  1482. {
  1483. if (il2cpp_codegen_method_is_generic_instance(targetMethod))
  1484. {
  1485. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  1486. GenericInterfaceActionInvoker2< VideoPlayer_t1683042537 *, int64_t >::Invoke(targetMethod, targetThis, ___source0, ___frameIdx1);
  1487. else
  1488. GenericVirtActionInvoker2< VideoPlayer_t1683042537 *, int64_t >::Invoke(targetMethod, targetThis, ___source0, ___frameIdx1);
  1489. }
  1490. else
  1491. {
  1492. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  1493. InterfaceActionInvoker2< VideoPlayer_t1683042537 *, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___source0, ___frameIdx1);
  1494. else
  1495. VirtActionInvoker2< VideoPlayer_t1683042537 *, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___source0, ___frameIdx1);
  1496. }
  1497. }
  1498. else
  1499. {
  1500. typedef void (*FunctionPointerType) (void*, VideoPlayer_t1683042537 *, int64_t, const RuntimeMethod*);
  1501. ((FunctionPointerType)targetMethodPointer)(targetThis, ___source0, ___frameIdx1, targetMethod);
  1502. }
  1503. }
  1504. else
  1505. {
  1506. // open
  1507. if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
  1508. {
  1509. if (il2cpp_codegen_method_is_generic_instance(targetMethod))
  1510. {
  1511. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  1512. GenericInterfaceActionInvoker1< int64_t >::Invoke(targetMethod, ___source0, ___frameIdx1);
  1513. else
  1514. GenericVirtActionInvoker1< int64_t >::Invoke(targetMethod, ___source0, ___frameIdx1);
  1515. }
  1516. else
  1517. {
  1518. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  1519. InterfaceActionInvoker1< int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___source0, ___frameIdx1);
  1520. else
  1521. VirtActionInvoker1< int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___source0, ___frameIdx1);
  1522. }
  1523. }
  1524. else
  1525. {
  1526. typedef void (*FunctionPointerType) (VideoPlayer_t1683042537 *, int64_t, const RuntimeMethod*);
  1527. ((FunctionPointerType)targetMethodPointer)(___source0, ___frameIdx1, targetMethod);
  1528. }
  1529. }
  1530. }
  1531. }
  1532. // System.IAsyncResult UnityEngine.Video.VideoPlayer/FrameReadyEventHandler::BeginInvoke(UnityEngine.Video.VideoPlayer,System.Int64,System.AsyncCallback,System.Object)
  1533. extern "C" IL2CPP_METHOD_ATTR RuntimeObject* FrameReadyEventHandler_BeginInvoke_m3423367811 (FrameReadyEventHandler_t3848515759 * __this, VideoPlayer_t1683042537 * ___source0, int64_t ___frameIdx1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
  1534. {
  1535. static bool s_Il2CppMethodInitialized;
  1536. if (!s_Il2CppMethodInitialized)
  1537. {
  1538. il2cpp_codegen_initialize_method (FrameReadyEventHandler_BeginInvoke_m3423367811_MetadataUsageId);
  1539. s_Il2CppMethodInitialized = true;
  1540. }
  1541. void *__d_args[3] = {0};
  1542. __d_args[0] = ___source0;
  1543. __d_args[1] = Box(Int64_t3736567304_il2cpp_TypeInfo_var, &___frameIdx1);
  1544. return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
  1545. }
  1546. // System.Void UnityEngine.Video.VideoPlayer/FrameReadyEventHandler::EndInvoke(System.IAsyncResult)
  1547. extern "C" IL2CPP_METHOD_ATTR void FrameReadyEventHandler_EndInvoke_m2202588656 (FrameReadyEventHandler_t3848515759 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
  1548. {
  1549. il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
  1550. }
  1551. #ifdef __clang__
  1552. #pragma clang diagnostic pop
  1553. #endif
  1554. #ifdef __clang__
  1555. #pragma clang diagnostic push
  1556. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1557. #pragma clang diagnostic ignored "-Wunused-variable"
  1558. #endif
  1559. // System.Void UnityEngine.Video.VideoPlayer/TimeEventHandler::.ctor(System.Object,System.IntPtr)
  1560. extern "C" IL2CPP_METHOD_ATTR void TimeEventHandler__ctor_m25310196 (TimeEventHandler_t445758600 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
  1561. {
  1562. __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
  1563. __this->set_method_3(___method1);
  1564. __this->set_m_target_2(___object0);
  1565. }
  1566. // System.Void UnityEngine.Video.VideoPlayer/TimeEventHandler::Invoke(UnityEngine.Video.VideoPlayer,System.Double)
  1567. extern "C" IL2CPP_METHOD_ATTR void TimeEventHandler_Invoke_m2893540100 (TimeEventHandler_t445758600 * __this, VideoPlayer_t1683042537 * ___source0, double ___seconds1, const RuntimeMethod* method)
  1568. {
  1569. if(__this->get_prev_9() != NULL)
  1570. {
  1571. TimeEventHandler_Invoke_m2893540100((TimeEventHandler_t445758600 *)__this->get_prev_9(), ___source0, ___seconds1, method);
  1572. }
  1573. Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
  1574. RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
  1575. RuntimeObject* targetThis = __this->get_m_target_2();
  1576. il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
  1577. bool ___methodIsStatic = MethodIsStatic(targetMethod);
  1578. if (___methodIsStatic)
  1579. {
  1580. if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
  1581. {
  1582. // open
  1583. {
  1584. typedef void (*FunctionPointerType) (RuntimeObject *, VideoPlayer_t1683042537 *, double, const RuntimeMethod*);
  1585. ((FunctionPointerType)targetMethodPointer)(NULL, ___source0, ___seconds1, targetMethod);
  1586. }
  1587. }
  1588. else
  1589. {
  1590. // closed
  1591. {
  1592. typedef void (*FunctionPointerType) (RuntimeObject *, void*, VideoPlayer_t1683042537 *, double, const RuntimeMethod*);
  1593. ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___source0, ___seconds1, targetMethod);
  1594. }
  1595. }
  1596. }
  1597. else
  1598. {
  1599. if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
  1600. {
  1601. // closed
  1602. if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
  1603. {
  1604. if (il2cpp_codegen_method_is_generic_instance(targetMethod))
  1605. {
  1606. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  1607. GenericInterfaceActionInvoker2< VideoPlayer_t1683042537 *, double >::Invoke(targetMethod, targetThis, ___source0, ___seconds1);
  1608. else
  1609. GenericVirtActionInvoker2< VideoPlayer_t1683042537 *, double >::Invoke(targetMethod, targetThis, ___source0, ___seconds1);
  1610. }
  1611. else
  1612. {
  1613. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  1614. InterfaceActionInvoker2< VideoPlayer_t1683042537 *, double >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___source0, ___seconds1);
  1615. else
  1616. VirtActionInvoker2< VideoPlayer_t1683042537 *, double >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___source0, ___seconds1);
  1617. }
  1618. }
  1619. else
  1620. {
  1621. typedef void (*FunctionPointerType) (void*, VideoPlayer_t1683042537 *, double, const RuntimeMethod*);
  1622. ((FunctionPointerType)targetMethodPointer)(targetThis, ___source0, ___seconds1, targetMethod);
  1623. }
  1624. }
  1625. else
  1626. {
  1627. // open
  1628. if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
  1629. {
  1630. if (il2cpp_codegen_method_is_generic_instance(targetMethod))
  1631. {
  1632. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  1633. GenericInterfaceActionInvoker1< double >::Invoke(targetMethod, ___source0, ___seconds1);
  1634. else
  1635. GenericVirtActionInvoker1< double >::Invoke(targetMethod, ___source0, ___seconds1);
  1636. }
  1637. else
  1638. {
  1639. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  1640. InterfaceActionInvoker1< double >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___source0, ___seconds1);
  1641. else
  1642. VirtActionInvoker1< double >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___source0, ___seconds1);
  1643. }
  1644. }
  1645. else
  1646. {
  1647. typedef void (*FunctionPointerType) (VideoPlayer_t1683042537 *, double, const RuntimeMethod*);
  1648. ((FunctionPointerType)targetMethodPointer)(___source0, ___seconds1, targetMethod);
  1649. }
  1650. }
  1651. }
  1652. }
  1653. // System.IAsyncResult UnityEngine.Video.VideoPlayer/TimeEventHandler::BeginInvoke(UnityEngine.Video.VideoPlayer,System.Double,System.AsyncCallback,System.Object)
  1654. extern "C" IL2CPP_METHOD_ATTR RuntimeObject* TimeEventHandler_BeginInvoke_m2542334896 (TimeEventHandler_t445758600 * __this, VideoPlayer_t1683042537 * ___source0, double ___seconds1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
  1655. {
  1656. static bool s_Il2CppMethodInitialized;
  1657. if (!s_Il2CppMethodInitialized)
  1658. {
  1659. il2cpp_codegen_initialize_method (TimeEventHandler_BeginInvoke_m2542334896_MetadataUsageId);
  1660. s_Il2CppMethodInitialized = true;
  1661. }
  1662. void *__d_args[3] = {0};
  1663. __d_args[0] = ___source0;
  1664. __d_args[1] = Box(Double_t594665363_il2cpp_TypeInfo_var, &___seconds1);
  1665. return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
  1666. }
  1667. // System.Void UnityEngine.Video.VideoPlayer/TimeEventHandler::EndInvoke(System.IAsyncResult)
  1668. extern "C" IL2CPP_METHOD_ATTR void TimeEventHandler_EndInvoke_m2619486746 (TimeEventHandler_t445758600 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
  1669. {
  1670. il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
  1671. }
  1672. #ifdef __clang__
  1673. #pragma clang diagnostic pop
  1674. #endif