27654 lines
1.2 MiB
27654 lines
1.2 MiB
#include "pch-cpp.hpp"
|
|
|
|
#ifndef _MSC_VER
|
|
# include <alloca.h>
|
|
#else
|
|
# include <malloc.h>
|
|
#endif
|
|
|
|
|
|
#include <limits>
|
|
|
|
#include "icalls/System/System.Diagnostics/Stopwatch.h"
|
|
|
|
struct VirtualActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct VirtualActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct VirtualActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct VirtualActionInvoker2Invoker;
|
|
template <typename T1, typename T2>
|
|
struct VirtualActionInvoker2Invoker<T1*, T2>
|
|
{
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1* p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
void* params[2] = { p1, &p2 };
|
|
invokeData.method->invoker_method(il2cpp_codegen_get_method_pointer(invokeData.method), invokeData.method, obj, params, params[1]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3>
|
|
struct VirtualActionInvoker3
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5>
|
|
struct VirtualActionInvoker5
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct VirtualFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct VirtualFuncInvoker1
|
|
{
|
|
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2>
|
|
struct VirtualFuncInvoker2
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2, typename T3>
|
|
struct VirtualFuncInvoker3
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
|
|
}
|
|
};
|
|
struct InterfaceActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct InterfaceFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
struct InvokerActionInvoker0
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj)
|
|
{
|
|
method->invoker_method(methodPtr, method, obj, NULL, NULL);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct InvokerActionInvoker1;
|
|
template <typename T1>
|
|
struct InvokerActionInvoker1<T1*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
|
|
{
|
|
void* params[1] = { p1 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[0]);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct InvokerFuncInvoker0
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj)
|
|
{
|
|
R ret;
|
|
method->invoker_method(methodPtr, method, obj, NULL, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct InvokerFuncInvoker1
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1)
|
|
{
|
|
R ret;
|
|
void* params[1] = { &p1 };
|
|
method->invoker_method(methodPtr, method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct InvokerFuncInvoker1<R, T1*>
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
|
|
{
|
|
R ret;
|
|
void* params[1] = { p1 };
|
|
method->invoker_method(methodPtr, method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
|
|
// System.Collections.Generic.Comparer`1<System.Int32>
|
|
struct Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80;
|
|
// System.Collections.Generic.Comparer`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Comparer_1_tF59A960F33DD69C2CF0330F3FF6AD7828FF0F3FB;
|
|
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>
|
|
struct ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
|
|
struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,System.Text.Encoding>
|
|
struct Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
|
|
struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
|
|
struct Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.String>
|
|
struct Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83;
|
|
// System.Collections.Generic.Dictionary`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E;
|
|
// System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry>
|
|
struct Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7;
|
|
// System.Func`1<System.Globalization.DateTimeFormatInfo>
|
|
struct Func_1_t74FC36A4C2A548316E77F19B2968741BF64B13D7;
|
|
// System.Func`1<System.Text.Encoding>
|
|
struct Func_1_t01E2C750A870E045042E56862BC569C800166539;
|
|
// System.Func`1<System.Object>
|
|
struct Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4;
|
|
// System.Func`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431;
|
|
// System.Collections.Generic.IComparer`1<System.Int32>
|
|
struct IComparer_1_t4483F9B9F43C7B0F8D4FEEAE12FAFDD3F9CF81FD;
|
|
// System.Collections.Generic.IComparer`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct IComparer_1_tCA720E7837F12C38065A4AB632B5FAAD19EC30AA;
|
|
// System.Collections.Generic.IEnumerable`1<System.WeakReference>
|
|
struct IEnumerable_1_t03A5713C6D3B21CCDB0E48201F6149DB4BAD423D;
|
|
// System.Collections.Generic.IEnumerable`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct IEnumerable_1_t29E7244AE33B71FA0981E50D5BC73B7938F35C66;
|
|
// System.Collections.Generic.IEqualityComparer`1<System.String>
|
|
struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.Int32>
|
|
struct KeyCollection_tCC15D033281A6593E2488FAF5B205812A152AC03;
|
|
// System.Collections.Generic.List`1<System.Int32>
|
|
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73;
|
|
// System.Collections.Generic.List`1<System.Security.Cryptography.Oid>
|
|
struct List_1_t31E53E1C1BAA65ECAEFCBC9D003166BC01081D6B;
|
|
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>
|
|
struct List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8;
|
|
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>
|
|
struct List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39;
|
|
// System.Collections.Generic.List`1<System.String>
|
|
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD;
|
|
// System.Collections.Generic.List`1<System.WeakReference>
|
|
struct List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9;
|
|
// System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A;
|
|
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>
|
|
struct List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Int32>
|
|
struct ValueCollection_tCE6BD704B9571C131E2D8C8CED569DDEC4AE042B;
|
|
// System.WeakReference`1<System.Object>
|
|
struct WeakReference_1_tED795563AD26F795CED3BBCD488AB1694E385BCE;
|
|
// System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>
|
|
struct WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257;
|
|
// System.Collections.Generic.Dictionary`2/Entry<System.String,System.Int32>[]
|
|
struct EntryU5BU5D_tEA0133B78B9FF7045128C508FA50247E525A94D6;
|
|
// System.Int32[][]
|
|
struct Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E;
|
|
// System.String[][]
|
|
struct StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF;
|
|
// System.Byte[]
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
// System.Globalization.CalendarId[]
|
|
struct CalendarIdU5BU5D_t559EDBF1B819A695624BE9004EAA4FFA38B65CDA;
|
|
// System.Char[]
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
// System.Delegate[]
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
// System.Int32[]
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
// System.IntPtr[]
|
|
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
|
// System.Security.Cryptography.KeySizes[]
|
|
struct KeySizesU5BU5D_tDD87467B9CB683380B5DC92193576A3136DFAE03;
|
|
// System.Object[]
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
// System.Security.Cryptography.Oid[]
|
|
struct OidU5BU5D_t73E7D08DA46298D6D923119136C4075A492E666B;
|
|
// System.Text.RegularExpressions.RegexNode[]
|
|
struct RegexNodeU5BU5D_t9B65B8909ADD9DB9D8B82F44D786BD8CA7640851;
|
|
// System.Text.RegularExpressions.RegexOptions[]
|
|
struct RegexOptionsU5BU5D_tF21774F172C2EF3683C16190AA1BD4E8C7941A64;
|
|
// System.Diagnostics.StackTrace[]
|
|
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
|
// System.String[]
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
// System.Type[]
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
// System.UInt32[]
|
|
struct UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA;
|
|
// System.WeakReference[]
|
|
struct WeakReferenceU5BU5D_t946B92E92B5492BD3357181A37AE958D5DED9ED3;
|
|
// Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType[]
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC;
|
|
// System.Globalization.DateTimeFormatInfo/TokenHashValue[]
|
|
struct TokenHashValueU5BU5D_t3F8794937D04BA380989A813F33418CED58E80B9;
|
|
// System.Collections.Hashtable/bucket[]
|
|
struct bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587;
|
|
// System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping[]
|
|
struct LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1;
|
|
// Mono.Security.ASN1
|
|
struct ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F;
|
|
// System.ArgumentException
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
|
|
// System.ArgumentNullException
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
|
|
// System.ArgumentOutOfRangeException
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
|
|
// System.Collections.ArrayList
|
|
struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A;
|
|
// System.Security.Cryptography.AsnEncodedData
|
|
struct AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8;
|
|
// System.Security.Cryptography.AsymmetricAlgorithm
|
|
struct AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8;
|
|
// System.Attribute
|
|
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA;
|
|
// System.Security.Authentication.AuthenticationException
|
|
struct AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8;
|
|
// System.Reflection.Binder
|
|
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
|
|
// System.Diagnostics.BooleanSwitch
|
|
struct BooleanSwitch_tF8C9C56BCA0DF054365CDFC4664C0E8B30312BB1;
|
|
// System.Globalization.Calendar
|
|
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B;
|
|
// System.Text.RegularExpressions.Capture
|
|
struct Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A;
|
|
// System.Text.RegularExpressions.CaptureCollection
|
|
struct CaptureCollection_t38405272BD6A6DA77CD51487FD39624C6E95CC93;
|
|
// System.Globalization.CodePageDataItem
|
|
struct CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2;
|
|
// System.Collections.CollectionBase
|
|
struct CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F;
|
|
// System.Globalization.CompareInfo
|
|
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57;
|
|
// System.Security.Cryptography.CryptographicException
|
|
struct CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F;
|
|
// System.Globalization.CultureData
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D;
|
|
// System.Globalization.CultureInfo
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0;
|
|
// System.Security.Cryptography.DSA
|
|
struct DSA_tB12EE3AEA99FBD41DE318E2A371878CA94653E41;
|
|
// System.Security.Cryptography.DSACryptoServiceProvider
|
|
struct DSACryptoServiceProvider_tB418CD8E85D69D879C7298E4A6A7D8CFAC09D79E;
|
|
// Mono.Security.Cryptography.DSAManaged
|
|
struct DSAManaged_t93F6FE86F625186D42535B8E70AE3094A24367EB;
|
|
// System.Globalization.DateTimeFormatInfo
|
|
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A;
|
|
// System.Text.DecoderFallback
|
|
struct DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90;
|
|
// System.DelegateData
|
|
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
|
|
// System.Security.Cryptography.DerSequenceReader
|
|
struct DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A;
|
|
// System.Text.EncoderFallback
|
|
struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293;
|
|
// System.Text.Encoding
|
|
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095;
|
|
// System.Exception
|
|
struct Exception_t;
|
|
// System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute
|
|
struct ExcludeFromCodeCoverageAttribute_tD4CB13A2A9FCF2022C854E503D3B44DFF634FAAD;
|
|
// System.Text.RegularExpressions.ExclusiveReference
|
|
struct ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837;
|
|
// System.Text.RegularExpressions.Group
|
|
struct Group_t26371E9136D6F43782C487B63C67C5FC4F472881;
|
|
// System.Text.RegularExpressions.GroupCollection
|
|
struct GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E;
|
|
// System.Collections.Hashtable
|
|
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D;
|
|
// System.Collections.ICollection
|
|
struct ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E;
|
|
// System.Collections.IDictionary
|
|
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
|
// System.Collections.IEnumerator
|
|
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
|
|
// System.Collections.IEqualityComparer
|
|
struct IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1;
|
|
// System.IFormatProvider
|
|
struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52;
|
|
// System.Runtime.Serialization.IFormatterConverter
|
|
struct IFormatterConverter_t726606DAC82C384B08C82471313C340968DDB609;
|
|
// Mono.Security.Cryptography.KeyPairPersistence
|
|
struct KeyPairPersistence_t78D61FCDE172753BFE756B555CBD85127832CDF6;
|
|
// System.Text.RegularExpressions.Match
|
|
struct Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F;
|
|
// System.Text.RegularExpressions.MatchSparse
|
|
struct MatchSparse_t06FDC774ECCE8FFA0534A17E5990A8407658E906;
|
|
// System.Reflection.MemberFilter
|
|
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
|
|
// System.Reflection.MethodInfo
|
|
struct MethodInfo_t;
|
|
// System.NotSupportedException
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
|
|
// System.Globalization.NumberFormatInfo
|
|
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
|
|
// System.Security.Cryptography.Oid
|
|
struct Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287;
|
|
// System.Security.Cryptography.OidCollection
|
|
struct OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3;
|
|
// System.Security.Cryptography.OidEnumerator
|
|
struct OidEnumerator_t9E63ADFA5DD6DB1AA249F81E650FF063479EDD41;
|
|
// System.PlatformNotSupportedException
|
|
struct PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A;
|
|
// System.Security.Cryptography.X509Certificates.PublicKey
|
|
struct PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405;
|
|
// System.Security.Cryptography.RSA
|
|
struct RSA_tDDE9BD4C9806074FA9B1C6A5C93523A97116F21A;
|
|
// System.Security.Cryptography.RSACryptoServiceProvider
|
|
struct RSACryptoServiceProvider_t5B3DF0CAFF65D4103EB90063F3C3B00FE2C6967C;
|
|
// Mono.Security.Cryptography.RSAManaged
|
|
struct RSAManaged_t897B29EF76C459408E11A42680C942716D809001;
|
|
// System.Text.RegularExpressions.Regex
|
|
struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772;
|
|
// System.Text.RegularExpressions.RegexBoyerMoore
|
|
struct RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A;
|
|
// System.Text.RegularExpressions.RegexCharClass
|
|
struct RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C;
|
|
// System.Text.RegularExpressions.RegexCode
|
|
struct RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7;
|
|
// System.Text.RegularExpressions.RegexMatchTimeoutException
|
|
struct RegexMatchTimeoutException_t95DDC5399E4D8ADB37A9AADD221BA8DE0A342336;
|
|
// System.Text.RegularExpressions.RegexNode
|
|
struct RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360;
|
|
// System.Text.RegularExpressions.RegexParser
|
|
struct RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40;
|
|
// System.Text.RegularExpressions.RegexReplacement
|
|
struct RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E;
|
|
// System.Text.RegularExpressions.RegexRunner
|
|
struct RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B;
|
|
// System.Text.RegularExpressions.RegexRunnerFactory
|
|
struct RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7;
|
|
// System.Text.RegularExpressions.RegexTree
|
|
struct RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2;
|
|
// Microsoft.Win32.SafeHandles.SafePasswordHandle
|
|
struct SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463;
|
|
// System.Runtime.Serialization.SafeSerializationManager
|
|
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
|
// System.Runtime.Serialization.SerializationInfo
|
|
struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37;
|
|
// System.Diagnostics.Stopwatch
|
|
struct Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043;
|
|
// System.String
|
|
struct String_t;
|
|
// System.Text.StringBuilder
|
|
struct StringBuilder_t;
|
|
// System.Diagnostics.Switch
|
|
struct Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412;
|
|
// System.Diagnostics.SwitchLevelAttribute
|
|
struct SwitchLevelAttribute_t1C9B38E19789AFAA9F130ED5BF3D1E5EF7FEF4BF;
|
|
// System.SystemException
|
|
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295;
|
|
// System.Globalization.TextInfo
|
|
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4;
|
|
// System.Diagnostics.TraceSwitch
|
|
struct TraceSwitch_t199A0DB240149B5CDCF2754FC0E11CCBF51224B4;
|
|
// System.Type
|
|
struct Type_t;
|
|
// System.Text.UTF8Encoding
|
|
struct UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE;
|
|
// System.Void
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
|
// System.WeakReference
|
|
struct WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E;
|
|
// System.Security.Cryptography.X509Certificates.X500DistinguishedName
|
|
struct X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6;
|
|
// System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension
|
|
struct X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35;
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate
|
|
struct X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4;
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2
|
|
struct X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D;
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2Collection
|
|
struct X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB;
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator
|
|
struct X509Certificate2Enumerator_t22D702E84069BAFE855F2A160A391D77A05090EC;
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl
|
|
struct X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25;
|
|
// System.Security.Cryptography.X509Certificates.X509CertificateCollection
|
|
struct X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE;
|
|
// System.Security.Cryptography.X509Certificates.X509CertificateImpl
|
|
struct X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF;
|
|
// System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension
|
|
struct X509EnhancedKeyUsageExtension_t237A41510BAC916B5FFC67B464E1D38980D70BFF;
|
|
// System.Security.Cryptography.X509Certificates.X509Extension
|
|
struct X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5;
|
|
// System.Security.Cryptography.X509Certificates.X509ExtensionCollection
|
|
struct X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0;
|
|
// System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator
|
|
struct X509ExtensionEnumerator_t7C4F4F5D65C7023FA1BEE3F6522B066A6CECCFF6;
|
|
// System.Security.Cryptography.X509Certificates.X509KeyUsageExtension
|
|
struct X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B;
|
|
// Mono.X509PalImpl
|
|
struct X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86;
|
|
// System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension
|
|
struct X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5;
|
|
// System.Security.Cryptography.DerSequenceReader/<>c
|
|
struct U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423;
|
|
// System.Text.RegularExpressions.Regex/CachedCodeEntry
|
|
struct CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39;
|
|
// System.Text.UTF8Encoding/UTF8EncodingSealed
|
|
struct UTF8EncodingSealed_tF97A34F40CABE9CE1C168967D60396F51C43DD36;
|
|
|
|
IL2CPP_EXTERN_C RuntimeClass* ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CryptoConfig_t66E67DD67B2C3224C72C0CBD80A144E29EE016A5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CryptographicUnexpectedOperationException_t095FC6568619B47AC96204DE0D6C774B4EB7F810_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DSACryptoServiceProvider_tB418CD8E85D69D879C7298E4A6A7D8CFAC09D79E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DecoderFallbackException_t2C3FC33AE2DFD1ECB47F945ABA8F6D292BC7FBA4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_1_t01E2C750A870E045042E56862BC569C800166539_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_1_t74FC36A4C2A548316E77F19B2968741BF64B13D7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t88BC7ABEC98371147F87484F0BECBC7021EDE51D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t15779D4CC76338A5C7BB7DDD1C51143E57A5F7C8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t31E53E1C1BAA65ECAEFCBC9D003166BC01081D6B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MatchSparse_t06FDC774ECCE8FFA0534A17E5990A8407658E906_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* OidEnumerator_t9E63ADFA5DD6DB1AA249F81E650FF063479EDD41_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RSACryptoServiceProvider_t5B3DF0CAFF65D4103EB90063F3C3B00FE2C6967C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RegexMatchTimeoutException_t95DDC5399E4D8ADB37A9AADD221BA8DE0A342336_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X501_t5DBAC33581ADA4FC61FAF731E9A02855AB572EB4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X509Certificate2Enumerator_t22D702E84069BAFE855F2A160A391D77A05090EC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X509EnhancedKeyUsageExtension_t237A41510BAC916B5FFC67B464E1D38980D70BFF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X509FindType_t498D1CC078663253211BEC2E671771106253C482_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X509KeyUsageFlags_tA8507F67CB3F1DF68E2126C9D40A62CCF27065BA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____B849624EC20707184A433E21DAAC963906D4B261A19BD8F139F0E269E59E308C_14_FieldInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral072B29D72AC26D4E83A32232DF8E415C5151E9AA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral07624473F417C06C74D59C64840A1532FCE2C626;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral07B71A0735C0A5FDC2E73979B95958D40F06AE42;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral08F78B1140DE9B7FF7C3C57BB5C1F10BBD3B15CB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0B5D93AFD273766B7965DD30D79F0F1A361CB57B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0BBF32E37A38CB4C85C7D8C51BE0820F8937DA43;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0C101850CB061E1BB6D94F77CD3F8DA82C75EC81;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0E0E07FBC53FA8C48B097E23C1F51253713BFE1D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0E35CEDB261B03F58C24890C7C57413AD1203C92;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0F38A3747C9E3CBF705A8434CE244793402F5BDA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral132FFD890F85A22361F8F5452AD7C9BFC9252A00;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1547D32448BC572A3BA92D824F60BCE446C923C1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral15FB8A04339464F72B79BAF171F17EF1E153CA52;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral166FD5D9AC48273934F85807614240038752C109;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral17B277DD41310C7E909CF67339B1A07AB6FEC59A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral17E5BE9B221C767EF04A364F24B81309DAE38512;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1A521FB9CB5DD09DAE84196DD4656194D3654284;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1B9C2E56B6E7518DF358644E56A37604D9A7C17A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral20BFDEE599B675B43C275E62F4062F4333B183F9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2323F684C49416D2AA1F6FFAE52BA830E63326E0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral244BA6FE8878C6A66F7648332C07125DF3AFBC4B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral24EB898A42E42969344D705A31CCD358E65A7EEE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral29A5AED1D4EB99A01F98E33F896B7B911D6BBD64;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2A7F604AA53E605CA5A4D06ADF4F5C4B6FCBD8E8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2D33F3CC9AFA97ECECBBF5C0881C8F9C86690251;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2E203410EDD156CA82D74FCDDE8C2C9EB635FE18;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2F1705A1AA8BA6FCE863E7F2CBA4BC28458C77AE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2F395A8D1CC82D12EB0DFF52CAD1AD2C5FEFABF5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2F874A32C0360779E461A5ED6063EF8E6729A514;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2FC0EF613300907019607E2257A0D3F14F991A88;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral30677B8BA7ED8BE7E7E8F9BC87DE11BEDECF6B94;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral324A15BBCCD67A1997F37BF20414A7EB61126AB5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral326FE389E7BF8CF01EAC82490F9CDC8DC7132486;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral368DE055AFD9CBFD208ACAC88D69A0565CF00F90;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3D455D711419C562E457AD829783961AA5206934;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral448549AC92DB848819FB391C4948736870D5C8B9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral471A0421D568E4DD8CD03A0D6C9C07E049A0F28D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4946F949F5ECA9D410C3E3829DA66DED8E3B604D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral50ED994EAB5E4B5A327FC8D974EAB06E7CFA83A4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5213C5B281E693868174731B42C5D30C8046AD88;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral534B2C50A4C32C805A7518E7EF55CE34FA3B7206;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral548D93DDB2AC6B24373148B19D9A625571AB2318;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral595EFF1BB2D726958ED623D9B54803E9AA2A0C84;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral59A83BD1E85529AB2BC64F229A50F1DE88588D40;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5A958635C67952829AC7E2FD5FB3A2C8DB51121E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5CC823378CCA508A81792DDC107D7253062D4F0D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5D1D45B6F90EF153C0073C0B7E9492B4DBF540F1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5D3712231996A1C41EDA4CA1C12669294FE63D36;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5EDC47BC71D706BB11343CC890323569C143CD50;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral604AF3FD45B5D6527E77C100038873C29E8B4D49;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral629418F349D82DE758E15A5E414EB8B6D7D0EA82;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6397B9AB1173E22C838830BBE223E86651EC5616;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral65A0F9B64ACE7C859A284EA54B1190CBF83E1260;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral65C91159DE73AB664AD579C104F3EE3E6A5B9308;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral679FCCE821810305888489853F35D2FC75A8AE7A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral67FFBCF3FB1E06FD45D5DC481186BD271AC07876;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral692E718E338FFD039FB1673ADA7E9AB5DED4BB98;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral699840986535E61CF74482083469DA67A731CB19;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6CC08B400DBC60C54903DEE7D1AED84FA8B50740;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6D6766B9E7197A415706D781453E6BE8DBC7F6CB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6EE6BFCFA9B2342B9FF2A513D72A69E2065C4446;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral709116FAB4B1CFB8E839AF216932137595A1C356;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral73310BF59DB8CA3EB79CF1E70A2DA4C61E0E5228;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral76434DD00817AB453961ACEB4690349A84112CAC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7B8F4658E4EF61B30477317B0A3F810822B218E2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7D9371213C85404B41C69E8C41C1114818C7F4BF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7E47B8E4D552470F6D8FD78693F09EA115DA32BE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7F4C724BD10943E8B0B17A6E069F992E219EF5E8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral80CB653CFCFC0749586A32A97BFFFDC763490C7F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral810312829FDB3577963C015162B688C40E5764D3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral830B64B4254C502C612E53C83DBEE6238E710499;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8507E60E4E5CFFDF387FFDF366103BDBF5C5C38C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral87D7C5E974D9C89FB52B8A53360C0C2E1DAAEC63;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8965AF17E4B7413549B839F616B223F608E66E85;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8B3D6A8E6A6FB71BEEDD3F405822DDA7F7242752;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8D1E32D587015A9DB04576A49D22A6924F1B9D62;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8D5175625BAB03B34DC7A7254E3934B27037B660;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8E245319796EC99EDC6311A6DC461759FB1FB7FD;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8E6998DB1786F24C1BB96FE967251C5140E7B5FA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral95E0BCC89582D0EEC7BEA5EEF50AA6E16AA82363;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9957B21B361EC3B1754C930C5A1C41F851A55813;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral99CDE5CF8466BD020DE0C38EC323DBB9E10A2523;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9C3D04385AD6997A289AF27CABA813829BDB3298;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA09468464D8DEB5672FD1B9FC0C4AF9D93E1240D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA0FE8F62F371A375A76A413416F3EF55C050A182;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA297A7AA79A55438F0CC01B72FE4690857AAE5A9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA90BAB5A63B270956DEBA545BAA7334EFC8F50E2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB132716D89EF0EE2CEF39498DA0895B2449AB344;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB565140D7F16AA34B6B76F63B9721525520345F7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB596320AE4D74537B29168E9BDF95B753E2B5301;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB70DFAAAD0ABCCD469EB8575DD6833C88CC374B5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB764975C73BFA882AF2146869B213BBDDF06F6E4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB8ADEE29A3CEEC199877289FBA628ADB706C89EE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB9B95A09A6329F64F307C29A726917E458B15E65;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBBE682A549E4FD2504E5F2F69458189FB5C75139;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBC12DB6076DF77D5CCDF7B01D4534A2545723633;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBC41C48BA95DA48A6EB8BFC17142E8F0E9E4C990;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBCBD089553BED56941C157C4F715B4365F724D7C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBDCF9CD49677327D57173A9B2E45D69BC18739C4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC441262836EA54C41EE2EB5378401CCBCB76078A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC611A012636D51B5EBBC7ADEBD3C8631EA8DAF13;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC668438A41E16934CBA83B80E3101B8222C11AEC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC6F79988FD2BDBA6A0518B070DC366C3276EDD71;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC9FB8C73B342D5B3C700EDA7C5212DD547D29E4E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCB62281B27D708B122BB052F6C5C203A9C9CA10B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCB83235A9C2DA3EFD4C6485B1E23D07E614A03D9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCD24D4C14B3F256EB99D0167475D3F3E3C8CE558;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCD32F08BAB4EE365057213BCC6332DD39C2DE46B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCE2892956422830EFD61D6B1C95A865ED0BDFF66;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD1142A2FD7F69A4EF18F40F7D0E98508303A5407;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD1921F7804B8B0B09E2DC813076CD1CBDE1BAC17;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD20A4058B7B405BF173793FAAC54A85874A0CDDE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD286A908F27DE88608F297C65E9918981BCD4317;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD30CDE84D4CFDAD1992F4DD1DBC71AE0074AAA08;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD3E190B5EC5D5C32F6121F694010F47769FCBDD1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD615D452AAA84D559E3E5FFF5168A1AF47500E8D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD6B452A9F938870B52555F4DB4CE0E35E48B1FA6;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD9B53FE83B364433B53BD1F5712DD31D58258FB4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDBC1DDA2BB7F49449327F610631E760D993A5779;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDE873DB986C802AEB50AD8FEA9D8885FC21EDE3D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDEB31152738116748FADCEF38CE0C9964DACCF2F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDF1CF539722D58CC569DAE01700516448ABF534B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE11B99358771892EAF14FC34EE29DA70DA9B7FAB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE33035121EF6BAC3BBD73C519FBB6B270CE5657E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE63688B993F3304E9013687D7CD5065D0AE3D400;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE729A02D79E425BEB3FDD6C02B8B5922A8026780;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE8CDAF3BD45E1B70CE2BC010AB453F8044684F6F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF041468CA475A0C8B8298BFDDC984663476E0294;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF1D283CB0FE48D03E5AE150ACBB742D2BBB0228D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF41760006700B346FE970834ED6436CD21A1330F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF5FCF7BFB0603BEB0CFB789198783073B2306D9D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF712C5F62331F2870DB319ED66CDF53B831F3CA1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFBC07F6BD47DF829ABDBABCE58B748504460B7BB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFC122FD8605F61DCBDED32B11B81E151BCAC4354;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFE9F7FDD06F90D487E6AA771E0B487139056D1DE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFF0046B99C0F5DFE48BFA77D6703520FE5ECEB63;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Reverse_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m4298AF0CA764FA936F9C5ED3606D1B4E2EC9EBA2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m25890A92F785FE37EA662CF502AB0E2A80143F68_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* AsnEncodedData_CopyFrom_mA5DD4A419C5FC29D82DBE9B69C9F8CBC2872A1F2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* AsnEncodedData__ctor_mA80B22E2D7D98198B55D04474F6926EF80CBABF6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* AsnEncodedData_set_RawData_m05F9F17765AD384ECE3A333DCBF6A0572099346B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DerSequenceReader_CheckTag_mCD70359356B835C7EAC514E2A4701D226B84588F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DerSequenceReader_EatTag_mF2658A324EBFAF16DAEB9762EA7DFE9036D4FB8E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DerSequenceReader_ReadBitString_m6519951E58B9642238778071AF7926A6948F0387_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DerSequenceReader_ReadBoolean_m568EA640EA9967B8785075997D5161FC7C6C5EBD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DerSequenceReader_ReadOidAsString_m53E76684261C012927DE60E2A8A5A4ECC6B33198_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DerSequenceReader_ReadTime_m492DB6BB481B1CFC586644EE3D233145A5486F32_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DerSequenceReader_ReadX509Date_m4B50094324675B16BCF2F77BCB1CD6827F04A568_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DerSequenceReader_ScanContentLength_mDCE749F3AF5DEBB56A9683C6F5D6AE817F3D344D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DerSequenceReader__ctor_m09BDCF87C8D4558CABCC96159ADDBB6E49361141_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mA3C3860EDE2CDD08BBD68C389377BC89D029D968_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* LazyInitializer_EnsureInitialized_TisDateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_m3A8FCF153BED44EE5F0E5941DCEFE4B503CBBB21_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* LazyInitializer_EnsureInitialized_TisEncoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_m2736CF83A2CA83587FFCB63D7FF01994A7A6314A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_m9752A24431B17AFB6B8807C580DEB0B87E85704F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m25F4DF4DE179873ACDA24F3C314479DDBCCC0BDD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m3365EDCFC60E7D35967ECEB93DD7851CC2D9B41F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m39E2181975ACDC6FBCDD64B6C002096DF63A0676_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m2225CCB9E5EE9E4981F4AE6EB18C904ED9CCB2E2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_mC1A21C23C8601F8794072BBEFCE60E1283C8302F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveRange_mCFBE1620BC04EABC10AD7AF811A524D2F0AEB993_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_TrimExcess_m99F8F07466512A8305AA9DC50A79BFFA0D426743_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m1B9A9897D9A268FB07BE7E57438250769D2A457D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m2C4FA91F495564C79C92BA3B2BE4B8855F69BB91_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m3BB823E6AB875ADEA1C357D9FD3988FC3BD07DC8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m63EDE1AEAA4A4FCAB6203FB0C262E31C79D24F9E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m00523F252234FC6049965BF2606B179CEF09A759_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m4D47FECAB21C77F7F4D9632A361C697E7D81CADC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m79E063DD5D6C2BF1AF8CB852A77E38360E5484BE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m83668C338517BB0174D4836DD9700CC489D01E44_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m86ACB65A93FC551348931DE521B278E5A505FB69_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mE239CC7C457C1C1C2CF293913AFEDFCF5C8F6DF6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* OidCollection_System_Collections_ICollection_CopyTo_m4EF1FB9A18E822BA196BF3F0204B7C06178B9CFC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Oid_FromOidValue_m44CB94625A6CFB2780CA8E50CF845801A1A6E18C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Oid__ctor_m3973A5FE5482D45FABC8642E59B655274B0B5D59_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PublicKey_DecodeDSA_m492DDFE288B22C3ACC3B6723BF762FA5D4AC23AD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PublicKey_DecodeRSA_m5E8D3C7200105F4571BB56BA629195367F881545_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PublicKey__ctor_m810A1EF4D8A0BAE8A3CB36EB8CC0BBA99D799782_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PublicKey_get_Key_mC0A4379DAA42B565878EE09310C43A4CCB45F273_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_ToArray_m750D7BEFA43F3FEAC24A67EA3D9FC30725B68962_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_AddGroup_m8989D6A9CD4B700522D722DEF5FEFC267C4DBFB7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ParseProperty_m3B765A1B30A38A723CAFE63AF9D6F3D08C7C6F38_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_PopGroup_mEC525DC83E5BF2F8DA03129AE3DF06834EB76552_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanBackslash_mAAE11106CB78789803468679894E1D7AE6B0C92E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanBasicBackslash_mB0F1728AD89C8F196601B3110F0BA807FBC8FCEC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanBlank_m4C1B18EC7A5DF860363CA17E69B20A00023B5E82_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanCharEscape_mA872DDDD24E165F5B5C5F62DCFAE3B02CCF97C98_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanControl_m26274BE5776CF5AC03E8EAC7B5972C0A8AF2A95B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanDecimal_m1BFFE19E0698D0EC97D81C655F3D04B608897161_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanDollar_mB8FD395274F630278543211B2BB583AA5B03D96A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanHex_mDD96A112E30DABDB5BC0C558373DA5607F8ACF95_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanRegex_m3CD95B8EAE4F2E8ECF3461F199B04A021C77231D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexReplacement_Replace_m54375FA094C20D81305C8DDC17AB973BF1B461F9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexReplacement__ctor_m9CE743F0908A59F98461440AE5B842BE1BC72EA5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexRunner_DoCheckTimeout_mC26B9239FA1CD3DC98F11A82800F61852793CEA5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RegexWriter_EmitFragment_m0B35F7C3BDC22B5DE82735F2652C7948AE8494A5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stopwatch_get_ElapsedMilliseconds_m8D8E60ADEB47D008C06D8E57D28D41EAE07AECBF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* SwitchLevelAttribute_set_SwitchLevelType_m4757AB3B3D77487056F17495239C40B56FC2E9AF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CReadT61StringU3Eb__45_0_m53F555E4EFBF56385A389ACA1681D68920A18735_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CReadT61StringU3Eb__45_1_m2DE60562D90243EC4880800B7AAE0463F5E8B557_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CReadTimeU3Eb__51_0_mA023CCE123BD5D9DF2635970BA3E5D664BCA33EC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValueListBuilder_1_AsSpan_mB168B0C17F53FF2A5F8EA0B25A60F4741D20312F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValueListBuilder_1_Dispose_m9A7AA015AAA843E07EF071CACC44C580A6A27955_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValueListBuilder_1__ctor_mA62BCDD51B8B91EA78E0475452807113F20E60A8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValueListBuilder_1_get_Item_m5EF2B61BDC18BDA4F358250CFF2AD3F4180851FB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* WeakReference_1_SetTarget_m87BF827B6B3CCB82958155D5DEEC9EA1951272D4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* WeakReference_1_TryGetTarget_mF3D765CD93EDFAF1750A2F4F47CB879B365DD3B8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X500DistinguishedName_Decode_mEC580A9699C0384B0196C80CD5ECFAA2151243BD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X500DistinguishedName__ctor_m95199AB45F165A1B774CA88B45F08889BFA5E162_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X500DistinguishedName__ctor_mF36480D37651E6FC6662E90ED7795F9A5C1C3DD2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509BasicConstraintsExtension_CopyFrom_mCC603D99CEC828BDF86FDEB3C4650CF4D3753B8E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509BasicConstraintsExtension__ctor_m02334D8CAA280B339CA41E2019CF1F02C8B2E7DE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509BasicConstraintsExtension_get_CertificateAuthority_mB4ECEF43A245E97DA80C6323BE339BE2DF99FF5C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509BasicConstraintsExtension_get_HasPathLengthConstraint_m8F7C371EFF99BD110663DB106BEE889955255BC7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509BasicConstraintsExtension_get_PathLengthConstraint_m4D3F016E42C243887D07DD955518A818DC14BBC5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509Certificate2Collection_AddRange_m764C331A677795DCA45A496DF9752B58F2FDA2A8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509Certificate2Collection_Add_m6C2C142C7BF143E83388F8793A64890F44996ABB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509Certificate2Collection_Contains_m71ADE296B2581756ED2484BC42CB4D51A9172688_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509Certificate2Collection_Find_mA13F604A4AAF8C5EFFA436EFA7785B7E27C0471C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509Certificate2Collection_get_Item_m46D8DA4B824642F03A2E448CB52AB591850DE9C4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509Certificate2_GetCertContentType_m8D232C26231C35597793EB5DE62EC7916417F652_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509Certificate2__ctor_mB1BC3DC26B71A5D5D3753B04DCA16AA49627EC15_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* X509Certificate2_get_PrivateKey_mB2D1370AFF6F005B4A18A2223363C353B8D24A4A_RuntimeMethod_var;
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com;
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke;
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com;
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke;
|
|
struct Delegate_t_marshaled_com;
|
|
struct Delegate_t_marshaled_pinvoke;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC;
|
|
|
|
IL2CPP_EXTERN_C_BEGIN
|
|
IL2CPP_EXTERN_C_END
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
|
|
// System.Buffers.ArrayPool`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct ArrayPool_1_t1CA8B86A43623D11BDEC111B774FC11399E41774 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Collections.Generic.Comparer`1<System.Int32>
|
|
struct Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
|
|
struct Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588 : public RuntimeObject
|
|
{
|
|
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
|
|
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
|
|
EntryU5BU5D_tEA0133B78B9FF7045128C508FA50247E525A94D6* ____entries_1;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_count
|
|
int32_t ____count_2;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
|
|
int32_t ____freeList_3;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
|
|
int32_t ____freeCount_4;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_version
|
|
int32_t ____version_5;
|
|
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
|
|
RuntimeObject* ____comparer_6;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
|
|
KeyCollection_tCC15D033281A6593E2488FAF5B205812A152AC03* ____keys_7;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
|
|
ValueCollection_tCE6BD704B9571C131E2D8C8CED569DDEC4AE042B* ____values_8;
|
|
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
|
|
RuntimeObject* ____syncRoot_9;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.Int32>
|
|
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.Security.Cryptography.Oid>
|
|
struct List_1_t31E53E1C1BAA65ECAEFCBC9D003166BC01081D6B : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
OidU5BU5D_t73E7D08DA46298D6D923119136C4075A492E666B* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>
|
|
struct List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
RegexNodeU5BU5D_t9B65B8909ADD9DB9D8B82F44D786BD8CA7640851* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>
|
|
struct List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
RegexOptionsU5BU5D_tF21774F172C2EF3683C16190AA1BD4E8C7941A64* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.String>
|
|
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.WeakReference>
|
|
struct List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
WeakReferenceU5BU5D_t946B92E92B5492BD3357181A37AE958D5DED9ED3* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// Mono.Security.ASN1
|
|
struct ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F : public RuntimeObject
|
|
{
|
|
// System.Byte Mono.Security.ASN1::m_nTag
|
|
uint8_t ___m_nTag_0;
|
|
// System.Byte[] Mono.Security.ASN1::m_aValue
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___m_aValue_1;
|
|
// System.Collections.ArrayList Mono.Security.ASN1::elist
|
|
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___elist_2;
|
|
};
|
|
|
|
// System.Collections.ArrayList
|
|
struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A : public RuntimeObject
|
|
{
|
|
// System.Object[] System.Collections.ArrayList::_items
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_0;
|
|
// System.Int32 System.Collections.ArrayList::_size
|
|
int32_t ____size_1;
|
|
// System.Int32 System.Collections.ArrayList::_version
|
|
int32_t ____version_2;
|
|
// System.Object System.Collections.ArrayList::_syncRoot
|
|
RuntimeObject* ____syncRoot_3;
|
|
};
|
|
|
|
// System.Security.Cryptography.AsnEncodedData
|
|
struct AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8 : public RuntimeObject
|
|
{
|
|
// System.Security.Cryptography.Oid System.Security.Cryptography.AsnEncodedData::_oid
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* ____oid_0;
|
|
// System.Byte[] System.Security.Cryptography.AsnEncodedData::_raw
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____raw_1;
|
|
};
|
|
|
|
// System.Security.Cryptography.AsymmetricAlgorithm
|
|
struct AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8 : public RuntimeObject
|
|
{
|
|
// System.Int32 System.Security.Cryptography.AsymmetricAlgorithm::KeySizeValue
|
|
int32_t ___KeySizeValue_0;
|
|
// System.Security.Cryptography.KeySizes[] System.Security.Cryptography.AsymmetricAlgorithm::LegalKeySizesValue
|
|
KeySizesU5BU5D_tDD87467B9CB683380B5DC92193576A3136DFAE03* ___LegalKeySizesValue_1;
|
|
};
|
|
|
|
// System.Attribute
|
|
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Globalization.Calendar
|
|
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B : public RuntimeObject
|
|
{
|
|
// System.Int32 System.Globalization.Calendar::m_currentEraValue
|
|
int32_t ___m_currentEraValue_38;
|
|
// System.Boolean System.Globalization.Calendar::m_isReadOnly
|
|
bool ___m_isReadOnly_39;
|
|
// System.Int32 System.Globalization.Calendar::twoDigitYearMax
|
|
int32_t ___twoDigitYearMax_41;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.Capture
|
|
struct Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A : public RuntimeObject
|
|
{
|
|
// System.Int32 System.Text.RegularExpressions.Capture::<Index>k__BackingField
|
|
int32_t ___U3CIndexU3Ek__BackingField_0;
|
|
// System.Int32 System.Text.RegularExpressions.Capture::<Length>k__BackingField
|
|
int32_t ___U3CLengthU3Ek__BackingField_1;
|
|
// System.String System.Text.RegularExpressions.Capture::<Text>k__BackingField
|
|
String_t* ___U3CTextU3Ek__BackingField_2;
|
|
};
|
|
|
|
// System.Collections.CollectionBase
|
|
struct CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F : public RuntimeObject
|
|
{
|
|
// System.Collections.ArrayList System.Collections.CollectionBase::_list
|
|
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____list_0;
|
|
};
|
|
|
|
// System.Runtime.ConstrainedExecution.CriticalFinalizerObject
|
|
struct CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Globalization.CultureInfo
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0 : public RuntimeObject
|
|
{
|
|
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
|
|
bool ___m_isReadOnly_3;
|
|
// System.Int32 System.Globalization.CultureInfo::cultureID
|
|
int32_t ___cultureID_4;
|
|
// System.Int32 System.Globalization.CultureInfo::parent_lcid
|
|
int32_t ___parent_lcid_5;
|
|
// System.Int32 System.Globalization.CultureInfo::datetime_index
|
|
int32_t ___datetime_index_6;
|
|
// System.Int32 System.Globalization.CultureInfo::number_index
|
|
int32_t ___number_index_7;
|
|
// System.Int32 System.Globalization.CultureInfo::default_calendar_type
|
|
int32_t ___default_calendar_type_8;
|
|
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
|
|
bool ___m_useUserOverride_9;
|
|
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
|
|
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
|
|
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
|
|
// System.String System.Globalization.CultureInfo::m_name
|
|
String_t* ___m_name_13;
|
|
// System.String System.Globalization.CultureInfo::englishname
|
|
String_t* ___englishname_14;
|
|
// System.String System.Globalization.CultureInfo::nativename
|
|
String_t* ___nativename_15;
|
|
// System.String System.Globalization.CultureInfo::iso3lang
|
|
String_t* ___iso3lang_16;
|
|
// System.String System.Globalization.CultureInfo::iso2lang
|
|
String_t* ___iso2lang_17;
|
|
// System.String System.Globalization.CultureInfo::win3lang
|
|
String_t* ___win3lang_18;
|
|
// System.String System.Globalization.CultureInfo::territory
|
|
String_t* ___territory_19;
|
|
// System.String[] System.Globalization.CultureInfo::native_calendar_names
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___native_calendar_names_20;
|
|
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
|
|
// System.Void* System.Globalization.CultureInfo::textinfo_data
|
|
void* ___textinfo_data_22;
|
|
// System.Int32 System.Globalization.CultureInfo::m_dataItem
|
|
int32_t ___m_dataItem_23;
|
|
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___parent_culture_25;
|
|
// System.Boolean System.Globalization.CultureInfo::constructed
|
|
bool ___constructed_26;
|
|
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___cached_serialized_form_27;
|
|
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData_28;
|
|
// System.Boolean System.Globalization.CultureInfo::m_isInherited
|
|
bool ___m_isInherited_29;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_isReadOnly_3;
|
|
int32_t ___cultureID_4;
|
|
int32_t ___parent_lcid_5;
|
|
int32_t ___datetime_index_6;
|
|
int32_t ___number_index_7;
|
|
int32_t ___default_calendar_type_8;
|
|
int32_t ___m_useUserOverride_9;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
|
|
char* ___m_name_13;
|
|
char* ___englishname_14;
|
|
char* ___nativename_15;
|
|
char* ___iso3lang_16;
|
|
char* ___iso2lang_17;
|
|
char* ___win3lang_18;
|
|
char* ___territory_19;
|
|
char** ___native_calendar_names_20;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
|
|
void* ___textinfo_data_22;
|
|
int32_t ___m_dataItem_23;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke* ___parent_culture_25;
|
|
int32_t ___constructed_26;
|
|
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke* ___m_cultureData_28;
|
|
int32_t ___m_isInherited_29;
|
|
};
|
|
// Native definition for COM marshalling of System.Globalization.CultureInfo
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com
|
|
{
|
|
int32_t ___m_isReadOnly_3;
|
|
int32_t ___cultureID_4;
|
|
int32_t ___parent_lcid_5;
|
|
int32_t ___datetime_index_6;
|
|
int32_t ___number_index_7;
|
|
int32_t ___default_calendar_type_8;
|
|
int32_t ___m_useUserOverride_9;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
|
|
Il2CppChar* ___m_name_13;
|
|
Il2CppChar* ___englishname_14;
|
|
Il2CppChar* ___nativename_15;
|
|
Il2CppChar* ___iso3lang_16;
|
|
Il2CppChar* ___iso2lang_17;
|
|
Il2CppChar* ___win3lang_18;
|
|
Il2CppChar* ___territory_19;
|
|
Il2CppChar** ___native_calendar_names_20;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
|
|
void* ___textinfo_data_22;
|
|
int32_t ___m_dataItem_23;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com* ___parent_culture_25;
|
|
int32_t ___constructed_26;
|
|
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com* ___m_cultureData_28;
|
|
int32_t ___m_isInherited_29;
|
|
};
|
|
|
|
// System.Security.Cryptography.DerSequenceReader
|
|
struct DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A : public RuntimeObject
|
|
{
|
|
// System.Byte[] System.Security.Cryptography.DerSequenceReader::_data
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____data_3;
|
|
// System.Int32 System.Security.Cryptography.DerSequenceReader::_end
|
|
int32_t ____end_4;
|
|
// System.Int32 System.Security.Cryptography.DerSequenceReader::_position
|
|
int32_t ____position_5;
|
|
// System.Int32 System.Security.Cryptography.DerSequenceReader::<ContentLength>k__BackingField
|
|
int32_t ___U3CContentLengthU3Ek__BackingField_6;
|
|
};
|
|
|
|
// System.Text.Encoding
|
|
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095 : public RuntimeObject
|
|
{
|
|
// System.Int32 System.Text.Encoding::m_codePage
|
|
int32_t ___m_codePage_9;
|
|
// System.Globalization.CodePageDataItem System.Text.Encoding::dataItem
|
|
CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2* ___dataItem_10;
|
|
// System.Boolean System.Text.Encoding::m_deserializedFromEverett
|
|
bool ___m_deserializedFromEverett_11;
|
|
// System.Boolean System.Text.Encoding::m_isReadOnly
|
|
bool ___m_isReadOnly_12;
|
|
// System.Text.EncoderFallback System.Text.Encoding::encoderFallback
|
|
EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___encoderFallback_13;
|
|
// System.Text.DecoderFallback System.Text.Encoding::decoderFallback
|
|
DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ___decoderFallback_14;
|
|
};
|
|
|
|
// System.Collections.Hashtable
|
|
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D : public RuntimeObject
|
|
{
|
|
// System.Collections.Hashtable/bucket[] System.Collections.Hashtable::_buckets
|
|
bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* ____buckets_10;
|
|
// System.Int32 System.Collections.Hashtable::_count
|
|
int32_t ____count_11;
|
|
// System.Int32 System.Collections.Hashtable::_occupancy
|
|
int32_t ____occupancy_12;
|
|
// System.Int32 System.Collections.Hashtable::_loadsize
|
|
int32_t ____loadsize_13;
|
|
// System.Single System.Collections.Hashtable::_loadFactor
|
|
float ____loadFactor_14;
|
|
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::_version
|
|
int32_t ____version_15;
|
|
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::_isWriterInProgress
|
|
bool ____isWriterInProgress_16;
|
|
// System.Collections.ICollection System.Collections.Hashtable::_keys
|
|
RuntimeObject* ____keys_17;
|
|
// System.Collections.ICollection System.Collections.Hashtable::_values
|
|
RuntimeObject* ____values_18;
|
|
// System.Collections.IEqualityComparer System.Collections.Hashtable::_keycomparer
|
|
RuntimeObject* ____keycomparer_19;
|
|
// System.Object System.Collections.Hashtable::_syncRoot
|
|
RuntimeObject* ____syncRoot_20;
|
|
};
|
|
|
|
// System.Reflection.MemberInfo
|
|
struct MemberInfo_t : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Security.Cryptography.OidCollection
|
|
struct OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3 : public RuntimeObject
|
|
{
|
|
// System.Collections.Generic.List`1<System.Security.Cryptography.Oid> System.Security.Cryptography.OidCollection::_list
|
|
List_1_t31E53E1C1BAA65ECAEFCBC9D003166BC01081D6B* ____list_0;
|
|
};
|
|
|
|
// System.Security.Cryptography.OidEnumerator
|
|
struct OidEnumerator_t9E63ADFA5DD6DB1AA249F81E650FF063479EDD41 : public RuntimeObject
|
|
{
|
|
// System.Security.Cryptography.OidCollection System.Security.Cryptography.OidEnumerator::_oids
|
|
OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* ____oids_0;
|
|
// System.Int32 System.Security.Cryptography.OidEnumerator::_current
|
|
int32_t ____current_1;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.PublicKey
|
|
struct PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405 : public RuntimeObject
|
|
{
|
|
// System.Security.Cryptography.AsnEncodedData System.Security.Cryptography.X509Certificates.PublicKey::_keyValue
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* ____keyValue_0;
|
|
// System.Security.Cryptography.AsnEncodedData System.Security.Cryptography.X509Certificates.PublicKey::_params
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* ____params_1;
|
|
// System.Security.Cryptography.Oid System.Security.Cryptography.X509Certificates.PublicKey::_oid
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* ____oid_2;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.RegexBoyerMoore
|
|
struct RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A : public RuntimeObject
|
|
{
|
|
// System.Int32[] System.Text.RegularExpressions.RegexBoyerMoore::Positive
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___Positive_0;
|
|
// System.Int32[] System.Text.RegularExpressions.RegexBoyerMoore::NegativeASCII
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___NegativeASCII_1;
|
|
// System.Int32[][] System.Text.RegularExpressions.RegexBoyerMoore::NegativeUnicode
|
|
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* ___NegativeUnicode_2;
|
|
// System.String System.Text.RegularExpressions.RegexBoyerMoore::Pattern
|
|
String_t* ___Pattern_3;
|
|
// System.Int32 System.Text.RegularExpressions.RegexBoyerMoore::LowASCII
|
|
int32_t ___LowASCII_4;
|
|
// System.Int32 System.Text.RegularExpressions.RegexBoyerMoore::HighASCII
|
|
int32_t ___HighASCII_5;
|
|
// System.Boolean System.Text.RegularExpressions.RegexBoyerMoore::RightToLeft
|
|
bool ___RightToLeft_6;
|
|
// System.Boolean System.Text.RegularExpressions.RegexBoyerMoore::CaseInsensitive
|
|
bool ___CaseInsensitive_7;
|
|
// System.Globalization.CultureInfo System.Text.RegularExpressions.RegexBoyerMoore::_culture
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ____culture_8;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.RegexCharClass
|
|
struct RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C : public RuntimeObject
|
|
{
|
|
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange> System.Text.RegularExpressions.RegexCharClass::_rangelist
|
|
List_1_tDB6FA8EDA7A26227B5CA100203EF7BAFA0FDBDDF* ____rangelist_14;
|
|
// System.Text.StringBuilder System.Text.RegularExpressions.RegexCharClass::_categories
|
|
StringBuilder_t* ____categories_15;
|
|
// System.Boolean System.Text.RegularExpressions.RegexCharClass::_canonical
|
|
bool ____canonical_16;
|
|
// System.Boolean System.Text.RegularExpressions.RegexCharClass::_negate
|
|
bool ____negate_17;
|
|
// System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexCharClass::_subtractor
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* ____subtractor_18;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.RegexReplacement
|
|
struct RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E : public RuntimeObject
|
|
{
|
|
// System.Collections.Generic.List`1<System.String> System.Text.RegularExpressions.RegexReplacement::_strings
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ____strings_5;
|
|
// System.Collections.Generic.List`1<System.Int32> System.Text.RegularExpressions.RegexReplacement::_rules
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ____rules_6;
|
|
// System.String System.Text.RegularExpressions.RegexReplacement::<Pattern>k__BackingField
|
|
String_t* ___U3CPatternU3Ek__BackingField_7;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.RegexRunner
|
|
struct RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B : public RuntimeObject
|
|
{
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::runtextbeg
|
|
int32_t ___runtextbeg_0;
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::runtextend
|
|
int32_t ___runtextend_1;
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::runtextstart
|
|
int32_t ___runtextstart_2;
|
|
// System.String System.Text.RegularExpressions.RegexRunner::runtext
|
|
String_t* ___runtext_3;
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::runtextpos
|
|
int32_t ___runtextpos_4;
|
|
// System.Int32[] System.Text.RegularExpressions.RegexRunner::runtrack
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___runtrack_5;
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::runtrackpos
|
|
int32_t ___runtrackpos_6;
|
|
// System.Int32[] System.Text.RegularExpressions.RegexRunner::runstack
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___runstack_7;
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::runstackpos
|
|
int32_t ___runstackpos_8;
|
|
// System.Int32[] System.Text.RegularExpressions.RegexRunner::runcrawl
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___runcrawl_9;
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::runcrawlpos
|
|
int32_t ___runcrawlpos_10;
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::runtrackcount
|
|
int32_t ___runtrackcount_11;
|
|
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.RegexRunner::runmatch
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___runmatch_12;
|
|
// System.Text.RegularExpressions.Regex System.Text.RegularExpressions.RegexRunner::runregex
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___runregex_13;
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::_timeout
|
|
int32_t ____timeout_14;
|
|
// System.Boolean System.Text.RegularExpressions.RegexRunner::_ignoreTimeout
|
|
bool ____ignoreTimeout_15;
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::_timeoutOccursAt
|
|
int32_t ____timeoutOccursAt_16;
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::_timeoutChecksToSkip
|
|
int32_t ____timeoutChecksToSkip_18;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.RegexRunnerFactory
|
|
struct RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Runtime.Serialization.SerializationInfo
|
|
struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37 : public RuntimeObject
|
|
{
|
|
// System.String[] System.Runtime.Serialization.SerializationInfo::m_members
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_members_3;
|
|
// System.Object[] System.Runtime.Serialization.SerializationInfo::m_data
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_data_4;
|
|
// System.Type[] System.Runtime.Serialization.SerializationInfo::m_types
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___m_types_5;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex
|
|
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___m_nameToIndex_6;
|
|
// System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember
|
|
int32_t ___m_currMember_7;
|
|
// System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter
|
|
RuntimeObject* ___m_converter_8;
|
|
// System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName
|
|
String_t* ___m_fullTypeName_9;
|
|
// System.String System.Runtime.Serialization.SerializationInfo::m_assemName
|
|
String_t* ___m_assemName_10;
|
|
// System.Type System.Runtime.Serialization.SerializationInfo::objectType
|
|
Type_t* ___objectType_11;
|
|
// System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit
|
|
bool ___isFullTypeNameSetExplicit_12;
|
|
// System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit
|
|
bool ___isAssemblyNameSetExplicit_13;
|
|
// System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust
|
|
bool ___requireSameTokenInPartialTrust_14;
|
|
};
|
|
|
|
// System.Diagnostics.Stopwatch
|
|
struct Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043 : public RuntimeObject
|
|
{
|
|
// System.Int64 System.Diagnostics.Stopwatch::elapsed
|
|
int64_t ___elapsed_2;
|
|
// System.Int64 System.Diagnostics.Stopwatch::started
|
|
int64_t ___started_3;
|
|
// System.Boolean System.Diagnostics.Stopwatch::is_running
|
|
bool ___is_running_4;
|
|
};
|
|
|
|
// System.String
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
// System.Int32 System.String::_stringLength
|
|
int32_t ____stringLength_4;
|
|
// System.Char System.String::_firstChar
|
|
Il2CppChar ____firstChar_5;
|
|
};
|
|
|
|
// System.Text.StringBuilder
|
|
struct StringBuilder_t : public RuntimeObject
|
|
{
|
|
// System.Char[] System.Text.StringBuilder::m_ChunkChars
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars_0;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
|
|
StringBuilder_t* ___m_ChunkPrevious_1;
|
|
// System.Int32 System.Text.StringBuilder::m_ChunkLength
|
|
int32_t ___m_ChunkLength_2;
|
|
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
|
|
int32_t ___m_ChunkOffset_3;
|
|
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
|
|
int32_t ___m_MaxCapacity_4;
|
|
};
|
|
|
|
// System.Diagnostics.Switch
|
|
struct Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412 : public RuntimeObject
|
|
{
|
|
// System.String System.Diagnostics.Switch::description
|
|
String_t* ___description_0;
|
|
// System.String System.Diagnostics.Switch::displayName
|
|
String_t* ___displayName_1;
|
|
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.Diagnostics.Switch::switchValueString
|
|
String_t* ___switchValueString_2;
|
|
// System.String System.Diagnostics.Switch::defaultValue
|
|
String_t* ___defaultValue_3;
|
|
};
|
|
|
|
// System.ValueType
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
|
{
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.ValueType
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
|
{
|
|
};
|
|
// Native definition for COM marshalling of System.ValueType
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
|
{
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator
|
|
struct X509Certificate2Enumerator_t22D702E84069BAFE855F2A160A391D77A05090EC : public RuntimeObject
|
|
{
|
|
// System.Collections.IEnumerator System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator::enumerator
|
|
RuntimeObject* ___enumerator_0;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509CertificateImpl
|
|
struct X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509ExtensionCollection
|
|
struct X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0 : public RuntimeObject
|
|
{
|
|
// System.Collections.ArrayList System.Security.Cryptography.X509Certificates.X509ExtensionCollection::_list
|
|
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____list_1;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator
|
|
struct X509ExtensionEnumerator_t7C4F4F5D65C7023FA1BEE3F6522B066A6CECCFF6 : public RuntimeObject
|
|
{
|
|
// System.Collections.IEnumerator System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator::enumerator
|
|
RuntimeObject* ___enumerator_0;
|
|
};
|
|
|
|
// Mono.X509PalImpl
|
|
struct X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Security.Cryptography.DerSequenceReader/<>c
|
|
struct U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Nullable`1<System.Boolean>
|
|
struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01
|
|
{
|
|
// System.Boolean System.Nullable`1::hasValue
|
|
bool ___hasValue_0;
|
|
// T System.Nullable`1::value
|
|
bool ___value_1;
|
|
};
|
|
|
|
// System.Numerics.BigInteger
|
|
struct BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F
|
|
{
|
|
// System.Int32 System.Numerics.BigInteger::_sign
|
|
int32_t ____sign_0;
|
|
// System.UInt32[] System.Numerics.BigInteger::_bits
|
|
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ____bits_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Numerics.BigInteger
|
|
struct BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_marshaled_pinvoke
|
|
{
|
|
int32_t ____sign_0;
|
|
Il2CppSafeArray/*NONE*/* ____bits_1;
|
|
};
|
|
// Native definition for COM marshalling of System.Numerics.BigInteger
|
|
struct BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_marshaled_com
|
|
{
|
|
int32_t ____sign_0;
|
|
Il2CppSafeArray/*NONE*/* ____bits_1;
|
|
};
|
|
|
|
// System.Boolean
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
|
|
{
|
|
// System.Boolean System.Boolean::m_value
|
|
bool ___m_value_0;
|
|
};
|
|
|
|
// System.Diagnostics.BooleanSwitch
|
|
struct BooleanSwitch_tF8C9C56BCA0DF054365CDFC4664C0E8B30312BB1 : public Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412
|
|
{
|
|
};
|
|
|
|
// System.Byte
|
|
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
|
|
{
|
|
// System.Byte System.Byte::m_value
|
|
uint8_t ___m_value_0;
|
|
};
|
|
|
|
// System.Char
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
|
|
{
|
|
// System.Char System.Char::m_value
|
|
Il2CppChar ___m_value_0;
|
|
};
|
|
|
|
// System.Security.Cryptography.DSA
|
|
struct DSA_tB12EE3AEA99FBD41DE318E2A371878CA94653E41 : public AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8
|
|
{
|
|
};
|
|
|
|
// System.Security.Cryptography.DSAParameters
|
|
struct DSAParameters_t2FA923FEA7E2DB5515EE54A7E86B0401D025E0E9
|
|
{
|
|
// System.Byte[] System.Security.Cryptography.DSAParameters::P
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___P_0;
|
|
// System.Byte[] System.Security.Cryptography.DSAParameters::Q
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___Q_1;
|
|
// System.Byte[] System.Security.Cryptography.DSAParameters::G
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___G_2;
|
|
// System.Byte[] System.Security.Cryptography.DSAParameters::Y
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___Y_3;
|
|
// System.Byte[] System.Security.Cryptography.DSAParameters::J
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___J_4;
|
|
// System.Byte[] System.Security.Cryptography.DSAParameters::X
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___X_5;
|
|
// System.Byte[] System.Security.Cryptography.DSAParameters::Seed
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___Seed_6;
|
|
// System.Int32 System.Security.Cryptography.DSAParameters::Counter
|
|
int32_t ___Counter_7;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Security.Cryptography.DSAParameters
|
|
struct DSAParameters_t2FA923FEA7E2DB5515EE54A7E86B0401D025E0E9_marshaled_pinvoke
|
|
{
|
|
Il2CppSafeArray/*NONE*/* ___P_0;
|
|
Il2CppSafeArray/*NONE*/* ___Q_1;
|
|
Il2CppSafeArray/*NONE*/* ___G_2;
|
|
Il2CppSafeArray/*NONE*/* ___Y_3;
|
|
Il2CppSafeArray/*NONE*/* ___J_4;
|
|
Il2CppSafeArray/*NONE*/* ___X_5;
|
|
Il2CppSafeArray/*NONE*/* ___Seed_6;
|
|
int32_t ___Counter_7;
|
|
};
|
|
// Native definition for COM marshalling of System.Security.Cryptography.DSAParameters
|
|
struct DSAParameters_t2FA923FEA7E2DB5515EE54A7E86B0401D025E0E9_marshaled_com
|
|
{
|
|
Il2CppSafeArray/*NONE*/* ___P_0;
|
|
Il2CppSafeArray/*NONE*/* ___Q_1;
|
|
Il2CppSafeArray/*NONE*/* ___G_2;
|
|
Il2CppSafeArray/*NONE*/* ___Y_3;
|
|
Il2CppSafeArray/*NONE*/* ___J_4;
|
|
Il2CppSafeArray/*NONE*/* ___X_5;
|
|
Il2CppSafeArray/*NONE*/* ___Seed_6;
|
|
int32_t ___Counter_7;
|
|
};
|
|
|
|
// System.DateTime
|
|
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D
|
|
{
|
|
// System.UInt64 System.DateTime::_dateData
|
|
uint64_t ____dateData_46;
|
|
};
|
|
|
|
// System.Double
|
|
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
|
|
{
|
|
// System.Double System.Double::m_value
|
|
double ___m_value_0;
|
|
};
|
|
|
|
// System.Enum
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
|
|
{
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Enum
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
|
|
{
|
|
};
|
|
// Native definition for COM marshalling of System.Enum
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
|
|
{
|
|
};
|
|
|
|
// System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute
|
|
struct ExcludeFromCodeCoverageAttribute_tD4CB13A2A9FCF2022C854E503D3B44DFF634FAAD : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
|
|
{
|
|
};
|
|
|
|
// System.Text.RegularExpressions.Group
|
|
struct Group_t26371E9136D6F43782C487B63C67C5FC4F472881 : public Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A
|
|
{
|
|
// System.Int32[] System.Text.RegularExpressions.Group::_caps
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____caps_4;
|
|
// System.Int32 System.Text.RegularExpressions.Group::_capcount
|
|
int32_t ____capcount_5;
|
|
// System.Text.RegularExpressions.CaptureCollection System.Text.RegularExpressions.Group::_capcoll
|
|
CaptureCollection_t38405272BD6A6DA77CD51487FD39624C6E95CC93* ____capcoll_6;
|
|
// System.String System.Text.RegularExpressions.Group::<Name>k__BackingField
|
|
String_t* ___U3CNameU3Ek__BackingField_7;
|
|
};
|
|
|
|
// System.Int32
|
|
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
|
|
{
|
|
// System.Int32 System.Int32::m_value
|
|
int32_t ___m_value_0;
|
|
};
|
|
|
|
// System.Int64
|
|
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
|
|
{
|
|
// System.Int64 System.Int64::m_value
|
|
int64_t ___m_value_0;
|
|
};
|
|
|
|
// System.IntPtr
|
|
struct IntPtr_t
|
|
{
|
|
// System.Void* System.IntPtr::m_value
|
|
void* ___m_value_0;
|
|
};
|
|
|
|
// System.Security.Cryptography.RSA
|
|
struct RSA_tDDE9BD4C9806074FA9B1C6A5C93523A97116F21A : public AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8
|
|
{
|
|
};
|
|
|
|
// System.Security.Cryptography.RSAParameters
|
|
struct RSAParameters_t14B738B69F9D1EB594D5F391BDF8E42BA16435FF
|
|
{
|
|
// System.Byte[] System.Security.Cryptography.RSAParameters::Exponent
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___Exponent_0;
|
|
// System.Byte[] System.Security.Cryptography.RSAParameters::Modulus
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___Modulus_1;
|
|
// System.Byte[] System.Security.Cryptography.RSAParameters::P
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___P_2;
|
|
// System.Byte[] System.Security.Cryptography.RSAParameters::Q
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___Q_3;
|
|
// System.Byte[] System.Security.Cryptography.RSAParameters::DP
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___DP_4;
|
|
// System.Byte[] System.Security.Cryptography.RSAParameters::DQ
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___DQ_5;
|
|
// System.Byte[] System.Security.Cryptography.RSAParameters::InverseQ
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___InverseQ_6;
|
|
// System.Byte[] System.Security.Cryptography.RSAParameters::D
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___D_7;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Security.Cryptography.RSAParameters
|
|
struct RSAParameters_t14B738B69F9D1EB594D5F391BDF8E42BA16435FF_marshaled_pinvoke
|
|
{
|
|
Il2CppSafeArray/*NONE*/* ___Exponent_0;
|
|
Il2CppSafeArray/*NONE*/* ___Modulus_1;
|
|
Il2CppSafeArray/*NONE*/* ___P_2;
|
|
Il2CppSafeArray/*NONE*/* ___Q_3;
|
|
Il2CppSafeArray/*NONE*/* ___DP_4;
|
|
Il2CppSafeArray/*NONE*/* ___DQ_5;
|
|
Il2CppSafeArray/*NONE*/* ___InverseQ_6;
|
|
Il2CppSafeArray/*NONE*/* ___D_7;
|
|
};
|
|
// Native definition for COM marshalling of System.Security.Cryptography.RSAParameters
|
|
struct RSAParameters_t14B738B69F9D1EB594D5F391BDF8E42BA16435FF_marshaled_com
|
|
{
|
|
Il2CppSafeArray/*NONE*/* ___Exponent_0;
|
|
Il2CppSafeArray/*NONE*/* ___Modulus_1;
|
|
Il2CppSafeArray/*NONE*/* ___P_2;
|
|
Il2CppSafeArray/*NONE*/* ___Q_3;
|
|
Il2CppSafeArray/*NONE*/* ___DP_4;
|
|
Il2CppSafeArray/*NONE*/* ___DQ_5;
|
|
Il2CppSafeArray/*NONE*/* ___InverseQ_6;
|
|
Il2CppSafeArray/*NONE*/* ___D_7;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.RegexPrefix
|
|
struct RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044
|
|
{
|
|
// System.Boolean System.Text.RegularExpressions.RegexPrefix::<CaseInsensitive>k__BackingField
|
|
bool ___U3CCaseInsensitiveU3Ek__BackingField_0;
|
|
// System.String System.Text.RegularExpressions.RegexPrefix::<Prefix>k__BackingField
|
|
String_t* ___U3CPrefixU3Ek__BackingField_2;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Text.RegularExpressions.RegexPrefix
|
|
struct RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_marshaled_pinvoke
|
|
{
|
|
int32_t ___U3CCaseInsensitiveU3Ek__BackingField_0;
|
|
char* ___U3CPrefixU3Ek__BackingField_2;
|
|
};
|
|
// Native definition for COM marshalling of System.Text.RegularExpressions.RegexPrefix
|
|
struct RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_marshaled_com
|
|
{
|
|
int32_t ___U3CCaseInsensitiveU3Ek__BackingField_0;
|
|
Il2CppChar* ___U3CPrefixU3Ek__BackingField_2;
|
|
};
|
|
|
|
// System.Diagnostics.SwitchLevelAttribute
|
|
struct SwitchLevelAttribute_t1C9B38E19789AFAA9F130ED5BF3D1E5EF7FEF4BF : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
|
|
{
|
|
// System.Type System.Diagnostics.SwitchLevelAttribute::type
|
|
Type_t* ___type_0;
|
|
};
|
|
|
|
// System.TimeSpan
|
|
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A
|
|
{
|
|
// System.Int64 System.TimeSpan::_ticks
|
|
int64_t ____ticks_22;
|
|
};
|
|
|
|
// System.Diagnostics.TraceSwitch
|
|
struct TraceSwitch_t199A0DB240149B5CDCF2754FC0E11CCBF51224B4 : public Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412
|
|
{
|
|
};
|
|
|
|
// System.Text.UTF8Encoding
|
|
struct UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE : public Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095
|
|
{
|
|
// System.Boolean System.Text.UTF8Encoding::_emitUTF8Identifier
|
|
bool ____emitUTF8Identifier_18;
|
|
// System.Boolean System.Text.UTF8Encoding::_isThrowException
|
|
bool ____isThrowException_19;
|
|
};
|
|
|
|
// System.Void
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
|
};
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X500DistinguishedName
|
|
struct X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6 : public AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8
|
|
{
|
|
// System.String System.Security.Cryptography.X509Certificates.X500DistinguishedName::name
|
|
String_t* ___name_2;
|
|
// System.Byte[] System.Security.Cryptography.X509Certificates.X500DistinguishedName::canonEncoding
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___canonEncoding_3;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl
|
|
struct X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25 : public X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF
|
|
{
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509CertificateCollection
|
|
struct X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE : public CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F
|
|
{
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Extension
|
|
struct X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5 : public AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8
|
|
{
|
|
// System.Boolean System.Security.Cryptography.X509Certificates.X509Extension::_critical
|
|
bool ____critical_2;
|
|
};
|
|
|
|
// System.ByReference`1<System.Char>
|
|
struct ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5
|
|
{
|
|
// System.IntPtr System.ByReference`1::_value
|
|
intptr_t ____value_0;
|
|
};
|
|
|
|
// System.ByReference`1<System.Int32>
|
|
struct ByReference_1_tDDF129F0BC02430629D5CD253C681112F166BAD4
|
|
{
|
|
// System.IntPtr System.ByReference`1::_value
|
|
intptr_t ____value_0;
|
|
};
|
|
|
|
// System.ByReference`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct ByReference_1_t607C1F3BC28B0E21B969461CDB0720FB01A82141
|
|
{
|
|
// System.IntPtr System.ByReference`1::_value
|
|
intptr_t ____value_0;
|
|
};
|
|
|
|
// System.Nullable`1<System.Text.RegularExpressions.RegexPrefix>
|
|
struct Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8
|
|
{
|
|
// System.Boolean System.Nullable`1::hasValue
|
|
bool ___hasValue_0;
|
|
// T System.Nullable`1::value
|
|
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 ___value_1;
|
|
};
|
|
|
|
// System.Security.Cryptography.AsnDecodeStatus
|
|
struct AsnDecodeStatus_t737979F35649102176A6E9667DB7BE674F1A13CB
|
|
{
|
|
// System.Int32 System.Security.Cryptography.AsnDecodeStatus::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.CspProviderFlags
|
|
struct CspProviderFlags_tE84737C4FE8BB969ADE9D11702DB91D3165D668F
|
|
{
|
|
// System.Int32 System.Security.Cryptography.CspProviderFlags::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.DSACryptoServiceProvider
|
|
struct DSACryptoServiceProvider_tB418CD8E85D69D879C7298E4A6A7D8CFAC09D79E : public DSA_tB12EE3AEA99FBD41DE318E2A371878CA94653E41
|
|
{
|
|
// Mono.Security.Cryptography.KeyPairPersistence System.Security.Cryptography.DSACryptoServiceProvider::store
|
|
KeyPairPersistence_t78D61FCDE172753BFE756B555CBD85127832CDF6* ___store_2;
|
|
// System.Boolean System.Security.Cryptography.DSACryptoServiceProvider::persistKey
|
|
bool ___persistKey_3;
|
|
// System.Boolean System.Security.Cryptography.DSACryptoServiceProvider::persisted
|
|
bool ___persisted_4;
|
|
// System.Boolean System.Security.Cryptography.DSACryptoServiceProvider::privateKeyExportable
|
|
bool ___privateKeyExportable_5;
|
|
// System.Boolean System.Security.Cryptography.DSACryptoServiceProvider::m_disposed
|
|
bool ___m_disposed_6;
|
|
// Mono.Security.Cryptography.DSAManaged System.Security.Cryptography.DSACryptoServiceProvider::dsa
|
|
DSAManaged_t93F6FE86F625186D42535B8E70AE3094A24367EB* ___dsa_7;
|
|
};
|
|
|
|
// System.Globalization.DateTimeFormatFlags
|
|
struct DateTimeFormatFlags_tB7CDDA8D7A3A0B2B9F64DB7704671F07FCE88FDC
|
|
{
|
|
// System.Int32 System.Globalization.DateTimeFormatFlags::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Globalization.DateTimeStyles
|
|
struct DateTimeStyles_t68D2C41B347837759F064D04F256AC268AF50465
|
|
{
|
|
// System.Int32 System.Globalization.DateTimeStyles::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Delegate
|
|
struct Delegate_t : public RuntimeObject
|
|
{
|
|
// System.IntPtr System.Delegate::method_ptr
|
|
intptr_t ___method_ptr_0;
|
|
// System.IntPtr System.Delegate::invoke_impl
|
|
intptr_t ___invoke_impl_1;
|
|
// System.Object System.Delegate::m_target
|
|
RuntimeObject* ___m_target_2;
|
|
// System.IntPtr System.Delegate::method
|
|
intptr_t ___method_3;
|
|
// System.IntPtr System.Delegate::delegate_trampoline
|
|
intptr_t ___delegate_trampoline_4;
|
|
// System.IntPtr System.Delegate::extra_arg
|
|
intptr_t ___extra_arg_5;
|
|
// System.IntPtr System.Delegate::method_code
|
|
intptr_t ___method_code_6;
|
|
// System.IntPtr System.Delegate::interp_method
|
|
intptr_t ___interp_method_7;
|
|
// System.IntPtr System.Delegate::interp_invoke_impl
|
|
intptr_t ___interp_invoke_impl_8;
|
|
// System.Reflection.MethodInfo System.Delegate::method_info
|
|
MethodInfo_t* ___method_info_9;
|
|
// System.Reflection.MethodInfo System.Delegate::original_method_info
|
|
MethodInfo_t* ___original_method_info_10;
|
|
// System.DelegateData System.Delegate::data
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
|
|
// System.Boolean System.Delegate::method_is_virtual
|
|
bool ___method_is_virtual_12;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Delegate
|
|
struct Delegate_t_marshaled_pinvoke
|
|
{
|
|
intptr_t ___method_ptr_0;
|
|
intptr_t ___invoke_impl_1;
|
|
Il2CppIUnknown* ___m_target_2;
|
|
intptr_t ___method_3;
|
|
intptr_t ___delegate_trampoline_4;
|
|
intptr_t ___extra_arg_5;
|
|
intptr_t ___method_code_6;
|
|
intptr_t ___interp_method_7;
|
|
intptr_t ___interp_invoke_impl_8;
|
|
MethodInfo_t* ___method_info_9;
|
|
MethodInfo_t* ___original_method_info_10;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
|
|
int32_t ___method_is_virtual_12;
|
|
};
|
|
// Native definition for COM marshalling of System.Delegate
|
|
struct Delegate_t_marshaled_com
|
|
{
|
|
intptr_t ___method_ptr_0;
|
|
intptr_t ___invoke_impl_1;
|
|
Il2CppIUnknown* ___m_target_2;
|
|
intptr_t ___method_3;
|
|
intptr_t ___delegate_trampoline_4;
|
|
intptr_t ___extra_arg_5;
|
|
intptr_t ___method_code_6;
|
|
intptr_t ___interp_method_7;
|
|
intptr_t ___interp_invoke_impl_8;
|
|
MethodInfo_t* ___method_info_9;
|
|
MethodInfo_t* ___original_method_info_10;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
|
|
int32_t ___method_is_virtual_12;
|
|
};
|
|
|
|
// System.Exception
|
|
struct Exception_t : public RuntimeObject
|
|
{
|
|
// System.String System.Exception::_className
|
|
String_t* ____className_1;
|
|
// System.String System.Exception::_message
|
|
String_t* ____message_2;
|
|
// System.Collections.IDictionary System.Exception::_data
|
|
RuntimeObject* ____data_3;
|
|
// System.Exception System.Exception::_innerException
|
|
Exception_t* ____innerException_4;
|
|
// System.String System.Exception::_helpURL
|
|
String_t* ____helpURL_5;
|
|
// System.Object System.Exception::_stackTrace
|
|
RuntimeObject* ____stackTrace_6;
|
|
// System.String System.Exception::_stackTraceString
|
|
String_t* ____stackTraceString_7;
|
|
// System.String System.Exception::_remoteStackTraceString
|
|
String_t* ____remoteStackTraceString_8;
|
|
// System.Int32 System.Exception::_remoteStackIndex
|
|
int32_t ____remoteStackIndex_9;
|
|
// System.Object System.Exception::_dynamicMethods
|
|
RuntimeObject* ____dynamicMethods_10;
|
|
// System.Int32 System.Exception::_HResult
|
|
int32_t ____HResult_11;
|
|
// System.String System.Exception::_source
|
|
String_t* ____source_12;
|
|
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
|
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
|
// System.IntPtr[] System.Exception::native_trace_ips
|
|
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
|
|
// System.Int32 System.Exception::caught_in_unmanaged
|
|
int32_t ___caught_in_unmanaged_16;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Exception
|
|
struct Exception_t_marshaled_pinvoke
|
|
{
|
|
char* ____className_1;
|
|
char* ____message_2;
|
|
RuntimeObject* ____data_3;
|
|
Exception_t_marshaled_pinvoke* ____innerException_4;
|
|
char* ____helpURL_5;
|
|
Il2CppIUnknown* ____stackTrace_6;
|
|
char* ____stackTraceString_7;
|
|
char* ____remoteStackTraceString_8;
|
|
int32_t ____remoteStackIndex_9;
|
|
Il2CppIUnknown* ____dynamicMethods_10;
|
|
int32_t ____HResult_11;
|
|
char* ____source_12;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
|
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
|
int32_t ___caught_in_unmanaged_16;
|
|
};
|
|
// Native definition for COM marshalling of System.Exception
|
|
struct Exception_t_marshaled_com
|
|
{
|
|
Il2CppChar* ____className_1;
|
|
Il2CppChar* ____message_2;
|
|
RuntimeObject* ____data_3;
|
|
Exception_t_marshaled_com* ____innerException_4;
|
|
Il2CppChar* ____helpURL_5;
|
|
Il2CppIUnknown* ____stackTrace_6;
|
|
Il2CppChar* ____stackTraceString_7;
|
|
Il2CppChar* ____remoteStackTraceString_8;
|
|
int32_t ____remoteStackIndex_9;
|
|
Il2CppIUnknown* ____dynamicMethods_10;
|
|
int32_t ____HResult_11;
|
|
Il2CppChar* ____source_12;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
|
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
|
int32_t ___caught_in_unmanaged_16;
|
|
};
|
|
|
|
// System.Runtime.InteropServices.GCHandle
|
|
struct GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC
|
|
{
|
|
// System.IntPtr System.Runtime.InteropServices.GCHandle::handle
|
|
intptr_t ___handle_0;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.Match
|
|
struct Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F : public Group_t26371E9136D6F43782C487B63C67C5FC4F472881
|
|
{
|
|
// System.Text.RegularExpressions.GroupCollection System.Text.RegularExpressions.Match::_groupcoll
|
|
GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* ____groupcoll_8;
|
|
// System.Text.RegularExpressions.Regex System.Text.RegularExpressions.Match::_regex
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ____regex_9;
|
|
// System.Int32 System.Text.RegularExpressions.Match::_textbeg
|
|
int32_t ____textbeg_10;
|
|
// System.Int32 System.Text.RegularExpressions.Match::_textpos
|
|
int32_t ____textpos_11;
|
|
// System.Int32 System.Text.RegularExpressions.Match::_textend
|
|
int32_t ____textend_12;
|
|
// System.Int32 System.Text.RegularExpressions.Match::_textstart
|
|
int32_t ____textstart_13;
|
|
// System.Int32[][] System.Text.RegularExpressions.Match::_matches
|
|
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* ____matches_14;
|
|
// System.Int32[] System.Text.RegularExpressions.Match::_matchcount
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____matchcount_15;
|
|
// System.Boolean System.Text.RegularExpressions.Match::_balancing
|
|
bool ____balancing_16;
|
|
};
|
|
|
|
// System.Security.Cryptography.OidGroup
|
|
struct OidGroup_t7B851FE5BD88C9E5CA5365670A3EAF8B70D239B0
|
|
{
|
|
// System.Int32 System.Security.Cryptography.OidGroup::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.OpenFlags
|
|
struct OpenFlags_t36A7F7746910A2D056E64475F8DE926B5AE2BF00
|
|
{
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.OpenFlags::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.RSACryptoServiceProvider
|
|
struct RSACryptoServiceProvider_t5B3DF0CAFF65D4103EB90063F3C3B00FE2C6967C : public RSA_tDDE9BD4C9806074FA9B1C6A5C93523A97116F21A
|
|
{
|
|
// Mono.Security.Cryptography.KeyPairPersistence System.Security.Cryptography.RSACryptoServiceProvider::store
|
|
KeyPairPersistence_t78D61FCDE172753BFE756B555CBD85127832CDF6* ___store_3;
|
|
// System.Boolean System.Security.Cryptography.RSACryptoServiceProvider::persistKey
|
|
bool ___persistKey_4;
|
|
// System.Boolean System.Security.Cryptography.RSACryptoServiceProvider::persisted
|
|
bool ___persisted_5;
|
|
// System.Boolean System.Security.Cryptography.RSACryptoServiceProvider::privateKeyExportable
|
|
bool ___privateKeyExportable_6;
|
|
// System.Boolean System.Security.Cryptography.RSACryptoServiceProvider::m_disposed
|
|
bool ___m_disposed_7;
|
|
// Mono.Security.Cryptography.RSAManaged System.Security.Cryptography.RSACryptoServiceProvider::rsa
|
|
RSAManaged_t897B29EF76C459408E11A42680C942716D809001* ___rsa_8;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.RegexOptions
|
|
struct RegexOptions_tE9DA9C4DF8FB26DD1C7E0F8AA022C1164A423F6B
|
|
{
|
|
// System.Int32 System.Text.RegularExpressions.RegexOptions::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.RuntimeFieldHandle
|
|
struct RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5
|
|
{
|
|
// System.IntPtr System.RuntimeFieldHandle::value
|
|
intptr_t ___value_0;
|
|
};
|
|
|
|
// System.RuntimeTypeHandle
|
|
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
|
|
{
|
|
// System.IntPtr System.RuntimeTypeHandle::value
|
|
intptr_t ___value_0;
|
|
};
|
|
|
|
// System.Runtime.InteropServices.SafeHandle
|
|
struct SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7 : public CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9
|
|
{
|
|
// System.IntPtr System.Runtime.InteropServices.SafeHandle::handle
|
|
intptr_t ___handle_0;
|
|
// System.Int32 System.Runtime.InteropServices.SafeHandle::_state
|
|
int32_t ____state_1;
|
|
// System.Boolean System.Runtime.InteropServices.SafeHandle::_ownsHandle
|
|
bool ____ownsHandle_2;
|
|
// System.Boolean System.Runtime.InteropServices.SafeHandle::_fullyInitialized
|
|
bool ____fullyInitialized_3;
|
|
};
|
|
|
|
// System.Security.Authentication.SslProtocols
|
|
struct SslProtocols_t21FADB874FCAEC5039AE593AA3544639C938C77E
|
|
{
|
|
// System.Int32 System.Security.Authentication.SslProtocols::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.StoreLocation
|
|
struct StoreLocation_t1B4292CC32103A252CD439258A6C7F766857D620
|
|
{
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.StoreLocation::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.StoreName
|
|
struct StoreName_t9A66D4BB10141BBD14BC206C94CE9928F7259A17
|
|
{
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.StoreName::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Runtime.Serialization.StreamingContextStates
|
|
struct StreamingContextStates_t5EE358E619B251608A9327618C7BFE8638FC33C1
|
|
{
|
|
// System.Int32 System.Runtime.Serialization.StreamingContextStates::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.StringComparison
|
|
struct StringComparison_tE14A55CCFA001A5AC85D754179BF2888F45CC94D
|
|
{
|
|
// System.Int32 System.StringComparison::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.StringSplitOptions
|
|
struct StringSplitOptions_t4DD892C76C70DD4800FC1B76054D69826F770062
|
|
{
|
|
// System.Int32 System.StringSplitOptions::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Globalization.TextInfo
|
|
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4 : public RuntimeObject
|
|
{
|
|
// System.String System.Globalization.TextInfo::m_listSeparator
|
|
String_t* ___m_listSeparator_0;
|
|
// System.Boolean System.Globalization.TextInfo::m_isReadOnly
|
|
bool ___m_isReadOnly_1;
|
|
// System.String System.Globalization.TextInfo::m_cultureName
|
|
String_t* ___m_cultureName_2;
|
|
// System.Globalization.CultureData System.Globalization.TextInfo::m_cultureData
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData_3;
|
|
// System.String System.Globalization.TextInfo::m_textInfoName
|
|
String_t* ___m_textInfoName_4;
|
|
// System.Nullable`1<System.Boolean> System.Globalization.TextInfo::m_IsAsciiCasingSameAsInvariant
|
|
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___m_IsAsciiCasingSameAsInvariant_5;
|
|
// System.String System.Globalization.TextInfo::customCultureName
|
|
String_t* ___customCultureName_7;
|
|
// System.Int32 System.Globalization.TextInfo::m_nDataItem
|
|
int32_t ___m_nDataItem_8;
|
|
// System.Boolean System.Globalization.TextInfo::m_useUserOverride
|
|
bool ___m_useUserOverride_9;
|
|
// System.Int32 System.Globalization.TextInfo::m_win32LangID
|
|
int32_t ___m_win32LangID_10;
|
|
};
|
|
|
|
// System.Diagnostics.TraceLevel
|
|
struct TraceLevel_tC6D20CA5EEFD86A80A74E11DCFAE7AAA5A5D966F
|
|
{
|
|
// System.Int32 System.Diagnostics.TraceLevel::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags
|
|
struct X500DistinguishedNameFlags_t8275E5285FC45250F2090746C6A0B860BD6C0D8A
|
|
{
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate
|
|
struct X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4 : public RuntimeObject
|
|
{
|
|
// System.Security.Cryptography.X509Certificates.X509CertificateImpl System.Security.Cryptography.X509Certificates.X509Certificate::impl
|
|
X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* ___impl_0;
|
|
// System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate::lazyCertHash
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___lazyCertHash_1;
|
|
// System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate::lazySerialNumber
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___lazySerialNumber_2;
|
|
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate::lazyIssuer
|
|
String_t* ___lazyIssuer_3;
|
|
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate::lazySubject
|
|
String_t* ___lazySubject_4;
|
|
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate::lazyKeyAlgorithm
|
|
String_t* ___lazyKeyAlgorithm_5;
|
|
// System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate::lazyKeyAlgorithmParameters
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___lazyKeyAlgorithmParameters_6;
|
|
// System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate::lazyPublicKey
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___lazyPublicKey_7;
|
|
// System.DateTime System.Security.Cryptography.X509Certificates.X509Certificate::lazyNotBefore
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___lazyNotBefore_8;
|
|
// System.DateTime System.Security.Cryptography.X509Certificates.X509Certificate::lazyNotAfter
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___lazyNotAfter_9;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2Collection
|
|
struct X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB : public X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE
|
|
{
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509ChainStatusFlags
|
|
struct X509ChainStatusFlags_t57C80D7C1F4C319F6D6B9FBDEA402E3023E6C769
|
|
{
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509ChainStatusFlags::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509ContentType
|
|
struct X509ContentType_tE380F75FB30CDF5184B17EBD740F547B8418B59D
|
|
{
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509ContentType::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509FindType
|
|
struct X509FindType_t498D1CC078663253211BEC2E671771106253C482
|
|
{
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509FindType::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509KeyStorageFlags
|
|
struct X509KeyStorageFlags_t57AEEE4A9DF943CEF8212B856ED6CA5DF05AEEA3
|
|
{
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509KeyStorageFlags::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509KeyUsageFlags
|
|
struct X509KeyUsageFlags_tA8507F67CB3F1DF68E2126C9D40A62CCF27065BA
|
|
{
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509KeyUsageFlags::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509NameType
|
|
struct X509NameType_t65E4E6CC085E12EADF5FDBA20B1806363CACA2D3
|
|
{
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509NameType::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509RevocationFlag
|
|
struct X509RevocationFlag_t007BADE584CC58406E19C6B8BC93366FEAB17126
|
|
{
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509RevocationFlag::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509RevocationMode
|
|
struct X509RevocationMode_t952728D003111036C0DF94B0F66FF02B7DB04E62
|
|
{
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509RevocationMode::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierHashAlgorithm
|
|
struct X509SubjectKeyIdentifierHashAlgorithm_t4C6C8DA584ACCEE078289F4B7920703D23C10C04
|
|
{
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierHashAlgorithm::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509VerificationFlags
|
|
struct X509VerificationFlags_tA582DCC55F39CC9E742C18B7BE953D4CC3DF8FCC
|
|
{
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509VerificationFlags::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Security.Cryptography.DerSequenceReader/DerTag
|
|
struct DerTag_t2648C8403BA73716ED1F27F26CD949F8AEEF2F59
|
|
{
|
|
// System.Byte System.Security.Cryptography.DerSequenceReader/DerTag::value__
|
|
uint8_t ___value___2;
|
|
};
|
|
|
|
// System.ReadOnlySpan`1<System.Char>
|
|
struct ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1
|
|
{
|
|
// System.ByReference`1<T> System.ReadOnlySpan`1::_pointer
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer_0;
|
|
// System.Int32 System.ReadOnlySpan`1::_length
|
|
int32_t ____length_1;
|
|
};
|
|
|
|
// System.ReadOnlySpan`1<System.Int32>
|
|
struct ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282
|
|
{
|
|
// System.ByReference`1<T> System.ReadOnlySpan`1::_pointer
|
|
ByReference_1_tDDF129F0BC02430629D5CD253C681112F166BAD4 ____pointer_0;
|
|
// System.Int32 System.ReadOnlySpan`1::_length
|
|
int32_t ____length_1;
|
|
};
|
|
|
|
// System.ReadOnlySpan`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC
|
|
{
|
|
// System.ByReference`1<T> System.ReadOnlySpan`1::_pointer
|
|
ByReference_1_t607C1F3BC28B0E21B969461CDB0720FB01A82141 ____pointer_0;
|
|
// System.Int32 System.ReadOnlySpan`1::_length
|
|
int32_t ____length_1;
|
|
};
|
|
|
|
// System.Span`1<System.Int32>
|
|
struct Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316
|
|
{
|
|
// System.ByReference`1<T> System.Span`1::_pointer
|
|
ByReference_1_tDDF129F0BC02430629D5CD253C681112F166BAD4 ____pointer_0;
|
|
// System.Int32 System.Span`1::_length
|
|
int32_t ____length_1;
|
|
};
|
|
|
|
// System.Span`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54
|
|
{
|
|
// System.ByReference`1<T> System.Span`1::_pointer
|
|
ByReference_1_t607C1F3BC28B0E21B969461CDB0720FB01A82141 ____pointer_0;
|
|
// System.Int32 System.Span`1::_length
|
|
int32_t ____length_1;
|
|
};
|
|
|
|
// System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>
|
|
struct WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257 : public RuntimeObject
|
|
{
|
|
// System.Runtime.InteropServices.GCHandle System.WeakReference`1::handle
|
|
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ___handle_0;
|
|
// System.Boolean System.WeakReference`1::trackResurrection
|
|
bool ___trackResurrection_1;
|
|
};
|
|
|
|
// System.Globalization.DateTimeFormatInfo
|
|
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A : public RuntimeObject
|
|
{
|
|
// System.Globalization.CultureData System.Globalization.DateTimeFormatInfo::_cultureData
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ____cultureData_1;
|
|
// System.String System.Globalization.DateTimeFormatInfo::_name
|
|
String_t* ____name_2;
|
|
// System.String System.Globalization.DateTimeFormatInfo::_langName
|
|
String_t* ____langName_3;
|
|
// System.Globalization.CompareInfo System.Globalization.DateTimeFormatInfo::_compareInfo
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ____compareInfo_4;
|
|
// System.Globalization.CultureInfo System.Globalization.DateTimeFormatInfo::_cultureInfo
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ____cultureInfo_5;
|
|
// System.String System.Globalization.DateTimeFormatInfo::amDesignator
|
|
String_t* ___amDesignator_6;
|
|
// System.String System.Globalization.DateTimeFormatInfo::pmDesignator
|
|
String_t* ___pmDesignator_7;
|
|
// System.String System.Globalization.DateTimeFormatInfo::dateSeparator
|
|
String_t* ___dateSeparator_8;
|
|
// System.String System.Globalization.DateTimeFormatInfo::generalShortTimePattern
|
|
String_t* ___generalShortTimePattern_9;
|
|
// System.String System.Globalization.DateTimeFormatInfo::generalLongTimePattern
|
|
String_t* ___generalLongTimePattern_10;
|
|
// System.String System.Globalization.DateTimeFormatInfo::timeSeparator
|
|
String_t* ___timeSeparator_11;
|
|
// System.String System.Globalization.DateTimeFormatInfo::monthDayPattern
|
|
String_t* ___monthDayPattern_12;
|
|
// System.String System.Globalization.DateTimeFormatInfo::dateTimeOffsetPattern
|
|
String_t* ___dateTimeOffsetPattern_13;
|
|
// System.Globalization.Calendar System.Globalization.DateTimeFormatInfo::calendar
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_17;
|
|
// System.Int32 System.Globalization.DateTimeFormatInfo::firstDayOfWeek
|
|
int32_t ___firstDayOfWeek_18;
|
|
// System.Int32 System.Globalization.DateTimeFormatInfo::calendarWeekRule
|
|
int32_t ___calendarWeekRule_19;
|
|
// System.String System.Globalization.DateTimeFormatInfo::fullDateTimePattern
|
|
String_t* ___fullDateTimePattern_20;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::abbreviatedDayNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___abbreviatedDayNames_21;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::m_superShortDayNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_superShortDayNames_22;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::dayNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___dayNames_23;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::abbreviatedMonthNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___abbreviatedMonthNames_24;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::monthNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___monthNames_25;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::genitiveMonthNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___genitiveMonthNames_26;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::m_genitiveAbbreviatedMonthNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_genitiveAbbreviatedMonthNames_27;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::leapYearMonthNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___leapYearMonthNames_28;
|
|
// System.String System.Globalization.DateTimeFormatInfo::longDatePattern
|
|
String_t* ___longDatePattern_29;
|
|
// System.String System.Globalization.DateTimeFormatInfo::shortDatePattern
|
|
String_t* ___shortDatePattern_30;
|
|
// System.String System.Globalization.DateTimeFormatInfo::yearMonthPattern
|
|
String_t* ___yearMonthPattern_31;
|
|
// System.String System.Globalization.DateTimeFormatInfo::longTimePattern
|
|
String_t* ___longTimePattern_32;
|
|
// System.String System.Globalization.DateTimeFormatInfo::shortTimePattern
|
|
String_t* ___shortTimePattern_33;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::allYearMonthPatterns
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allYearMonthPatterns_34;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::allShortDatePatterns
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allShortDatePatterns_35;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::allLongDatePatterns
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allLongDatePatterns_36;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::allShortTimePatterns
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allShortTimePatterns_37;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::allLongTimePatterns
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allLongTimePatterns_38;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::m_eraNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_eraNames_39;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::m_abbrevEraNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_abbrevEraNames_40;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::m_abbrevEnglishEraNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_abbrevEnglishEraNames_41;
|
|
// System.Globalization.CalendarId[] System.Globalization.DateTimeFormatInfo::optionalCalendars
|
|
CalendarIdU5BU5D_t559EDBF1B819A695624BE9004EAA4FFA38B65CDA* ___optionalCalendars_42;
|
|
// System.Boolean System.Globalization.DateTimeFormatInfo::_isReadOnly
|
|
bool ____isReadOnly_44;
|
|
// System.Globalization.DateTimeFormatFlags System.Globalization.DateTimeFormatInfo::formatFlags
|
|
int32_t ___formatFlags_45;
|
|
// System.String System.Globalization.DateTimeFormatInfo::_fullTimeSpanPositivePattern
|
|
String_t* ____fullTimeSpanPositivePattern_49;
|
|
// System.String System.Globalization.DateTimeFormatInfo::_fullTimeSpanNegativePattern
|
|
String_t* ____fullTimeSpanNegativePattern_50;
|
|
// System.Globalization.DateTimeFormatInfo/TokenHashValue[] System.Globalization.DateTimeFormatInfo::_dtfiTokenHash
|
|
TokenHashValueU5BU5D_t3F8794937D04BA380989A813F33418CED58E80B9* ____dtfiTokenHash_52;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.MatchSparse
|
|
struct MatchSparse_t06FDC774ECCE8FFA0534A17E5990A8407658E906 : public Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F
|
|
{
|
|
// System.Collections.Hashtable System.Text.RegularExpressions.MatchSparse::_caps
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____caps_18;
|
|
};
|
|
|
|
// System.MulticastDelegate
|
|
struct MulticastDelegate_t : public Delegate_t
|
|
{
|
|
// System.Delegate[] System.MulticastDelegate::delegates
|
|
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.MulticastDelegate
|
|
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
|
|
{
|
|
Delegate_t_marshaled_pinvoke** ___delegates_13;
|
|
};
|
|
// Native definition for COM marshalling of System.MulticastDelegate
|
|
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
|
|
{
|
|
Delegate_t_marshaled_com** ___delegates_13;
|
|
};
|
|
|
|
// System.Security.Cryptography.Oid
|
|
struct Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287 : public RuntimeObject
|
|
{
|
|
// System.String System.Security.Cryptography.Oid::_value
|
|
String_t* ____value_0;
|
|
// System.String System.Security.Cryptography.Oid::_friendlyName
|
|
String_t* ____friendlyName_1;
|
|
// System.Security.Cryptography.OidGroup System.Security.Cryptography.Oid::_group
|
|
int32_t ____group_2;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.Regex
|
|
struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772 : public RuntimeObject
|
|
{
|
|
// System.TimeSpan System.Text.RegularExpressions.Regex::internalMatchTimeout
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___internalMatchTimeout_10;
|
|
// System.String System.Text.RegularExpressions.Regex::pattern
|
|
String_t* ___pattern_12;
|
|
// System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex::roptions
|
|
int32_t ___roptions_13;
|
|
// System.Text.RegularExpressions.RegexRunnerFactory System.Text.RegularExpressions.Regex::factory
|
|
RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7* ___factory_14;
|
|
// System.Collections.Hashtable System.Text.RegularExpressions.Regex::caps
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___caps_15;
|
|
// System.Collections.Hashtable System.Text.RegularExpressions.Regex::capnames
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___capnames_16;
|
|
// System.String[] System.Text.RegularExpressions.Regex::capslist
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___capslist_17;
|
|
// System.Int32 System.Text.RegularExpressions.Regex::capsize
|
|
int32_t ___capsize_18;
|
|
// System.Text.RegularExpressions.ExclusiveReference System.Text.RegularExpressions.Regex::_runnerref
|
|
ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* ____runnerref_19;
|
|
// System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement> System.Text.RegularExpressions.Regex::_replref
|
|
WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* ____replref_20;
|
|
// System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.Regex::_code
|
|
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* ____code_21;
|
|
// System.Boolean System.Text.RegularExpressions.Regex::_refsInitialized
|
|
bool ____refsInitialized_22;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.RegexCode
|
|
struct RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7 : public RuntimeObject
|
|
{
|
|
// System.Int32[] System.Text.RegularExpressions.RegexCode::Codes
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___Codes_48;
|
|
// System.String[] System.Text.RegularExpressions.RegexCode::Strings
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___Strings_49;
|
|
// System.Int32 System.Text.RegularExpressions.RegexCode::TrackCount
|
|
int32_t ___TrackCount_50;
|
|
// System.Collections.Hashtable System.Text.RegularExpressions.RegexCode::Caps
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___Caps_51;
|
|
// System.Int32 System.Text.RegularExpressions.RegexCode::CapSize
|
|
int32_t ___CapSize_52;
|
|
// System.Nullable`1<System.Text.RegularExpressions.RegexPrefix> System.Text.RegularExpressions.RegexCode::FCPrefix
|
|
Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8 ___FCPrefix_53;
|
|
// System.Text.RegularExpressions.RegexBoyerMoore System.Text.RegularExpressions.RegexCode::BMPrefix
|
|
RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* ___BMPrefix_54;
|
|
// System.Int32 System.Text.RegularExpressions.RegexCode::Anchors
|
|
int32_t ___Anchors_55;
|
|
// System.Boolean System.Text.RegularExpressions.RegexCode::RightToLeft
|
|
bool ___RightToLeft_56;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.RegexNode
|
|
struct RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360 : public RuntimeObject
|
|
{
|
|
// System.Int32 System.Text.RegularExpressions.RegexNode::NType
|
|
int32_t ___NType_0;
|
|
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode> System.Text.RegularExpressions.RegexNode::Children
|
|
List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8* ___Children_1;
|
|
// System.String System.Text.RegularExpressions.RegexNode::Str
|
|
String_t* ___Str_2;
|
|
// System.Char System.Text.RegularExpressions.RegexNode::Ch
|
|
Il2CppChar ___Ch_3;
|
|
// System.Int32 System.Text.RegularExpressions.RegexNode::M
|
|
int32_t ___M_4;
|
|
// System.Int32 System.Text.RegularExpressions.RegexNode::N
|
|
int32_t ___N_5;
|
|
// System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.RegexNode::Options
|
|
int32_t ___Options_6;
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::Next
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___Next_7;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.RegexParser
|
|
struct RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40 : public RuntimeObject
|
|
{
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::_stack
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ____stack_0;
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::_group
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ____group_1;
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::_alternation
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ____alternation_2;
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::_concatenation
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ____concatenation_3;
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::_unit
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ____unit_4;
|
|
// System.String System.Text.RegularExpressions.RegexParser::_pattern
|
|
String_t* ____pattern_5;
|
|
// System.Int32 System.Text.RegularExpressions.RegexParser::_currentPos
|
|
int32_t ____currentPos_6;
|
|
// System.Globalization.CultureInfo System.Text.RegularExpressions.RegexParser::_culture
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ____culture_7;
|
|
// System.Int32 System.Text.RegularExpressions.RegexParser::_autocap
|
|
int32_t ____autocap_8;
|
|
// System.Int32 System.Text.RegularExpressions.RegexParser::_capcount
|
|
int32_t ____capcount_9;
|
|
// System.Int32 System.Text.RegularExpressions.RegexParser::_captop
|
|
int32_t ____captop_10;
|
|
// System.Int32 System.Text.RegularExpressions.RegexParser::_capsize
|
|
int32_t ____capsize_11;
|
|
// System.Collections.Hashtable System.Text.RegularExpressions.RegexParser::_caps
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____caps_12;
|
|
// System.Collections.Hashtable System.Text.RegularExpressions.RegexParser::_capnames
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____capnames_13;
|
|
// System.Int32[] System.Text.RegularExpressions.RegexParser::_capnumlist
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____capnumlist_14;
|
|
// System.Collections.Generic.List`1<System.String> System.Text.RegularExpressions.RegexParser::_capnamelist
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ____capnamelist_15;
|
|
// System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.RegexParser::_options
|
|
int32_t ____options_16;
|
|
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions> System.Text.RegularExpressions.RegexParser::_optionsStack
|
|
List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* ____optionsStack_17;
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::_ignoreNextParen
|
|
bool ____ignoreNextParen_18;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.RegexTree
|
|
struct RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2 : public RuntimeObject
|
|
{
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexTree::Root
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___Root_0;
|
|
// System.Collections.Hashtable System.Text.RegularExpressions.RegexTree::Caps
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___Caps_1;
|
|
// System.Int32[] System.Text.RegularExpressions.RegexTree::CapNumList
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___CapNumList_2;
|
|
// System.Int32 System.Text.RegularExpressions.RegexTree::CapTop
|
|
int32_t ___CapTop_3;
|
|
// System.Collections.Hashtable System.Text.RegularExpressions.RegexTree::CapNames
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___CapNames_4;
|
|
// System.String[] System.Text.RegularExpressions.RegexTree::CapsList
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___CapsList_5;
|
|
// System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.RegexTree::Options
|
|
int32_t ___Options_6;
|
|
};
|
|
|
|
// Microsoft.Win32.SafeHandles.SafePasswordHandle
|
|
struct SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463 : public SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7
|
|
{
|
|
};
|
|
|
|
// System.Runtime.Serialization.StreamingContext
|
|
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677
|
|
{
|
|
// System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext
|
|
RuntimeObject* ___m_additionalContext_0;
|
|
// System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state
|
|
int32_t ___m_state_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
|
|
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_pinvoke
|
|
{
|
|
Il2CppIUnknown* ___m_additionalContext_0;
|
|
int32_t ___m_state_1;
|
|
};
|
|
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
|
|
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_com
|
|
{
|
|
Il2CppIUnknown* ___m_additionalContext_0;
|
|
int32_t ___m_state_1;
|
|
};
|
|
|
|
// System.SystemException
|
|
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
|
{
|
|
};
|
|
|
|
// System.Type
|
|
struct Type_t : public MemberInfo_t
|
|
{
|
|
// System.RuntimeTypeHandle System.Type::_impl
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
|
|
};
|
|
|
|
// System.WeakReference
|
|
struct WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E : public RuntimeObject
|
|
{
|
|
// System.Boolean System.WeakReference::isLongReference
|
|
bool ___isLongReference_0;
|
|
// System.Runtime.InteropServices.GCHandle System.WeakReference::gcHandle
|
|
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ___gcHandle_1;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension
|
|
struct X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35 : public X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5
|
|
{
|
|
// System.Boolean System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::_certificateAuthority
|
|
bool ____certificateAuthority_5;
|
|
// System.Boolean System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::_hasPathLengthConstraint
|
|
bool ____hasPathLengthConstraint_6;
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::_pathLengthConstraint
|
|
int32_t ____pathLengthConstraint_7;
|
|
// System.Security.Cryptography.AsnDecodeStatus System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::_status
|
|
int32_t ____status_8;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2
|
|
struct X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D : public X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4
|
|
{
|
|
// System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate2::lazyRawData
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___lazyRawData_10;
|
|
// System.Security.Cryptography.Oid modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate2::lazySignatureAlgorithm
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* ___lazySignatureAlgorithm_11;
|
|
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate2::lazyVersion
|
|
int32_t ___lazyVersion_12;
|
|
// System.Security.Cryptography.X509Certificates.X500DistinguishedName modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate2::lazySubjectName
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___lazySubjectName_13;
|
|
// System.Security.Cryptography.X509Certificates.X500DistinguishedName modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate2::lazyIssuerName
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___lazyIssuerName_14;
|
|
// System.Security.Cryptography.X509Certificates.PublicKey modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate2::lazyPublicKey
|
|
PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* ___lazyPublicKey_15;
|
|
// System.Security.Cryptography.AsymmetricAlgorithm modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate2::lazyPrivateKey
|
|
AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8* ___lazyPrivateKey_16;
|
|
// System.Security.Cryptography.X509Certificates.X509ExtensionCollection modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate2::lazyExtensions
|
|
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* ___lazyExtensions_17;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension
|
|
struct X509EnhancedKeyUsageExtension_t237A41510BAC916B5FFC67B464E1D38980D70BFF : public X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5
|
|
{
|
|
// System.Security.Cryptography.OidCollection System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension::_enhKeyUsage
|
|
OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* ____enhKeyUsage_3;
|
|
// System.Security.Cryptography.AsnDecodeStatus System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension::_status
|
|
int32_t ____status_4;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509KeyUsageExtension
|
|
struct X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B : public X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5
|
|
{
|
|
// System.Security.Cryptography.X509Certificates.X509KeyUsageFlags System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::_keyUsages
|
|
int32_t ____keyUsages_6;
|
|
// System.Security.Cryptography.AsnDecodeStatus System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::_status
|
|
int32_t ____status_7;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension
|
|
struct X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5 : public X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5
|
|
{
|
|
// System.Byte[] System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::_subjectKeyIdentifier
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____subjectKeyIdentifier_5;
|
|
// System.String System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::_ski
|
|
String_t* ____ski_6;
|
|
// System.Security.Cryptography.AsnDecodeStatus System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::_status
|
|
int32_t ____status_7;
|
|
};
|
|
|
|
// System.Func`1<System.Globalization.DateTimeFormatInfo>
|
|
struct Func_1_t74FC36A4C2A548316E77F19B2968741BF64B13D7 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`1<System.Text.Encoding>
|
|
struct Func_1_t01E2C750A870E045042E56862BC569C800166539 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Collections.Generic.ValueListBuilder`1<System.Int32>
|
|
struct ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961
|
|
{
|
|
// System.Span`1<T> System.Collections.Generic.ValueListBuilder`1::_span
|
|
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 ____span_0;
|
|
// T[] System.Collections.Generic.ValueListBuilder`1::_arrayFromPool
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____arrayFromPool_1;
|
|
// System.Int32 System.Collections.Generic.ValueListBuilder`1::_pos
|
|
int32_t ____pos_2;
|
|
};
|
|
|
|
// System.Collections.Generic.ValueListBuilder`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26
|
|
{
|
|
// System.Span`1<T> System.Collections.Generic.ValueListBuilder`1::_span
|
|
Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54 ____span_0;
|
|
// T[] System.Collections.Generic.ValueListBuilder`1::_arrayFromPool
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ____arrayFromPool_1;
|
|
// System.Int32 System.Collections.Generic.ValueListBuilder`1::_pos
|
|
int32_t ____pos_2;
|
|
};
|
|
|
|
// System.ArgumentException
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
// System.String System.ArgumentException::_paramName
|
|
String_t* ____paramName_18;
|
|
};
|
|
|
|
// System.Security.Authentication.AuthenticationException
|
|
struct AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// System.Security.Cryptography.CryptographicException
|
|
struct CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// System.NotSupportedException
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// System.TimeoutException
|
|
struct TimeoutException_t7552449BA7E0911AEA1B6C7D1BEAC6534819305F : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// System.ArgumentNullException
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
};
|
|
|
|
// System.ArgumentOutOfRangeException
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
// System.Object System.ArgumentOutOfRangeException::_actualValue
|
|
RuntimeObject* ____actualValue_19;
|
|
};
|
|
|
|
// System.Security.Cryptography.CryptographicUnexpectedOperationException
|
|
struct CryptographicUnexpectedOperationException_t095FC6568619B47AC96204DE0D6C774B4EB7F810 : public CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F
|
|
{
|
|
};
|
|
|
|
// System.Text.DecoderFallbackException
|
|
struct DecoderFallbackException_t2C3FC33AE2DFD1ECB47F945ABA8F6D292BC7FBA4 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
// System.Byte[] System.Text.DecoderFallbackException::_bytesUnknown
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____bytesUnknown_19;
|
|
// System.Int32 System.Text.DecoderFallbackException::_index
|
|
int32_t ____index_20;
|
|
};
|
|
|
|
// System.PlatformNotSupportedException
|
|
struct PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A : public NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A
|
|
{
|
|
};
|
|
|
|
// System.Text.RegularExpressions.RegexMatchTimeoutException
|
|
struct RegexMatchTimeoutException_t95DDC5399E4D8ADB37A9AADD221BA8DE0A342336 : public TimeoutException_t7552449BA7E0911AEA1B6C7D1BEAC6534819305F
|
|
{
|
|
// System.String System.Text.RegularExpressions.RegexMatchTimeoutException::<Input>k__BackingField
|
|
String_t* ___U3CInputU3Ek__BackingField_18;
|
|
// System.String System.Text.RegularExpressions.RegexMatchTimeoutException::<Pattern>k__BackingField
|
|
String_t* ___U3CPatternU3Ek__BackingField_19;
|
|
// System.TimeSpan System.Text.RegularExpressions.RegexMatchTimeoutException::<MatchTimeout>k__BackingField
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___U3CMatchTimeoutU3Ek__BackingField_20;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.RegexWriter
|
|
struct RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12
|
|
{
|
|
// System.Collections.Generic.ValueListBuilder`1<System.Int32> System.Text.RegularExpressions.RegexWriter::_emitted
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961 ____emitted_0;
|
|
// System.Collections.Generic.ValueListBuilder`1<System.Int32> System.Text.RegularExpressions.RegexWriter::_intStack
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961 ____intStack_1;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Text.RegularExpressions.RegexWriter::_stringHash
|
|
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ____stringHash_2;
|
|
// System.Collections.Generic.List`1<System.String> System.Text.RegularExpressions.RegexWriter::_stringTable
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ____stringTable_3;
|
|
// System.Collections.Hashtable System.Text.RegularExpressions.RegexWriter::_caps
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____caps_4;
|
|
// System.Int32 System.Text.RegularExpressions.RegexWriter::_trackCount
|
|
int32_t ____trackCount_5;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Text.RegularExpressions.RegexWriter
|
|
struct RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12_marshaled_pinvoke
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961 ____emitted_0;
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961 ____intStack_1;
|
|
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ____stringHash_2;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ____stringTable_3;
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____caps_4;
|
|
int32_t ____trackCount_5;
|
|
};
|
|
// Native definition for COM marshalling of System.Text.RegularExpressions.RegexWriter
|
|
struct RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12_marshaled_com
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961 ____emitted_0;
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961 ____intStack_1;
|
|
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ____stringHash_2;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ____stringTable_3;
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____caps_4;
|
|
int32_t ____trackCount_5;
|
|
};
|
|
|
|
// System.Buffers.ArrayPool`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct ArrayPool_1_t1CA8B86A43623D11BDEC111B774FC11399E41774_StaticFields
|
|
{
|
|
// System.Buffers.ArrayPool`1<T> System.Buffers.ArrayPool`1::<Shared>k__BackingField
|
|
ArrayPool_1_t1CA8B86A43623D11BDEC111B774FC11399E41774* ___U3CSharedU3Ek__BackingField_0;
|
|
};
|
|
|
|
// System.Buffers.ArrayPool`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Collections.Generic.Comparer`1<System.Int32>
|
|
struct Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80_StaticFields
|
|
{
|
|
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
|
|
Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* ___defaultComparer_0;
|
|
};
|
|
|
|
// System.Collections.Generic.Comparer`1<System.Int32>
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
|
|
|
|
// System.Collections.Generic.List`1<System.Int32>
|
|
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.Int32>
|
|
|
|
// System.Collections.Generic.List`1<System.Security.Cryptography.Oid>
|
|
struct List_1_t31E53E1C1BAA65ECAEFCBC9D003166BC01081D6B_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
OidU5BU5D_t73E7D08DA46298D6D923119136C4075A492E666B* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.Security.Cryptography.Oid>
|
|
|
|
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>
|
|
struct List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
RegexNodeU5BU5D_t9B65B8909ADD9DB9D8B82F44D786BD8CA7640851* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>
|
|
|
|
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>
|
|
struct List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
RegexOptionsU5BU5D_tF21774F172C2EF3683C16190AA1BD4E8C7941A64* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>
|
|
|
|
// System.Collections.Generic.List`1<System.String>
|
|
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.String>
|
|
|
|
// System.Collections.Generic.List`1<System.WeakReference>
|
|
struct List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
WeakReferenceU5BU5D_t946B92E92B5492BD3357181A37AE958D5DED9ED3* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.WeakReference>
|
|
|
|
// System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// Mono.Security.ASN1
|
|
|
|
// Mono.Security.ASN1
|
|
|
|
// System.Collections.ArrayList
|
|
|
|
// System.Collections.ArrayList
|
|
|
|
// System.Security.Cryptography.AsnEncodedData
|
|
|
|
// System.Security.Cryptography.AsnEncodedData
|
|
|
|
// System.Security.Cryptography.AsymmetricAlgorithm
|
|
|
|
// System.Security.Cryptography.AsymmetricAlgorithm
|
|
|
|
// System.Attribute
|
|
|
|
// System.Attribute
|
|
|
|
// System.Globalization.Calendar
|
|
|
|
// System.Globalization.Calendar
|
|
|
|
// System.Text.RegularExpressions.Capture
|
|
|
|
// System.Text.RegularExpressions.Capture
|
|
|
|
// System.Collections.CollectionBase
|
|
|
|
// System.Collections.CollectionBase
|
|
|
|
// System.Globalization.CultureInfo
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_StaticFields
|
|
{
|
|
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___invariant_culture_info_0;
|
|
// System.Object System.Globalization.CultureInfo::shared_table_lock
|
|
RuntimeObject* ___shared_table_lock_1;
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___default_current_culture_2;
|
|
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentUICulture_34;
|
|
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentCulture_35;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
|
|
Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number_36;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
|
|
Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28* ___shared_by_name_37;
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::s_UserPreferredCultureInfoInAppX
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_UserPreferredCultureInfoInAppX_38;
|
|
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
|
|
bool ___IsTaiwanSku_39;
|
|
};
|
|
|
|
// System.Globalization.CultureInfo
|
|
|
|
// System.Security.Cryptography.DerSequenceReader
|
|
struct DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_StaticFields
|
|
{
|
|
// System.Globalization.DateTimeFormatInfo System.Security.Cryptography.DerSequenceReader::s_validityDateTimeFormatInfo
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___s_validityDateTimeFormatInfo_0;
|
|
// System.Text.Encoding System.Security.Cryptography.DerSequenceReader::s_utf8EncodingWithExceptionFallback
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___s_utf8EncodingWithExceptionFallback_1;
|
|
// System.Text.Encoding System.Security.Cryptography.DerSequenceReader::s_latin1Encoding
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___s_latin1Encoding_2;
|
|
};
|
|
|
|
// System.Security.Cryptography.DerSequenceReader
|
|
|
|
// System.Text.Encoding
|
|
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_StaticFields
|
|
{
|
|
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___defaultEncoding_0;
|
|
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___unicodeEncoding_1;
|
|
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___bigEndianUnicode_2;
|
|
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf7Encoding_3;
|
|
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf8Encoding_4;
|
|
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf32Encoding_5;
|
|
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___asciiEncoding_6;
|
|
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___latin1Encoding_7;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,System.Text.Encoding> modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings
|
|
Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54* ___encodings_8;
|
|
// System.Object System.Text.Encoding::s_InternalSyncObject
|
|
RuntimeObject* ___s_InternalSyncObject_15;
|
|
};
|
|
|
|
// System.Text.Encoding
|
|
|
|
// System.Collections.Hashtable
|
|
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_StaticFields
|
|
{
|
|
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> System.Collections.Hashtable::s_serializationInfoTable
|
|
ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* ___s_serializationInfoTable_21;
|
|
};
|
|
|
|
// System.Collections.Hashtable
|
|
|
|
// System.Security.Cryptography.OidCollection
|
|
|
|
// System.Security.Cryptography.OidCollection
|
|
|
|
// System.Security.Cryptography.OidEnumerator
|
|
|
|
// System.Security.Cryptography.OidEnumerator
|
|
|
|
// System.Security.Cryptography.X509Certificates.PublicKey
|
|
struct PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405_StaticFields
|
|
{
|
|
// System.Byte[] System.Security.Cryptography.X509Certificates.PublicKey::Empty
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___Empty_3;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.PublicKey
|
|
|
|
// System.Text.RegularExpressions.RegexBoyerMoore
|
|
|
|
// System.Text.RegularExpressions.RegexBoyerMoore
|
|
|
|
// System.Text.RegularExpressions.RegexCharClass
|
|
struct RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields
|
|
{
|
|
// System.String System.Text.RegularExpressions.RegexCharClass::s_internalRegexIgnoreCase
|
|
String_t* ___s_internalRegexIgnoreCase_0;
|
|
// System.String System.Text.RegularExpressions.RegexCharClass::s_space
|
|
String_t* ___s_space_1;
|
|
// System.String System.Text.RegularExpressions.RegexCharClass::s_notSpace
|
|
String_t* ___s_notSpace_2;
|
|
// System.String System.Text.RegularExpressions.RegexCharClass::s_word
|
|
String_t* ___s_word_3;
|
|
// System.String System.Text.RegularExpressions.RegexCharClass::s_notWord
|
|
String_t* ___s_notWord_4;
|
|
// System.String System.Text.RegularExpressions.RegexCharClass::SpaceClass
|
|
String_t* ___SpaceClass_5;
|
|
// System.String System.Text.RegularExpressions.RegexCharClass::NotSpaceClass
|
|
String_t* ___NotSpaceClass_6;
|
|
// System.String System.Text.RegularExpressions.RegexCharClass::WordClass
|
|
String_t* ___WordClass_7;
|
|
// System.String System.Text.RegularExpressions.RegexCharClass::NotWordClass
|
|
String_t* ___NotWordClass_8;
|
|
// System.String System.Text.RegularExpressions.RegexCharClass::DigitClass
|
|
String_t* ___DigitClass_9;
|
|
// System.String System.Text.RegularExpressions.RegexCharClass::NotDigitClass
|
|
String_t* ___NotDigitClass_10;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.String> System.Text.RegularExpressions.RegexCharClass::s_definedCategories
|
|
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* ___s_definedCategories_11;
|
|
// System.String[][] System.Text.RegularExpressions.RegexCharClass::s_propTable
|
|
StringU5BU5DU5BU5D_t8BCC500C5CC1686D9BADCBAA811074FE00F83ACF* ___s_propTable_12;
|
|
// System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping[] System.Text.RegularExpressions.RegexCharClass::s_lcTable
|
|
LowerCaseMappingU5BU5D_t62316DC53695F1B45BBB5EB506991F814910A3D1* ___s_lcTable_13;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.RegexCharClass
|
|
|
|
// System.Text.RegularExpressions.RegexReplacement
|
|
|
|
// System.Text.RegularExpressions.RegexReplacement
|
|
|
|
// System.Text.RegularExpressions.RegexRunner
|
|
|
|
// System.Text.RegularExpressions.RegexRunner
|
|
|
|
// System.Text.RegularExpressions.RegexRunnerFactory
|
|
|
|
// System.Text.RegularExpressions.RegexRunnerFactory
|
|
|
|
// System.Runtime.Serialization.SerializationInfo
|
|
|
|
// System.Runtime.Serialization.SerializationInfo
|
|
|
|
// System.Diagnostics.Stopwatch
|
|
struct Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_StaticFields
|
|
{
|
|
// System.Int64 System.Diagnostics.Stopwatch::Frequency
|
|
int64_t ___Frequency_0;
|
|
// System.Boolean System.Diagnostics.Stopwatch::IsHighResolution
|
|
bool ___IsHighResolution_1;
|
|
};
|
|
|
|
// System.Diagnostics.Stopwatch
|
|
|
|
// System.String
|
|
struct String_t_StaticFields
|
|
{
|
|
// System.String System.String::Empty
|
|
String_t* ___Empty_6;
|
|
};
|
|
|
|
// System.String
|
|
|
|
// System.Text.StringBuilder
|
|
|
|
// System.Text.StringBuilder
|
|
|
|
// System.Diagnostics.Switch
|
|
struct Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_StaticFields
|
|
{
|
|
// System.Collections.Generic.List`1<System.WeakReference> System.Diagnostics.Switch::switches
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* ___switches_4;
|
|
// System.Int32 System.Diagnostics.Switch::s_LastCollectionCount
|
|
int32_t ___s_LastCollectionCount_5;
|
|
};
|
|
|
|
// System.Diagnostics.Switch
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509CertificateImpl
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509CertificateImpl
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509ExtensionCollection
|
|
struct X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0_StaticFields
|
|
{
|
|
// System.Byte[] System.Security.Cryptography.X509Certificates.X509ExtensionCollection::Empty
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___Empty_0;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509ExtensionCollection
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator
|
|
|
|
// Mono.X509PalImpl
|
|
struct X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_StaticFields
|
|
{
|
|
// System.Byte[] Mono.X509PalImpl::signedData
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___signedData_0;
|
|
};
|
|
|
|
// Mono.X509PalImpl
|
|
|
|
// System.Security.Cryptography.DerSequenceReader/<>c
|
|
struct U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_StaticFields
|
|
{
|
|
// System.Security.Cryptography.DerSequenceReader/<>c System.Security.Cryptography.DerSequenceReader/<>c::<>9
|
|
U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423* ___U3CU3E9_0;
|
|
// System.Func`1<System.Text.Encoding> System.Security.Cryptography.DerSequenceReader/<>c::<>9__45_0
|
|
Func_1_t01E2C750A870E045042E56862BC569C800166539* ___U3CU3E9__45_0_1;
|
|
// System.Func`1<System.Text.Encoding> System.Security.Cryptography.DerSequenceReader/<>c::<>9__45_1
|
|
Func_1_t01E2C750A870E045042E56862BC569C800166539* ___U3CU3E9__45_1_2;
|
|
// System.Func`1<System.Globalization.DateTimeFormatInfo> System.Security.Cryptography.DerSequenceReader/<>c::<>9__51_0
|
|
Func_1_t74FC36A4C2A548316E77F19B2968741BF64B13D7* ___U3CU3E9__51_0_3;
|
|
};
|
|
|
|
// System.Security.Cryptography.DerSequenceReader/<>c
|
|
|
|
// System.Numerics.BigInteger
|
|
struct BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_StaticFields
|
|
{
|
|
// System.Numerics.BigInteger System.Numerics.BigInteger::s_bnMinInt
|
|
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___s_bnMinInt_2;
|
|
// System.Numerics.BigInteger System.Numerics.BigInteger::s_bnOneInt
|
|
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___s_bnOneInt_3;
|
|
// System.Numerics.BigInteger System.Numerics.BigInteger::s_bnZeroInt
|
|
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___s_bnZeroInt_4;
|
|
// System.Numerics.BigInteger System.Numerics.BigInteger::s_bnMinusOneInt
|
|
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___s_bnMinusOneInt_5;
|
|
// System.Byte[] System.Numerics.BigInteger::s_success
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_success_6;
|
|
};
|
|
|
|
// System.Numerics.BigInteger
|
|
|
|
// System.Boolean
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
|
{
|
|
// System.String System.Boolean::TrueString
|
|
String_t* ___TrueString_5;
|
|
// System.String System.Boolean::FalseString
|
|
String_t* ___FalseString_6;
|
|
};
|
|
|
|
// System.Boolean
|
|
|
|
// System.Diagnostics.BooleanSwitch
|
|
|
|
// System.Diagnostics.BooleanSwitch
|
|
|
|
// System.Byte
|
|
|
|
// System.Byte
|
|
|
|
// System.Char
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
|
|
{
|
|
// System.Byte[] System.Char::s_categoryForLatin1
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
|
|
};
|
|
|
|
// System.Char
|
|
|
|
// System.Security.Cryptography.DSA
|
|
|
|
// System.Security.Cryptography.DSA
|
|
|
|
// System.Security.Cryptography.DSAParameters
|
|
|
|
// System.Security.Cryptography.DSAParameters
|
|
|
|
// System.DateTime
|
|
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields
|
|
{
|
|
// System.Int32[] System.DateTime::s_daysToMonth365
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth365_30;
|
|
// System.Int32[] System.DateTime::s_daysToMonth366
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth366_31;
|
|
// System.DateTime System.DateTime::MinValue
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MinValue_32;
|
|
// System.DateTime System.DateTime::MaxValue
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MaxValue_33;
|
|
// System.DateTime System.DateTime::UnixEpoch
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___UnixEpoch_34;
|
|
};
|
|
|
|
// System.DateTime
|
|
|
|
// System.Double
|
|
|
|
// System.Double
|
|
|
|
// System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute
|
|
|
|
// System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute
|
|
|
|
// System.Text.RegularExpressions.Group
|
|
struct Group_t26371E9136D6F43782C487B63C67C5FC4F472881_StaticFields
|
|
{
|
|
// System.Text.RegularExpressions.Group System.Text.RegularExpressions.Group::s_emptyGroup
|
|
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* ___s_emptyGroup_3;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.Group
|
|
|
|
// System.Int32
|
|
|
|
// System.Int32
|
|
|
|
// System.Int64
|
|
|
|
// System.Int64
|
|
|
|
// System.IntPtr
|
|
struct IntPtr_t_StaticFields
|
|
{
|
|
// System.IntPtr System.IntPtr::Zero
|
|
intptr_t ___Zero_1;
|
|
};
|
|
|
|
// System.IntPtr
|
|
|
|
// System.Security.Cryptography.RSA
|
|
|
|
// System.Security.Cryptography.RSA
|
|
|
|
// System.Security.Cryptography.RSAParameters
|
|
|
|
// System.Security.Cryptography.RSAParameters
|
|
|
|
// System.Text.RegularExpressions.RegexPrefix
|
|
struct RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_StaticFields
|
|
{
|
|
// System.Text.RegularExpressions.RegexPrefix System.Text.RegularExpressions.RegexPrefix::<Empty>k__BackingField
|
|
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 ___U3CEmptyU3Ek__BackingField_1;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.RegexPrefix
|
|
|
|
// System.Diagnostics.SwitchLevelAttribute
|
|
|
|
// System.Diagnostics.SwitchLevelAttribute
|
|
|
|
// System.TimeSpan
|
|
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields
|
|
{
|
|
// System.TimeSpan System.TimeSpan::Zero
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Zero_19;
|
|
// System.TimeSpan System.TimeSpan::MaxValue
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MaxValue_20;
|
|
// System.TimeSpan System.TimeSpan::MinValue
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MinValue_21;
|
|
};
|
|
|
|
// System.TimeSpan
|
|
|
|
// System.Diagnostics.TraceSwitch
|
|
|
|
// System.Diagnostics.TraceSwitch
|
|
|
|
// System.Text.UTF8Encoding
|
|
struct UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE_StaticFields
|
|
{
|
|
// System.Text.UTF8Encoding/UTF8EncodingSealed System.Text.UTF8Encoding::s_default
|
|
UTF8EncodingSealed_tF97A34F40CABE9CE1C168967D60396F51C43DD36* ___s_default_16;
|
|
// System.Byte[] System.Text.UTF8Encoding::s_preamble
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_preamble_17;
|
|
};
|
|
|
|
// System.Text.UTF8Encoding
|
|
|
|
// System.Void
|
|
|
|
// System.Void
|
|
|
|
// System.Security.Cryptography.X509Certificates.X500DistinguishedName
|
|
|
|
// System.Security.Cryptography.X509Certificates.X500DistinguishedName
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509CertificateCollection
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509CertificateCollection
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Extension
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Extension
|
|
|
|
// System.ByReference`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.ByReference`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Nullable`1<System.Text.RegularExpressions.RegexPrefix>
|
|
|
|
// System.Nullable`1<System.Text.RegularExpressions.RegexPrefix>
|
|
|
|
// System.Security.Cryptography.AsnDecodeStatus
|
|
|
|
// System.Security.Cryptography.AsnDecodeStatus
|
|
|
|
// System.Security.Cryptography.DSACryptoServiceProvider
|
|
struct DSACryptoServiceProvider_tB418CD8E85D69D879C7298E4A6A7D8CFAC09D79E_StaticFields
|
|
{
|
|
// System.Boolean System.Security.Cryptography.DSACryptoServiceProvider::useMachineKeyStore
|
|
bool ___useMachineKeyStore_8;
|
|
};
|
|
|
|
// System.Security.Cryptography.DSACryptoServiceProvider
|
|
|
|
// System.Globalization.DateTimeStyles
|
|
|
|
// System.Globalization.DateTimeStyles
|
|
|
|
// System.Exception
|
|
struct Exception_t_StaticFields
|
|
{
|
|
// System.Object System.Exception::s_EDILock
|
|
RuntimeObject* ___s_EDILock_0;
|
|
};
|
|
|
|
// System.Exception
|
|
|
|
// System.Text.RegularExpressions.Match
|
|
struct Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_StaticFields
|
|
{
|
|
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Match::<Empty>k__BackingField
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___U3CEmptyU3Ek__BackingField_17;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.Match
|
|
|
|
// System.Security.Cryptography.OidGroup
|
|
|
|
// System.Security.Cryptography.OidGroup
|
|
|
|
// System.Security.Cryptography.X509Certificates.OpenFlags
|
|
|
|
// System.Security.Cryptography.X509Certificates.OpenFlags
|
|
|
|
// System.Security.Cryptography.RSACryptoServiceProvider
|
|
struct RSACryptoServiceProvider_t5B3DF0CAFF65D4103EB90063F3C3B00FE2C6967C_StaticFields
|
|
{
|
|
// System.Security.Cryptography.CspProviderFlags modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.RSACryptoServiceProvider::s_UseMachineKeyStore
|
|
int32_t ___s_UseMachineKeyStore_2;
|
|
};
|
|
|
|
// System.Security.Cryptography.RSACryptoServiceProvider
|
|
|
|
// System.Text.RegularExpressions.RegexOptions
|
|
|
|
// System.Text.RegularExpressions.RegexOptions
|
|
|
|
// System.RuntimeFieldHandle
|
|
|
|
// System.RuntimeFieldHandle
|
|
|
|
// System.RuntimeTypeHandle
|
|
|
|
// System.RuntimeTypeHandle
|
|
|
|
// System.Security.Authentication.SslProtocols
|
|
|
|
// System.Security.Authentication.SslProtocols
|
|
|
|
// System.Security.Cryptography.X509Certificates.StoreLocation
|
|
|
|
// System.Security.Cryptography.X509Certificates.StoreLocation
|
|
|
|
// System.Security.Cryptography.X509Certificates.StoreName
|
|
|
|
// System.Security.Cryptography.X509Certificates.StoreName
|
|
|
|
// System.StringComparison
|
|
|
|
// System.StringComparison
|
|
|
|
// System.StringSplitOptions
|
|
|
|
// System.StringSplitOptions
|
|
|
|
// System.Globalization.TextInfo
|
|
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4_StaticFields
|
|
{
|
|
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.TextInfo::s_Invariant
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___s_Invariant_6;
|
|
};
|
|
|
|
// System.Globalization.TextInfo
|
|
|
|
// System.Diagnostics.TraceLevel
|
|
|
|
// System.Diagnostics.TraceLevel
|
|
|
|
// System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags
|
|
|
|
// System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2Collection
|
|
struct X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB_StaticFields
|
|
{
|
|
// System.String[] System.Security.Cryptography.X509Certificates.X509Certificate2Collection::newline_split
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___newline_split_1;
|
|
};
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2Collection
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509ChainStatusFlags
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509ChainStatusFlags
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509ContentType
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509ContentType
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509FindType
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509FindType
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509KeyStorageFlags
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509KeyStorageFlags
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509KeyUsageFlags
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509KeyUsageFlags
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509NameType
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509NameType
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509RevocationFlag
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509RevocationFlag
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509RevocationMode
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509RevocationMode
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierHashAlgorithm
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierHashAlgorithm
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509VerificationFlags
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509VerificationFlags
|
|
|
|
// System.Security.Cryptography.DerSequenceReader/DerTag
|
|
|
|
// System.Security.Cryptography.DerSequenceReader/DerTag
|
|
|
|
// System.ReadOnlySpan`1<System.Char>
|
|
|
|
// System.ReadOnlySpan`1<System.Char>
|
|
|
|
// System.ReadOnlySpan`1<System.Int32>
|
|
|
|
// System.ReadOnlySpan`1<System.Int32>
|
|
|
|
// System.ReadOnlySpan`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.ReadOnlySpan`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Span`1<System.Int32>
|
|
|
|
// System.Span`1<System.Int32>
|
|
|
|
// System.Span`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Span`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>
|
|
|
|
// System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>
|
|
|
|
// System.Globalization.DateTimeFormatInfo
|
|
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_StaticFields
|
|
{
|
|
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_invariantInfo
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___s_invariantInfo_0;
|
|
// System.Char[] System.Globalization.DateTimeFormatInfo::s_monthSpaces
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___s_monthSpaces_46;
|
|
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_jajpDTFI
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___s_jajpDTFI_80;
|
|
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_zhtwDTFI
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___s_zhtwDTFI_81;
|
|
};
|
|
|
|
// System.Globalization.DateTimeFormatInfo
|
|
|
|
// System.Text.RegularExpressions.MatchSparse
|
|
|
|
// System.Text.RegularExpressions.MatchSparse
|
|
|
|
// System.Security.Cryptography.Oid
|
|
|
|
// System.Security.Cryptography.Oid
|
|
|
|
// System.Text.RegularExpressions.Regex
|
|
struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields
|
|
{
|
|
// System.Int32 System.Text.RegularExpressions.Regex::s_cacheSize
|
|
int32_t ___s_cacheSize_1;
|
|
// System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry> System.Text.RegularExpressions.Regex::s_cache
|
|
Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* ___s_cache_2;
|
|
// System.Int32 System.Text.RegularExpressions.Regex::s_cacheCount
|
|
int32_t ___s_cacheCount_3;
|
|
// System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::s_cacheFirst
|
|
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* ___s_cacheFirst_4;
|
|
// System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::s_cacheLast
|
|
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* ___s_cacheLast_5;
|
|
// System.TimeSpan System.Text.RegularExpressions.Regex::s_maximumMatchTimeout
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___s_maximumMatchTimeout_6;
|
|
// System.TimeSpan System.Text.RegularExpressions.Regex::s_defaultMatchTimeout
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___s_defaultMatchTimeout_8;
|
|
// System.TimeSpan System.Text.RegularExpressions.Regex::InfiniteMatchTimeout
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___InfiniteMatchTimeout_9;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.Regex
|
|
|
|
// System.Text.RegularExpressions.RegexCode
|
|
|
|
// System.Text.RegularExpressions.RegexCode
|
|
|
|
// System.Text.RegularExpressions.RegexNode
|
|
|
|
// System.Text.RegularExpressions.RegexNode
|
|
|
|
// System.Text.RegularExpressions.RegexParser
|
|
struct RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_StaticFields
|
|
{
|
|
// System.Byte[] System.Text.RegularExpressions.RegexParser::s_category
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_category_19;
|
|
};
|
|
|
|
// System.Text.RegularExpressions.RegexParser
|
|
|
|
// System.Text.RegularExpressions.RegexTree
|
|
|
|
// System.Text.RegularExpressions.RegexTree
|
|
|
|
// Microsoft.Win32.SafeHandles.SafePasswordHandle
|
|
|
|
// Microsoft.Win32.SafeHandles.SafePasswordHandle
|
|
|
|
// System.Runtime.Serialization.StreamingContext
|
|
|
|
// System.Runtime.Serialization.StreamingContext
|
|
|
|
// System.SystemException
|
|
|
|
// System.SystemException
|
|
|
|
// System.Type
|
|
struct Type_t_StaticFields
|
|
{
|
|
// System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder
|
|
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
|
|
// System.Char System.Type::Delimiter
|
|
Il2CppChar ___Delimiter_1;
|
|
// System.Type[] System.Type::EmptyTypes
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
|
|
// System.Object System.Type::Missing
|
|
RuntimeObject* ___Missing_3;
|
|
// System.Reflection.MemberFilter System.Type::FilterAttribute
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
|
|
// System.Reflection.MemberFilter System.Type::FilterName
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
|
|
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
|
|
};
|
|
|
|
// System.Type
|
|
|
|
// System.WeakReference
|
|
|
|
// System.WeakReference
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509KeyUsageExtension
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509KeyUsageExtension
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension
|
|
|
|
// System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension
|
|
|
|
// System.Func`1<System.Globalization.DateTimeFormatInfo>
|
|
|
|
// System.Func`1<System.Globalization.DateTimeFormatInfo>
|
|
|
|
// System.Func`1<System.Text.Encoding>
|
|
|
|
// System.Func`1<System.Text.Encoding>
|
|
|
|
// System.Collections.Generic.ValueListBuilder`1<System.Int32>
|
|
|
|
// System.Collections.Generic.ValueListBuilder`1<System.Int32>
|
|
|
|
// System.Collections.Generic.ValueListBuilder`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Collections.Generic.ValueListBuilder`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.ArgumentException
|
|
|
|
// System.ArgumentException
|
|
|
|
// System.Security.Authentication.AuthenticationException
|
|
|
|
// System.Security.Authentication.AuthenticationException
|
|
|
|
// System.Security.Cryptography.CryptographicException
|
|
|
|
// System.Security.Cryptography.CryptographicException
|
|
|
|
// System.NotSupportedException
|
|
|
|
// System.NotSupportedException
|
|
|
|
// System.ArgumentNullException
|
|
|
|
// System.ArgumentNullException
|
|
|
|
// System.ArgumentOutOfRangeException
|
|
|
|
// System.ArgumentOutOfRangeException
|
|
|
|
// System.Security.Cryptography.CryptographicUnexpectedOperationException
|
|
|
|
// System.Security.Cryptography.CryptographicUnexpectedOperationException
|
|
|
|
// System.Text.DecoderFallbackException
|
|
|
|
// System.Text.DecoderFallbackException
|
|
|
|
// System.PlatformNotSupportedException
|
|
|
|
// System.PlatformNotSupportedException
|
|
|
|
// System.Text.RegularExpressions.RegexMatchTimeoutException
|
|
|
|
// System.Text.RegularExpressions.RegexMatchTimeoutException
|
|
|
|
// System.Text.RegularExpressions.RegexWriter
|
|
|
|
// System.Text.RegularExpressions.RegexWriter
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
// System.String[]
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) String_t* m_Items[1];
|
|
|
|
inline String_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline String_t** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, String_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Int32[]
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int32_t m_Items[1];
|
|
|
|
inline int32_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// System.Byte[]
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) uint8_t m_Items[1];
|
|
|
|
inline uint8_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// System.Object[]
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
|
|
|
|
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType[]
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) uint8_t m_Items[1];
|
|
|
|
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
};
|
|
|
|
|
|
// T[] System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::ToArray()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* List_1_ToArray_m5160526E5983BD8ED24DFFE47C33B141C1B3187A_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::get_Count()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::RemoveRange(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_mCD6121D4FDE143767E6F0EC89183A9A349884DFF_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Add(T)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_get_Item_m6E4BA37C1FB558E4A62AE4324212E45D09C5C937_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, int32_t ___0_index, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::get_Default()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_tF59A960F33DD69C2CF0330F3FF6AD7828FF0F3FB* Comparer_1_get_Default_m923F24BE1E2E8B01D8F2F9D26B8C0ED4B7CBA290_gshared (const RuntimeMethod* method) ;
|
|
// System.Void System.Array::Sort<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>(T[],System.Collections.Generic.IComparer`1<T>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisIl2CppFullySharedGenericAny_m2BA666A4FFEAA592B129322C3AD976F3FD803F71_gshared (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___0_array, RuntimeObject* ___1_comparer, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::RemoveAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_mF6C23E9072D8CBE2872705E7E4D08BDB78770F5C_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Boolean System.WeakReference`1<System.Object>::TryGetTarget(T&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WeakReference_1_TryGetTarget_m4982797589731AB705E9C79FA4531331F40410AB_gshared (WeakReference_1_tED795563AD26F795CED3BBCD488AB1694E385BCE* __this, RuntimeObject** ___0_target, const RuntimeMethod* method) ;
|
|
// System.Void System.WeakReference`1<System.Object>::SetTarget(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WeakReference_1_SetTarget_mCEAE8D9CF9551015CE46420AB8614A8D1F14C329_gshared (WeakReference_1_tED795563AD26F795CED3BBCD488AB1694E385BCE* __this, RuntimeObject* ___0_target, const RuntimeMethod* method) ;
|
|
// System.String System.ReadOnlySpan`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReadOnlySpan_1_ToString_m04AD05E39D10A41E67653C41A22108A810CA9857_gshared (ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.ValueListBuilder`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor(System.Span`1<T>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueListBuilder_1__ctor_mAFC9E903F63FD93D370EC5A4BE96A53F3778256B_gshared (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26* __this, Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54 ___0_initialSpan, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m7745B6ED71E47C95E1BFCE647C4F026A404C668F_gshared (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Span`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor(System.Void*,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m5599DAEC88C08C9797F461E977BF22E14E3C3008_gshared_inline (Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.ValueListBuilder`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Dispose()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueListBuilder_1_Dispose_m95D1F578E53DD38ABC79F6837BE0D50A1512F6B2_gshared_inline (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.ValueListBuilder`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Append(T)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueListBuilder_1_Append_m8E0893D16DEF47E8D8F9689662927E8C34597BFE_gshared_inline (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.ValueListBuilder`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::get_Length()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ValueListBuilder_1_get_Length_mF8F23A327A1B4D211BFE3D5A78A31D5861B36BCF_gshared_inline (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26* __this, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.ValueListBuilder`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Pop()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueListBuilder_1_Pop_mB67E702E623E6BACDF0BEB363EB6D323901B33FE_gshared_inline (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// System.ReadOnlySpan`1<T> System.Collections.Generic.ValueListBuilder`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::AsSpan()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC ValueListBuilder_1_AsSpan_mF5CBC7C2E1B20F3A4ABC0DD44A535D30E70A9834_gshared (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26* __this, const RuntimeMethod* method) ;
|
|
// T[] System.ReadOnlySpan`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::ToArray()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ReadOnlySpan_1_ToArray_mC80D8D89B94D8ACFFFA96DC9812EFABF437B8830_gshared (ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC* __this, const RuntimeMethod* method) ;
|
|
// T& System.Collections.Generic.ValueListBuilder`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppFullySharedGenericAny* ValueListBuilder_1_get_Item_mA8603140DF41A28E02364AEE9AA9DCA424797BDD_gshared (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::TryGetValue(TKey,TValue&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m7519D765EAF1E8A7D3137C2F1B7B3A01D15A1692_gshared (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_key, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny* ___1_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::set_Item(TKey,TValue)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m4C6841170DD11AED683D2D71919F362A4CFF4A80_gshared (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_key, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___1_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m3069CACB5775E013107F559C825422266A09F9E8_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Clear()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m44DED39FFEBC8F2ACF6162DB065B649E888B9C57_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::TrimExcess()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_TrimExcess_m915005BC7D68487C2006E5A31D87D1CAED751407_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Array::Reverse<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>(T[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisIl2CppFullySharedGenericAny_m83EA25933C1AD0EA4D4437FDCF807AE9150FF4F4_gshared (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___0_array, const RuntimeMethod* method) ;
|
|
// System.Void System.Func`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_mC73A4FCEBBAB90CB7B7AB16321F3F98FBBF12596_gshared (Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
// T System.Threading.LazyInitializer::EnsureInitialized<System.Object>(T&,System.Func`1<T>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LazyInitializer_EnsureInitialized_TisRuntimeObject_mFEBA744876B29FFCD71AFC49292AA14051ED47DF_gshared (RuntimeObject** ___0_target, Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* ___1_valueFactory, const RuntimeMethod* method) ;
|
|
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5 (const RuntimeMethod* method) ;
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6 (const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::.ctor(System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser__ctor_m99DC2B2C4B64E7298BBF49AD862BFD12007E38E4 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___0_culture, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::SetPattern(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_SetPattern_m852D668CE45FBCAA3A6ACC415B94BDD0A7190265 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, String_t* ___0_Re, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::CountCaptures()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_CountCaptures_m2ECDC9ED534F245A12224038BB86DE5D66DB56A3 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::Reset(System.Text.RegularExpressions.RegexOptions)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_Reset_m426A8C90F4D8065486802AE7AC9FB07FC599EB01 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_topopts, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanRegex()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexParser_ScanRegex_m3CD95B8EAE4F2E8ECF3461F199B04A021C77231D (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// T[] System.Collections.Generic.List`1<System.String>::ToArray()
|
|
inline StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, const RuntimeMethod* method)
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* il2cppRetVal = (( __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_ToArray_m5160526E5983BD8ED24DFFE47C33B141C1B3187A_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
return (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)il2cppRetVal;
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexTree::.ctor(System.Text.RegularExpressions.RegexNode,System.Collections.Hashtable,System.Int32[],System.Int32,System.Collections.Hashtable,System.String[],System.Text.RegularExpressions.RegexOptions)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexTree__ctor_m89DA1335AAB55B0707774E978E6078CE42DB0DA6 (RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* __this, RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___0_root, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___1_caps, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___2_capNumList, int32_t ___3_capTop, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___4_capNames, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___5_capsList, int32_t ___6_options, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::NoteCaptures(System.Collections.Hashtable,System.Int32,System.Collections.Hashtable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_NoteCaptures_mC02396D9D7C522A5B701A2C1C88E742C98EAAF17 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___0_caps, int32_t ___1_capsize, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___2_capnames, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanReplacement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexParser_ScanReplacement_mC27972ADC38D857F44851CE642162928ED4D12D6 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexReplacement::.ctor(System.String,System.Text.RegularExpressions.RegexNode,System.Collections.Hashtable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexReplacement__ctor_m9CE743F0908A59F98461440AE5B842BE1BC72EA5 (RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* __this, String_t* ___0_rep, RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___1_concat, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___2__caps, const RuntimeMethod* method) ;
|
|
// System.Void System.Object::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::.ctor()
|
|
inline void List_1__ctor_m1B9A9897D9A268FB07BE7E57438250769D2A457D (List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Hashtable::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::get_Count()
|
|
inline int32_t List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_inline (List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::RemoveRange(System.Int32,System.Int32)
|
|
inline void List_1_RemoveRange_mCFBE1620BC04EABC10AD7AF811A524D2F0AEB993 (List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, int32_t, const RuntimeMethod*))List_1_RemoveRange_mCD6121D4FDE143767E6F0EC89183A9A349884DFF_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, ___1_count, method);
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode__ctor_m5ECC62B9C3918CD043542E5BEAAD39A06158E27A (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* __this, int32_t ___0_type, int32_t ___1_options, int32_t ___2_m, int32_t ___3_n, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::StartGroup(System.Text.RegularExpressions.RegexNode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_StartGroup_mBF861FCFB0FB9ED26744CAE2297537DAB6DF37C1 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___0_openGroup, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::ScanBlank()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_ScanBlank_m4C1B18EC7A5DF860363CA17E69B20A00023B5E82 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.RegularExpressions.RegexParser::Textpos()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionX()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionX_m0BFB48EDC8A2F38A29A8F6CEC85080D9E04010FC (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::MoveRight()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.RegularExpressions.RegexParser::CharsRight()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Char System.Text.RegularExpressions.RegexParser::RightChar()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::IsStopperX(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsStopperX_m173A82937CA9600F7CB12B9A101F39CCFDA630C9 (Il2CppChar ___0_ch, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::IsTrueQuantifier()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsTrueQuantifier_m22CCE851B85E0760270178DF1184746040E68AEF (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::IsSpecial(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsSpecial_mF59FE804CDD354250CB77C4113F39C627349D051 (Il2CppChar ___0_ch, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::IsQuantifier(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsQuantifier_mBD18FA810A0404B632392725175846E6B30A8782 (Il2CppChar ___0_ch, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddConcatenate(System.Int32,System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddConcatenate_mDDD0350FE254D75D6707668332D0F3088A5572AF (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_pos, int32_t ___1_cch, bool ___2_isReplacement, const RuntimeMethod* method) ;
|
|
// System.Char System.Text.RegularExpressions.RegexParser::CharAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_CharAt_mF46179762DDF46FB78E32CCA3058950244CFCB70 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_i, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddUnitOne(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitOne_m991DCA85D3432B8F7F74D18125A69FFE25108F47 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, Il2CppChar ___0_ch, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionI()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionI_mB3FB0740ED596E6ABC827E903DCE8AA4258BA701 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexParser::ScanCharClass(System.Boolean,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, bool ___0_caseInsensitive, bool ___1_scanOnly, const RuntimeMethod* method) ;
|
|
// System.String System.Text.RegularExpressions.RegexCharClass::ToStringClass()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexCharClass_ToStringClass_m6B0B92A0A525001CD78A6C2A766295268E0FED57 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddUnitSet(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitSet_mA262F57A7FAB27996D8115F66BC84A5C58317D7F (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, String_t* ___0_cc, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::PushOptions()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PushOptions_m6E501EE3C5D6FE990ED74935A9AC9A6E834FD968 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanGroupOpen()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::PopKeepOptions()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PopKeepOptions_m911F83DFA290ED90B06D3D3166553E6205C256C1 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::PushGroup()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PushGroup_m2D76CB852430A3B3F7454DDC3322B2A5E4CE398F (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddAlternate()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddAlternate_m77BCF63DD4E1AB89B70F72821CAE4B67936CD847 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::EmptyStack()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_EmptyStack_m756AC5BB66D0F2077EC7DD655A3D57681200F5CA (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.ArgumentException System.Text.RegularExpressions.RegexParser::MakeException(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddGroup()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddGroup_m8989D6A9CD4B700522D722DEF5FEFC267C4DBFB7 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::PopGroup()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PopGroup_mEC525DC83E5BF2F8DA03129AE3DF06834EB76552 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::PopOptions()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PopOptions_mAE4848419A71162B8E563781AC817A8D6ACEB91B (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::Unit()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexParser_Unit_m6C984A797C4A92AB0A9985E5A8207DB9CA9AE87F_inline (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanBackslash(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexParser_ScanBackslash_mAAE11106CB78789803468679894E1D7AE6B0C92E (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, bool ___0_scanOnly, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddUnitNode(System.Text.RegularExpressions.RegexNode)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexParser_AddUnitNode_mE8DC7CD039C933AE881097E041BA620AA325FDE8_inline (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___0_node, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionM()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionM_mAE3FC2655A6E80EA35D5CEBEE1D82B5B07529118 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddUnitType(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitType_mEBDFA2325ABDA3FDA74184DBFB706824F6540553 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_type, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionS()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionS_m070AD4458172FB14FF21E4502DCA6ECEE8938994 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddUnitNotone(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitNotone_m4F79DE175B95FDB88323D7FE9DC3132E24F8F0C0 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, Il2CppChar ___0_ch, const RuntimeMethod* method) ;
|
|
// System.String System.Char::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C (Il2CppChar* __this, const RuntimeMethod* method) ;
|
|
// System.String SR::Format(System.String,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09 (String_t* ___0_resourceFormat, RuntimeObject* ___1_p1, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::MoveLeft()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_MoveLeft_m57BB7A0146D0E8834D715667048B75A517761AD5 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddConcatenate()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddConcatenate_m77A3D9F6B1484C7B656BDF3CC5659248F9DEA1EA (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Char System.Text.RegularExpressions.RegexParser::RightCharMoveRight()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.RegularExpressions.RegexParser::ScanDecimal()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_ScanDecimal_m1BFFE19E0698D0EC97D81C655F3D04B608897161 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::Textto(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexParser_Textto_mA45B325CA6CCBC0012F1CBB0282AE114B34AEBE2_inline (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_pos, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddConcatenate(System.Boolean,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddConcatenate_m3B10D68AE09CC6A2F06AC65E49B918D11D5375FF (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, bool ___0_lazy, int32_t ___1_min, int32_t ___2_max, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode__ctor_mAE4AC160F21E5DF26B99B74753BCFB9EF0951B2B (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* __this, int32_t ___0_type, int32_t ___1_options, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanDollar()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexParser_ScanDollar_mB8FD395274F630278543211B2BB583AA5B03D96A (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexCharClass::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass__ctor_m165680E6EA10035E0630220C967BD772F5D6F52E (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexCharClass::set_Negate(System.Boolean)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexCharClass_set_Negate_m8EA71CB8F671E99EF0B388CB520F44B8B6653A6B_inline (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionE()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexCharClass::AddDigit(System.Boolean,System.Boolean,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddDigit_m04C1001F7E8DA85CB2D262ED403BA9BD215A7A8E (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, bool ___0_ecma, bool ___1_negate, String_t* ___2_pattern, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexCharClass::AddSpace(System.Boolean,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddSpace_mD1BF3AD215D69EC6CF0E49A359F7FC709FD6FBB6 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, bool ___0_ecma, bool ___1_negate, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexCharClass::AddWord(System.Boolean,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddWord_mAED995BB6613893E0950C5895515204F1E95D152 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, bool ___0_ecma, bool ___1_negate, const RuntimeMethod* method) ;
|
|
// System.String System.Text.RegularExpressions.RegexParser::ParseProperty()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexParser_ParseProperty_m3B765A1B30A38A723CAFE63AF9D6F3D08C7C6F38 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexCharClass::AddCategoryFromName(System.String,System.Boolean,System.Boolean,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddCategoryFromName_m032AED661665AE30D7F3F712914E2937F6E4FF97 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, String_t* ___0_categoryName, bool ___1_invert, bool ___2_caseInsensitive, String_t* ___3_pattern, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexCharClass::AddRange(System.Char,System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddRange_mB1188A62712FE4ABB7F5DB28645351E375B5C6A7 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, Il2CppChar ___0_first, Il2CppChar ___1_last, const RuntimeMethod* method) ;
|
|
// System.Char System.Text.RegularExpressions.RegexParser::ScanCharEscape()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_ScanCharEscape_mA872DDDD24E165F5B5C5F62DCFAE3B02CCF97C98 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Text.RegularExpressions.RegexParser::ScanCapname()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexParser_ScanCapname_mC9524DCBE266D677078207375663506AC32BE3F7 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexCharClass::AddChar(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddChar_mED269B31D5C606032B3394A9B9305ED172D16746 (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, Il2CppChar ___0_c, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexCharClass::AddSubtraction(System.Text.RegularExpressions.RegexCharClass)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexCharClass_AddSubtraction_m4EF34AFB93C001C6A4521E1F1C5F4B54833E8A12_inline (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* ___0_sub, const RuntimeMethod* method) ;
|
|
// System.Char System.Text.RegularExpressions.RegexParser::RightChar(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_RightChar_m6BEE1FBF048A2DFC53235447BB2F6AC8C56A4147 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_i, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::MoveRight(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_MoveRight_m921C1D96B625B4C8AF1D658E514D57CC44E40B61 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_i, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexCharClass::AddLowercase(System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddLowercase_mB87FC245CC837E582370E5410A6B40B23BEAC0BE (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___0_culture, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionN()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionN_mD441B71AC8368C644B8D9A0CCB3DB8BD681639B3 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::IsCaptureSlot(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsCaptureSlot_m1EE21960AA0BB1C072BD9D765AFF8A6DFC3192C3 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_i, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexCharClass::IsWordChar(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsWordChar_m2912E5148F0F89512DDF7D629188ADA82961080C (Il2CppChar ___0_ch, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::IsCaptureName(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsCaptureName_m5DC0D7BF3AD01C929CB982048722BCD43797CEAE (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, String_t* ___0_capname, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.RegularExpressions.RegexParser::CaptureSlotFromName(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_CaptureSlotFromName_mE18BA49BCA1CE4B972DC804E52C78E48905FEFAB (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, String_t* ___0_capname, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode__ctor_m3352B98BE0DAD220AB653F929BD6D95689B5E07F (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* __this, int32_t ___0_type, int32_t ___1_options, int32_t ___2_m, const RuntimeMethod* method) ;
|
|
// System.String System.Int32::ToString(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B (int32_t* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::ScanOptions()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_ScanOptions_m56F01464F53558D3AF3BF1CD874A2656930AF31C (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::IsSpace(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsSpace_m322B45C2A04F07D8C83B547370D266F39A8DE14E (Il2CppChar ___0_ch, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.RegularExpressions.RegexParser::TypeFromCode(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_TypeFromCode_m11B176B0B9A6EF391370E021B111101AE56F4CC6 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, Il2CppChar ___0_ch, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* __this, int32_t ___0_type, int32_t ___1_options, String_t* ___2_str, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanBasicBackslash(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexParser_ScanBasicBackslash_mB0F1728AD89C8F196601B3110F0BA807FBC8FCEC (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, bool ___0_scanOnly, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions,System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode__ctor_mFA693535F5B9610F075D30F19626A8AFFA879D7B (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* __this, int32_t ___0_type, int32_t ___1_options, Il2CppChar ___2_ch, const RuntimeMethod* method) ;
|
|
// System.String System.String::Substring(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE (String_t* __this, int32_t ___0_startIndex, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.RegularExpressions.RegexParser::HexDigit(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_HexDigit_m40FED0646820843A4C35AF9349E27B0E0A84A5CE (Il2CppChar ___0_ch, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.RegexParser::OptionFromCode(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_OptionFromCode_m7E2E8164FA38C45692BC68054E574F00B65F383A (Il2CppChar ___0_ch, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::IsOnlyTopOption(System.Text.RegularExpressions.RegexOptions)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsOnlyTopOption_mAA13B95864B8B314B8B6689B47FA4BFE3B433280 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_option, const RuntimeMethod* method) ;
|
|
// System.Char System.Text.RegularExpressions.RegexParser::ScanOctal()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_ScanOctal_m95EA0AE4B61D5418914DDD3815C6277471B4EDFD (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Char System.Text.RegularExpressions.RegexParser::ScanHex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_ScanHex_mDD96A112E30DABDB5BC0C558373DA5607F8ACF95 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_c, const RuntimeMethod* method) ;
|
|
// System.Char System.Text.RegularExpressions.RegexParser::ScanControl()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_ScanControl_m26274BE5776CF5AC03E8EAC7B5972C0A8AF2A95B (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::NoteCaptureSlot(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_NoteCaptureSlot_m21BD1F90FF2C62FFA445303D574D271757D62222 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_i, int32_t ___1_pos, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::EmptyOptionsStack()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_EmptyOptionsStack_mC16A4D18503FF296911710732A95062A8279163B (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::NoteCaptureName(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_NoteCaptureName_m5CDAF94FD43B665DE067B6DC02BD72A315D48FFD (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, String_t* ___0_name, int32_t ___1_pos, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AssignNameSlots()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AssignNameSlots_mC5738B99DE328E7D1FA7279A717640EC2044857E (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.String>::.ctor()
|
|
inline void List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.String>::Add(T)
|
|
inline void List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, String_t* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)___0_item, method);
|
|
}
|
|
// T System.Collections.Generic.List`1<System.String>::get_Item(System.Int32)
|
|
inline String_t* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8 (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
String_t* il2cppRetVal;
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, Il2CppFullySharedGenericAny*, const RuntimeMethod*))List_1_get_Item_m6E4BA37C1FB558E4A62AE4324212E45D09C5C937_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Int32 System.Collections.Generic.List`1<System.String>::get_Count()
|
|
inline int32_t List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Int32>::get_Default()
|
|
inline Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051 (const RuntimeMethod* method)
|
|
{
|
|
Comparer_1_tF59A960F33DD69C2CF0330F3FF6AD7828FF0F3FB* il2cppRetVal = (( Comparer_1_tF59A960F33DD69C2CF0330F3FF6AD7828FF0F3FB* (*) (const RuntimeMethod*))Comparer_1_get_Default_m923F24BE1E2E8B01D8F2F9D26B8C0ED4B7CBA290_gshared)(method);
|
|
return (Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80*)il2cppRetVal;
|
|
}
|
|
// System.Void System.Array::Sort<System.Int32>(T[],System.Collections.Generic.IComparer`1<T>)
|
|
inline void Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m25890A92F785FE37EA662CF502AB0E2A80143F68 (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, RuntimeObject* ___1_comparer, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisIl2CppFullySharedGenericAny_m2BA666A4FFEAA592B129322C3AD976F3FD803F71_gshared)((__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)___0_array, (RuntimeObject*)___1_comparer, method);
|
|
}
|
|
// System.String System.Convert::ToString(System.Int32,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_mC65AC3BEDED3049732E8A67B496AAAEF4C732871 (int32_t ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) ;
|
|
// System.Int32 System.String::get_Length()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilderCache::Acquire(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilderCache_Acquire_m1CF9421EC0F3431719E18A8EE78669748DF10892 (int32_t ___0_capacity, const RuntimeMethod* method) ;
|
|
// System.Char System.String::get_Chars(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
|
|
// System.String System.Text.StringBuilderCache::GetStringAndRelease(System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringBuilderCache_GetStringAndRelease_m4A7AB11554F7E80352AB8C3AC72D7AD4C7108FB0 (StringBuilder_t* ___0_sb, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexNode::AddChild(System.Text.RegularExpressions.RegexNode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode_AddChild_m1A2B3A7445927E39341C233C0E533D77FC9517A8 (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* __this, RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___0_newChild, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.RegularExpressions.RegexNode::Type()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexNode_Type_mDE9685FD99646016D0D6038C4509C6392B10F019_inline (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.RegularExpressions.RegexNode::ChildCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexNode_ChildCount_m833AF69D2711D8EEC5E50FD666A61F428A12396D (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* __this, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReverseLeft()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexNode_ReverseLeft_m251846220299FD022068361A09B9A7A4CF67A586 (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* __this, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::MakeQuantifier(System.Boolean,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexNode_MakeQuantifier_mA6A10E1AEF5AA80F82BD1BE6D28E62259208B5BC (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* __this, bool ___0_lazy, int32_t ___1_min, int32_t ___2_max, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::Add(T)
|
|
inline void List_1_Add_m39E2181975ACDC6FBCDD64B6C002096DF63A0676_inline (List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)&___0_item, method);
|
|
}
|
|
// T System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::get_Item(System.Int32)
|
|
inline int32_t List_1_get_Item_m86ACB65A93FC551348931DE521B278E5A505FB69 (List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
int32_t il2cppRetVal;
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, Il2CppFullySharedGenericAny*, const RuntimeMethod*))List_1_get_Item_m6E4BA37C1FB558E4A62AE4324212E45D09C5C937_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::RemoveAt(System.Int32)
|
|
inline void List_1_RemoveAt_mC1A21C23C8601F8794072BBEFCE60E1283C8302F (List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, const RuntimeMethod*))List_1_RemoveAt_mF6C23E9072D8CBE2872705E7E4D08BDB78770F5C_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, method);
|
|
}
|
|
// System.String SR::Format(System.String,System.Object,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02 (String_t* ___0_resourceFormat, RuntimeObject* ___1_p1, RuntimeObject* ___2_p2, const RuntimeMethod* method) ;
|
|
// System.Void System.ArgumentException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B (RuntimeArray* ___0_array, RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 ___1_fldHandle, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexPrefix::.ctor(System.String,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexPrefix__ctor_m05CD44F32CB0B5F8B2C080EAB94886F9743E86A4 (RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044* __this, String_t* ___0_prefix, bool ___1_ci, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexPrefix::get_CaseInsensitive()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RegexPrefix_get_CaseInsensitive_m4DAE2D9E91916BFFAB928F7DCAA20A5ABD4560E6_inline (RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Text.RegularExpressions.RegexPrefix::get_Prefix()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* RegexPrefix_get_Prefix_m844D02262C0720B0DC488AD1541713AD37BC518E_inline (RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor()
|
|
inline void List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::Child(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexNode_Child_m6F5C25EE5349D1BE0D65C89475FB0C42A15BFF27 (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* __this, int32_t ___0_i, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D (StringBuilder_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.StringBuilder::get_Length()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8 (StringBuilder_t* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::Add(T)
|
|
inline void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)&___0_item, method);
|
|
}
|
|
// System.Void System.Text.StringBuilder::set_Length(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414 (StringBuilder_t* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.StringBuilderCache::Release(System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilderCache_Release_m65C472D3E200ECA86BF7EFDAAF55CA6109678EB5 (StringBuilder_t* ___0_sb, const RuntimeMethod* method) ;
|
|
// System.Boolean System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>::TryGetTarget(T&)
|
|
inline bool WeakReference_1_TryGetTarget_mF3D765CD93EDFAF1750A2F4F47CB879B365DD3B8 (WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* __this, RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E** ___0_target, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257*, RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E**, const RuntimeMethod*))WeakReference_1_TryGetTarget_m4982797589731AB705E9C79FA4531331F40410AB_gshared)(__this, ___0_target, method);
|
|
}
|
|
// System.String System.Text.RegularExpressions.RegexReplacement::get_Pattern()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* RegexReplacement_get_Pattern_m146EA30FB574587E88DD056AC22F79375C3F55E6_inline (RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.String::Equals(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D (String_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.RegexReplacement System.Text.RegularExpressions.RegexParser::ParseReplacement(System.String,System.Collections.Hashtable,System.Int32,System.Collections.Hashtable,System.Text.RegularExpressions.RegexOptions)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* RegexParser_ParseReplacement_m552460B4F6F5F7B1B0D2F4E01A3847BE8662AF13 (String_t* ___0_rep, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___1_caps, int32_t ___2_capsize, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___3_capnames, int32_t ___4_op, const RuntimeMethod* method) ;
|
|
// System.Void System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>::SetTarget(T)
|
|
inline void WeakReference_1_SetTarget_m87BF827B6B3CCB82958155D5DEEC9EA1951272D4 (WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* __this, RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* ___0_target, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257*, RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E*, const RuntimeMethod*))WeakReference_1_SetTarget_mCEAE8D9CF9551015CE46420AB8614A8D1F14C329_gshared)(__this, ___0_target, method);
|
|
}
|
|
// T System.Collections.Generic.List`1<System.Int32>::get_Item(System.Int32)
|
|
inline int32_t List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
int32_t il2cppRetVal;
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, Il2CppFullySharedGenericAny*, const RuntimeMethod*))List_1_get_Item_m6E4BA37C1FB558E4A62AE4324212E45D09C5C937_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.ReadOnlySpan`1<System.Char>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_mD62AD6E44E881E1D56C486CD0C91C275C86D42E0 (StringBuilder_t* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, const RuntimeMethod* method) ;
|
|
// System.ReadOnlySpan`1<System.Char> System.Text.RegularExpressions.Capture::GetLeftSubstring()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Capture_GetLeftSubstring_mBFF01B80F38DA0FF4E56EFEF9FD9EE8899AE57DC (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method) ;
|
|
// System.ReadOnlySpan`1<System.Char> System.Text.RegularExpressions.Capture::GetRightSubstring()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Capture_GetRightSubstring_m1F1F896A999BC08AEEBD1BB28616F12FC593D1C3 (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method) ;
|
|
// System.ReadOnlySpan`1<System.Char> System.Text.RegularExpressions.Match::LastGroupToStringImpl()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Match_LastGroupToStringImpl_m78C890F3547E00454BEB81BC939FE680AAEBB29A (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Text.RegularExpressions.Capture::get_Text()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Capture_get_Text_mDD394681E5FC39FFDCCD9552C0BF09DF8A7054ED_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<System.Int32>::get_Count()
|
|
inline int32_t List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.String System.ReadOnlySpan`1<System.Char>::ToString()
|
|
inline String_t* ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC*, const RuntimeMethod*))ReadOnlySpan_1_ToString_m04AD05E39D10A41E67653C41A22108A810CA9857_gshared)((ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC*)__this, method);
|
|
}
|
|
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___0_paramName, String_t* ___1_message, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Regex::Match(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Regex_Match_mDF110993CAA26CD41AE9F5DB7F0C307B2680CED3 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___0_input, int32_t ___1_startat, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.Group::get_Success()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Group_get_Success_m4E0238EE4B1E7F927E2AF13E2E5901BCA92BE62F (Group_t26371E9136D6F43782C487B63C67C5FC4F472881* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.Regex::get_RightToLeft()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_get_RightToLeft_m52C4DEE1DC94FC9531785B74111022F3BCC1DF4B (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.RegularExpressions.Capture::get_Index()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_mE7CA22532FEF1545B8BC357CB7CAA304BA264703 (StringBuilder_t* __this, String_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.RegularExpressions.Capture::get_Length()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexReplacement::ReplacementImpl(System.Text.StringBuilder,System.Text.RegularExpressions.Match)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexReplacement_ReplacementImpl_m60E4B82702C44912E56FED402AC793E7B7CCC7E8 (RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* __this, StringBuilder_t* ___0_sb, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___1_match, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Match::NextMatch()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Match_NextMatch_m4B7BA2B21E09FA0937806F41DDE3EE0F052C4052 (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexReplacement::ReplacementImplRTL(System.Collections.Generic.List`1<System.String>,System.Text.RegularExpressions.Match)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexReplacement_ReplacementImplRTL_m343AE6575EE1B8810D049CA7F8203237920C84E0 (RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* __this, List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___0_al, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___1_match, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.Regex::ValidateMatchTimeout(System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex_ValidateMatchTimeout_m530D1B5EBC69BEAA11CCB7053A96C4AA9869C591 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_matchTimeout, const RuntimeMethod* method) ;
|
|
// System.Boolean System.TimeSpan::op_Equality(System.TimeSpan,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_Equality_m951689F806957B14F237DAFCEE4CB322799A723E (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_t1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t2, const RuntimeMethod* method) ;
|
|
// System.Double System.TimeSpan::get_TotalMilliseconds()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalMilliseconds_m3506C1A49F1FE37A82F3027EA061D18215EF87CF (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Match::get_Empty()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Match_get_Empty_m50E10899C5A892532ED484CDA11DE27CC6A7B546_inline (const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::StartTimeoutWatch()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_StartTimeoutWatch_mA17870A15492787CA1384132267054AB09BE8BE9 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::CheckTimeout()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_CheckTimeout_m20BF0CD8BC16738ED6E7F20AAF5B4EE695E7E120 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::InitMatch()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_InitMatch_mCCF94A1E7CCE89275E47BB218C4DD58DF5D5593D (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.RegexRunner::TidyMatch(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* RegexRunner_TidyMatch_m0EEEF0CFBB55AFF485B4D9F9FD21834B9B3A01FA (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, bool ___0_quick, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Environment::get_TickCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_TickCount_m183BFCF001E12849E3D898957F0B81FD88BA183C (const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::DoCheckTimeout()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_DoCheckTimeout_mC26B9239FA1CD3DC98F11A82800F61852793CEA5 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method) ;
|
|
// System.TimeSpan System.TimeSpan::FromMilliseconds(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_FromMilliseconds_mFDCBE9EDA3F6743302C3DD81259AF5D2F00EF775 (double ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexMatchTimeoutException::.ctor(System.String,System.String,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexMatchTimeoutException__ctor_m24286DF7231B227E3A8B3C31AE33447361971005 (RegexMatchTimeoutException_t95DDC5399E4D8ADB37A9AADD221BA8DE0A342336* __this, String_t* ___0_regexInput, String_t* ___1_regexPattern, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___2_matchTimeout, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.MatchSparse::.ctor(System.Text.RegularExpressions.Regex,System.Collections.Hashtable,System.Int32,System.String,System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchSparse__ctor_m7CEA8A7F538C706527778E8E75003DD74AC2FD41 (MatchSparse_t06FDC774ECCE8FFA0534A17E5990A8407658E906* __this, Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___0_regex, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___1_caps, int32_t ___2_capcount, String_t* ___3_text, int32_t ___4_begpos, int32_t ___5_len, int32_t ___6_startpos, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.Match::.ctor(System.Text.RegularExpressions.Regex,System.Int32,System.String,System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Match__ctor_m2A6BD37E98680890114AC62CDD23E1821E80A53A (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* __this, Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___0_regex, int32_t ___1_capcount, String_t* ___2_text, int32_t ___3_begpos, int32_t ___4_len, int32_t ___5_startpos, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::DoubleStack()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_DoubleStack_m89C12DF438D7BE4ADA2A4D1DFA36F274F292E1F4 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::DoubleTrack()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_DoubleTrack_m15E35365FAF5F438C7BD0BB0C37594F765949F1F (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Text.RegularExpressions.RegexCharClass::IsECMAWordChar(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsECMAWordChar_m95AFA872BB22C901C60DFCC9C8735BA78EE1EC84 (Il2CppChar ___0_ch, const RuntimeMethod* method) ;
|
|
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41 (RuntimeArray* ___0_sourceArray, int32_t ___1_sourceIndex, RuntimeArray* ___2_destinationArray, int32_t ___3_destinationIndex, int32_t ___4_length, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::DoubleCrawl()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_DoubleCrawl_m7B67CFD3071825C9F01BC0ACE0E27B1C4EC6DED5 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::Crawl(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_Crawl_mBE60CC8F17E6D85E1A87F0A86BC684F32ACE7CA5 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___0_i, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::MatchIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_MatchIndex_m150A8B71C07022C485630C71B2A9FA6FD195F88F (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___0_cap, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::MatchLength(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_MatchLength_m19C9B24F4F6CAC56A391A0AC47A4358C61615BF7 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___0_cap, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::Popcrawl()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_Popcrawl_m2C994BE22A9A4DE0D897691A1CEF87189DB43E67 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.ValueListBuilder`1<System.Int32>::.ctor(System.Span`1<T>)
|
|
inline void ValueListBuilder_1__ctor_mA62BCDD51B8B91EA78E0475452807113F20E60A8 (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 ___0_initialSpan, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26*, Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54, const RuntimeMethod*))ValueListBuilder_1__ctor_mAFC9E903F63FD93D370EC5A4BE96A53F3778256B_gshared)((ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26*)__this, il2cpp_codegen_cast_struct<Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54, Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316>(&___0_initialSpan), method);
|
|
}
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::.ctor()
|
|
inline void Dictionary_2__ctor_mA3C3860EDE2CDD08BBD68C389377BC89D029D968 (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*, const RuntimeMethod*))Dictionary_2__ctor_m7745B6ED71E47C95E1BFCE647C4F026A404C668F_gshared)((Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*)__this, method);
|
|
}
|
|
// System.Void System.Span`1<System.Int32>::.ctor(System.Void*,System.Int32)
|
|
inline void Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_inline (Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54*, void*, int32_t, const RuntimeMethod*))Span_1__ctor_m5599DAEC88C08C9797F461E977BF22E14E3C3008_gshared_inline)((Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54*)__this, ___0_pointer, ___1_length, method);
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexWriter::.ctor(System.Span`1<System.Int32>,System.Span`1<System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter__ctor_m37DF964F59213D287C9D812A3D0945744BF341EE (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 ___0_emittedSpan, Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 ___1_intStackSpan, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.RegexWriter::RegexCodeFromRegexTree(System.Text.RegularExpressions.RegexTree)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* RegexWriter_RegexCodeFromRegexTree_m3352CAF05A1B1753D32D768B83BB778B3E2D4568 (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* ___0_tree, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexWriter::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_Dispose_mD34F8BFC41D28F22FBC65E3F1A211DFE85625E04 (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.ValueListBuilder`1<System.Int32>::Dispose()
|
|
inline void ValueListBuilder_1_Dispose_m9A7AA015AAA843E07EF071CACC44C580A6A27955_inline (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26*, const RuntimeMethod*))ValueListBuilder_1_Dispose_m95D1F578E53DD38ABC79F6837BE0D50A1512F6B2_gshared_inline)((ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26*)__this, method);
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexWriter::Emit(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75 (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, int32_t ___0_op, int32_t ___1_opd1, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexWriter::EmitFragment(System.Int32,System.Text.RegularExpressions.RegexNode,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_EmitFragment_m0B35F7C3BDC22B5DE82735F2652C7948AE8494A5 (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, int32_t ___0_nodetype, RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___1_node, int32_t ___2_curIndex, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::get_Count()
|
|
inline int32_t List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_inline (List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// T System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::get_Item(System.Int32)
|
|
inline RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* List_1_get_Item_mE239CC7C457C1C1C2CF293913AFEDFCF5C8F6DF6 (List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* il2cppRetVal;
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, Il2CppFullySharedGenericAny*, const RuntimeMethod*))List_1_get_Item_m6E4BA37C1FB558E4A62AE4324212E45D09C5C937_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void System.Collections.Generic.ValueListBuilder`1<System.Int32>::Append(T)
|
|
inline void ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))ValueListBuilder_1_Append_m8E0893D16DEF47E8D8F9689662927E8C34597BFE_gshared_inline)((ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26*)__this, (Il2CppFullySharedGenericAny)&___0_item, method);
|
|
}
|
|
// System.Int32 System.Collections.Generic.ValueListBuilder`1<System.Int32>::get_Length()
|
|
inline int32_t ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26*, const RuntimeMethod*))ValueListBuilder_1_get_Length_mF8F23A327A1B4D211BFE3D5A78A31D5861B36BCF_gshared_inline)((ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26*)__this, method);
|
|
}
|
|
// T System.Collections.Generic.ValueListBuilder`1<System.Int32>::Pop()
|
|
inline int32_t ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_inline (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t il2cppRetVal;
|
|
(( void (*) (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))ValueListBuilder_1_Pop_mB67E702E623E6BACDF0BEB363EB6D323901B33FE_gshared_inline)((ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexWriter::PatchJump(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_PatchJump_mC1090F37107CAF7F4B52B020E070BDE9284118A6 (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, int32_t ___0_offset, int32_t ___1_jumpDest, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexWriter::Emit(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, int32_t ___0_op, const RuntimeMethod* method) ;
|
|
// System.Nullable`1<System.Text.RegularExpressions.RegexPrefix> System.Text.RegularExpressions.RegexFCD::FirstChars(System.Text.RegularExpressions.RegexTree)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8 RegexFCD_FirstChars_m3BAEF0481AF78F4FC40C35CEDA9100017A6D794B (RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* ___0_t, const RuntimeMethod* method) ;
|
|
// System.Text.RegularExpressions.RegexPrefix System.Text.RegularExpressions.RegexFCD::Prefix(System.Text.RegularExpressions.RegexTree)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 RegexFCD_Prefix_mE4F5ABEA5443B6940F83E59C60D0A9A201CC4BD6 (RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* ___0_tree, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexBoyerMoore::.ctor(System.String,System.Boolean,System.Boolean,System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexBoyerMoore__ctor_mFDCB1AB420E718548B67DE42C233402955BBB189 (RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* __this, String_t* ___0_pattern, bool ___1_caseInsensitive, bool ___2_rightToLeft, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___3_culture, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.RegularExpressions.RegexFCD::Anchors(System.Text.RegularExpressions.RegexTree)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexFCD_Anchors_m9211098DA08795B8459B918CA3D9A1A4733365D7 (RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* ___0_tree, const RuntimeMethod* method) ;
|
|
// System.ReadOnlySpan`1<T> System.Collections.Generic.ValueListBuilder`1<System.Int32>::AsSpan()
|
|
inline ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 ValueListBuilder_1_AsSpan_mB168B0C17F53FF2A5F8EA0B25A60F4741D20312F (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, const RuntimeMethod* method)
|
|
{
|
|
ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC il2cppRetVal = (( ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC (*) (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26*, const RuntimeMethod*))ValueListBuilder_1_AsSpan_mF5CBC7C2E1B20F3A4ABC0DD44A535D30E70A9834_gshared)((ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26*)__this, method);
|
|
return il2cpp_codegen_cast_struct<ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC>(&il2cppRetVal);
|
|
}
|
|
// T[] System.ReadOnlySpan`1<System.Int32>::ToArray()
|
|
inline Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ReadOnlySpan_1_ToArray_m750D7BEFA43F3FEAC24A67EA3D9FC30725B68962 (ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282* __this, const RuntimeMethod* method)
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* il2cppRetVal = (( __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* (*) (ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC*, const RuntimeMethod*))ReadOnlySpan_1_ToArray_mC80D8D89B94D8ACFFFA96DC9812EFABF437B8830_gshared)((ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC*)__this, method);
|
|
return (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)il2cppRetVal;
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexCode::.ctor(System.Int32[],System.Collections.Generic.List`1<System.String>,System.Int32,System.Collections.Hashtable,System.Int32,System.Text.RegularExpressions.RegexBoyerMoore,System.Nullable`1<System.Text.RegularExpressions.RegexPrefix>,System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCode__ctor_mA50EE1CFA1A050BFC45E135DAB7E2704049512E0 (RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_codes, List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___1_stringlist, int32_t ___2_trackcount, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___3_caps, int32_t ___4_capsize, RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* ___5_bmPrefix, Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8 ___6_fcPrefix, int32_t ___7_anchors, bool ___8_rightToLeft, const RuntimeMethod* method) ;
|
|
// T& System.Collections.Generic.ValueListBuilder`1<System.Int32>::get_Item(System.Int32)
|
|
inline int32_t* ValueListBuilder_1_get_Item_m5EF2B61BDC18BDA4F358250CFF2AD3F4180851FB (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
Il2CppFullySharedGenericAny* il2cppRetVal = (( Il2CppFullySharedGenericAny* (*) (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26*, int32_t, const RuntimeMethod*))ValueListBuilder_1_get_Item_mA8603140DF41A28E02364AEE9AA9DCA424797BDD_gshared)((ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26*)__this, ___0_index, method);
|
|
return (int32_t*)il2cppRetVal;
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexCode::OpcodeBacktracks(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCode_OpcodeBacktracks_m44FC8B177CFCB191B72C109984A707744FD7B2BC (int32_t ___0_Op, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(TKey,TValue&)
|
|
inline bool Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* __this, String_t* ___0_key, int32_t* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, const RuntimeMethod*))Dictionary_2_TryGetValue_m7519D765EAF1E8A7D3137C2F1B7B3A01D15A1692_gshared)((Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*)__this, (Il2CppFullySharedGenericAny)___0_key, (Il2CppFullySharedGenericAny*)___1_value, method);
|
|
}
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::set_Item(TKey,TValue)
|
|
inline void Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2 (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* __this, String_t* ___0_key, int32_t ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Dictionary_2_set_Item_m4C6841170DD11AED683D2D71919F362A4CFF4A80_gshared)((Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*)__this, (Il2CppFullySharedGenericAny)___0_key, (Il2CppFullySharedGenericAny)&___1_value, method);
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexNode::UseOptionR()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexNode_UseOptionR_mEBD872419C386D7C7802D2A6D2187E7B6D1D1641 (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.RegularExpressions.RegexWriter::MapCapnum(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexWriter_MapCapnum_m5EA7BA45A1C4D51DC20C281246D3997A3001A0B6 (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, int32_t ___0_capnum, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.RegularExpressions.RegexWriter::Emit(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_Emit_mDED2545E64CE95D941A1232DBA24EB6C81A7DB0C (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, int32_t ___0_op, int32_t ___1_opd1, int32_t ___2_opd2, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.RegularExpressions.RegexWriter::StringCode(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexWriter_StringCode_m5D4A227BBAA0674B820D70BEA1A2F7D0B29635FE (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, String_t* ___0_str, const RuntimeMethod* method) ;
|
|
// System.Void System.Diagnostics.Switch::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Switch__ctor_mA295E111B6A7F4B8D2B6AF796926017759669EA7 (Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412* __this, String_t* ___0_displayName, String_t* ___1_description, const RuntimeMethod* method) ;
|
|
// System.Void System.Diagnostics.Switch::.ctor(System.String,System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Switch__ctor_mE69262A89E3F19ACB4610B1EBFB35C763BB3EA48 (Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412* __this, String_t* ___0_displayName, String_t* ___1_description, String_t* ___2_defaultSwitchValue, const RuntimeMethod* method) ;
|
|
// System.Void System.Threading.Monitor::Exit(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149 (RuntimeObject* ___0_obj, bool* ___1_lockTaken, const RuntimeMethod* method) ;
|
|
// System.Void System.Diagnostics.Switch::_pruneCachedSwitches()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Switch__pruneCachedSwitches_mA5E329450FA91F01653114272FD2FBD5670C7D59 (const RuntimeMethod* method) ;
|
|
// System.Void System.WeakReference::.ctor(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WeakReference__ctor_m5F9E2F970CD85965A003C0B37ABDBFAA1F5CF241 (WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* __this, RuntimeObject* ___0_target, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.WeakReference>::Add(T)
|
|
inline void List_1_Add_m25F4DF4DE179873ACDA24F3C314479DDBCCC0BDD_inline (List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* __this, WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)___0_item, method);
|
|
}
|
|
// System.Int32 System.GC::CollectionCount(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GC_CollectionCount_m9589E16E4BA8DF175E3A6766A80F5EE3AA616876 (int32_t ___0_generation, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<System.WeakReference>::get_Count()
|
|
inline int32_t List_1_get_Count_m4D47FECAB21C77F7F4D9632A361C697E7D81CADC_inline (List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.WeakReference>::.ctor(System.Int32)
|
|
inline void List_1__ctor_m2C4FA91F495564C79C92BA3B2BE4B8855F69BB91 (List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* __this, int32_t ___0_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, const RuntimeMethod*))List_1__ctor_m3069CACB5775E013107F559C825422266A09F9E8_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_capacity, method);
|
|
}
|
|
// T System.Collections.Generic.List`1<System.WeakReference>::get_Item(System.Int32)
|
|
inline WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* List_1_get_Item_m83668C338517BB0174D4836DD9700CC489D01E44 (List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* il2cppRetVal;
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, Il2CppFullySharedGenericAny*, const RuntimeMethod*))List_1_get_Item_m6E4BA37C1FB558E4A62AE4324212E45D09C5C937_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.WeakReference>::Clear()
|
|
inline void List_1_Clear_m2225CCB9E5EE9E4981F4AE6EB18C904ED9CCB2E2_inline (List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.WeakReference>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1_AddRange_m9752A24431B17AFB6B8807C580DEB0B87E85704F (List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m44DED39FFEBC8F2ACF6162DB065B649E888B9C57_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (RuntimeObject*)___0_collection, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.WeakReference>::TrimExcess()
|
|
inline void List_1_TrimExcess_m99F8F07466512A8305AA9DC50A79BFFA0D426743 (List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_TrimExcess_m915005BC7D68487C2006E5A31D87D1CAED751407_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.WeakReference>::.ctor()
|
|
inline void List_1__ctor_m63EDE1AEAA4A4FCAB6203FB0C262E31C79D24F9E (List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Attribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2 (Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Diagnostics.SwitchLevelAttribute::set_SwitchLevelType(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SwitchLevelAttribute_set_SwitchLevelType_m4757AB3B3D77487056F17495239C40B56FC2E9AF (SwitchLevelAttribute_t1C9B38E19789AFAA9F130ED5BF3D1E5EF7FEF4BF* __this, Type_t* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC (Type_t* ___0_left, Type_t* ___1_right, const RuntimeMethod* method) ;
|
|
// System.Void System.ArgumentNullException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
|
// System.Int64 System.Diagnostics.Stopwatch::get_ElapsedTicks()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Stopwatch_get_ElapsedTicks_m3F4040FBF8C7CCDC69E0E04824019DEBB25AA410 (Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043* __this, const RuntimeMethod* method) ;
|
|
// System.TimeSpan System.TimeSpan::FromTicks(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_FromTicks_m9C683B1D142312F22E8CC6C803E32EF6D42F9003 (int64_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.TimeSpan System.Diagnostics.Stopwatch::get_Elapsed()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A Stopwatch_get_Elapsed_mF16CCA2F9B7E2EAEFCAF8D81F44370DBAC1B2178 (Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043* __this, const RuntimeMethod* method) ;
|
|
// System.Int64 System.Diagnostics.Stopwatch::GetTimestamp()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Stopwatch_GetTimestamp_mA3BDF219C573A34751D6A792E86C825B74D2CEB7 (const RuntimeMethod* method) ;
|
|
// System.String Locale::GetText(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Locale_GetText_m7BA18BC14D3028C4C4722E220800563188DA3600 (String_t* ___0_msg, const RuntimeMethod* method) ;
|
|
// System.Void System.SystemException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Void System.SystemException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_m0FC84CACD2A5D66222998AA601A5C41CEC36A611 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method) ;
|
|
// System.Void System.SystemException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.DerSequenceReader::.ctor(System.Byte[],System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerSequenceReader__ctor_mAA932343BB190BC44E41A6D8FBA75EC976D0D09A (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, int32_t ___1_offset, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.DerSequenceReader::.ctor(System.Security.Cryptography.DerSequenceReader/DerTag,System.Byte[],System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerSequenceReader__ctor_m09BDCF87C8D4558CABCC96159ADDBB6E49361141 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, uint8_t ___0_tagToEat, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_data, int32_t ___2_offset, int32_t ___3_length, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.CryptographicException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.DerSequenceReader::EatTag(System.Security.Cryptography.DerSequenceReader/DerTag)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerSequenceReader_EatTag_mF2658A324EBFAF16DAEB9762EA7DFE9036D4FB8E (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, uint8_t ___0_expected, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Security.Cryptography.DerSequenceReader::EatLength()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DerSequenceReader_EatLength_m2D1533B44A7CE4E4C97B206F704CF0BEE6D2A6A5 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.DerSequenceReader::set_ContentLength(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DerSequenceReader_set_ContentLength_mA2B091D517ABF0AFDF9C54477720668E09F47BCA_inline (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Security.Cryptography.DerSequenceReader::get_HasData()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
|
|
// System.Byte System.Security.Cryptography.DerSequenceReader::PeekTag()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Security.Cryptography.DerSequenceReader::ScanContentLength(System.Byte[],System.Int32,System.Int32,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DerSequenceReader_ScanContentLength_mDCE749F3AF5DEBB56A9683C6F5D6AE817F3D344D (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, int32_t ___1_offset, int32_t ___2_end, int32_t* ___3_bytesConsumed, const RuntimeMethod* method) ;
|
|
// System.Void System.Buffer::BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_BlockCopy_m2F7BC0C5BA97C500E3F87D5008718F797E02B358 (RuntimeArray* ___0_src, int32_t ___1_srcOffset, RuntimeArray* ___2_dst, int32_t ___3_dstOffset, int32_t ___4_count, const RuntimeMethod* method) ;
|
|
// System.Byte[] System.Security.Cryptography.DerSequenceReader::ReadIntegerBytes()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DerSequenceReader_ReadIntegerBytes_mBF491D99194CDD9FC70F58CF07E66B535C3F63EB (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Array::Reverse<System.Byte>(T[])
|
|
inline void Array_Reverse_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m4298AF0CA764FA936F9C5ED3606D1B4E2EC9EBA2 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, const RuntimeMethod*))Array_Reverse_TisIl2CppFullySharedGenericAny_m83EA25933C1AD0EA4D4437FDCF807AE9150FF4F4_gshared)((__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)___0_array, method);
|
|
}
|
|
// System.Void System.Numerics.BigInteger::.ctor(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_m25FA3F3C832BC621CD91ABFAC3535A2F4EE7B371 (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Numerics.BigInteger::op_Explicit(System.Numerics.BigInteger)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BigInteger_op_Explicit_m381F80B7F65BFEC7F2597DCDB24622F7F32E6848 (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___0_value, const RuntimeMethod* method) ;
|
|
// System.Byte[] System.Security.Cryptography.DerSequenceReader::ReadContentAsBytes()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DerSequenceReader_ReadContentAsBytes_m1DA571FBC10F30D7D68D49DAADF32C320A2B9907 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.StringBuilder::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5 (StringBuilder_t* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m2AE3195218B68BDDF01EF85928C76D6B596ED18D (StringBuilder_t* __this, uint8_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Numerics.BigInteger::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_mFEDEDA4A6AFC2BA534FEEF4EB3431B9C5AC3F9D9 (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Numerics.BigInteger System.Numerics.BigInteger::op_LeftShift(System.Numerics.BigInteger,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F BigInteger_op_LeftShift_m9C9DD1A22775C31A01650FEB59A91D4A58B719B3 (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___0_value, int32_t ___1_shift, const RuntimeMethod* method) ;
|
|
// System.Numerics.BigInteger System.Numerics.BigInteger::op_Implicit(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F BigInteger_op_Implicit_m9B2DA118DD0522DFA6983787CC9C09DACDB5469B (uint8_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Numerics.BigInteger System.Numerics.BigInteger::op_Addition(System.Numerics.BigInteger,System.Numerics.BigInteger)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F BigInteger_op_Addition_m895A3ED96D07E1A6E4AD97483EDC256107A31B12 (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___0_left, BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___1_right, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m3A7D629DAA5E0E36B8A617A911E34F79AF84AE63 (StringBuilder_t* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Numerics.BigInteger System.Numerics.BigInteger::op_Implicit(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F BigInteger_op_Implicit_m0E4A1C7B1F24EB10AE57608F2EBA5B127006D850 (int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Text.Encoding System.Text.Encoding::get_UTF8()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9 (const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.DerSequenceReader::TrimTrailingNulls(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DerSequenceReader_TrimTrailingNulls_m6F8B443B4DD8AD5D94A873B7849A2C51A2036801 (String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.DerSequenceReader::CheckTag(System.Security.Cryptography.DerSequenceReader/DerTag,System.Byte[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerSequenceReader_CheckTag_mCD70359356B835C7EAC514E2A4701D226B84588F (uint8_t ___0_expected, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_data, int32_t ___2_position, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.DerSequenceReader System.Security.Cryptography.DerSequenceReader::ReadCollectionWithTag(System.Security.Cryptography.DerSequenceReader/DerTag)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* DerSequenceReader_ReadCollectionWithTag_mBF55466089C1EAABB9D84B29A9A6193525AC412F (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, uint8_t ___0_expected, const RuntimeMethod* method) ;
|
|
// System.Text.Encoding System.Text.Encoding::get_ASCII()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_ASCII_mCC61B512D320FD4E2E71CC0DFDF8DDF3CD215C65 (const RuntimeMethod* method) ;
|
|
// System.Void System.Func`1<System.Text.Encoding>::.ctor(System.Object,System.IntPtr)
|
|
inline void Func_1__ctor_m6C754E4D0B45BA7670981BB593CB2664F6059CEB (Func_1_t01E2C750A870E045042E56862BC569C800166539* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_1__ctor_mC73A4FCEBBAB90CB7B7AB16321F3F98FBBF12596_gshared)((Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// T System.Threading.LazyInitializer::EnsureInitialized<System.Text.Encoding>(T&,System.Func`1<T>)
|
|
inline Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* LazyInitializer_EnsureInitialized_TisEncoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_m2736CF83A2CA83587FFCB63D7FF01994A7A6314A (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095** ___0_target, Func_1_t01E2C750A870E045042E56862BC569C800166539* ___1_valueFactory, const RuntimeMethod* method)
|
|
{
|
|
return (( Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* (*) (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095**, Func_1_t01E2C750A870E045042E56862BC569C800166539*, const RuntimeMethod*))LazyInitializer_EnsureInitialized_TisRuntimeObject_mFEBA744876B29FFCD71AFC49292AA14051ED47DF_gshared)(___0_target, ___1_valueFactory, method);
|
|
}
|
|
// System.DateTime System.Security.Cryptography.DerSequenceReader::ReadUtcTime()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DerSequenceReader_ReadUtcTime_m16083186C07F2771CB7B4EA9EA68248FCFA9B66B (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
|
|
// System.DateTime System.Security.Cryptography.DerSequenceReader::ReadGeneralizedTime()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DerSequenceReader_ReadGeneralizedTime_m24100E18CD48B8F2E7415BEA4095466A0DBF3042 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
|
|
// System.DateTime System.Security.Cryptography.DerSequenceReader::ReadTime(System.Security.Cryptography.DerSequenceReader/DerTag,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DerSequenceReader_ReadTime_m492DB6BB481B1CFC586644EE3D233145A5486F32 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, uint8_t ___0_timeTag, String_t* ___1_formatString, const RuntimeMethod* method) ;
|
|
// System.Text.Encoding System.Text.Encoding::get_BigEndianUnicode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_BigEndianUnicode_m249BEC175A03C3DCEF799A020B05215053F1053B (const RuntimeMethod* method) ;
|
|
// System.Void System.Func`1<System.Globalization.DateTimeFormatInfo>::.ctor(System.Object,System.IntPtr)
|
|
inline void Func_1__ctor_mEA0BC3F29EEF76F1469C7D656F49F2B6F435DE5E (Func_1_t74FC36A4C2A548316E77F19B2968741BF64B13D7* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_1__ctor_mC73A4FCEBBAB90CB7B7AB16321F3F98FBBF12596_gshared)((Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// T System.Threading.LazyInitializer::EnsureInitialized<System.Globalization.DateTimeFormatInfo>(T&,System.Func`1<T>)
|
|
inline DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* LazyInitializer_EnsureInitialized_TisDateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_m3A8FCF153BED44EE5F0E5941DCEFE4B503CBBB21 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** ___0_target, Func_1_t74FC36A4C2A548316E77F19B2968741BF64B13D7* ___1_valueFactory, const RuntimeMethod* method)
|
|
{
|
|
return (( DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* (*) (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A**, Func_1_t74FC36A4C2A548316E77F19B2968741BF64B13D7*, const RuntimeMethod*))LazyInitializer_EnsureInitialized_TisRuntimeObject_mFEBA744876B29FFCD71AFC49292AA14051ED47DF_gshared)(___0_target, ___1_valueFactory, method);
|
|
}
|
|
// System.Boolean System.DateTime::TryParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTime&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_TryParseExact_mA0100669E6CE6EFFCC836F1DCA56BDDE1E7C2662 (String_t* ___0_s, String_t* ___1_format, RuntimeObject* ___2_provider, int32_t ___3_style, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* ___4_result, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.DerSequenceReader/<>c::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mF050E3B4FEBB43DB13E684C3B309D33A66DCC861 (U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.UTF8Encoding::.ctor(System.Boolean,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UTF8Encoding__ctor_m128F4B4A103E718AAB699E2D64011DB13F486726 (UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE* __this, bool ___0_encoderShouldEmitUTF8Identifier, bool ___1_throwOnInvalidBytes, const RuntimeMethod* method) ;
|
|
// System.Text.Encoding System.Text.Encoding::GetEncoding(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_GetEncoding_m979B224460094E241BD5C283BE279886664C9187 (String_t* ___0_name, const RuntimeMethod* method) ;
|
|
// System.Object System.Globalization.DateTimeFormatInfo::Clone()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DateTimeFormatInfo_Clone_mCBA61859E15A29FC79AC3CDAA616D063901540E8 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.Globalization.Calendar System.Globalization.DateTimeFormatInfo::get_Calendar()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* DateTimeFormatInfo_get_Calendar_m1280AC2F196ECBE7B664394CC3821062015DEF99_inline (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.String Internal.Cryptography.OidLookup::ToOid(System.String,System.Security.Cryptography.OidGroup,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OidLookup_ToOid_m084AE2948BA1D784EAC148B97B6D5EF94F0D58B0 (String_t* ___0_friendlyName, int32_t ___1_oidGroup, bool ___2_fallBackToAllGroups, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.Oid::set_Value(System.String)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Oid_set_Value_m122282994E6EE138CE4284B052EF8BE2086CA72F_inline (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// System.String Internal.Cryptography.OidLookup::ToFriendlyName(System.String,System.Security.Cryptography.OidGroup,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OidLookup_ToFriendlyName_m701DBD29D72B7D43C2513E29E8433B1E12C3A0AF (String_t* ___0_oid, int32_t ___1_oidGroup, bool ___2_fallBackToAllGroups, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.Oid::.ctor(System.String,System.String,System.Security.Cryptography.OidGroup)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Oid__ctor_m29BE61A97566E5BE4D5AE6D0A5C31FE30885AADC (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, String_t* ___0_value, String_t* ___1_friendlyName, int32_t ___2_group, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Security.Cryptography.Oid>::.ctor()
|
|
inline void List_1__ctor_m3BB823E6AB875ADEA1C357D9FD3988FC3BD07DC8 (List_1_t31E53E1C1BAA65ECAEFCBC9D003166BC01081D6B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Int32 System.Collections.Generic.List`1<System.Security.Cryptography.Oid>::get_Count()
|
|
inline int32_t List_1_get_Count_m00523F252234FC6049965BF2606B179CEF09A759_inline (List_1_t31E53E1C1BAA65ECAEFCBC9D003166BC01081D6B* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.Security.Cryptography.Oid>::Add(T)
|
|
inline void List_1_Add_m3365EDCFC60E7D35967ECEB93DD7851CC2D9B41F_inline (List_1_t31E53E1C1BAA65ECAEFCBC9D003166BC01081D6B* __this, Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)___0_item, method);
|
|
}
|
|
// T System.Collections.Generic.List`1<System.Security.Cryptography.Oid>::get_Item(System.Int32)
|
|
inline Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* List_1_get_Item_m79E063DD5D6C2BF1AF8CB852A77E38360E5484BE (List_1_t31E53E1C1BAA65ECAEFCBC9D003166BC01081D6B* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* il2cppRetVal;
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, Il2CppFullySharedGenericAny*, const RuntimeMethod*))List_1_get_Item_m6E4BA37C1FB558E4A62AE4324212E45D09C5C937_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void System.Security.Cryptography.OidEnumerator::.ctor(System.Security.Cryptography.OidCollection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OidEnumerator__ctor_m2168FEE96614FB7460C84762ED3728A5413F42E6 (OidEnumerator_t9E63ADFA5DD6DB1AA249F81E650FF063479EDD41* __this, OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* ___0_oids, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.OidEnumerator System.Security.Cryptography.OidCollection::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OidEnumerator_t9E63ADFA5DD6DB1AA249F81E650FF063479EDD41* OidCollection_GetEnumerator_mBB791F48E305B3355A1BCE624E0BB367331F82AC (OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Array::get_Rank()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F (RuntimeArray* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Array::get_Length()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57 (RuntimeArray* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Security.Cryptography.OidCollection::get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OidCollection_get_Count_m9560D70809087591935904924A15FBEC1FEFEB11 (OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* __this, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.Oid System.Security.Cryptography.OidCollection::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* OidCollection_get_Item_m0AEC71C746E735035A05C50EE2721C1E8FE08F7A (OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Void System.Array::SetValue(System.Object,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8 (RuntimeArray* __this, RuntimeObject* ___0_value, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.Oid System.Security.Cryptography.OidEnumerator::get_Current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* OidEnumerator_get_Current_mCED077699FA00ED57FA82F8B460C28B86F1B5C9F (OidEnumerator_t9E63ADFA5DD6DB1AA249F81E650FF063479EDD41* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.Oid::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Oid__ctor_m4AF81B9D51BED48AE505251E0874EC654BA07B72 (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, String_t* ___0_oid, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.AsnEncodedData::set_RawData(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsnEncodedData_set_RawData_m05F9F17765AD384ECE3A333DCBF6A0572099346B (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.AsnEncodedData::set_Oid(System.Security.Cryptography.Oid)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsnEncodedData_set_Oid_m877771219F651EA3FF834952300180274531C9C7 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.Oid::.ctor(System.Security.Cryptography.Oid)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Oid__ctor_m3973A5FE5482D45FABC8642E59B655274B0B5D59 (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* ___0_oid, const RuntimeMethod* method) ;
|
|
// System.Object System.Array::Clone()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_Clone_m66C9D0727C9BAA0995E4142F29B45BC03582E042 (RuntimeArray* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.AsnEncodedData::Default(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsnEncodedData_Default_m883444CBD5238793D1B94A6DE273FF2F9C47EA70 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, bool ___0_multiLine, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.Oid::get_Value()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Oid_get_Value_m59D678A83ED4DE7D87FB7450C8CF4084DB506FD3_inline (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.String::op_Equality(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.AsnEncodedData::BasicConstraintsExtension(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsnEncodedData_BasicConstraintsExtension_m74BFC192666755E9D8A088880789AB6EA84F1FCC (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, bool ___0_multiLine, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.AsnEncodedData::EnhancedKeyUsageExtension(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsnEncodedData_EnhancedKeyUsageExtension_m3C95D5D2D8F81BEA5E33B264767C8A5E5575D7CA (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, bool ___0_multiLine, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.AsnEncodedData::KeyUsageExtension(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsnEncodedData_KeyUsageExtension_m9A9C72CF2A831A1849A55336FC8D6DEE097E28D3 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, bool ___0_multiLine, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.AsnEncodedData::SubjectKeyIdentifierExtension(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsnEncodedData_SubjectKeyIdentifierExtension_m3CEDDCED26AD5621407DAA401F385269348BB789 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, bool ___0_multiLine, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.AsnEncodedData::SubjectAltName(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsnEncodedData_SubjectAltName_mDE2F39E1A43C1E13D89319F221517EE54B1A6A14 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, bool ___0_multiLine, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.AsnEncodedData::NetscapeCertType(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsnEncodedData_NetscapeCertType_m55E43EBDA7882304E8FE5F3DC134A2719F519373 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, bool ___0_multiLine, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.StringBuilder::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D (StringBuilder_t* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Byte::ToString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m793A41EEEB7B422F6FE658E99D2F7683F59EE310 (uint8_t* __this, String_t* ___0_format, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::.ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509BasicConstraintsExtension__ctor_m76C88E8D4C7CCEC7B2C3D56CC58A56352F7729E4 (X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35* __this, AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* ___0_encodedBasicConstraints, bool ___1_critical, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension::.ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509EnhancedKeyUsageExtension__ctor_mBDA55EB3C6594D4F6A06102B4EAF633F86C3E092 (X509EnhancedKeyUsageExtension_t237A41510BAC916B5FFC67B464E1D38980D70BFF* __this, AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* ___0_encodedEnhancedKeyUsages, bool ___1_critical, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::.ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509KeyUsageExtension__ctor_m1DE9CD768712A07E5803496501CCFDA81CFB2689 (X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B* __this, AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* ___0_encodedKeyUsage, bool ___1_critical, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::.ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509SubjectKeyIdentifierExtension__ctor_m421293DCB67F3A918098962166B8166FD9657D08 (X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5* __this, AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* ___0_encodedSubjectKeyIdentifier, bool ___1_critical, const RuntimeMethod* method) ;
|
|
// System.Void Mono.Security.ASN1::.ctor(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1__ctor_m950BFCCF44A987ACBA12142624AA222200EE503E (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, const RuntimeMethod* method) ;
|
|
// Mono.Security.ASN1 Mono.Security.ASN1::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Byte Mono.Security.ASN1::get_Tag()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* __this, const RuntimeMethod* method) ;
|
|
// System.Byte[] Mono.Security.ASN1::get_Value()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ASN1_get_Value_mA6F9BE5AC19AC060AC42673C8FD5AA864EA046B6 (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* __this, const RuntimeMethod* method) ;
|
|
// System.String System.String::Format(System.String,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8 (String_t* ___0_format, RuntimeObject* ___1_arg0, const RuntimeMethod* method) ;
|
|
// System.String Mono.Security.Cryptography.CryptoConvert::ToHex(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CryptoConvert_ToHex_m1A0AD4D32CEEC47D3C60CB2E4D05A935C62F261A (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_input, const RuntimeMethod* method) ;
|
|
// System.String System.Environment::get_NewLine()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF (const RuntimeMethod* method) ;
|
|
// System.Int32 Mono.Security.ASN1::get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASN1_get_Count_mBE45E73126FAD2694E9059CAC53B7AC9A5F60833 (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Int32::ToString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m967AECC237535C552A97A80C7875E31B98496CA9 (int32_t* __this, String_t* ___0_format, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.String,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_AppendFormat_mFA88863E4018C2912D1A783E0EA6DAE4F594124F (StringBuilder_t* __this, String_t* ___0_format, RuntimeObject* ___1_arg0, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.AsnEncodedData::.ctor(System.Security.Cryptography.AsnEncodedData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsnEncodedData__ctor_mA80B22E2D7D98198B55D04474F6926EF80CBABF6 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* ___0_asnEncodedData, const RuntimeMethod* method) ;
|
|
// System.Byte[] System.Security.Cryptography.AsnEncodedData::get_RawData()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.RSA System.Security.Cryptography.X509Certificates.PublicKey::DecodeRSA(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RSA_tDDE9BD4C9806074FA9B1C6A5C93523A97116F21A* PublicKey_DecodeRSA_m5E8D3C7200105F4571BB56BA629195367F881545 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_rawPublicKey, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.DSA System.Security.Cryptography.X509Certificates.PublicKey::DecodeDSA(System.Byte[],System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DSA_tB12EE3AEA99FBD41DE318E2A371878CA94653E41* PublicKey_DecodeDSA_m492DDFE288B22C3ACC3B6723BF762FA5D4AC23AD (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_rawPublicKey, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_rawParameters, const RuntimeMethod* method) ;
|
|
// System.String Locale::GetText(System.String,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Locale_GetText_m42E1EB13401D44A17A435110DDBE57AD042267A5 (String_t* ___0_fmt, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_args, const RuntimeMethod* method) ;
|
|
// System.Void System.NotSupportedException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Byte[] System.Security.Cryptography.X509Certificates.PublicKey::GetUnsignedBigInteger(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* PublicKey_GetUnsignedBigInteger_mAB4689D859FA5A4805270E0DFE9D35AC6B56F577 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_integer, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.CryptographicException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CryptographicException__ctor_m5DDF42BBD1BBB5006C6E912240CAE64C8B14FA9C (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* __this, String_t* ___0_message, Exception_t* ___1_inner, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.DSACryptoServiceProvider::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DSACryptoServiceProvider__ctor_m7F0D9766E2CE0031007086B713375FF8C89ADEB3 (DSACryptoServiceProvider_tB418CD8E85D69D879C7298E4A6A7D8CFAC09D79E* __this, int32_t ___0_dwKeySize, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.RSACryptoServiceProvider::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RSACryptoServiceProvider__ctor_m74A4B904FEAADB8D68D54E0DD680AE532042FFE9 (RSACryptoServiceProvider_t5B3DF0CAFF65D4103EB90063F3C3B00FE2C6967C* __this, int32_t ___0_dwKeySize, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.AsnEncodedData::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsnEncodedData__ctor_m90028EC56A5E36272EAA4A9279AE23358D46F547 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.Oid::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Oid__ctor_m9032299ACEB6DC66674CB2D8889D875A1A9D308F (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X500DistinguishedName::DecodeRawData()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X500DistinguishedName_DecodeRawData_mB465AEF2F370353BB809B6B310064FF67DC2D970 (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X500DistinguishedName::.ctor(System.String,System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X500DistinguishedName__ctor_m95199AB45F165A1B774CA88B45F08889BFA5E162 (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* __this, String_t* ___0_distinguishedName, int32_t ___1_flag, const RuntimeMethod* method) ;
|
|
// Mono.Security.ASN1 Mono.Security.X509.X501::FromString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* X501_FromString_m22E2E65B409AD90884F39373D865EF97AECDADC9 (String_t* ___0_rdn, const RuntimeMethod* method) ;
|
|
// System.Void Mono.Security.ASN1::.ctor(System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1__ctor_mA9AE2197367C1E13DBFDA67E0A383167F52CC114 (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* __this, uint8_t ___0_tag, const RuntimeMethod* method) ;
|
|
// Mono.Security.ASN1 Mono.Security.ASN1::Add(Mono.Security.ASN1)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* ASN1_Add_m4C61487A6CCF48D5CEB0D97B248FE31F9FCD849F (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* __this, ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* ___0_asn1, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.X509Certificates.X500DistinguishedName::Decode(System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X500DistinguishedName_Decode_mEC580A9699C0384B0196C80CD5ECFAA2151243BD (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* __this, int32_t ___0_flag, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.X509Certificates.X500DistinguishedName::GetSeparator(System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X500DistinguishedName_GetSeparator_m5DBD24D00DDE71A1842E169AF0C63BA0242A6693 (int32_t ___0_flag, const RuntimeMethod* method) ;
|
|
// System.String Mono.Security.X509.X501::ToString(Mono.Security.ASN1,System.Boolean,System.String,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X501_ToString_m4C3921DEC65010E4B8A225C0982C382B1ADF0399 (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* ___0_seq, bool ___1_reversed, String_t* ___2_separator, bool ___3_quotes, const RuntimeMethod* method) ;
|
|
// System.String System.String::Concat(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___0_str0, String_t* ___1_str1, const RuntimeMethod* method) ;
|
|
// System.Int32 System.String::IndexOf(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.StringBuilder::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mCD797D942316CB356205FD96415B0B7581CDAD60 (StringBuilder_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Char::IsWhiteSpace(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m8A6D2951619293FCA4E8F7D3A7190B533A7EDD78 (String_t* ___0_s, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
// System.String System.String::TrimEnd()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_TrimEnd_m25B1EA658EE07ADFED51FED61D630E5625336AB5 (String_t* __this, const RuntimeMethod* method) ;
|
|
// System.Char System.Char::ToUpperInvariant(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpperInvariant_m43EADCB6987DB5FC44A6BFDBA8800EBACCEC68C8 (Il2CppChar ___0_c, const RuntimeMethod* method) ;
|
|
// System.String[] System.String::Split(System.String[],System.StringSplitOptions)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* String_Split_m03F46561E2DF46D1E3AE749A77706EFC2F6488F4 (String_t* __this, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___0_separator, int32_t ___1_options, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.X509Certificates.X500DistinguishedName::Canonize(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X500DistinguishedName_Canonize_m3CA4E6FE15959CD6599936D8B8A47C4D845E6052 (String_t* ___0_s, const RuntimeMethod* method) ;
|
|
// System.Boolean System.String::op_Inequality(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Extension::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Extension__ctor_mFC88C10C2C6718E6AE74CE37E10D4EBB8FD67BAC (X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.Oid::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Oid__ctor_m533C0126C7C8D382D3E702287A9AD0CED2D0377D (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, String_t* ___0_value, String_t* ___1_friendlyName, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Extension::set_Critical(System.Boolean)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void X509Extension_set_Critical_m19FBE6E0C8B9069E5A2C232DAAE06046AF18EFEF_inline (X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.AsnDecodeStatus System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::Decode(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509BasicConstraintsExtension_Decode_m7C50097B6238FEF4DAD6A9A09A449DB0CAFFEBEB (X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_extension, const RuntimeMethod* method) ;
|
|
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
|
// System.Byte[] System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::Encode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* X509BasicConstraintsExtension_Encode_mD7FA31A70B025F67062C3844E4FEB09B14A4DE2B (X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.ArgumentException::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, String_t* ___1_paramName, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Security.Cryptography.X509Certificates.X509Extension::get_Critical()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool X509Extension_get_Critical_mEF827F09D95784210C2F8D5FD7BE27BB54803E35_inline (X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 Mono.Security.ASN1Convert::ToInt32(Mono.Security.ASN1)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASN1Convert_ToInt32_m956785EB4A235575C21677C16D2F6CBE54787032 (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* ___0_asn1, const RuntimeMethod* method) ;
|
|
// System.Void Mono.Security.ASN1::.ctor(System.Byte,System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1__ctor_mAA538F9E1BE0DE739E9747BC3BC71DC030B018AA (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* __this, uint8_t ___0_tag, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_data, const RuntimeMethod* method) ;
|
|
// Mono.Security.ASN1 Mono.Security.ASN1Convert::FromInt32(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* ASN1Convert_FromInt32_mACAC096211E525F124BE0D50D90524ADCB6EA198 (int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.X509Certificates.X509Extension::FormatUnkownData(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Extension_FormatUnkownData_mD0463F5096A6937E95E3165048299CBA9A1A6F7D (X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA (StringBuilder_t* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate::Reset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate_Reset_mE107591B5DD95803C4C54D11FD51093B096938E9 (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate__ctor_m8C7B944B736B2E80B997CEF14DA533A43B21221D (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate::.ctor(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate__ctor_mD03830ADC5DB6278898C055CFA71E7C37ADDB5DD (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, const RuntimeMethod* method) ;
|
|
// System.Void Microsoft.Win32.SafeHandles.SafePasswordHandle::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafePasswordHandle__ctor_m7B9E2FCDE3D3062399AC53BDF31F9098442D8309 (SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* __this, String_t* ___0_password, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.X509Certificates.X509CertificateImpl System.Security.Cryptography.X509Certificates.X509Helper::Import(System.Byte[],Microsoft.Win32.SafeHandles.SafePasswordHandle,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* X509Helper_Import_m0E8AD0030994213DCA95445166B707732979C200 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_rawData, SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* ___1_password, int32_t ___2_keyStorageFlags, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate::ImportHandle(System.Security.Cryptography.X509Certificates.X509CertificateImpl)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate_ImportHandle_m54F4BDE5C14295911D620B946918213CD38DFA02 (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* ___0_impl, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate::.ctor(System.Byte[],System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate__ctor_m79D85E4F1103FF390B475632F6EC3A44105F8A2F (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_rawData, String_t* ___1_password, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate::.ctor(System.Security.Cryptography.X509Certificates.X509CertificateImpl)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate__ctor_mC9377C026C89D0F8DBBBBBB060F786988E47FCAE (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* ___0_impl, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate::.ctor(System.Security.Cryptography.X509Certificates.X509Certificate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate__ctor_m000BB695F5B3F1460BF1CA7E77D6765121CFBFCB (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___0_cert, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate__ctor_m2B56E3261F6C33A8DA297DECD0CE568B7B3B5887 (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ;
|
|
// System.Void System.PlatformNotSupportedException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlatformNotSupportedException__ctor_mD5DBE8E9A6FF4B75EF02671029C6D67A51EAFBD1 (PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate::ThrowIfInvalid()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate_ThrowIfInvalid_mCD48C7FC4B19DD27885F410FA3F5744F1D6AEB4F (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509ExtensionCollection::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ExtensionCollection__ctor_m279F781688D6D8D301D06282132D8A02DC864AE9 (X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* __this, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl System.Security.Cryptography.X509Certificates.X509Certificate2::get_Impl()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* X509Certificate2_get_Impl_m21C56437F9DD096FA112C2DF07F04EB2E381015F (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.Oid System.Security.Cryptography.AsnEncodedData::get_Oid()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* AsnEncodedData_get_Oid_mBDB4803B2ADEE3BD40596E82FF738C2DC339BC28_inline (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.X509Certificates.X509Extension System.Security.Cryptography.X509Certificates.X509Certificate2::CreateCustomExtensionIfAny(System.Security.Cryptography.Oid)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* X509Certificate2_CreateCustomExtensionIfAny_m2E709C9C8557610C4D8E5DDC182639669BA54A67 (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* ___0_oid, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509ExtensionCollection::Add(System.Security.Cryptography.X509Certificates.X509Extension)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509ExtensionCollection_Add_mC02BE13A042962E83E849483642F122AEADD2A79 (X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* __this, X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* ___0_extension, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Security.Cryptography.X509Certificates.X509Certificate2::get_HasPrivateKey()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509Certificate2_get_HasPrivateKey_m561EE07579AC86B96856A73367961AD01DAD8567 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method) ;
|
|
// System.DateTime System.Security.Cryptography.X509Certificates.X509Certificate::GetNotAfter()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D X509Certificate_GetNotAfter_mBED8ACE5BCA21D51715AFD8E568E46989E47DF02 (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, const RuntimeMethod* method) ;
|
|
// System.DateTime System.Security.Cryptography.X509Certificates.X509Certificate::GetNotBefore()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D X509Certificate_GetNotBefore_m1E3FA4967825483593325CC5ACB72713631AEEDD (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.AsnEncodedData::.ctor(System.Security.Cryptography.Oid,System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsnEncodedData__ctor_m3E8C1D1E0CE464176742B847DC99BF8EAABF15E6 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* ___0_oid, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_rawData, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.PublicKey::.ctor(System.Security.Cryptography.Oid,System.Security.Cryptography.AsnEncodedData,System.Security.Cryptography.AsnEncodedData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PublicKey__ctor_m810A1EF4D8A0BAE8A3CB36EB8CC0BBA99D799782 (PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* __this, Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* ___0_oid, AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* ___1_parameters, AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* ___2_keyValue, const RuntimeMethod* method) ;
|
|
// System.Byte[] Internal.Cryptography.Helpers::CloneByteArray(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Helpers_CloneByteArray_m20B98BC0D8B620EF6A0DCD5F392F39A635DD0973 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_src, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.Oid System.Security.Cryptography.Oid::FromOidValue(System.String,System.Security.Cryptography.OidGroup)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* Oid_FromOidValue_m44CB94625A6CFB2780CA8E50CF845801A1A6E18C (String_t* ___0_oidValue, int32_t ___1_group, const RuntimeMethod* method) ;
|
|
// System.String Internal.Cryptography.Helpers::ToHexStringUpper(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Helpers_ToHexStringUpper_m92299BB66BAF001988190B5FB46E655EA2F239DD (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_bytes, const RuntimeMethod* method) ;
|
|
// Mono.X509PalImpl Mono.X509Pal::get_Instance()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* X509Pal_get_Instance_m2387001973EBEDE812568E43F8664427710BCE34 (const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.X509Certificates.X509ContentType Mono.X509PalImpl::GetCertContentType(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509PalImpl_GetCertContentType_m41DC755893135DB1ACF78832BDAB201C46AC6F99 (X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_rawData, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.X509Certificates.X509Certificate::ToString(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Certificate_ToString_mFD8466D64C9E560D070BD3F18B5AB90CDC03B0C2 (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, bool ___0_fVerbose, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Security.Cryptography.X509Certificates.X509Certificate::get_IsValid()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509Certificate_get_IsValid_m7C4179F6E70ECAB514BF38417619C517AA3A8439 (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::AppendLine(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88 (StringBuilder_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509Certificate2::get_Version()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509Certificate2_get_Version_m6A4FB2125DA64437D184A64E731F2B58738F0B09 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::AppendLine()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E (StringBuilder_t* __this, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.X509Certificates.X500DistinguishedName System.Security.Cryptography.X509Certificates.X509Certificate2::get_SubjectName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* X509Certificate2_get_SubjectName_m0A767E93883BD9D984903B6753819CB7E02D90BC (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.X509Certificates.X500DistinguishedName::get_Name()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* X500DistinguishedName_get_Name_m57B2708AAA2B4E15AB6F6B513D88C4468898B5A9_inline (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.X509Certificates.X509Certificate2::GetNameInfo(System.Security.Cryptography.X509Certificates.X509NameType,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Certificate2_GetNameInfo_mDFE32FF38933F2B9F652B27B1EA857AD463222DE (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, int32_t ___0_nameType, bool ___1_forIssuer, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.X509Certificates.X500DistinguishedName System.Security.Cryptography.X509Certificates.X509Certificate2::get_IssuerName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* X509Certificate2_get_IssuerName_m47CB829F5388F2E68A20D473F586FA847739B83D (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.X509Certificates.X509Certificate2::get_SerialNumber()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Certificate2_get_SerialNumber_m12F610EEBE485A29FD49A06E8A33BB690476309B (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method) ;
|
|
// System.DateTime System.Security.Cryptography.X509Certificates.X509Certificate2::get_NotBefore()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D X509Certificate2_get_NotBefore_m656CC9913A0E6F6F0C06185F3B63F3A2EDCEB801 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.X509Certificates.X509Certificate::FormatDate(System.DateTime)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Certificate_FormatDate_m92BA85C1E5BDA937F6CD97E84B224F16AD9EAA8F (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_date, const RuntimeMethod* method) ;
|
|
// System.DateTime System.Security.Cryptography.X509Certificates.X509Certificate2::get_NotAfter()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D X509Certificate2_get_NotAfter_m925CA3901B7856D0692C6DED4F6428A40A726787 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.X509Certificates.X509Certificate2::get_Thumbprint()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Certificate2_get_Thumbprint_m0A33F62238AF002C1B93A0F93A361B890E61DE8C (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.Oid System.Security.Cryptography.X509Certificates.X509Certificate2::get_SignatureAlgorithm()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* X509Certificate2_get_SignatureAlgorithm_mF3FE8751A82E00E38E315EA893575D125F4F7354 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.Oid::get_FriendlyName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Oid_get_FriendlyName_m1B7B5D80B6B533A33DAB2B28DCD0B53927D1BD17 (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.X509Certificates.PublicKey System.Security.Cryptography.X509Certificates.X509Certificate2::get_PublicKey()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* X509Certificate2_get_PublicKey_mF1813BEE1EE04C593FBAA44590E2AEBC23A72304 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.Oid System.Security.Cryptography.X509Certificates.PublicKey::get_Oid()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* PublicKey_get_Oid_mB5796F569C136759CB740F747C6A3B6F8976401A_inline (PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* __this, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.RSA System.Security.Cryptography.X509Certificates.RSACertificateExtensions::GetRSAPublicKey(System.Security.Cryptography.X509Certificates.X509Certificate2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RSA_tDDE9BD4C9806074FA9B1C6A5C93523A97116F21A* RSACertificateExtensions_GetRSAPublicKey_m8DDF940D409724E136FD6E36146F4E481DC07B54 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* ___0_certificate, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.AsnEncodedData System.Security.Cryptography.X509Certificates.PublicKey::get_EncodedKeyValue()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* PublicKey_get_EncodedKeyValue_m153EF781728D471C55002A40BBDA435F1B3A1213_inline (PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* __this, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.AsnEncodedData System.Security.Cryptography.X509Certificates.PublicKey::get_EncodedParameters()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* PublicKey_get_EncodedParameters_mE338A4A69A15907E38A644D624A07DDD55C521E0_inline (PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* __this, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.X509Certificates.X509ExtensionCollection System.Security.Cryptography.X509Certificates.X509Certificate2::get_Extensions()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* X509Certificate2_get_Extensions_m3746E7EB004789DF5AF56AD36209676860901579 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509ExtensionCollection::get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509ExtensionCollection_get_Count_m2708E6751246E4E5E64BAE8A99FEC79CFD61E9A1 (X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* __this, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator System.Security.Cryptography.X509Certificates.X509ExtensionCollection::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509ExtensionEnumerator_t7C4F4F5D65C7023FA1BEE3F6522B066A6CECCFF6* X509ExtensionCollection_GetEnumerator_m7F4BDDDF50FD335D3F6A2AB490221D27524BD0BF (X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* __this, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.X509Certificates.X509Extension System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator::get_Current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* X509ExtensionEnumerator_get_Current_m6057D68B2D7750669A51630A1561FCE7F597E232 (X509ExtensionEnumerator_t7C4F4F5D65C7023FA1BEE3F6522B066A6CECCFF6* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator::MoveNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509ExtensionEnumerator_MoveNext_mDCF343DCC4699DFB3D6E72D84AF8A6C11AB247C3 (X509ExtensionEnumerator_t7C4F4F5D65C7023FA1BEE3F6522B066A6CECCFF6* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean Mono.X509PalImpl::get_SupportsLegacyBasicConstraintsExtension()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509PalImpl_get_SupportsLegacyBasicConstraintsExtension_mA7FF5FA4ABFF9B8A028FD3937636C6E4D7AE2F38 (X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509BasicConstraintsExtension__ctor_m672BE9B41107A8C30454BF4CAC120D70512BA89A (X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509KeyUsageExtension__ctor_mE0EE68497EDEDD78213EEDC931D68DD35DF6340C (X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509EnhancedKeyUsageExtension__ctor_m7ECF7F6EEB96855182FD5466A04B4712B3F4C746 (X509EnhancedKeyUsageExtension_t237A41510BAC916B5FFC67B464E1D38980D70BFF* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509SubjectKeyIdentifierExtension__ctor_mFC2A19B1301ABBA5F6C5CE407ABC4F4CA1EB49B1 (X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5* __this, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.X509Certificates.X509CertificateImpl System.Security.Cryptography.X509Certificates.X509Certificate::get_Impl()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* X509Certificate_get_Impl_m567BEB584A388821259EB9BBBB5B90B6182CC99D_inline (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Helper::ThrowIfContextInvalid(System.Security.Cryptography.X509Certificates.X509CertificateImpl)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Helper_ThrowIfContextInvalid_m925EF739507BA9738AFE65C6382DF6D832C30588 (X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* ___0_impl, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509CertificateCollection::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509CertificateCollection__ctor_m237A27DC157785FBC50EBAF3562AAF0907BF97EB (X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2Collection::AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2Collection_AddRange_m764C331A677795DCA45A496DF9752B58F2FDA2A8 (X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* __this, X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* ___0_certificates, const RuntimeMethod* method) ;
|
|
// System.Collections.ArrayList System.Collections.CollectionBase::get_InnerList()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* CollectionBase_get_InnerList_mD37144662A9045A5CA82681C265719733934DEAB_inline (CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F* __this, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.X509Certificates.X509Extension System.Security.Cryptography.X509Certificates.X509ExtensionCollection::get_Item(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* X509ExtensionCollection_get_Item_m411222FFB9DF3584180BA8A09ED061CFD5774F9D (X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* __this, String_t* ___0_oid, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::.ctor(System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierHashAlgorithm,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509SubjectKeyIdentifierExtension__ctor_m1858C1B050FAF65946B790737652E874781B4B56 (X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5* __this, PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* ___0_key, int32_t ___1_algorithm, bool ___2_critical, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::get_SubjectKeyIdentifier()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509SubjectKeyIdentifierExtension_get_SubjectKeyIdentifier_mFF2A155072C67F430E7F4B178733A80388943CBA (X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5* __this, const RuntimeMethod* method) ;
|
|
// System.Type System.Object::GetType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
// System.Byte[] System.Security.Cryptography.CryptoConfig::EncodeOID(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* CryptoConfig_EncodeOID_mFC779B3B35D074F2804F36F36D9DB4A8E2070CDD (String_t* ___0_str, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2Collection::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2Collection__ctor_mC7A17C695E7DB906D549A0BF60943D2490F4C2B9 (X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.String::Compare(System.String,System.String,System.Boolean,System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_mBD9ED6B35314B34F51A9985E350D33F6F56F85A9 (String_t* ___0_strA, String_t* ___1_strB, bool ___2_ignoreCase, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___3_culture, const RuntimeMethod* method) ;
|
|
// System.Int32 System.String::IndexOf(System.String,System.Int32,System.StringComparison)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m2DFDE7BD37585BDBCD6F688B4E4A93304235A0B8 (String_t* __this, String_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_comparisonType, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.X509Certificates.X509Certificate::get_Subject()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Certificate_get_Subject_m2568DA6469339937B44FCD5C7C69FF02934D075C (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.String::IndexOf(System.String,System.StringComparison)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55 (String_t* __this, String_t* ___0_value, int32_t ___1_comparisonType, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.X509Certificates.X509Certificate::get_Issuer()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Certificate_get_Issuer_m1922DC6FA16712898394AF2377B6D089BA2D169E (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Security.Cryptography.X509Certificates.X509Certificate2Collection::GetKeyIdentifier(System.Security.Cryptography.X509Certificates.X509Certificate2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Certificate2Collection_GetKeyIdentifier_mA7189361FD18F2665E09354BA391E96B189B44EA (X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* __this, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* ___0_x, const RuntimeMethod* method) ;
|
|
// System.Security.Cryptography.X509Certificates.X509KeyUsageFlags System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::get_KeyUsages()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509KeyUsageExtension_get_KeyUsages_m1BD6C5BC6E3E380982C135B2E81731435345144F (X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTime::op_GreaterThanOrEqual(System.DateTime,System.DateTime)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_t1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_t2, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTime::op_LessThanOrEqual(System.DateTime,System.DateTime)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_LessThanOrEqual_mC22EB236042D9E1C17C64393FB429E58B8F952F8 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_t1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_t2, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTime::op_LessThan(System.DateTime,System.DateTime)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_t1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_t2, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTime::op_GreaterThan(System.DateTime,System.DateTime)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_GreaterThan_m8F1FA3C039A0148FC1500E790A77CB44F025EA9F (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_t1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_t2, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Security.Cryptography.X509Certificates.X509Certificate2::Verify()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509Certificate2_Verify_m5BDB9791EDBA2F518184D4AFC2FD1B656F4C4591 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509Certificate2Collection::Add(System.Security.Cryptography.X509Certificates.X509Certificate2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509Certificate2Collection_Add_m6C2C142C7BF143E83388F8793A64890F44996ABB (X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* __this, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* ___0_certificate, const RuntimeMethod* method) ;
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator::.ctor(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2Enumerator__ctor_mBF306968F1D046A5084D7E70CE7A7A3E0412357B (X509Certificate2Enumerator_t22D702E84069BAFE855F2A160A391D77A05090EC* __this, X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* ___0_collection, const RuntimeMethod* method) ;
|
|
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___0_handle, const RuntimeMethod* method) ;
|
|
// System.Void System.ThrowHelper::ThrowInvalidTypeWithPointersNotSupported(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowInvalidTypeWithPointersNotSupported_m5707DE408588F6EAC3FC7D10F9520308CF8C8CCF (Type_t* ___0_targetType, const RuntimeMethod* method) ;
|
|
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56 (const RuntimeMethod* method) ;
|
|
// System.Void System.Array::Clear(System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB (RuntimeArray* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Text.RegularExpressions.RegexTree System.Text.RegularExpressions.RegexParser::Parse(System.String,System.Text.RegularExpressions.RegexOptions)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* RegexParser_Parse_mB845F2DC38DFD8C50E5B8D0D0F87330597409793 (String_t* ___0_re, int32_t ___1_op, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* V_0 = NULL;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_1 = NULL;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* G_B3_0 = NULL;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* G_B5_0 = NULL;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* G_B4_0 = NULL;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* G_B6_0 = NULL;
|
|
{
|
|
int32_t L_0 = ___1_op;
|
|
if (((int32_t)((int32_t)L_0&((int32_t)512))))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1;
|
|
L_1 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
|
|
G_B3_0 = L_1;
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2;
|
|
L_2 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
G_B3_0 = L_2;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* L_3 = (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40*)il2cpp_codegen_object_new(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
RegexParser__ctor_m99DC2B2C4B64E7298BBF49AD862BFD12007E38E4(L_3, G_B3_0, NULL);
|
|
V_0 = L_3;
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* L_4 = V_0;
|
|
int32_t L_5 = ___1_op;
|
|
NullCheck(L_4);
|
|
L_4->____options_16 = L_5;
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* L_6 = V_0;
|
|
String_t* L_7 = ___0_re;
|
|
NullCheck(L_6);
|
|
RegexParser_SetPattern_m852D668CE45FBCAA3A6ACC415B94BDD0A7190265(L_6, L_7, NULL);
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* L_8 = V_0;
|
|
NullCheck(L_8);
|
|
RegexParser_CountCaptures_m2ECDC9ED534F245A12224038BB86DE5D66DB56A3(L_8, NULL);
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* L_9 = V_0;
|
|
int32_t L_10 = ___1_op;
|
|
NullCheck(L_9);
|
|
RegexParser_Reset_m426A8C90F4D8065486802AE7AC9FB07FC599EB01(L_9, L_10, NULL);
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* L_11 = V_0;
|
|
NullCheck(L_11);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_12;
|
|
L_12 = RegexParser_ScanRegex_m3CD95B8EAE4F2E8ECF3461F199B04A021C77231D(L_11, NULL);
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* L_13 = V_0;
|
|
NullCheck(L_13);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_14 = L_13->____capnamelist_15;
|
|
G_B4_0 = L_12;
|
|
if (L_14)
|
|
{
|
|
G_B5_0 = L_12;
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)NULL;
|
|
G_B6_0 = G_B4_0;
|
|
goto IL_0054;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_16 = L_15->____capnamelist_15;
|
|
NullCheck(L_16);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_17;
|
|
L_17 = List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A(L_16, List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A_RuntimeMethod_var);
|
|
V_1 = L_17;
|
|
G_B6_0 = G_B5_0;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_19 = L_18->____caps_12;
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* L_20 = V_0;
|
|
NullCheck(L_20);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_21 = L_20->____capnumlist_14;
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* L_22 = V_0;
|
|
NullCheck(L_22);
|
|
int32_t L_23 = L_22->____captop_10;
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* L_24 = V_0;
|
|
NullCheck(L_24);
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_25 = L_24->____capnames_13;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_26 = V_1;
|
|
int32_t L_27 = ___1_op;
|
|
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_28 = (RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2*)il2cpp_codegen_object_new(RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2_il2cpp_TypeInfo_var);
|
|
NullCheck(L_28);
|
|
RegexTree__ctor_m89DA1335AAB55B0707774E978E6078CE42DB0DA6(L_28, G_B6_0, L_19, L_21, L_23, L_25, L_26, L_27, NULL);
|
|
return L_28;
|
|
}
|
|
}
|
|
// System.Text.RegularExpressions.RegexReplacement System.Text.RegularExpressions.RegexParser::ParseReplacement(System.String,System.Collections.Hashtable,System.Int32,System.Collections.Hashtable,System.Text.RegularExpressions.RegexOptions)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* RegexParser_ParseReplacement_m552460B4F6F5F7B1B0D2F4E01A3847BE8662AF13 (String_t* ___0_rep, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___1_caps, int32_t ___2_capsize, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___3_capnames, int32_t ___4_op, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* V_0 = NULL;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* G_B3_0 = NULL;
|
|
{
|
|
int32_t L_0 = ___4_op;
|
|
if (((int32_t)((int32_t)L_0&((int32_t)512))))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1;
|
|
L_1 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
|
|
G_B3_0 = L_1;
|
|
goto IL_0016;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2;
|
|
L_2 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
G_B3_0 = L_2;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* L_3 = (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40*)il2cpp_codegen_object_new(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
RegexParser__ctor_m99DC2B2C4B64E7298BBF49AD862BFD12007E38E4(L_3, G_B3_0, NULL);
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* L_4 = L_3;
|
|
int32_t L_5 = ___4_op;
|
|
NullCheck(L_4);
|
|
L_4->____options_16 = L_5;
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* L_6 = L_4;
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_7 = ___1_caps;
|
|
int32_t L_8 = ___2_capsize;
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_9 = ___3_capnames;
|
|
NullCheck(L_6);
|
|
RegexParser_NoteCaptures_mC02396D9D7C522A5B701A2C1C88E742C98EAAF17(L_6, L_7, L_8, L_9, NULL);
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* L_10 = L_6;
|
|
String_t* L_11 = ___0_rep;
|
|
NullCheck(L_10);
|
|
RegexParser_SetPattern_m852D668CE45FBCAA3A6ACC415B94BDD0A7190265(L_10, L_11, NULL);
|
|
NullCheck(L_10);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_12;
|
|
L_12 = RegexParser_ScanReplacement_mC27972ADC38D857F44851CE642162928ED4D12D6(L_10, NULL);
|
|
V_0 = L_12;
|
|
String_t* L_13 = ___0_rep;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_14 = V_0;
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_15 = ___1_caps;
|
|
RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* L_16 = (RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E*)il2cpp_codegen_object_new(RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E_il2cpp_TypeInfo_var);
|
|
NullCheck(L_16);
|
|
RegexReplacement__ctor_m9CE743F0908A59F98461440AE5B842BE1BC72EA5(L_16, L_13, L_14, L_15, NULL);
|
|
return L_16;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::.ctor(System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser__ctor_m99DC2B2C4B64E7298BBF49AD862BFD12007E38E4 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___0_culture, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1B9A9897D9A268FB07BE7E57438250769D2A457D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0 = ___0_culture;
|
|
__this->____culture_7 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____culture_7), (void*)L_0);
|
|
List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* L_1 = (List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39*)il2cpp_codegen_object_new(List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
List_1__ctor_m1B9A9897D9A268FB07BE7E57438250769D2A457D(L_1, List_1__ctor_m1B9A9897D9A268FB07BE7E57438250769D2A457D_RuntimeMethod_var);
|
|
__this->____optionsStack_17 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____optionsStack_17), (void*)L_1);
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_2 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_2, NULL);
|
|
__this->____caps_12 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____caps_12), (void*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::SetPattern(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_SetPattern_m852D668CE45FBCAA3A6ACC415B94BDD0A7190265 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, String_t* ___0_Re, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___0_Re;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
___0_Re = L_1;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
String_t* L_2 = ___0_Re;
|
|
__this->____pattern_5 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____pattern_5), (void*)L_2);
|
|
__this->____currentPos_6 = 0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::Reset(System.Text.RegularExpressions.RegexOptions)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_Reset_m426A8C90F4D8065486802AE7AC9FB07FC599EB01 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_topopts, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveRange_mCFBE1620BC04EABC10AD7AF811A524D2F0AEB993_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
__this->____currentPos_6 = 0;
|
|
__this->____autocap_8 = 1;
|
|
__this->____ignoreNextParen_18 = (bool)0;
|
|
List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* L_0 = __this->____optionsStack_17;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_inline(L_0, List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_RuntimeMethod_var);
|
|
if ((((int32_t)L_1) <= ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* L_2 = __this->____optionsStack_17;
|
|
List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* L_3 = __this->____optionsStack_17;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_inline(L_3, List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_RuntimeMethod_var);
|
|
NullCheck(L_2);
|
|
List_1_RemoveRange_mCFBE1620BC04EABC10AD7AF811A524D2F0AEB993(L_2, 0, ((int32_t)il2cpp_codegen_subtract(L_4, 1)), List_1_RemoveRange_mCFBE1620BC04EABC10AD7AF811A524D2F0AEB993_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
int32_t L_5 = ___0_topopts;
|
|
__this->____options_16 = L_5;
|
|
__this->____stack_0 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____stack_0), (void*)(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanRegex()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexParser_ScanRegex_m3CD95B8EAE4F2E8ECF3461F199B04A021C77231D (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E47B8E4D552470F6D8FD78693F09EA115DA32BE);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* V_6 = NULL;
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
bool V_9 = false;
|
|
int32_t G_B22_0 = 0;
|
|
int32_t G_B21_0 = 0;
|
|
int32_t G_B23_0 = 0;
|
|
int32_t G_B23_1 = 0;
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* G_B47_0 = NULL;
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* G_B46_0 = NULL;
|
|
int32_t G_B48_0 = 0;
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* G_B48_1 = NULL;
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* G_B51_0 = NULL;
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* G_B50_0 = NULL;
|
|
int32_t G_B52_0 = 0;
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* G_B52_1 = NULL;
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* G_B59_0 = NULL;
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* G_B58_0 = NULL;
|
|
String_t* G_B60_0 = NULL;
|
|
RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* G_B60_1 = NULL;
|
|
{
|
|
V_0 = ((int32_t)64);
|
|
V_1 = (bool)0;
|
|
int32_t L_0 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_1 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
RegexNode__ctor_m5ECC62B9C3918CD043542E5BEAAD39A06158E27A(L_1, ((int32_t)28), L_0, 0, (-1), NULL);
|
|
RegexParser_StartGroup_mBF861FCFB0FB9ED26744CAE2297537DAB6DF37C1(__this, L_1, NULL);
|
|
goto IL_0408;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
bool L_2 = V_1;
|
|
V_2 = L_2;
|
|
V_1 = (bool)0;
|
|
RegexParser_ScanBlank_m4C1B18EC7A5DF860363CA17E69B20A00023B5E82(__this, NULL);
|
|
int32_t L_3;
|
|
L_3 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
V_3 = L_3;
|
|
bool L_4;
|
|
L_4 = RegexParser_UseOptionX_m0BFB48EDC8A2F38A29A8F6CEC85080D9E04010FC(__this, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_006d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
int32_t L_5;
|
|
L_5 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_5) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_6;
|
|
L_6 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
Il2CppChar L_7 = L_6;
|
|
V_0 = L_7;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
bool L_8;
|
|
L_8 = RegexParser_IsStopperX_m173A82937CA9600F7CB12B9A101F39CCFDA630C9(L_7, NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_9 = V_0;
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
}
|
|
{
|
|
bool L_10;
|
|
L_10 = RegexParser_IsTrueQuantifier_m22CCE851B85E0760270178DF1184746040E68AEF(__this, NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
int32_t L_11;
|
|
L_11 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_11) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_12;
|
|
L_12 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
Il2CppChar L_13 = L_12;
|
|
V_0 = L_13;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
bool L_14;
|
|
L_14 = RegexParser_IsSpecial_mF59FE804CDD354250CB77C4113F39C627349D051(L_13, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_15 = V_0;
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
}
|
|
{
|
|
bool L_16;
|
|
L_16 = RegexParser_IsTrueQuantifier_m22CCE851B85E0760270178DF1184746040E68AEF(__this, NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
int32_t L_17;
|
|
L_17 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
V_4 = L_17;
|
|
RegexParser_ScanBlank_m4C1B18EC7A5DF860363CA17E69B20A00023B5E82(__this, NULL);
|
|
int32_t L_18;
|
|
L_18 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if (L_18)
|
|
{
|
|
goto IL_00ad;
|
|
}
|
|
}
|
|
{
|
|
V_0 = ((int32_t)33);
|
|
goto IL_00ce;
|
|
}
|
|
|
|
IL_00ad:
|
|
{
|
|
Il2CppChar L_19;
|
|
L_19 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
Il2CppChar L_20 = L_19;
|
|
V_0 = L_20;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
bool L_21;
|
|
L_21 = RegexParser_IsSpecial_mF59FE804CDD354250CB77C4113F39C627349D051(L_20, NULL);
|
|
if (!L_21)
|
|
{
|
|
goto IL_00cb;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_22 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
bool L_23;
|
|
L_23 = RegexParser_IsQuantifier_mBD18FA810A0404B632392725175846E6B30A8782(L_22, NULL);
|
|
V_1 = L_23;
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
goto IL_00ce;
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
V_0 = ((int32_t)32);
|
|
}
|
|
|
|
IL_00ce:
|
|
{
|
|
int32_t L_24 = V_3;
|
|
int32_t L_25 = V_4;
|
|
if ((((int32_t)L_24) >= ((int32_t)L_25)))
|
|
{
|
|
goto IL_0105;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_26 = V_4;
|
|
int32_t L_27 = V_3;
|
|
bool L_28 = V_1;
|
|
G_B21_0 = ((int32_t)il2cpp_codegen_subtract(L_26, L_27));
|
|
if (L_28)
|
|
{
|
|
G_B22_0 = ((int32_t)il2cpp_codegen_subtract(L_26, L_27));
|
|
goto IL_00dd;
|
|
}
|
|
}
|
|
{
|
|
G_B23_0 = 0;
|
|
G_B23_1 = G_B21_0;
|
|
goto IL_00de;
|
|
}
|
|
|
|
IL_00dd:
|
|
{
|
|
G_B23_0 = 1;
|
|
G_B23_1 = G_B22_0;
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(G_B23_1, G_B23_0));
|
|
V_2 = (bool)0;
|
|
int32_t L_29 = V_5;
|
|
if ((((int32_t)L_29) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00f2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_30 = V_3;
|
|
int32_t L_31 = V_5;
|
|
RegexParser_AddConcatenate_mDDD0350FE254D75D6707668332D0F3088A5572AF(__this, L_30, L_31, (bool)0, NULL);
|
|
}
|
|
|
|
IL_00f2:
|
|
{
|
|
bool L_32 = V_1;
|
|
if (!L_32)
|
|
{
|
|
goto IL_0105;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_33 = V_4;
|
|
Il2CppChar L_34;
|
|
L_34 = RegexParser_CharAt_mF46179762DDF46FB78E32CCA3058950244CFCB70(__this, ((int32_t)il2cpp_codegen_subtract(L_33, 1)), NULL);
|
|
RegexParser_AddUnitOne_m991DCA85D3432B8F7F74D18125A69FFE25108F47(__this, L_34, NULL);
|
|
}
|
|
|
|
IL_0105:
|
|
{
|
|
Il2CppChar L_35 = V_0;
|
|
if ((!(((uint32_t)L_35) <= ((uint32_t)((int32_t)63)))))
|
|
{
|
|
goto IL_015c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_36 = V_0;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_36, ((int32_t)32))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0408;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0414;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_02a3;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_02a3;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_023c;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_02a3;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_02a3;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_02a3;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_01a4;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_01de;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_0271;
|
|
}
|
|
case 11:
|
|
{
|
|
goto IL_0271;
|
|
}
|
|
case 12:
|
|
{
|
|
goto IL_02a3;
|
|
}
|
|
case 13:
|
|
{
|
|
goto IL_02a3;
|
|
}
|
|
case 14:
|
|
{
|
|
goto IL_0252;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_37 = V_0;
|
|
if ((((int32_t)L_37) == ((int32_t)((int32_t)63))))
|
|
{
|
|
goto IL_0271;
|
|
}
|
|
}
|
|
{
|
|
goto IL_02a3;
|
|
}
|
|
|
|
IL_015c:
|
|
{
|
|
Il2CppChar L_38 = V_0;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_38, ((int32_t)91))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0187;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0214;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_02a3;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0226;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_39 = V_0;
|
|
if ((((int32_t)L_39) == ((int32_t)((int32_t)123))))
|
|
{
|
|
goto IL_0271;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_40 = V_0;
|
|
if ((((int32_t)L_40) == ((int32_t)((int32_t)124))))
|
|
{
|
|
goto IL_01d3;
|
|
}
|
|
}
|
|
{
|
|
goto IL_02a3;
|
|
}
|
|
|
|
IL_0187:
|
|
{
|
|
bool L_41;
|
|
L_41 = RegexParser_UseOptionI_mB3FB0740ED596E6ABC827E903DCE8AA4258BA701(__this, NULL);
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_42;
|
|
L_42 = RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D(__this, L_41, (bool)0, NULL);
|
|
NullCheck(L_42);
|
|
String_t* L_43;
|
|
L_43 = RegexCharClass_ToStringClass_m6B0B92A0A525001CD78A6C2A766295268E0FED57(L_42, NULL);
|
|
RegexParser_AddUnitSet_mA262F57A7FAB27996D8115F66BC84A5C58317D7F(__this, L_43, NULL);
|
|
goto IL_02af;
|
|
}
|
|
|
|
IL_01a4:
|
|
{
|
|
RegexParser_PushOptions_m6E501EE3C5D6FE990ED74935A9AC9A6E834FD968(__this, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_44;
|
|
L_44 = RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7(__this, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_45 = L_44;
|
|
V_6 = L_45;
|
|
if (L_45)
|
|
{
|
|
goto IL_01c0;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_PopKeepOptions_m911F83DFA290ED90B06D3D3166553E6205C256C1(__this, NULL);
|
|
goto IL_0408;
|
|
}
|
|
|
|
IL_01c0:
|
|
{
|
|
RegexParser_PushGroup_m2D76CB852430A3B3F7454DDC3322B2A5E4CE398F(__this, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_46 = V_6;
|
|
RegexParser_StartGroup_mBF861FCFB0FB9ED26744CAE2297537DAB6DF37C1(__this, L_46, NULL);
|
|
goto IL_0408;
|
|
}
|
|
|
|
IL_01d3:
|
|
{
|
|
RegexParser_AddAlternate_m77BCF63DD4E1AB89B70F72821CAE4B67936CD847(__this, NULL);
|
|
goto IL_0408;
|
|
}
|
|
|
|
IL_01de:
|
|
{
|
|
bool L_47;
|
|
L_47 = RegexParser_EmptyStack_m756AC5BB66D0F2077EC7DD655A3D57681200F5CA(__this, NULL);
|
|
if (!L_47)
|
|
{
|
|
goto IL_01f2;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_48;
|
|
L_48 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB70DFAAAD0ABCCD469EB8575DD6833C88CC374B5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanRegex_m3CD95B8EAE4F2E8ECF3461F199B04A021C77231D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_01f2:
|
|
{
|
|
RegexParser_AddGroup_m8989D6A9CD4B700522D722DEF5FEFC267C4DBFB7(__this, NULL);
|
|
RegexParser_PopGroup_mEC525DC83E5BF2F8DA03129AE3DF06834EB76552(__this, NULL);
|
|
RegexParser_PopOptions_mAE4848419A71162B8E563781AC817A8D6ACEB91B(__this, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_49;
|
|
L_49 = RegexParser_Unit_m6C984A797C4A92AB0A9985E5A8207DB9CA9AE87F_inline(__this, NULL);
|
|
if (L_49)
|
|
{
|
|
goto IL_02af;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0408;
|
|
}
|
|
|
|
IL_0214:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_50;
|
|
L_50 = RegexParser_ScanBackslash_mAAE11106CB78789803468679894E1D7AE6B0C92E(__this, (bool)0, NULL);
|
|
RegexParser_AddUnitNode_mE8DC7CD039C933AE881097E041BA620AA325FDE8_inline(__this, L_50, NULL);
|
|
goto IL_02af;
|
|
}
|
|
|
|
IL_0226:
|
|
{
|
|
bool L_51;
|
|
L_51 = RegexParser_UseOptionM_mAE3FC2655A6E80EA35D5CEBEE1D82B5B07529118(__this, NULL);
|
|
G_B46_0 = __this;
|
|
if (L_51)
|
|
{
|
|
G_B47_0 = __this;
|
|
goto IL_0233;
|
|
}
|
|
}
|
|
{
|
|
G_B48_0 = ((int32_t)18);
|
|
G_B48_1 = G_B46_0;
|
|
goto IL_0235;
|
|
}
|
|
|
|
IL_0233:
|
|
{
|
|
G_B48_0 = ((int32_t)14);
|
|
G_B48_1 = G_B47_0;
|
|
}
|
|
|
|
IL_0235:
|
|
{
|
|
NullCheck(G_B48_1);
|
|
RegexParser_AddUnitType_mEBDFA2325ABDA3FDA74184DBFB706824F6540553(G_B48_1, G_B48_0, NULL);
|
|
goto IL_02af;
|
|
}
|
|
|
|
IL_023c:
|
|
{
|
|
bool L_52;
|
|
L_52 = RegexParser_UseOptionM_mAE3FC2655A6E80EA35D5CEBEE1D82B5B07529118(__this, NULL);
|
|
G_B50_0 = __this;
|
|
if (L_52)
|
|
{
|
|
G_B51_0 = __this;
|
|
goto IL_0249;
|
|
}
|
|
}
|
|
{
|
|
G_B52_0 = ((int32_t)20);
|
|
G_B52_1 = G_B50_0;
|
|
goto IL_024b;
|
|
}
|
|
|
|
IL_0249:
|
|
{
|
|
G_B52_0 = ((int32_t)15);
|
|
G_B52_1 = G_B51_0;
|
|
}
|
|
|
|
IL_024b:
|
|
{
|
|
NullCheck(G_B52_1);
|
|
RegexParser_AddUnitType_mEBDFA2325ABDA3FDA74184DBFB706824F6540553(G_B52_1, G_B52_0, NULL);
|
|
goto IL_02af;
|
|
}
|
|
|
|
IL_0252:
|
|
{
|
|
bool L_53;
|
|
L_53 = RegexParser_UseOptionS_m070AD4458172FB14FF21E4502DCA6ECEE8938994(__this, NULL);
|
|
if (!L_53)
|
|
{
|
|
goto IL_0267;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_AddUnitSet_mA262F57A7FAB27996D8115F66BC84A5C58317D7F(__this, _stringLiteral7E47B8E4D552470F6D8FD78693F09EA115DA32BE, NULL);
|
|
goto IL_02af;
|
|
}
|
|
|
|
IL_0267:
|
|
{
|
|
RegexParser_AddUnitNotone_m4F79DE175B95FDB88323D7FE9DC3132E24F8F0C0(__this, ((int32_t)10), NULL);
|
|
goto IL_02af;
|
|
}
|
|
|
|
IL_0271:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_54;
|
|
L_54 = RegexParser_Unit_m6C984A797C4A92AB0A9985E5A8207DB9CA9AE87F_inline(__this, NULL);
|
|
if (L_54)
|
|
{
|
|
goto IL_029b;
|
|
}
|
|
}
|
|
{
|
|
bool L_55 = V_2;
|
|
G_B58_0 = __this;
|
|
if (L_55)
|
|
{
|
|
G_B59_0 = __this;
|
|
goto IL_0284;
|
|
}
|
|
}
|
|
{
|
|
G_B60_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE63688B993F3304E9013687D7CD5065D0AE3D400));
|
|
G_B60_1 = G_B58_0;
|
|
goto IL_0295;
|
|
}
|
|
|
|
IL_0284:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)));
|
|
String_t* L_56;
|
|
L_56 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C((&V_0), NULL);
|
|
String_t* L_57;
|
|
L_57 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral17B277DD41310C7E909CF67339B1A07AB6FEC59A)), L_56, NULL);
|
|
G_B60_0 = L_57;
|
|
G_B60_1 = G_B59_0;
|
|
}
|
|
|
|
IL_0295:
|
|
{
|
|
NullCheck(G_B60_1);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_58;
|
|
L_58 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(G_B60_1, G_B60_0, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_58, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanRegex_m3CD95B8EAE4F2E8ECF3461F199B04A021C77231D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_029b:
|
|
{
|
|
RegexParser_MoveLeft_m57BB7A0146D0E8834D715667048B75A517761AD5(__this, NULL);
|
|
goto IL_02af;
|
|
}
|
|
|
|
IL_02a3:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_59;
|
|
L_59 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral29A5AED1D4EB99A01F98E33F896B7B911D6BBD64)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_59, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanRegex_m3CD95B8EAE4F2E8ECF3461F199B04A021C77231D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_02af:
|
|
{
|
|
RegexParser_ScanBlank_m4C1B18EC7A5DF860363CA17E69B20A00023B5E82(__this, NULL);
|
|
int32_t L_60;
|
|
L_60 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if (!L_60)
|
|
{
|
|
goto IL_02c7;
|
|
}
|
|
}
|
|
{
|
|
bool L_61;
|
|
L_61 = RegexParser_IsTrueQuantifier_m22CCE851B85E0760270178DF1184746040E68AEF(__this, NULL);
|
|
bool L_62 = L_61;
|
|
V_1 = L_62;
|
|
if (L_62)
|
|
{
|
|
goto IL_02d2;
|
|
}
|
|
}
|
|
|
|
IL_02c7:
|
|
{
|
|
RegexParser_AddConcatenate_m77A3D9F6B1484C7B656BDF3CC5659248F9DEA1EA(__this, NULL);
|
|
goto IL_0408;
|
|
}
|
|
|
|
IL_02d2:
|
|
{
|
|
Il2CppChar L_63;
|
|
L_63 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
V_0 = L_63;
|
|
goto IL_03fd;
|
|
}
|
|
|
|
IL_02de:
|
|
{
|
|
Il2CppChar L_64 = V_0;
|
|
if ((!(((uint32_t)L_64) <= ((uint32_t)((int32_t)43)))))
|
|
{
|
|
goto IL_02f2;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_65 = V_0;
|
|
if ((((int32_t)L_65) == ((int32_t)((int32_t)42))))
|
|
{
|
|
goto IL_0301;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_66 = V_0;
|
|
if ((((int32_t)L_66) == ((int32_t)((int32_t)43))))
|
|
{
|
|
goto IL_031b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
|
|
IL_02f2:
|
|
{
|
|
Il2CppChar L_67 = V_0;
|
|
if ((((int32_t)L_67) == ((int32_t)((int32_t)63))))
|
|
{
|
|
goto IL_0310;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_68 = V_0;
|
|
if ((((int32_t)L_68) == ((int32_t)((int32_t)123))))
|
|
{
|
|
goto IL_032a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_03ad;
|
|
}
|
|
|
|
IL_0301:
|
|
{
|
|
V_7 = 0;
|
|
V_8 = ((int32_t)2147483647LL);
|
|
goto IL_03b9;
|
|
}
|
|
|
|
IL_0310:
|
|
{
|
|
V_7 = 0;
|
|
V_8 = 1;
|
|
goto IL_03b9;
|
|
}
|
|
|
|
IL_031b:
|
|
{
|
|
V_7 = 1;
|
|
V_8 = ((int32_t)2147483647LL);
|
|
goto IL_03b9;
|
|
}
|
|
|
|
IL_032a:
|
|
{
|
|
int32_t L_69;
|
|
L_69 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
V_3 = L_69;
|
|
int32_t L_70;
|
|
L_70 = RegexParser_ScanDecimal_m1BFFE19E0698D0EC97D81C655F3D04B608897161(__this, NULL);
|
|
int32_t L_71 = L_70;
|
|
V_7 = L_71;
|
|
V_8 = L_71;
|
|
int32_t L_72 = V_3;
|
|
int32_t L_73;
|
|
L_73 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
if ((((int32_t)L_72) >= ((int32_t)L_73)))
|
|
{
|
|
goto IL_0381;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_74;
|
|
L_74 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_74) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0381;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_75;
|
|
L_75 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_75) == ((uint32_t)((int32_t)44)))))
|
|
{
|
|
goto IL_0381;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
int32_t L_76;
|
|
L_76 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if (!L_76)
|
|
{
|
|
goto IL_0370;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_77;
|
|
L_77 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_77) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_0379;
|
|
}
|
|
}
|
|
|
|
IL_0370:
|
|
{
|
|
V_8 = ((int32_t)2147483647LL);
|
|
goto IL_0381;
|
|
}
|
|
|
|
IL_0379:
|
|
{
|
|
int32_t L_78;
|
|
L_78 = RegexParser_ScanDecimal_m1BFFE19E0698D0EC97D81C655F3D04B608897161(__this, NULL);
|
|
V_8 = L_78;
|
|
}
|
|
|
|
IL_0381:
|
|
{
|
|
int32_t L_79 = V_3;
|
|
int32_t L_80;
|
|
L_80 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
if ((((int32_t)L_79) == ((int32_t)L_80)))
|
|
{
|
|
goto IL_039c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_81;
|
|
L_81 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if (!L_81)
|
|
{
|
|
goto IL_039c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_82;
|
|
L_82 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
if ((((int32_t)L_82) == ((int32_t)((int32_t)125))))
|
|
{
|
|
goto IL_03b9;
|
|
}
|
|
}
|
|
|
|
IL_039c:
|
|
{
|
|
RegexParser_AddConcatenate_m77A3D9F6B1484C7B656BDF3CC5659248F9DEA1EA(__this, NULL);
|
|
int32_t L_83 = V_3;
|
|
RegexParser_Textto_mA45B325CA6CCBC0012F1CBB0282AE114B34AEBE2_inline(__this, ((int32_t)il2cpp_codegen_subtract(L_83, 1)), NULL);
|
|
goto IL_0408;
|
|
}
|
|
|
|
IL_03ad:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_84;
|
|
L_84 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral29A5AED1D4EB99A01F98E33F896B7B911D6BBD64)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_84, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanRegex_m3CD95B8EAE4F2E8ECF3461F199B04A021C77231D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_03b9:
|
|
{
|
|
RegexParser_ScanBlank_m4C1B18EC7A5DF860363CA17E69B20A00023B5E82(__this, NULL);
|
|
int32_t L_85;
|
|
L_85 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if (!L_85)
|
|
{
|
|
goto IL_03d1;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_86;
|
|
L_86 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((((int32_t)L_86) == ((int32_t)((int32_t)63))))
|
|
{
|
|
goto IL_03d6;
|
|
}
|
|
}
|
|
|
|
IL_03d1:
|
|
{
|
|
V_9 = (bool)0;
|
|
goto IL_03df;
|
|
}
|
|
|
|
IL_03d6:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
V_9 = (bool)1;
|
|
}
|
|
|
|
IL_03df:
|
|
{
|
|
int32_t L_87 = V_7;
|
|
int32_t L_88 = V_8;
|
|
if ((((int32_t)L_87) <= ((int32_t)L_88)))
|
|
{
|
|
goto IL_03f1;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_89;
|
|
L_89 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2E203410EDD156CA82D74FCDDE8C2C9EB635FE18)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_89, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanRegex_m3CD95B8EAE4F2E8ECF3461F199B04A021C77231D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_03f1:
|
|
{
|
|
bool L_90 = V_9;
|
|
int32_t L_91 = V_7;
|
|
int32_t L_92 = V_8;
|
|
RegexParser_AddConcatenate_m3B10D68AE09CC6A2F06AC65E49B918D11D5375FF(__this, L_90, L_91, L_92, NULL);
|
|
}
|
|
|
|
IL_03fd:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_93;
|
|
L_93 = RegexParser_Unit_m6C984A797C4A92AB0A9985E5A8207DB9CA9AE87F_inline(__this, NULL);
|
|
if (L_93)
|
|
{
|
|
goto IL_02de;
|
|
}
|
|
}
|
|
|
|
IL_0408:
|
|
{
|
|
int32_t L_94;
|
|
L_94 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_94) > ((int32_t)0)))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
|
|
IL_0414:
|
|
{
|
|
bool L_95;
|
|
L_95 = RegexParser_EmptyStack_m756AC5BB66D0F2077EC7DD655A3D57681200F5CA(__this, NULL);
|
|
if (L_95)
|
|
{
|
|
goto IL_0428;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_96;
|
|
L_96 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07B71A0735C0A5FDC2E73979B95958D40F06AE42)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_96, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanRegex_m3CD95B8EAE4F2E8ECF3461F199B04A021C77231D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0428:
|
|
{
|
|
RegexParser_AddGroup_m8989D6A9CD4B700522D722DEF5FEFC267C4DBFB7(__this, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_97;
|
|
L_97 = RegexParser_Unit_m6C984A797C4A92AB0A9985E5A8207DB9CA9AE87F_inline(__this, NULL);
|
|
return L_97;
|
|
}
|
|
}
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanReplacement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexParser_ScanReplacement_mC27972ADC38D857F44851CE642162928ED4D12D6 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_1 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
RegexNode__ctor_mAE4AC160F21E5DF26B99B74753BCFB9EF0951B2B(L_1, ((int32_t)25), L_0, NULL);
|
|
__this->____concatenation_3 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____concatenation_3), (void*)L_1);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_2;
|
|
L_2 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
V_0 = L_2;
|
|
int32_t L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
V_1 = L_4;
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
int32_t L_5 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_5, 1));
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
int32_t L_6 = V_0;
|
|
if ((((int32_t)L_6) <= ((int32_t)0)))
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_7;
|
|
L_7 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)36)))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
int32_t L_8 = V_1;
|
|
int32_t L_9;
|
|
L_9 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
int32_t L_10 = V_1;
|
|
RegexParser_AddConcatenate_mDDD0350FE254D75D6707668332D0F3088A5572AF(__this, L_8, ((int32_t)il2cpp_codegen_subtract(L_9, L_10)), (bool)1, NULL);
|
|
int32_t L_11 = V_0;
|
|
if ((((int32_t)L_11) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_12;
|
|
L_12 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)36)))))
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_13;
|
|
L_13 = RegexParser_ScanDollar_mB8FD395274F630278543211B2BB583AA5B03D96A(__this, NULL);
|
|
RegexParser_AddUnitNode_mE8DC7CD039C933AE881097E041BA620AA325FDE8_inline(__this, L_13, NULL);
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
RegexParser_AddConcatenate_m77A3D9F6B1484C7B656BDF3CC5659248F9DEA1EA(__this, NULL);
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_14 = __this->____concatenation_3;
|
|
return L_14;
|
|
}
|
|
}
|
|
// System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexParser::ScanCharClass(System.Boolean,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, bool ___0_caseInsensitive, bool ___1_scanOnly, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
Il2CppChar V_1 = 0x0;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* V_5 = NULL;
|
|
bool V_6 = false;
|
|
Il2CppChar V_7 = 0x0;
|
|
int32_t V_8 = 0;
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* G_B3_0 = NULL;
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
V_2 = (bool)0;
|
|
V_3 = (bool)1;
|
|
V_4 = (bool)0;
|
|
bool L_0 = ___1_scanOnly;
|
|
if (L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_1 = (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C*)il2cpp_codegen_object_new(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
RegexCharClass__ctor_m165680E6EA10035E0630220C967BD772F5D6F52E(L_1, NULL);
|
|
G_B3_0 = L_1;
|
|
goto IL_0016;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
G_B3_0 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C*)(NULL));
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
V_5 = G_B3_0;
|
|
int32_t L_2;
|
|
L_2 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0373;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_3;
|
|
L_3 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)94)))))
|
|
{
|
|
goto IL_0373;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
bool L_4 = ___1_scanOnly;
|
|
if (L_4)
|
|
{
|
|
goto IL_0373;
|
|
}
|
|
}
|
|
{
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_5 = V_5;
|
|
NullCheck(L_5);
|
|
RegexCharClass_set_Negate_m8EA71CB8F671E99EF0B388CB520F44B8B6653A6B_inline(L_5, (bool)1, NULL);
|
|
goto IL_0373;
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
V_6 = (bool)0;
|
|
Il2CppChar L_6;
|
|
L_6 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
V_0 = L_6;
|
|
Il2CppChar L_7 = V_0;
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)93)))))
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
bool L_8 = V_3;
|
|
if (L_8)
|
|
{
|
|
goto IL_0261;
|
|
}
|
|
}
|
|
{
|
|
V_4 = (bool)1;
|
|
goto IL_037f;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
Il2CppChar L_9 = V_0;
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)92)))))
|
|
{
|
|
goto IL_020c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_10;
|
|
L_10 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_10) <= ((int32_t)0)))
|
|
{
|
|
goto IL_020c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_11;
|
|
L_11 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
Il2CppChar L_12 = L_11;
|
|
V_0 = L_12;
|
|
V_7 = L_12;
|
|
Il2CppChar L_13 = V_7;
|
|
if ((!(((uint32_t)L_13) <= ((uint32_t)((int32_t)83)))))
|
|
{
|
|
goto IL_00b9;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_14 = V_7;
|
|
if ((!(((uint32_t)L_14) <= ((uint32_t)((int32_t)68)))))
|
|
{
|
|
goto IL_00a5;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_15 = V_7;
|
|
if ((((int32_t)L_15) == ((int32_t)((int32_t)45))))
|
|
{
|
|
goto IL_01e6;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_16 = V_7;
|
|
if ((((int32_t)L_16) == ((int32_t)((int32_t)68))))
|
|
{
|
|
goto IL_00ed;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01fa;
|
|
}
|
|
|
|
IL_00a5:
|
|
{
|
|
Il2CppChar L_17 = V_7;
|
|
if ((((int32_t)L_17) == ((int32_t)((int32_t)80))))
|
|
{
|
|
goto IL_019b;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_18 = V_7;
|
|
if ((((int32_t)L_18) == ((int32_t)((int32_t)83))))
|
|
{
|
|
goto IL_012b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01fa;
|
|
}
|
|
|
|
IL_00b9:
|
|
{
|
|
Il2CppChar L_19 = V_7;
|
|
if ((!(((uint32_t)L_19) <= ((uint32_t)((int32_t)100)))))
|
|
{
|
|
goto IL_00d3;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_20 = V_7;
|
|
if ((((int32_t)L_20) == ((int32_t)((int32_t)87))))
|
|
{
|
|
goto IL_0163;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_21 = V_7;
|
|
if ((((int32_t)L_21) == ((int32_t)((int32_t)100))))
|
|
{
|
|
goto IL_00ed;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01fa;
|
|
}
|
|
|
|
IL_00d3:
|
|
{
|
|
Il2CppChar L_22 = V_7;
|
|
if ((((int32_t)L_22) == ((int32_t)((int32_t)112))))
|
|
{
|
|
goto IL_019b;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_23 = V_7;
|
|
if ((((int32_t)L_23) == ((int32_t)((int32_t)115))))
|
|
{
|
|
goto IL_012b;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_24 = V_7;
|
|
if ((((int32_t)L_24) == ((int32_t)((int32_t)119))))
|
|
{
|
|
goto IL_0163;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01fa;
|
|
}
|
|
|
|
IL_00ed:
|
|
{
|
|
bool L_25 = ___1_scanOnly;
|
|
if (L_25)
|
|
{
|
|
goto IL_0371;
|
|
}
|
|
}
|
|
{
|
|
bool L_26 = V_2;
|
|
if (!L_26)
|
|
{
|
|
goto IL_010e;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)));
|
|
String_t* L_27;
|
|
L_27 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C((&V_0), NULL);
|
|
String_t* L_28;
|
|
L_28 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBC12DB6076DF77D5CCDF7B01D4534A2545723633)), L_27, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_29;
|
|
L_29 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, L_28, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_010e:
|
|
{
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_30 = V_5;
|
|
bool L_31;
|
|
L_31 = RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9(__this, NULL);
|
|
Il2CppChar L_32 = V_0;
|
|
String_t* L_33 = __this->____pattern_5;
|
|
NullCheck(L_30);
|
|
RegexCharClass_AddDigit_m04C1001F7E8DA85CB2D262ED403BA9BD215A7A8E(L_30, L_31, (bool)((((int32_t)L_32) == ((int32_t)((int32_t)68)))? 1 : 0), L_33, NULL);
|
|
goto IL_0371;
|
|
}
|
|
|
|
IL_012b:
|
|
{
|
|
bool L_34 = ___1_scanOnly;
|
|
if (L_34)
|
|
{
|
|
goto IL_0371;
|
|
}
|
|
}
|
|
{
|
|
bool L_35 = V_2;
|
|
if (!L_35)
|
|
{
|
|
goto IL_014c;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)));
|
|
String_t* L_36;
|
|
L_36 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C((&V_0), NULL);
|
|
String_t* L_37;
|
|
L_37 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBC12DB6076DF77D5CCDF7B01D4534A2545723633)), L_36, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_38;
|
|
L_38 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, L_37, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_38, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_014c:
|
|
{
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_39 = V_5;
|
|
bool L_40;
|
|
L_40 = RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9(__this, NULL);
|
|
Il2CppChar L_41 = V_0;
|
|
NullCheck(L_39);
|
|
RegexCharClass_AddSpace_mD1BF3AD215D69EC6CF0E49A359F7FC709FD6FBB6(L_39, L_40, (bool)((((int32_t)L_41) == ((int32_t)((int32_t)83)))? 1 : 0), NULL);
|
|
goto IL_0371;
|
|
}
|
|
|
|
IL_0163:
|
|
{
|
|
bool L_42 = ___1_scanOnly;
|
|
if (L_42)
|
|
{
|
|
goto IL_0371;
|
|
}
|
|
}
|
|
{
|
|
bool L_43 = V_2;
|
|
if (!L_43)
|
|
{
|
|
goto IL_0184;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)));
|
|
String_t* L_44;
|
|
L_44 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C((&V_0), NULL);
|
|
String_t* L_45;
|
|
L_45 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBC12DB6076DF77D5CCDF7B01D4534A2545723633)), L_44, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_46;
|
|
L_46 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, L_45, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_46, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0184:
|
|
{
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_47 = V_5;
|
|
bool L_48;
|
|
L_48 = RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9(__this, NULL);
|
|
Il2CppChar L_49 = V_0;
|
|
NullCheck(L_47);
|
|
RegexCharClass_AddWord_mAED995BB6613893E0950C5895515204F1E95D152(L_47, L_48, (bool)((((int32_t)L_49) == ((int32_t)((int32_t)87)))? 1 : 0), NULL);
|
|
goto IL_0371;
|
|
}
|
|
|
|
IL_019b:
|
|
{
|
|
bool L_50 = ___1_scanOnly;
|
|
if (L_50)
|
|
{
|
|
goto IL_01da;
|
|
}
|
|
}
|
|
{
|
|
bool L_51 = V_2;
|
|
if (!L_51)
|
|
{
|
|
goto IL_01b9;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)));
|
|
String_t* L_52;
|
|
L_52 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C((&V_0), NULL);
|
|
String_t* L_53;
|
|
L_53 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBC12DB6076DF77D5CCDF7B01D4534A2545723633)), L_52, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_54;
|
|
L_54 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, L_53, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_54, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_01b9:
|
|
{
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_55 = V_5;
|
|
String_t* L_56;
|
|
L_56 = RegexParser_ParseProperty_m3B765A1B30A38A723CAFE63AF9D6F3D08C7C6F38(__this, NULL);
|
|
Il2CppChar L_57 = V_0;
|
|
bool L_58 = ___0_caseInsensitive;
|
|
String_t* L_59 = __this->____pattern_5;
|
|
NullCheck(L_55);
|
|
RegexCharClass_AddCategoryFromName_m032AED661665AE30D7F3F712914E2937F6E4FF97(L_55, L_56, (bool)((((int32_t)((((int32_t)L_57) == ((int32_t)((int32_t)112)))? 1 : 0)) == ((int32_t)0))? 1 : 0), L_58, L_59, NULL);
|
|
goto IL_0371;
|
|
}
|
|
|
|
IL_01da:
|
|
{
|
|
String_t* L_60;
|
|
L_60 = RegexParser_ParseProperty_m3B765A1B30A38A723CAFE63AF9D6F3D08C7C6F38(__this, NULL);
|
|
goto IL_0371;
|
|
}
|
|
|
|
IL_01e6:
|
|
{
|
|
bool L_61 = ___1_scanOnly;
|
|
if (L_61)
|
|
{
|
|
goto IL_0371;
|
|
}
|
|
}
|
|
{
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_62 = V_5;
|
|
Il2CppChar L_63 = V_0;
|
|
Il2CppChar L_64 = V_0;
|
|
NullCheck(L_62);
|
|
RegexCharClass_AddRange_mB1188A62712FE4ABB7F5DB28645351E375B5C6A7(L_62, L_63, L_64, NULL);
|
|
goto IL_0371;
|
|
}
|
|
|
|
IL_01fa:
|
|
{
|
|
RegexParser_MoveLeft_m57BB7A0146D0E8834D715667048B75A517761AD5(__this, NULL);
|
|
Il2CppChar L_65;
|
|
L_65 = RegexParser_ScanCharEscape_mA872DDDD24E165F5B5C5F62DCFAE3B02CCF97C98(__this, NULL);
|
|
V_0 = L_65;
|
|
V_6 = (bool)1;
|
|
goto IL_0261;
|
|
}
|
|
|
|
IL_020c:
|
|
{
|
|
Il2CppChar L_66 = V_0;
|
|
if ((!(((uint32_t)L_66) == ((uint32_t)((int32_t)91)))))
|
|
{
|
|
goto IL_0261;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_67;
|
|
L_67 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_67) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0261;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_68;
|
|
L_68 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_68) == ((uint32_t)((int32_t)58)))))
|
|
{
|
|
goto IL_0261;
|
|
}
|
|
}
|
|
{
|
|
bool L_69 = V_2;
|
|
if (L_69)
|
|
{
|
|
goto IL_0261;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_70;
|
|
L_70 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
V_8 = L_70;
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
String_t* L_71;
|
|
L_71 = RegexParser_ScanCapname_mC9524DCBE266D677078207375663506AC32BE3F7(__this, NULL);
|
|
int32_t L_72;
|
|
L_72 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_72) < ((int32_t)2)))
|
|
{
|
|
goto IL_0259;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_73;
|
|
L_73 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
if ((!(((uint32_t)L_73) == ((uint32_t)((int32_t)58)))))
|
|
{
|
|
goto IL_0259;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_74;
|
|
L_74 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
if ((((int32_t)L_74) == ((int32_t)((int32_t)93))))
|
|
{
|
|
goto IL_0261;
|
|
}
|
|
}
|
|
|
|
IL_0259:
|
|
{
|
|
int32_t L_75 = V_8;
|
|
RegexParser_Textto_mA45B325CA6CCBC0012F1CBB0282AE114B34AEBE2_inline(__this, L_75, NULL);
|
|
}
|
|
|
|
IL_0261:
|
|
{
|
|
bool L_76 = V_2;
|
|
if (!L_76)
|
|
{
|
|
goto IL_02d2;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)0;
|
|
bool L_77 = ___1_scanOnly;
|
|
if (L_77)
|
|
{
|
|
goto IL_0371;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_78 = V_0;
|
|
if ((!(((uint32_t)L_78) == ((uint32_t)((int32_t)91)))))
|
|
{
|
|
goto IL_02b4;
|
|
}
|
|
}
|
|
{
|
|
bool L_79 = V_6;
|
|
if (L_79)
|
|
{
|
|
goto IL_02b4;
|
|
}
|
|
}
|
|
{
|
|
bool L_80 = V_3;
|
|
if (L_80)
|
|
{
|
|
goto IL_02b4;
|
|
}
|
|
}
|
|
{
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_81 = V_5;
|
|
Il2CppChar L_82 = V_1;
|
|
NullCheck(L_81);
|
|
RegexCharClass_AddChar_mED269B31D5C606032B3394A9B9305ED172D16746(L_81, L_82, NULL);
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_83 = V_5;
|
|
bool L_84 = ___0_caseInsensitive;
|
|
bool L_85 = ___1_scanOnly;
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_86;
|
|
L_86 = RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D(__this, L_84, L_85, NULL);
|
|
NullCheck(L_83);
|
|
RegexCharClass_AddSubtraction_m4EF34AFB93C001C6A4521E1F1C5F4B54833E8A12_inline(L_83, L_86, NULL);
|
|
int32_t L_87;
|
|
L_87 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_87) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0371;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_88;
|
|
L_88 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((((int32_t)L_88) == ((int32_t)((int32_t)93))))
|
|
{
|
|
goto IL_0371;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_89;
|
|
L_89 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral73310BF59DB8CA3EB79CF1E70A2DA4C61E0E5228)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_89, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_02b4:
|
|
{
|
|
Il2CppChar L_90 = V_1;
|
|
Il2CppChar L_91 = V_0;
|
|
if ((((int32_t)L_90) <= ((int32_t)L_91)))
|
|
{
|
|
goto IL_02c4;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_92;
|
|
L_92 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8965AF17E4B7413549B839F616B223F608E66E85)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_92, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_02c4:
|
|
{
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_93 = V_5;
|
|
Il2CppChar L_94 = V_1;
|
|
Il2CppChar L_95 = V_0;
|
|
NullCheck(L_93);
|
|
RegexCharClass_AddRange_mB1188A62712FE4ABB7F5DB28645351E375B5C6A7(L_93, L_94, L_95, NULL);
|
|
goto IL_0371;
|
|
}
|
|
|
|
IL_02d2:
|
|
{
|
|
int32_t L_96;
|
|
L_96 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_96) < ((int32_t)2)))
|
|
{
|
|
goto IL_02fc;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_97;
|
|
L_97 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_97) == ((uint32_t)((int32_t)45)))))
|
|
{
|
|
goto IL_02fc;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_98;
|
|
L_98 = RegexParser_RightChar_m6BEE1FBF048A2DFC53235447BB2F6AC8C56A4147(__this, 1, NULL);
|
|
if ((((int32_t)L_98) == ((int32_t)((int32_t)93))))
|
|
{
|
|
goto IL_02fc;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_99 = V_0;
|
|
V_1 = L_99;
|
|
V_2 = (bool)1;
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
goto IL_0371;
|
|
}
|
|
|
|
IL_02fc:
|
|
{
|
|
int32_t L_100;
|
|
L_100 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_100) < ((int32_t)1)))
|
|
{
|
|
goto IL_0365;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_101 = V_0;
|
|
if ((!(((uint32_t)L_101) == ((uint32_t)((int32_t)45)))))
|
|
{
|
|
goto IL_0365;
|
|
}
|
|
}
|
|
{
|
|
bool L_102 = V_6;
|
|
if (L_102)
|
|
{
|
|
goto IL_0365;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_103;
|
|
L_103 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_103) == ((uint32_t)((int32_t)91)))))
|
|
{
|
|
goto IL_0365;
|
|
}
|
|
}
|
|
{
|
|
bool L_104 = V_3;
|
|
if (L_104)
|
|
{
|
|
goto IL_0365;
|
|
}
|
|
}
|
|
{
|
|
bool L_105 = ___1_scanOnly;
|
|
if (L_105)
|
|
{
|
|
goto IL_0353;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_MoveRight_m921C1D96B625B4C8AF1D658E514D57CC44E40B61(__this, 1, NULL);
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_106 = V_5;
|
|
bool L_107 = ___0_caseInsensitive;
|
|
bool L_108 = ___1_scanOnly;
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_109;
|
|
L_109 = RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D(__this, L_107, L_108, NULL);
|
|
NullCheck(L_106);
|
|
RegexCharClass_AddSubtraction_m4EF34AFB93C001C6A4521E1F1C5F4B54833E8A12_inline(L_106, L_109, NULL);
|
|
int32_t L_110;
|
|
L_110 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_110) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0371;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_111;
|
|
L_111 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((((int32_t)L_111) == ((int32_t)((int32_t)93))))
|
|
{
|
|
goto IL_0371;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_112;
|
|
L_112 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral73310BF59DB8CA3EB79CF1E70A2DA4C61E0E5228)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_112, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0353:
|
|
{
|
|
RegexParser_MoveRight_m921C1D96B625B4C8AF1D658E514D57CC44E40B61(__this, 1, NULL);
|
|
bool L_113 = ___0_caseInsensitive;
|
|
bool L_114 = ___1_scanOnly;
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_115;
|
|
L_115 = RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D(__this, L_113, L_114, NULL);
|
|
goto IL_0371;
|
|
}
|
|
|
|
IL_0365:
|
|
{
|
|
bool L_116 = ___1_scanOnly;
|
|
if (L_116)
|
|
{
|
|
goto IL_0371;
|
|
}
|
|
}
|
|
{
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_117 = V_5;
|
|
Il2CppChar L_118 = V_0;
|
|
Il2CppChar L_119 = V_0;
|
|
NullCheck(L_117);
|
|
RegexCharClass_AddRange_mB1188A62712FE4ABB7F5DB28645351E375B5C6A7(L_117, L_118, L_119, NULL);
|
|
}
|
|
|
|
IL_0371:
|
|
{
|
|
V_3 = (bool)0;
|
|
}
|
|
|
|
IL_0373:
|
|
{
|
|
int32_t L_120;
|
|
L_120 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_120) > ((int32_t)0)))
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
|
|
IL_037f:
|
|
{
|
|
bool L_121 = V_4;
|
|
if (L_121)
|
|
{
|
|
goto IL_038f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_122;
|
|
L_122 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD1921F7804B8B0B09E2DC813076CD1CBDE1BAC17)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_122, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_038f:
|
|
{
|
|
bool L_123 = ___1_scanOnly;
|
|
bool L_124 = ___0_caseInsensitive;
|
|
if (!((int32_t)(((((int32_t)L_123) == ((int32_t)0))? 1 : 0)&(int32_t)L_124)))
|
|
{
|
|
goto IL_03a4;
|
|
}
|
|
}
|
|
{
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_125 = V_5;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_126 = __this->____culture_7;
|
|
NullCheck(L_125);
|
|
RegexCharClass_AddLowercase_mB87FC245CC837E582370E5410A6B40B23BEAC0BE(L_125, L_126, NULL);
|
|
}
|
|
|
|
IL_03a4:
|
|
{
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_127 = V_5;
|
|
return L_127;
|
|
}
|
|
}
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanGroupOpen()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
Il2CppChar V_6 = 0x0;
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
bool V_9 = false;
|
|
Il2CppChar V_10 = 0x0;
|
|
String_t* V_11 = NULL;
|
|
String_t* V_12 = NULL;
|
|
int32_t V_13 = 0;
|
|
String_t* V_14 = NULL;
|
|
Il2CppChar V_15 = 0x0;
|
|
{
|
|
V_0 = 0;
|
|
V_2 = ((int32_t)62);
|
|
int32_t L_0;
|
|
L_0 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_1;
|
|
L_1 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)63)))))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2;
|
|
L_2 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)63)))))
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3;
|
|
L_3 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_3) <= ((int32_t)1)))
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_4;
|
|
L_4 = RegexParser_RightChar_m6BEE1FBF048A2DFC53235447BB2F6AC8C56A4147(__this, 1, NULL);
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)41)))))
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
bool L_5;
|
|
L_5 = RegexParser_UseOptionN_mD441B71AC8368C644B8D9A0CCB3DB8BD681639B3(__this, NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
bool L_6 = __this->____ignoreNextParen_18;
|
|
if (!L_6)
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
__this->____ignoreNextParen_18 = (bool)0;
|
|
int32_t L_7 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_8 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_8);
|
|
RegexNode__ctor_mAE4AC160F21E5DF26B99B74753BCFB9EF0951B2B(L_8, ((int32_t)29), L_7, NULL);
|
|
return L_8;
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
int32_t L_9 = __this->____options_16;
|
|
int32_t L_10 = __this->____autocap_8;
|
|
V_3 = L_10;
|
|
int32_t L_11 = V_3;
|
|
__this->____autocap_8 = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
int32_t L_12 = V_3;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_13 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_13);
|
|
RegexNode__ctor_m5ECC62B9C3918CD043542E5BEAAD39A06158E27A(L_13, ((int32_t)28), L_9, L_12, (-1), NULL);
|
|
return L_13;
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
int32_t L_14;
|
|
L_14 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_0507;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_15;
|
|
L_15 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
Il2CppChar L_16 = L_15;
|
|
V_0 = L_16;
|
|
V_6 = L_16;
|
|
Il2CppChar L_17 = V_6;
|
|
if ((!(((uint32_t)L_17) <= ((uint32_t)((int32_t)39)))))
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_18 = V_6;
|
|
if ((((int32_t)L_18) == ((int32_t)((int32_t)33))))
|
|
{
|
|
goto IL_00f7;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_19 = V_6;
|
|
if ((((int32_t)L_19) == ((int32_t)((int32_t)39))))
|
|
{
|
|
goto IL_0116;
|
|
}
|
|
}
|
|
{
|
|
goto IL_04c1;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
Il2CppChar L_20 = V_6;
|
|
if ((((int32_t)L_20) == ((int32_t)((int32_t)40))))
|
|
{
|
|
goto IL_035e;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_21 = V_6;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_21, ((int32_t)58))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_00d8;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_04c1;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0119;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_00e0;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_010e;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_04c1;
|
|
}
|
|
|
|
IL_00d8:
|
|
{
|
|
V_1 = ((int32_t)29);
|
|
goto IL_04fa;
|
|
}
|
|
|
|
IL_00e0:
|
|
{
|
|
int32_t L_22 = __this->____options_16;
|
|
__this->____options_16 = ((int32_t)((int32_t)L_22&((int32_t)-65)));
|
|
V_1 = ((int32_t)30);
|
|
goto IL_04fa;
|
|
}
|
|
|
|
IL_00f7:
|
|
{
|
|
int32_t L_23 = __this->____options_16;
|
|
__this->____options_16 = ((int32_t)((int32_t)L_23&((int32_t)-65)));
|
|
V_1 = ((int32_t)31);
|
|
goto IL_04fa;
|
|
}
|
|
|
|
IL_010e:
|
|
{
|
|
V_1 = ((int32_t)32);
|
|
goto IL_04fa;
|
|
}
|
|
|
|
IL_0116:
|
|
{
|
|
V_2 = ((int32_t)39);
|
|
}
|
|
|
|
IL_0119:
|
|
{
|
|
int32_t L_24;
|
|
L_24 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if (!L_24)
|
|
{
|
|
goto IL_0507;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_25;
|
|
L_25 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
Il2CppChar L_26 = L_25;
|
|
V_0 = L_26;
|
|
V_10 = L_26;
|
|
Il2CppChar L_27 = V_10;
|
|
if ((((int32_t)L_27) == ((int32_t)((int32_t)33))))
|
|
{
|
|
goto IL_0159;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_28 = V_10;
|
|
if ((!(((uint32_t)L_28) == ((uint32_t)((int32_t)61)))))
|
|
{
|
|
goto IL_0178;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_29 = V_2;
|
|
if ((((int32_t)L_29) == ((int32_t)((int32_t)39))))
|
|
{
|
|
goto IL_0507;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_30 = __this->____options_16;
|
|
__this->____options_16 = ((int32_t)((int32_t)L_30|((int32_t)64)));
|
|
V_1 = ((int32_t)30);
|
|
goto IL_04fa;
|
|
}
|
|
|
|
IL_0159:
|
|
{
|
|
Il2CppChar L_31 = V_2;
|
|
if ((((int32_t)L_31) == ((int32_t)((int32_t)39))))
|
|
{
|
|
goto IL_0507;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_32 = __this->____options_16;
|
|
__this->____options_16 = ((int32_t)((int32_t)L_32|((int32_t)64)));
|
|
V_1 = ((int32_t)31);
|
|
goto IL_04fa;
|
|
}
|
|
|
|
IL_0178:
|
|
{
|
|
RegexParser_MoveLeft_m57BB7A0146D0E8834D715667048B75A517761AD5(__this, NULL);
|
|
V_7 = (-1);
|
|
V_8 = (-1);
|
|
V_9 = (bool)0;
|
|
Il2CppChar L_33 = V_0;
|
|
if ((((int32_t)L_33) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_01de;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_34 = V_0;
|
|
if ((((int32_t)L_34) > ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_01de;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_35;
|
|
L_35 = RegexParser_ScanDecimal_m1BFFE19E0698D0EC97D81C655F3D04B608897161(__this, NULL);
|
|
V_7 = L_35;
|
|
int32_t L_36 = V_7;
|
|
bool L_37;
|
|
L_37 = RegexParser_IsCaptureSlot_m1EE21960AA0BB1C072BD9D765AFF8A6DFC3192C3(__this, L_36, NULL);
|
|
if (L_37)
|
|
{
|
|
goto IL_01a6;
|
|
}
|
|
}
|
|
{
|
|
V_7 = (-1);
|
|
}
|
|
|
|
IL_01a6:
|
|
{
|
|
int32_t L_38;
|
|
L_38 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_38) <= ((int32_t)0)))
|
|
{
|
|
goto IL_01ce;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_39;
|
|
L_39 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
Il2CppChar L_40 = V_2;
|
|
if ((((int32_t)L_39) == ((int32_t)L_40)))
|
|
{
|
|
goto IL_01ce;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_41;
|
|
L_41 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((((int32_t)L_41) == ((int32_t)((int32_t)45))))
|
|
{
|
|
goto IL_01ce;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_42;
|
|
L_42 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA90BAB5A63B270956DEBA545BAA7334EFC8F50E2)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_01ce:
|
|
{
|
|
int32_t L_43 = V_7;
|
|
if (L_43)
|
|
{
|
|
goto IL_0240;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_44;
|
|
L_44 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA0FE8F62F371A375A76A413416F3EF55C050A182)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_01de:
|
|
{
|
|
Il2CppChar L_45 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
bool L_46;
|
|
L_46 = RegexCharClass_IsWordChar_m2912E5148F0F89512DDF7D629188ADA82961080C(L_45, NULL);
|
|
if (!L_46)
|
|
{
|
|
goto IL_022a;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_47;
|
|
L_47 = RegexParser_ScanCapname_mC9524DCBE266D677078207375663506AC32BE3F7(__this, NULL);
|
|
V_11 = L_47;
|
|
String_t* L_48 = V_11;
|
|
bool L_49;
|
|
L_49 = RegexParser_IsCaptureName_m5DC0D7BF3AD01C929CB982048722BCD43797CEAE(__this, L_48, NULL);
|
|
if (!L_49)
|
|
{
|
|
goto IL_0202;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_50 = V_11;
|
|
int32_t L_51;
|
|
L_51 = RegexParser_CaptureSlotFromName_mE18BA49BCA1CE4B972DC804E52C78E48905FEFAB(__this, L_50, NULL);
|
|
V_7 = L_51;
|
|
}
|
|
|
|
IL_0202:
|
|
{
|
|
int32_t L_52;
|
|
L_52 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_52) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0240;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_53;
|
|
L_53 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
Il2CppChar L_54 = V_2;
|
|
if ((((int32_t)L_53) == ((int32_t)L_54)))
|
|
{
|
|
goto IL_0240;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_55;
|
|
L_55 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((((int32_t)L_55) == ((int32_t)((int32_t)45))))
|
|
{
|
|
goto IL_0240;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_56;
|
|
L_56 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA90BAB5A63B270956DEBA545BAA7334EFC8F50E2)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_56, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_022a:
|
|
{
|
|
Il2CppChar L_57 = V_0;
|
|
if ((!(((uint32_t)L_57) == ((uint32_t)((int32_t)45)))))
|
|
{
|
|
goto IL_0234;
|
|
}
|
|
}
|
|
{
|
|
V_9 = (bool)1;
|
|
goto IL_0240;
|
|
}
|
|
|
|
IL_0234:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_58;
|
|
L_58 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA90BAB5A63B270956DEBA545BAA7334EFC8F50E2)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_58, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0240:
|
|
{
|
|
int32_t L_59 = V_7;
|
|
if ((!(((uint32_t)L_59) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_024c;
|
|
}
|
|
}
|
|
{
|
|
bool L_60 = V_9;
|
|
if (!L_60)
|
|
{
|
|
goto IL_0327;
|
|
}
|
|
}
|
|
|
|
IL_024c:
|
|
{
|
|
int32_t L_61;
|
|
L_61 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_61) <= ((int32_t)1)))
|
|
{
|
|
goto IL_0327;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_62;
|
|
L_62 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_62) == ((uint32_t)((int32_t)45)))))
|
|
{
|
|
goto IL_0327;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
Il2CppChar L_63;
|
|
L_63 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
V_0 = L_63;
|
|
Il2CppChar L_64 = V_0;
|
|
if ((((int32_t)L_64) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_02c4;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_65 = V_0;
|
|
if ((((int32_t)L_65) > ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_02c4;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_66;
|
|
L_66 = RegexParser_ScanDecimal_m1BFFE19E0698D0EC97D81C655F3D04B608897161(__this, NULL);
|
|
V_8 = L_66;
|
|
int32_t L_67 = V_8;
|
|
bool L_68;
|
|
L_68 = RegexParser_IsCaptureSlot_m1EE21960AA0BB1C072BD9D765AFF8A6DFC3192C3(__this, L_67, NULL);
|
|
if (L_68)
|
|
{
|
|
goto IL_02a6;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_69 = V_8;
|
|
int32_t L_70 = L_69;
|
|
RuntimeObject* L_71 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_70);
|
|
String_t* L_72;
|
|
L_72 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5A958635C67952829AC7E2FD5FB3A2C8DB51121E)), L_71, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_73;
|
|
L_73 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, L_72, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_02a6:
|
|
{
|
|
int32_t L_74;
|
|
L_74 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_74) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0327;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_75;
|
|
L_75 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
Il2CppChar L_76 = V_2;
|
|
if ((((int32_t)L_75) == ((int32_t)L_76)))
|
|
{
|
|
goto IL_0327;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_77;
|
|
L_77 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA90BAB5A63B270956DEBA545BAA7334EFC8F50E2)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_77, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_02c4:
|
|
{
|
|
Il2CppChar L_78 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
bool L_79;
|
|
L_79 = RegexCharClass_IsWordChar_m2912E5148F0F89512DDF7D629188ADA82961080C(L_78, NULL);
|
|
if (!L_79)
|
|
{
|
|
goto IL_031b;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_80;
|
|
L_80 = RegexParser_ScanCapname_mC9524DCBE266D677078207375663506AC32BE3F7(__this, NULL);
|
|
V_12 = L_80;
|
|
String_t* L_81 = V_12;
|
|
bool L_82;
|
|
L_82 = RegexParser_IsCaptureName_m5DC0D7BF3AD01C929CB982048722BCD43797CEAE(__this, L_81, NULL);
|
|
if (!L_82)
|
|
{
|
|
goto IL_02ea;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_83 = V_12;
|
|
int32_t L_84;
|
|
L_84 = RegexParser_CaptureSlotFromName_mE18BA49BCA1CE4B972DC804E52C78E48905FEFAB(__this, L_83, NULL);
|
|
V_8 = L_84;
|
|
goto IL_02fd;
|
|
}
|
|
|
|
IL_02ea:
|
|
{
|
|
String_t* L_85 = V_12;
|
|
String_t* L_86;
|
|
L_86 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBC41C48BA95DA48A6EB8BFC17142E8F0E9E4C990)), L_85, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_87;
|
|
L_87 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, L_86, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_87, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_02fd:
|
|
{
|
|
int32_t L_88;
|
|
L_88 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_88) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0327;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_89;
|
|
L_89 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
Il2CppChar L_90 = V_2;
|
|
if ((((int32_t)L_89) == ((int32_t)L_90)))
|
|
{
|
|
goto IL_0327;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_91;
|
|
L_91 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA90BAB5A63B270956DEBA545BAA7334EFC8F50E2)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_91, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_031b:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_92;
|
|
L_92 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA90BAB5A63B270956DEBA545BAA7334EFC8F50E2)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_92, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0327:
|
|
{
|
|
int32_t L_93 = V_7;
|
|
if ((!(((uint32_t)L_93) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0334;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_94 = V_8;
|
|
if ((((int32_t)L_94) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0507;
|
|
}
|
|
}
|
|
|
|
IL_0334:
|
|
{
|
|
int32_t L_95;
|
|
L_95 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_95) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0507;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_96;
|
|
L_96 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
Il2CppChar L_97 = V_2;
|
|
if ((!(((uint32_t)L_96) == ((uint32_t)L_97))))
|
|
{
|
|
goto IL_0507;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_98 = __this->____options_16;
|
|
int32_t L_99 = V_7;
|
|
int32_t L_100 = V_8;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_101 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_101);
|
|
RegexNode__ctor_m5ECC62B9C3918CD043542E5BEAAD39A06158E27A(L_101, ((int32_t)28), L_98, L_99, L_100, NULL);
|
|
return L_101;
|
|
}
|
|
|
|
IL_035e:
|
|
{
|
|
int32_t L_102;
|
|
L_102 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
V_4 = L_102;
|
|
int32_t L_103;
|
|
L_103 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_103) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0435;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_104;
|
|
L_104 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
V_0 = L_104;
|
|
Il2CppChar L_105 = V_0;
|
|
if ((((int32_t)L_105) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_03f2;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_106 = V_0;
|
|
if ((((int32_t)L_106) > ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_03f2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_107;
|
|
L_107 = RegexParser_ScanDecimal_m1BFFE19E0698D0EC97D81C655F3D04B608897161(__this, NULL);
|
|
V_13 = L_107;
|
|
int32_t L_108;
|
|
L_108 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_108) <= ((int32_t)0)))
|
|
{
|
|
goto IL_03d5;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_109;
|
|
L_109 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
if ((!(((uint32_t)L_109) == ((uint32_t)((int32_t)41)))))
|
|
{
|
|
goto IL_03d5;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_110 = V_13;
|
|
bool L_111;
|
|
L_111 = RegexParser_IsCaptureSlot_m1EE21960AA0BB1C072BD9D765AFF8A6DFC3192C3(__this, L_110, NULL);
|
|
if (!L_111)
|
|
{
|
|
goto IL_03b8;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_112 = __this->____options_16;
|
|
int32_t L_113 = V_13;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_114 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_114);
|
|
RegexNode__ctor_m3352B98BE0DAD220AB653F929BD6D95689B5E07F(L_114, ((int32_t)33), L_112, L_113, NULL);
|
|
return L_114;
|
|
}
|
|
|
|
IL_03b8:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_115;
|
|
L_115 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
|
|
String_t* L_116;
|
|
L_116 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&V_13), L_115, NULL);
|
|
String_t* L_117;
|
|
L_117 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE8CDAF3BD45E1B70CE2BC010AB453F8044684F6F)), L_116, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_118;
|
|
L_118 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, L_117, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_118, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_03d5:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_119;
|
|
L_119 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
|
|
String_t* L_120;
|
|
L_120 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&V_13), L_119, NULL);
|
|
String_t* L_121;
|
|
L_121 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0F38A3747C9E3CBF705A8434CE244793402F5BDA)), L_120, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_122;
|
|
L_122 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, L_121, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_122, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_03f2:
|
|
{
|
|
Il2CppChar L_123 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
bool L_124;
|
|
L_124 = RegexCharClass_IsWordChar_m2912E5148F0F89512DDF7D629188ADA82961080C(L_123, NULL);
|
|
if (!L_124)
|
|
{
|
|
goto IL_0435;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_125;
|
|
L_125 = RegexParser_ScanCapname_mC9524DCBE266D677078207375663506AC32BE3F7(__this, NULL);
|
|
V_14 = L_125;
|
|
String_t* L_126 = V_14;
|
|
bool L_127;
|
|
L_127 = RegexParser_IsCaptureName_m5DC0D7BF3AD01C929CB982048722BCD43797CEAE(__this, L_126, NULL);
|
|
if (!L_127)
|
|
{
|
|
goto IL_0435;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_128;
|
|
L_128 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_128) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0435;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_129;
|
|
L_129 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
if ((!(((uint32_t)L_129) == ((uint32_t)((int32_t)41)))))
|
|
{
|
|
goto IL_0435;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_130 = __this->____options_16;
|
|
String_t* L_131 = V_14;
|
|
int32_t L_132;
|
|
L_132 = RegexParser_CaptureSlotFromName_mE18BA49BCA1CE4B972DC804E52C78E48905FEFAB(__this, L_131, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_133 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_133);
|
|
RegexNode__ctor_m3352B98BE0DAD220AB653F929BD6D95689B5E07F(L_133, ((int32_t)33), L_130, L_132, NULL);
|
|
return L_133;
|
|
}
|
|
|
|
IL_0435:
|
|
{
|
|
V_1 = ((int32_t)34);
|
|
int32_t L_134 = V_4;
|
|
RegexParser_Textto_mA45B325CA6CCBC0012F1CBB0282AE114B34AEBE2_inline(__this, ((int32_t)il2cpp_codegen_subtract(L_134, 1)), NULL);
|
|
__this->____ignoreNextParen_18 = (bool)1;
|
|
int32_t L_135;
|
|
L_135 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
V_5 = L_135;
|
|
int32_t L_136 = V_5;
|
|
if ((((int32_t)L_136) < ((int32_t)3)))
|
|
{
|
|
goto IL_04fa;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_137;
|
|
L_137 = RegexParser_RightChar_m6BEE1FBF048A2DFC53235447BB2F6AC8C56A4147(__this, 1, NULL);
|
|
if ((!(((uint32_t)L_137) == ((uint32_t)((int32_t)63)))))
|
|
{
|
|
goto IL_04fa;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_138;
|
|
L_138 = RegexParser_RightChar_m6BEE1FBF048A2DFC53235447BB2F6AC8C56A4147(__this, 2, NULL);
|
|
V_15 = L_138;
|
|
Il2CppChar L_139 = V_15;
|
|
if ((!(((uint32_t)L_139) == ((uint32_t)((int32_t)35)))))
|
|
{
|
|
goto IL_0482;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_140;
|
|
L_140 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB9B95A09A6329F64F307C29A726917E458B15E65)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_140, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0482:
|
|
{
|
|
Il2CppChar L_141 = V_15;
|
|
if ((!(((uint32_t)L_141) == ((uint32_t)((int32_t)39)))))
|
|
{
|
|
goto IL_0494;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_142;
|
|
L_142 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD286A908F27DE88608F297C65E9918981BCD4317)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_142, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0494:
|
|
{
|
|
int32_t L_143 = V_5;
|
|
if ((((int32_t)L_143) < ((int32_t)4)))
|
|
{
|
|
goto IL_04fa;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_144 = V_15;
|
|
if ((!(((uint32_t)L_144) == ((uint32_t)((int32_t)60)))))
|
|
{
|
|
goto IL_04fa;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_145;
|
|
L_145 = RegexParser_RightChar_m6BEE1FBF048A2DFC53235447BB2F6AC8C56A4147(__this, 3, NULL);
|
|
if ((((int32_t)L_145) == ((int32_t)((int32_t)33))))
|
|
{
|
|
goto IL_04fa;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_146;
|
|
L_146 = RegexParser_RightChar_m6BEE1FBF048A2DFC53235447BB2F6AC8C56A4147(__this, 3, NULL);
|
|
if ((((int32_t)L_146) == ((int32_t)((int32_t)61))))
|
|
{
|
|
goto IL_04fa;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_147;
|
|
L_147 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD286A908F27DE88608F297C65E9918981BCD4317)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_147, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_04c1:
|
|
{
|
|
RegexParser_MoveLeft_m57BB7A0146D0E8834D715667048B75A517761AD5(__this, NULL);
|
|
V_1 = ((int32_t)29);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_148 = __this->____group_1;
|
|
NullCheck(L_148);
|
|
int32_t L_149 = L_148->___NType_0;
|
|
if ((((int32_t)L_149) == ((int32_t)((int32_t)34))))
|
|
{
|
|
goto IL_04df;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_ScanOptions_m56F01464F53558D3AF3BF1CD874A2656930AF31C(__this, NULL);
|
|
}
|
|
|
|
IL_04df:
|
|
{
|
|
int32_t L_150;
|
|
L_150 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if (!L_150)
|
|
{
|
|
goto IL_0507;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_151;
|
|
L_151 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
Il2CppChar L_152 = L_151;
|
|
V_0 = L_152;
|
|
if ((!(((uint32_t)L_152) == ((uint32_t)((int32_t)41)))))
|
|
{
|
|
goto IL_04f5;
|
|
}
|
|
}
|
|
{
|
|
return (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
}
|
|
|
|
IL_04f5:
|
|
{
|
|
Il2CppChar L_153 = V_0;
|
|
if ((!(((uint32_t)L_153) == ((uint32_t)((int32_t)58)))))
|
|
{
|
|
goto IL_0507;
|
|
}
|
|
}
|
|
|
|
IL_04fa:
|
|
{
|
|
int32_t L_154 = V_1;
|
|
int32_t L_155 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_156 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_156);
|
|
RegexNode__ctor_mAE4AC160F21E5DF26B99B74753BCFB9EF0951B2B(L_156, L_154, L_155, NULL);
|
|
return L_156;
|
|
}
|
|
|
|
IL_0507:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_157;
|
|
L_157 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8E245319796EC99EDC6311A6DC461759FB1FB7FD)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_157, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::ScanBlank()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_ScanBlank_m4C1B18EC7A5DF860363CA17E69B20A00023B5E82 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0;
|
|
L_0 = RegexParser_UseOptionX_m0BFB48EDC8A2F38A29A8F6CEC85080D9E04010FC(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_00ca;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_1;
|
|
L_1 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_1) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2;
|
|
L_2 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = RegexParser_IsSpace_m322B45C2A04F07D8C83B547370D266F39A8DE14E(L_2, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
int32_t L_4;
|
|
L_4 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0129;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_5;
|
|
L_5 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)35)))))
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
int32_t L_6;
|
|
L_6 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_6) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_7;
|
|
L_7 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)10)))))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
int32_t L_8;
|
|
L_8 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_8) < ((int32_t)3)))
|
|
{
|
|
goto IL_0129;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_9;
|
|
L_9 = RegexParser_RightChar_m6BEE1FBF048A2DFC53235447BB2F6AC8C56A4147(__this, 2, NULL);
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)35)))))
|
|
{
|
|
goto IL_0129;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_10;
|
|
L_10 = RegexParser_RightChar_m6BEE1FBF048A2DFC53235447BB2F6AC8C56A4147(__this, 1, NULL);
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)63)))))
|
|
{
|
|
goto IL_0129;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_11;
|
|
L_11 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)40)))))
|
|
{
|
|
goto IL_0129;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0098;
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
}
|
|
|
|
IL_0098:
|
|
{
|
|
int32_t L_12;
|
|
L_12 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_12) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_13;
|
|
L_13 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)41)))))
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
int32_t L_14;
|
|
L_14 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if (L_14)
|
|
{
|
|
goto IL_00bf;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_15;
|
|
L_15 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral072B29D72AC26D4E83A32232DF8E415C5151E9AA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanBlank_m4C1B18EC7A5DF860363CA17E69B20A00023B5E82_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_00bf:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_00ca:
|
|
{
|
|
int32_t L_16;
|
|
L_16 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_16) < ((int32_t)3)))
|
|
{
|
|
goto IL_00f3;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_17;
|
|
L_17 = RegexParser_RightChar_m6BEE1FBF048A2DFC53235447BB2F6AC8C56A4147(__this, 2, NULL);
|
|
if ((!(((uint32_t)L_17) == ((uint32_t)((int32_t)35)))))
|
|
{
|
|
goto IL_00f3;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_18;
|
|
L_18 = RegexParser_RightChar_m6BEE1FBF048A2DFC53235447BB2F6AC8C56A4147(__this, 1, NULL);
|
|
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)63)))))
|
|
{
|
|
goto IL_00f3;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_19;
|
|
L_19 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((((int32_t)L_19) == ((int32_t)((int32_t)40))))
|
|
{
|
|
goto IL_00fa;
|
|
}
|
|
}
|
|
|
|
IL_00f3:
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_00f4:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
}
|
|
|
|
IL_00fa:
|
|
{
|
|
int32_t L_20;
|
|
L_20 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_20) <= ((int32_t)0)))
|
|
{
|
|
goto IL_010d;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_21;
|
|
L_21 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)41)))))
|
|
{
|
|
goto IL_00f4;
|
|
}
|
|
}
|
|
|
|
IL_010d:
|
|
{
|
|
int32_t L_22;
|
|
L_22 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if (L_22)
|
|
{
|
|
goto IL_0121;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_23;
|
|
L_23 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral072B29D72AC26D4E83A32232DF8E415C5151E9AA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanBlank_m4C1B18EC7A5DF860363CA17E69B20A00023B5E82_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0121:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
goto IL_00ca;
|
|
}
|
|
|
|
IL_0129:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanBackslash(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexParser_ScanBackslash_mAAE11106CB78789803468679894E1D7AE6B0C92E (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, bool ___0_scanOnly, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral595EFF1BB2D726958ED623D9B54803E9AA2A0C84);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral604AF3FD45B5D6527E77C100038873C29E8B4D49);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D5175625BAB03B34DC7A7254E3934B27037B660);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDF1CF539722D58CC569DAE01700516448ABF534B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF041468CA475A0C8B8298BFDDC984663476E0294);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFC122FD8605F61DCBDED32B11B81E151BCAC4354);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* V_1 = NULL;
|
|
Il2CppChar V_2 = 0x0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_1;
|
|
L_1 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral709116FAB4B1CFB8E839AF216932137595A1C356)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanBackslash_mAAE11106CB78789803468679894E1D7AE6B0C92E_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Il2CppChar L_2;
|
|
L_2 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
Il2CppChar L_3 = L_2;
|
|
V_0 = L_3;
|
|
V_2 = L_3;
|
|
Il2CppChar L_4 = V_2;
|
|
if ((!(((uint32_t)L_4) <= ((uint32_t)((int32_t)90)))))
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) <= ((uint32_t)((int32_t)80)))))
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_6 = V_2;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, ((int32_t)65))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0274;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_01e2;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0274;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0274;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_7 = V_2;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)80))))
|
|
{
|
|
goto IL_021b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0274;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
Il2CppChar L_8 = V_2;
|
|
if ((((int32_t)L_8) == ((int32_t)((int32_t)83))))
|
|
{
|
|
goto IL_0170;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_9 = V_2;
|
|
if ((((int32_t)L_9) == ((int32_t)((int32_t)87))))
|
|
{
|
|
goto IL_00fe;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_10 = V_2;
|
|
if ((((int32_t)L_10) == ((int32_t)((int32_t)90))))
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0274;
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
Il2CppChar L_11 = V_2;
|
|
if ((!(((uint32_t)L_11) <= ((uint32_t)((int32_t)112)))))
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_12 = V_2;
|
|
if ((((int32_t)L_12) == ((int32_t)((int32_t)98))))
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_13 = V_2;
|
|
if ((((int32_t)L_13) == ((int32_t)((int32_t)100))))
|
|
{
|
|
goto IL_01a9;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_14 = V_2;
|
|
if ((((int32_t)L_14) == ((int32_t)((int32_t)112))))
|
|
{
|
|
goto IL_021b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0274;
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
Il2CppChar L_15 = V_2;
|
|
if ((((int32_t)L_15) == ((int32_t)((int32_t)115))))
|
|
{
|
|
goto IL_0137;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_16 = V_2;
|
|
if ((((int32_t)L_16) == ((int32_t)((int32_t)119))))
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_17 = V_2;
|
|
if ((!(((uint32_t)L_17) == ((uint32_t)((int32_t)122)))))
|
|
{
|
|
goto IL_0274;
|
|
}
|
|
}
|
|
|
|
IL_00a7:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
bool L_18 = ___0_scanOnly;
|
|
if (!L_18)
|
|
{
|
|
goto IL_00b2;
|
|
}
|
|
}
|
|
{
|
|
return (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
}
|
|
|
|
IL_00b2:
|
|
{
|
|
Il2CppChar L_19 = V_0;
|
|
int32_t L_20;
|
|
L_20 = RegexParser_TypeFromCode_m11B176B0B9A6EF391370E021B111101AE56F4CC6(__this, L_19, NULL);
|
|
int32_t L_21 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_22 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_22);
|
|
RegexNode__ctor_mAE4AC160F21E5DF26B99B74753BCFB9EF0951B2B(L_22, L_20, L_21, NULL);
|
|
return L_22;
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
bool L_23 = ___0_scanOnly;
|
|
if (!L_23)
|
|
{
|
|
goto IL_00d0;
|
|
}
|
|
}
|
|
{
|
|
return (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
}
|
|
|
|
IL_00d0:
|
|
{
|
|
bool L_24;
|
|
L_24 = RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9(__this, NULL);
|
|
if (!L_24)
|
|
{
|
|
goto IL_00eb;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_25 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_26 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_26);
|
|
RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA(L_26, ((int32_t)11), L_25, _stringLiteralDF1CF539722D58CC569DAE01700516448ABF534B, NULL);
|
|
return L_26;
|
|
}
|
|
|
|
IL_00eb:
|
|
{
|
|
int32_t L_27 = __this->____options_16;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
String_t* L_28 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___WordClass_7;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_29 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_29);
|
|
RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA(L_29, ((int32_t)11), L_27, L_28, NULL);
|
|
return L_29;
|
|
}
|
|
|
|
IL_00fe:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
bool L_30 = ___0_scanOnly;
|
|
if (!L_30)
|
|
{
|
|
goto IL_0109;
|
|
}
|
|
}
|
|
{
|
|
return (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
}
|
|
|
|
IL_0109:
|
|
{
|
|
bool L_31;
|
|
L_31 = RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9(__this, NULL);
|
|
if (!L_31)
|
|
{
|
|
goto IL_0124;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_32 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_33 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_33);
|
|
RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA(L_33, ((int32_t)11), L_32, _stringLiteral604AF3FD45B5D6527E77C100038873C29E8B4D49, NULL);
|
|
return L_33;
|
|
}
|
|
|
|
IL_0124:
|
|
{
|
|
int32_t L_34 = __this->____options_16;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
String_t* L_35 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___NotWordClass_8;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_36 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_36);
|
|
RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA(L_36, ((int32_t)11), L_34, L_35, NULL);
|
|
return L_36;
|
|
}
|
|
|
|
IL_0137:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
bool L_37 = ___0_scanOnly;
|
|
if (!L_37)
|
|
{
|
|
goto IL_0142;
|
|
}
|
|
}
|
|
{
|
|
return (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
}
|
|
|
|
IL_0142:
|
|
{
|
|
bool L_38;
|
|
L_38 = RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9(__this, NULL);
|
|
if (!L_38)
|
|
{
|
|
goto IL_015d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_39 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_40 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_40);
|
|
RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA(L_40, ((int32_t)11), L_39, _stringLiteral8D5175625BAB03B34DC7A7254E3934B27037B660, NULL);
|
|
return L_40;
|
|
}
|
|
|
|
IL_015d:
|
|
{
|
|
int32_t L_41 = __this->____options_16;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
String_t* L_42 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___SpaceClass_5;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_43 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_43);
|
|
RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA(L_43, ((int32_t)11), L_41, L_42, NULL);
|
|
return L_43;
|
|
}
|
|
|
|
IL_0170:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
bool L_44 = ___0_scanOnly;
|
|
if (!L_44)
|
|
{
|
|
goto IL_017b;
|
|
}
|
|
}
|
|
{
|
|
return (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
}
|
|
|
|
IL_017b:
|
|
{
|
|
bool L_45;
|
|
L_45 = RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9(__this, NULL);
|
|
if (!L_45)
|
|
{
|
|
goto IL_0196;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_46 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_47 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_47);
|
|
RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA(L_47, ((int32_t)11), L_46, _stringLiteralFC122FD8605F61DCBDED32B11B81E151BCAC4354, NULL);
|
|
return L_47;
|
|
}
|
|
|
|
IL_0196:
|
|
{
|
|
int32_t L_48 = __this->____options_16;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
String_t* L_49 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___NotSpaceClass_6;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_50 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_50);
|
|
RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA(L_50, ((int32_t)11), L_48, L_49, NULL);
|
|
return L_50;
|
|
}
|
|
|
|
IL_01a9:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
bool L_51 = ___0_scanOnly;
|
|
if (!L_51)
|
|
{
|
|
goto IL_01b4;
|
|
}
|
|
}
|
|
{
|
|
return (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
}
|
|
|
|
IL_01b4:
|
|
{
|
|
bool L_52;
|
|
L_52 = RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9(__this, NULL);
|
|
if (!L_52)
|
|
{
|
|
goto IL_01cf;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_53 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_54 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_54);
|
|
RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA(L_54, ((int32_t)11), L_53, _stringLiteralF041468CA475A0C8B8298BFDDC984663476E0294, NULL);
|
|
return L_54;
|
|
}
|
|
|
|
IL_01cf:
|
|
{
|
|
int32_t L_55 = __this->____options_16;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
String_t* L_56 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___DigitClass_9;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_57 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_57);
|
|
RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA(L_57, ((int32_t)11), L_55, L_56, NULL);
|
|
return L_57;
|
|
}
|
|
|
|
IL_01e2:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
bool L_58 = ___0_scanOnly;
|
|
if (!L_58)
|
|
{
|
|
goto IL_01ed;
|
|
}
|
|
}
|
|
{
|
|
return (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
}
|
|
|
|
IL_01ed:
|
|
{
|
|
bool L_59;
|
|
L_59 = RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9(__this, NULL);
|
|
if (!L_59)
|
|
{
|
|
goto IL_0208;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_60 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_61 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_61);
|
|
RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA(L_61, ((int32_t)11), L_60, _stringLiteral595EFF1BB2D726958ED623D9B54803E9AA2A0C84, NULL);
|
|
return L_61;
|
|
}
|
|
|
|
IL_0208:
|
|
{
|
|
int32_t L_62 = __this->____options_16;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
String_t* L_63 = ((RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var))->___NotDigitClass_10;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_64 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_64);
|
|
RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA(L_64, ((int32_t)11), L_62, L_63, NULL);
|
|
return L_64;
|
|
}
|
|
|
|
IL_021b:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
bool L_65 = ___0_scanOnly;
|
|
if (!L_65)
|
|
{
|
|
goto IL_0226;
|
|
}
|
|
}
|
|
{
|
|
return (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
}
|
|
|
|
IL_0226:
|
|
{
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_66 = (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C*)il2cpp_codegen_object_new(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
NullCheck(L_66);
|
|
RegexCharClass__ctor_m165680E6EA10035E0630220C967BD772F5D6F52E(L_66, NULL);
|
|
V_1 = L_66;
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_67 = V_1;
|
|
String_t* L_68;
|
|
L_68 = RegexParser_ParseProperty_m3B765A1B30A38A723CAFE63AF9D6F3D08C7C6F38(__this, NULL);
|
|
Il2CppChar L_69 = V_0;
|
|
bool L_70;
|
|
L_70 = RegexParser_UseOptionI_mB3FB0740ED596E6ABC827E903DCE8AA4258BA701(__this, NULL);
|
|
String_t* L_71 = __this->____pattern_5;
|
|
NullCheck(L_67);
|
|
RegexCharClass_AddCategoryFromName_m032AED661665AE30D7F3F712914E2937F6E4FF97(L_67, L_68, (bool)((((int32_t)((((int32_t)L_69) == ((int32_t)((int32_t)112)))? 1 : 0)) == ((int32_t)0))? 1 : 0), L_70, L_71, NULL);
|
|
bool L_72;
|
|
L_72 = RegexParser_UseOptionI_mB3FB0740ED596E6ABC827E903DCE8AA4258BA701(__this, NULL);
|
|
if (!L_72)
|
|
{
|
|
goto IL_0260;
|
|
}
|
|
}
|
|
{
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_73 = V_1;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_74 = __this->____culture_7;
|
|
NullCheck(L_73);
|
|
RegexCharClass_AddLowercase_mB87FC245CC837E582370E5410A6B40B23BEAC0BE(L_73, L_74, NULL);
|
|
}
|
|
|
|
IL_0260:
|
|
{
|
|
int32_t L_75 = __this->____options_16;
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_76 = V_1;
|
|
NullCheck(L_76);
|
|
String_t* L_77;
|
|
L_77 = RegexCharClass_ToStringClass_m6B0B92A0A525001CD78A6C2A766295268E0FED57(L_76, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_78 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_78);
|
|
RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA(L_78, ((int32_t)11), L_75, L_77, NULL);
|
|
return L_78;
|
|
}
|
|
|
|
IL_0274:
|
|
{
|
|
bool L_79 = ___0_scanOnly;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_80;
|
|
L_80 = RegexParser_ScanBasicBackslash_mB0F1728AD89C8F196601B3110F0BA807FBC8FCEC(__this, L_79, NULL);
|
|
return L_80;
|
|
}
|
|
}
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanBasicBackslash(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexParser_ScanBasicBackslash_mB0F1728AD89C8F196601B3110F0BA807FBC8FCEC (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, bool ___0_scanOnly, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
bool V_1 = false;
|
|
Il2CppChar V_2 = 0x0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
int32_t V_6 = 0;
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
String_t* V_9 = NULL;
|
|
int32_t G_B9_0 = 0;
|
|
int32_t G_B20_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_1;
|
|
L_1 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral709116FAB4B1CFB8E839AF216932137595A1C356)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanBasicBackslash_mB0F1728AD89C8F196601B3110F0BA807FBC8FCEC_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
V_1 = (bool)0;
|
|
V_2 = 0;
|
|
int32_t L_2;
|
|
L_2 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
V_3 = L_2;
|
|
Il2CppChar L_3;
|
|
L_3 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
V_0 = L_3;
|
|
Il2CppChar L_4 = V_0;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)107)))))
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5;
|
|
L_5 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_5) < ((int32_t)2)))
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
Il2CppChar L_6;
|
|
L_6 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
V_0 = L_6;
|
|
Il2CppChar L_7 = V_0;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)60))))
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_8 = V_0;
|
|
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)39)))))
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
V_1 = (bool)1;
|
|
Il2CppChar L_9 = V_0;
|
|
if ((((int32_t)L_9) == ((int32_t)((int32_t)39))))
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
G_B9_0 = ((int32_t)62);
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
G_B9_0 = ((int32_t)39);
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
V_2 = G_B9_0;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
bool L_10 = V_1;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11;
|
|
L_11 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_11) > ((int32_t)0)))
|
|
{
|
|
goto IL_0071;
|
|
}
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_12;
|
|
L_12 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2323F684C49416D2AA1F6FFAE52BA830E63326E0)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanBasicBackslash_mB0F1728AD89C8F196601B3110F0BA807FBC8FCEC_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
Il2CppChar L_13;
|
|
L_13 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
V_0 = L_13;
|
|
goto IL_00a8;
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
Il2CppChar L_14 = V_0;
|
|
if ((((int32_t)L_14) == ((int32_t)((int32_t)60))))
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_15 = V_0;
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)39)))))
|
|
{
|
|
goto IL_00a8;
|
|
}
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
int32_t L_16;
|
|
L_16 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_16) <= ((int32_t)1)))
|
|
{
|
|
goto IL_00a8;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)1;
|
|
Il2CppChar L_17 = V_0;
|
|
if ((((int32_t)L_17) == ((int32_t)((int32_t)39))))
|
|
{
|
|
goto IL_0098;
|
|
}
|
|
}
|
|
{
|
|
G_B20_0 = ((int32_t)62);
|
|
goto IL_009a;
|
|
}
|
|
|
|
IL_0098:
|
|
{
|
|
G_B20_0 = ((int32_t)39);
|
|
}
|
|
|
|
IL_009a:
|
|
{
|
|
V_2 = G_B20_0;
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
Il2CppChar L_18;
|
|
L_18 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
V_0 = L_18;
|
|
}
|
|
|
|
IL_00a8:
|
|
{
|
|
bool L_19 = V_1;
|
|
if (!L_19)
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_20 = V_0;
|
|
if ((((int32_t)L_20) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_21 = V_0;
|
|
if ((((int32_t)L_21) > ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_22;
|
|
L_22 = RegexParser_ScanDecimal_m1BFFE19E0698D0EC97D81C655F3D04B608897161(__this, NULL);
|
|
V_4 = L_22;
|
|
int32_t L_23;
|
|
L_23 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_23) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0271;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_24;
|
|
L_24 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
Il2CppChar L_25 = V_2;
|
|
if ((!(((uint32_t)L_24) == ((uint32_t)L_25))))
|
|
{
|
|
goto IL_0271;
|
|
}
|
|
}
|
|
{
|
|
bool L_26 = ___0_scanOnly;
|
|
if (!L_26)
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
{
|
|
return (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
}
|
|
|
|
IL_00da:
|
|
{
|
|
int32_t L_27 = V_4;
|
|
bool L_28;
|
|
L_28 = RegexParser_IsCaptureSlot_m1EE21960AA0BB1C072BD9D765AFF8A6DFC3192C3(__this, L_27, NULL);
|
|
if (!L_28)
|
|
{
|
|
goto IL_00f4;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_29 = __this->____options_16;
|
|
int32_t L_30 = V_4;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_31 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_31);
|
|
RegexNode__ctor_m3352B98BE0DAD220AB653F929BD6D95689B5E07F(L_31, ((int32_t)13), L_29, L_30, NULL);
|
|
return L_31;
|
|
}
|
|
|
|
IL_00f4:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_32;
|
|
L_32 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
|
|
String_t* L_33;
|
|
L_33 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&V_4), L_32, NULL);
|
|
String_t* L_34;
|
|
L_34 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5A958635C67952829AC7E2FD5FB3A2C8DB51121E)), L_33, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_35;
|
|
L_35 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, L_34, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanBasicBackslash_mB0F1728AD89C8F196601B3110F0BA807FBC8FCEC_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0111:
|
|
{
|
|
bool L_36 = V_1;
|
|
if (L_36)
|
|
{
|
|
goto IL_0214;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_37 = V_0;
|
|
if ((((int32_t)L_37) < ((int32_t)((int32_t)49))))
|
|
{
|
|
goto IL_0214;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_38 = V_0;
|
|
if ((((int32_t)L_38) > ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_0214;
|
|
}
|
|
}
|
|
{
|
|
bool L_39;
|
|
L_39 = RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9(__this, NULL);
|
|
if (!L_39)
|
|
{
|
|
goto IL_01ca;
|
|
}
|
|
}
|
|
{
|
|
V_5 = (-1);
|
|
Il2CppChar L_40 = V_0;
|
|
V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_40, ((int32_t)48)));
|
|
int32_t L_41;
|
|
L_41 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
V_7 = ((int32_t)il2cpp_codegen_subtract(L_41, 1));
|
|
goto IL_01a3;
|
|
}
|
|
|
|
IL_0147:
|
|
{
|
|
int32_t L_42 = V_6;
|
|
bool L_43;
|
|
L_43 = RegexParser_IsCaptureSlot_m1EE21960AA0BB1C072BD9D765AFF8A6DFC3192C3(__this, L_42, NULL);
|
|
if (!L_43)
|
|
{
|
|
goto IL_0178;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_44 = __this->____caps_12;
|
|
if (!L_44)
|
|
{
|
|
goto IL_0174;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_45 = __this->____caps_12;
|
|
int32_t L_46 = V_6;
|
|
int32_t L_47 = L_46;
|
|
RuntimeObject* L_48 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_47);
|
|
NullCheck(L_45);
|
|
RuntimeObject* L_49;
|
|
L_49 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(28 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_45, L_48);
|
|
int32_t L_50 = V_7;
|
|
if ((((int32_t)((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_49, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))))) >= ((int32_t)L_50)))
|
|
{
|
|
goto IL_0178;
|
|
}
|
|
}
|
|
|
|
IL_0174:
|
|
{
|
|
int32_t L_51 = V_6;
|
|
V_5 = L_51;
|
|
}
|
|
|
|
IL_0178:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
int32_t L_52;
|
|
L_52 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if (!L_52)
|
|
{
|
|
goto IL_01ad;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_53;
|
|
L_53 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
Il2CppChar L_54 = L_53;
|
|
V_0 = L_54;
|
|
if ((((int32_t)L_54) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_01ad;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_55 = V_0;
|
|
if ((((int32_t)L_55) > ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_01ad;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_56 = V_6;
|
|
Il2CppChar L_57 = V_0;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_56, ((int32_t)10))), ((int32_t)il2cpp_codegen_subtract((int32_t)L_57, ((int32_t)48)))));
|
|
}
|
|
|
|
IL_01a3:
|
|
{
|
|
int32_t L_58 = V_6;
|
|
int32_t L_59 = __this->____captop_10;
|
|
if ((((int32_t)L_58) <= ((int32_t)L_59)))
|
|
{
|
|
goto IL_0147;
|
|
}
|
|
}
|
|
|
|
IL_01ad:
|
|
{
|
|
int32_t L_60 = V_5;
|
|
if ((((int32_t)L_60) < ((int32_t)0)))
|
|
{
|
|
goto IL_0271;
|
|
}
|
|
}
|
|
{
|
|
bool L_61 = ___0_scanOnly;
|
|
if (L_61)
|
|
{
|
|
goto IL_01c8;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_62 = __this->____options_16;
|
|
int32_t L_63 = V_5;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_64 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_64);
|
|
RegexNode__ctor_m3352B98BE0DAD220AB653F929BD6D95689B5E07F(L_64, ((int32_t)13), L_62, L_63, NULL);
|
|
return L_64;
|
|
}
|
|
|
|
IL_01c8:
|
|
{
|
|
return (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
}
|
|
|
|
IL_01ca:
|
|
{
|
|
int32_t L_65;
|
|
L_65 = RegexParser_ScanDecimal_m1BFFE19E0698D0EC97D81C655F3D04B608897161(__this, NULL);
|
|
V_8 = L_65;
|
|
bool L_66 = ___0_scanOnly;
|
|
if (!L_66)
|
|
{
|
|
goto IL_01d7;
|
|
}
|
|
}
|
|
{
|
|
return (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
}
|
|
|
|
IL_01d7:
|
|
{
|
|
int32_t L_67 = V_8;
|
|
bool L_68;
|
|
L_68 = RegexParser_IsCaptureSlot_m1EE21960AA0BB1C072BD9D765AFF8A6DFC3192C3(__this, L_67, NULL);
|
|
if (!L_68)
|
|
{
|
|
goto IL_01f1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_69 = __this->____options_16;
|
|
int32_t L_70 = V_8;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_71 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_71);
|
|
RegexNode__ctor_m3352B98BE0DAD220AB653F929BD6D95689B5E07F(L_71, ((int32_t)13), L_69, L_70, NULL);
|
|
return L_71;
|
|
}
|
|
|
|
IL_01f1:
|
|
{
|
|
int32_t L_72 = V_8;
|
|
if ((((int32_t)L_72) > ((int32_t)((int32_t)9))))
|
|
{
|
|
goto IL_0271;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_73;
|
|
L_73 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
|
|
String_t* L_74;
|
|
L_74 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&V_8), L_73, NULL);
|
|
String_t* L_75;
|
|
L_75 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5A958635C67952829AC7E2FD5FB3A2C8DB51121E)), L_74, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_76;
|
|
L_76 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, L_75, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_76, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanBasicBackslash_mB0F1728AD89C8F196601B3110F0BA807FBC8FCEC_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0214:
|
|
{
|
|
bool L_77 = V_1;
|
|
if (!L_77)
|
|
{
|
|
goto IL_0271;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_78 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
bool L_79;
|
|
L_79 = RegexCharClass_IsWordChar_m2912E5148F0F89512DDF7D629188ADA82961080C(L_78, NULL);
|
|
if (!L_79)
|
|
{
|
|
goto IL_0271;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_80;
|
|
L_80 = RegexParser_ScanCapname_mC9524DCBE266D677078207375663506AC32BE3F7(__this, NULL);
|
|
V_9 = L_80;
|
|
int32_t L_81;
|
|
L_81 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_81) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0271;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_82;
|
|
L_82 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
Il2CppChar L_83 = V_2;
|
|
if ((!(((uint32_t)L_82) == ((uint32_t)L_83))))
|
|
{
|
|
goto IL_0271;
|
|
}
|
|
}
|
|
{
|
|
bool L_84 = ___0_scanOnly;
|
|
if (!L_84)
|
|
{
|
|
goto IL_023e;
|
|
}
|
|
}
|
|
{
|
|
return (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
}
|
|
|
|
IL_023e:
|
|
{
|
|
String_t* L_85 = V_9;
|
|
bool L_86;
|
|
L_86 = RegexParser_IsCaptureName_m5DC0D7BF3AD01C929CB982048722BCD43797CEAE(__this, L_85, NULL);
|
|
if (!L_86)
|
|
{
|
|
goto IL_025e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_87 = __this->____options_16;
|
|
String_t* L_88 = V_9;
|
|
int32_t L_89;
|
|
L_89 = RegexParser_CaptureSlotFromName_mE18BA49BCA1CE4B972DC804E52C78E48905FEFAB(__this, L_88, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_90 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_90);
|
|
RegexNode__ctor_m3352B98BE0DAD220AB653F929BD6D95689B5E07F(L_90, ((int32_t)13), L_87, L_89, NULL);
|
|
return L_90;
|
|
}
|
|
|
|
IL_025e:
|
|
{
|
|
String_t* L_91 = V_9;
|
|
String_t* L_92;
|
|
L_92 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBC41C48BA95DA48A6EB8BFC17142E8F0E9E4C990)), L_91, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_93;
|
|
L_93 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, L_92, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_93, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanBasicBackslash_mB0F1728AD89C8F196601B3110F0BA807FBC8FCEC_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0271:
|
|
{
|
|
int32_t L_94 = V_3;
|
|
RegexParser_Textto_mA45B325CA6CCBC0012F1CBB0282AE114B34AEBE2_inline(__this, L_94, NULL);
|
|
Il2CppChar L_95;
|
|
L_95 = RegexParser_ScanCharEscape_mA872DDDD24E165F5B5C5F62DCFAE3B02CCF97C98(__this, NULL);
|
|
V_0 = L_95;
|
|
bool L_96;
|
|
L_96 = RegexParser_UseOptionI_mB3FB0740ED596E6ABC827E903DCE8AA4258BA701(__this, NULL);
|
|
if (!L_96)
|
|
{
|
|
goto IL_0299;
|
|
}
|
|
}
|
|
{
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_97 = __this->____culture_7;
|
|
NullCheck(L_97);
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_98;
|
|
L_98 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_97);
|
|
Il2CppChar L_99 = V_0;
|
|
NullCheck(L_98);
|
|
Il2CppChar L_100;
|
|
L_100 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_98, L_99);
|
|
V_0 = L_100;
|
|
}
|
|
|
|
IL_0299:
|
|
{
|
|
bool L_101 = ___0_scanOnly;
|
|
if (L_101)
|
|
{
|
|
goto IL_02ab;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_102 = __this->____options_16;
|
|
Il2CppChar L_103 = V_0;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_104 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_104);
|
|
RegexNode__ctor_mFA693535F5B9610F075D30F19626A8AFFA879D7B(L_104, ((int32_t)9), L_102, L_103, NULL);
|
|
return L_104;
|
|
}
|
|
|
|
IL_02ab:
|
|
{
|
|
return (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
}
|
|
}
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanDollar()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexParser_ScanDollar_mB8FD395274F630278543211B2BB583AA5B03D96A (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
int32_t V_6 = 0;
|
|
int32_t V_7 = 0;
|
|
String_t* V_8 = NULL;
|
|
int32_t V_9 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_2 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
RegexNode__ctor_mFA693535F5B9610F075D30F19626A8AFFA879D7B(L_2, ((int32_t)9), L_1, ((int32_t)36), NULL);
|
|
return L_2;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
Il2CppChar L_3;
|
|
L_3 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
V_0 = L_3;
|
|
int32_t L_4;
|
|
L_4 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
V_2 = L_4;
|
|
int32_t L_5 = V_2;
|
|
V_3 = L_5;
|
|
Il2CppChar L_6 = V_0;
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7;
|
|
L_7 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_7) <= ((int32_t)1)))
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)1;
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
Il2CppChar L_8;
|
|
L_8 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
V_0 = L_8;
|
|
goto IL_0049;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
V_1 = (bool)0;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
Il2CppChar L_9 = V_0;
|
|
if ((((int32_t)L_9) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_0158;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_10 = V_0;
|
|
if ((((int32_t)L_10) > ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_0158;
|
|
}
|
|
}
|
|
{
|
|
bool L_11 = V_1;
|
|
if (L_11)
|
|
{
|
|
goto IL_0117;
|
|
}
|
|
}
|
|
{
|
|
bool L_12;
|
|
L_12 = RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9(__this, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_0117;
|
|
}
|
|
}
|
|
{
|
|
V_4 = (-1);
|
|
Il2CppChar L_13 = V_0;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, ((int32_t)48)));
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
int32_t L_14 = V_5;
|
|
bool L_15;
|
|
L_15 = RegexParser_IsCaptureSlot_m1EE21960AA0BB1C072BD9D765AFF8A6DFC3192C3(__this, L_14, NULL);
|
|
if (!L_15)
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_5;
|
|
V_4 = L_16;
|
|
int32_t L_17;
|
|
L_17 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
V_3 = L_17;
|
|
goto IL_00de;
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
Il2CppChar L_18 = V_0;
|
|
V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, ((int32_t)48)));
|
|
int32_t L_19 = V_5;
|
|
if ((((int32_t)L_19) > ((int32_t)((int32_t)214748364))))
|
|
{
|
|
goto IL_00ad;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_20 = V_5;
|
|
if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)214748364)))))
|
|
{
|
|
goto IL_00b9;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_21 = V_6;
|
|
if ((((int32_t)L_21) <= ((int32_t)7)))
|
|
{
|
|
goto IL_00b9;
|
|
}
|
|
}
|
|
|
|
IL_00ad:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_22;
|
|
L_22 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD6B452A9F938870B52555F4DB4CE0E35E48B1FA6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanDollar_mB8FD395274F630278543211B2BB583AA5B03D96A_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_00b9:
|
|
{
|
|
int32_t L_23 = V_5;
|
|
int32_t L_24 = V_6;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_23, ((int32_t)10))), L_24));
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
int32_t L_25 = V_5;
|
|
bool L_26;
|
|
L_26 = RegexParser_IsCaptureSlot_m1EE21960AA0BB1C072BD9D765AFF8A6DFC3192C3(__this, L_25, NULL);
|
|
if (!L_26)
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_27 = V_5;
|
|
V_4 = L_27;
|
|
int32_t L_28;
|
|
L_28 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
V_3 = L_28;
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
int32_t L_29;
|
|
L_29 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_29) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00f8;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_30;
|
|
L_30 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
Il2CppChar L_31 = L_30;
|
|
V_0 = L_31;
|
|
if ((((int32_t)L_31) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_00f8;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_32 = V_0;
|
|
if ((((int32_t)L_32) <= ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_0090;
|
|
}
|
|
}
|
|
|
|
IL_00f8:
|
|
{
|
|
int32_t L_33 = V_3;
|
|
RegexParser_Textto_mA45B325CA6CCBC0012F1CBB0282AE114B34AEBE2_inline(__this, L_33, NULL);
|
|
int32_t L_34 = V_4;
|
|
if ((((int32_t)L_34) < ((int32_t)0)))
|
|
{
|
|
goto IL_0229;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_35 = __this->____options_16;
|
|
int32_t L_36 = V_4;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_37 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_37);
|
|
RegexNode__ctor_m3352B98BE0DAD220AB653F929BD6D95689B5E07F(L_37, ((int32_t)13), L_35, L_36, NULL);
|
|
return L_37;
|
|
}
|
|
|
|
IL_0117:
|
|
{
|
|
int32_t L_38;
|
|
L_38 = RegexParser_ScanDecimal_m1BFFE19E0698D0EC97D81C655F3D04B608897161(__this, NULL);
|
|
V_7 = L_38;
|
|
bool L_39 = V_1;
|
|
if (!L_39)
|
|
{
|
|
goto IL_013b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_40;
|
|
L_40 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_40) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0229;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_41;
|
|
L_41 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
if ((!(((uint32_t)L_41) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_0229;
|
|
}
|
|
}
|
|
|
|
IL_013b:
|
|
{
|
|
int32_t L_42 = V_7;
|
|
bool L_43;
|
|
L_43 = RegexParser_IsCaptureSlot_m1EE21960AA0BB1C072BD9D765AFF8A6DFC3192C3(__this, L_42, NULL);
|
|
if (!L_43)
|
|
{
|
|
goto IL_0229;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_44 = __this->____options_16;
|
|
int32_t L_45 = V_7;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_46 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_46);
|
|
RegexNode__ctor_m3352B98BE0DAD220AB653F929BD6D95689B5E07F(L_46, ((int32_t)13), L_44, L_45, NULL);
|
|
return L_46;
|
|
}
|
|
|
|
IL_0158:
|
|
{
|
|
bool L_47 = V_1;
|
|
if (!L_47)
|
|
{
|
|
goto IL_01a7;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_48 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
bool L_49;
|
|
L_49 = RegexCharClass_IsWordChar_m2912E5148F0F89512DDF7D629188ADA82961080C(L_48, NULL);
|
|
if (!L_49)
|
|
{
|
|
goto IL_01a7;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_50;
|
|
L_50 = RegexParser_ScanCapname_mC9524DCBE266D677078207375663506AC32BE3F7(__this, NULL);
|
|
V_8 = L_50;
|
|
int32_t L_51;
|
|
L_51 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_51) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0229;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_52;
|
|
L_52 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
if ((!(((uint32_t)L_52) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_0229;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_53 = V_8;
|
|
bool L_54;
|
|
L_54 = RegexParser_IsCaptureName_m5DC0D7BF3AD01C929CB982048722BCD43797CEAE(__this, L_53, NULL);
|
|
if (!L_54)
|
|
{
|
|
goto IL_0229;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_55 = __this->____options_16;
|
|
String_t* L_56 = V_8;
|
|
int32_t L_57;
|
|
L_57 = RegexParser_CaptureSlotFromName_mE18BA49BCA1CE4B972DC804E52C78E48905FEFAB(__this, L_56, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_58 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_58);
|
|
RegexNode__ctor_m3352B98BE0DAD220AB653F929BD6D95689B5E07F(L_58, ((int32_t)13), L_55, L_57, NULL);
|
|
return L_58;
|
|
}
|
|
|
|
IL_01a7:
|
|
{
|
|
bool L_59 = V_1;
|
|
if (L_59)
|
|
{
|
|
goto IL_0229;
|
|
}
|
|
}
|
|
{
|
|
V_9 = 1;
|
|
Il2CppChar L_60 = V_0;
|
|
if ((!(((uint32_t)L_60) <= ((uint32_t)((int32_t)43)))))
|
|
{
|
|
goto IL_01d2;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_61 = V_0;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_61, ((int32_t)36))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_01de;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_020e;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_01f4;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_01fe;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_62 = V_0;
|
|
if ((((int32_t)L_62) == ((int32_t)((int32_t)43))))
|
|
{
|
|
goto IL_0204;
|
|
}
|
|
}
|
|
{
|
|
goto IL_020e;
|
|
}
|
|
|
|
IL_01d2:
|
|
{
|
|
Il2CppChar L_63 = V_0;
|
|
if ((((int32_t)L_63) == ((int32_t)((int32_t)95))))
|
|
{
|
|
goto IL_020a;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_64 = V_0;
|
|
if ((((int32_t)L_64) == ((int32_t)((int32_t)96))))
|
|
{
|
|
goto IL_01f9;
|
|
}
|
|
}
|
|
{
|
|
goto IL_020e;
|
|
}
|
|
|
|
IL_01de:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
int32_t L_65 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_66 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_66);
|
|
RegexNode__ctor_mFA693535F5B9610F075D30F19626A8AFFA879D7B(L_66, ((int32_t)9), L_65, ((int32_t)36), NULL);
|
|
return L_66;
|
|
}
|
|
|
|
IL_01f4:
|
|
{
|
|
V_9 = 0;
|
|
goto IL_020e;
|
|
}
|
|
|
|
IL_01f9:
|
|
{
|
|
V_9 = (-1);
|
|
goto IL_020e;
|
|
}
|
|
|
|
IL_01fe:
|
|
{
|
|
V_9 = ((int32_t)-2);
|
|
goto IL_020e;
|
|
}
|
|
|
|
IL_0204:
|
|
{
|
|
V_9 = ((int32_t)-3);
|
|
goto IL_020e;
|
|
}
|
|
|
|
IL_020a:
|
|
{
|
|
V_9 = ((int32_t)-4);
|
|
}
|
|
|
|
IL_020e:
|
|
{
|
|
int32_t L_67 = V_9;
|
|
if ((((int32_t)L_67) == ((int32_t)1)))
|
|
{
|
|
goto IL_0229;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
int32_t L_68 = __this->____options_16;
|
|
int32_t L_69 = V_9;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_70 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_70);
|
|
RegexNode__ctor_m3352B98BE0DAD220AB653F929BD6D95689B5E07F(L_70, ((int32_t)13), L_68, L_69, NULL);
|
|
return L_70;
|
|
}
|
|
|
|
IL_0229:
|
|
{
|
|
int32_t L_71 = V_2;
|
|
RegexParser_Textto_mA45B325CA6CCBC0012F1CBB0282AE114B34AEBE2_inline(__this, L_71, NULL);
|
|
int32_t L_72 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_73 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_73);
|
|
RegexNode__ctor_mFA693535F5B9610F075D30F19626A8AFFA879D7B(L_73, ((int32_t)9), L_72, ((int32_t)36), NULL);
|
|
return L_73;
|
|
}
|
|
}
|
|
// System.String System.Text.RegularExpressions.RegexParser::ScanCapname()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexParser_ScanCapname_mC9524DCBE266D677078207375663506AC32BE3F7 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
V_0 = L_0;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Il2CppChar L_1;
|
|
L_1 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = RegexCharClass_IsWordChar_m2912E5148F0F89512DDF7D629188ADA82961080C(L_1, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_MoveLeft_m57BB7A0146D0E8834D715667048B75A517761AD5(__this, NULL);
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_3;
|
|
L_3 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_3) > ((int32_t)0)))
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
String_t* L_4 = __this->____pattern_5;
|
|
int32_t L_5 = V_0;
|
|
int32_t L_6;
|
|
L_6 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
int32_t L_7 = V_0;
|
|
NullCheck(L_4);
|
|
String_t* L_8;
|
|
L_8 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_4, L_5, ((int32_t)il2cpp_codegen_subtract(L_6, L_7)), NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Char System.Text.RegularExpressions.RegexParser::ScanOctal()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_ScanOctal_m95EA0AE4B61D5418914DDD3815C6277471B4EDFD (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
V_2 = 3;
|
|
int32_t L_0 = V_2;
|
|
int32_t L_1;
|
|
L_1 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_0) <= ((int32_t)L_1)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
V_2 = L_2;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
V_1 = 0;
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
int32_t L_3 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_multiply(L_3, 8));
|
|
int32_t L_4 = V_1;
|
|
int32_t L_5 = V_0;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_4, L_5));
|
|
bool L_6;
|
|
L_6 = RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9(__this, NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_1;
|
|
if ((((int32_t)L_7) >= ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
int32_t L_8 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract(L_8, 1));
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
int32_t L_9 = V_2;
|
|
if ((((int32_t)L_9) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_10;
|
|
L_10 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
int32_t L_11 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, ((int32_t)48)));
|
|
V_0 = L_11;
|
|
if ((!(((uint32_t)L_11) > ((uint32_t)7))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
int32_t L_12 = V_1;
|
|
V_1 = ((int32_t)(L_12&((int32_t)255)));
|
|
int32_t L_13 = V_1;
|
|
return ((int32_t)(uint16_t)L_13);
|
|
}
|
|
}
|
|
// System.Int32 System.Text.RegularExpressions.RegexParser::ScanDecimal()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_ScanDecimal_m1BFFE19E0698D0EC97D81C655F3D04B608897161 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
int32_t L_0 = V_0;
|
|
if ((((int32_t)L_0) > ((int32_t)((int32_t)214748364))))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = V_0;
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)214748364)))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = V_1;
|
|
if ((((int32_t)L_2) <= ((int32_t)7)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3;
|
|
L_3 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD6B452A9F938870B52555F4DB4CE0E35E48B1FA6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanDecimal_m1BFFE19E0698D0EC97D81C655F3D04B608897161_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_multiply(L_4, ((int32_t)10)));
|
|
int32_t L_5 = V_0;
|
|
int32_t L_6 = V_1;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_5, L_6));
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
int32_t L_7;
|
|
L_7 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_7) <= ((int32_t)0)))
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_8;
|
|
L_8 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
int32_t L_9 = ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, ((int32_t)48))));
|
|
V_1 = L_9;
|
|
if ((!(((uint32_t)L_9) > ((uint32_t)((int32_t)9)))))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Char System.Text.RegularExpressions.RegexParser::ScanHex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_ScanHex_mDD96A112E30DABDB5BC0C558373DA5607F8ACF95 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_c, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
V_0 = 0;
|
|
int32_t L_0;
|
|
L_0 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
int32_t L_1 = ___0_c;
|
|
if ((((int32_t)L_0) < ((int32_t)L_1)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
int32_t L_2 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_multiply(L_2, ((int32_t)16)));
|
|
int32_t L_3 = V_0;
|
|
int32_t L_4 = V_1;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_3, L_4));
|
|
int32_t L_5 = ___0_c;
|
|
___0_c = ((int32_t)il2cpp_codegen_subtract(L_5, 1));
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
int32_t L_6 = ___0_c;
|
|
if ((((int32_t)L_6) <= ((int32_t)0)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_7;
|
|
L_7 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
int32_t L_8;
|
|
L_8 = RegexParser_HexDigit_m40FED0646820843A4C35AF9349E27B0E0A84A5CE(L_7, NULL);
|
|
int32_t L_9 = L_8;
|
|
V_1 = L_9;
|
|
if ((((int32_t)L_9) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
int32_t L_10 = ___0_c;
|
|
if ((((int32_t)L_10) <= ((int32_t)0)))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_11;
|
|
L_11 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7D9371213C85404B41C69E8C41C1114818C7F4BF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanHex_mDD96A112E30DABDB5BC0C558373DA5607F8ACF95_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
int32_t L_12 = V_0;
|
|
return ((int32_t)(uint16_t)L_12);
|
|
}
|
|
}
|
|
// System.Int32 System.Text.RegularExpressions.RegexParser::HexDigit(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_HexDigit_m40FED0646820843A4C35AF9349E27B0E0A84A5CE (Il2CppChar ___0_ch, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Il2CppChar L_0 = ___0_ch;
|
|
int32_t L_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, ((int32_t)48)));
|
|
V_0 = L_1;
|
|
if ((!(((uint32_t)L_1) <= ((uint32_t)((int32_t)9)))))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
Il2CppChar L_3 = ___0_ch;
|
|
int32_t L_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, ((int32_t)97)));
|
|
V_0 = L_4;
|
|
if ((!(((uint32_t)L_4) <= ((uint32_t)5))))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_0;
|
|
return ((int32_t)il2cpp_codegen_add(L_5, ((int32_t)10)));
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
Il2CppChar L_6 = ___0_ch;
|
|
int32_t L_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, ((int32_t)65)));
|
|
V_0 = L_7;
|
|
if ((!(((uint32_t)L_7) <= ((uint32_t)5))))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = V_0;
|
|
return ((int32_t)il2cpp_codegen_add(L_8, ((int32_t)10)));
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
// System.Char System.Text.RegularExpressions.RegexParser::ScanControl()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_ScanControl_m26274BE5776CF5AC03E8EAC7B5972C0A8AF2A95B (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
Il2CppChar V_0 = 0x0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_0) > ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_1;
|
|
L_1 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9C3D04385AD6997A289AF27CABA813829BDB3298)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanControl_m26274BE5776CF5AC03E8EAC7B5972C0A8AF2A95B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Il2CppChar L_2;
|
|
L_2 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
V_0 = L_2;
|
|
Il2CppChar L_3 = V_0;
|
|
if ((((int32_t)L_3) < ((int32_t)((int32_t)97))))
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_4 = V_0;
|
|
if ((((int32_t)L_4) > ((int32_t)((int32_t)122))))
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_5 = V_0;
|
|
V_0 = ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_5, ((int32_t)32))));
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
Il2CppChar L_6 = V_0;
|
|
int32_t L_7 = ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, ((int32_t)64))));
|
|
V_0 = L_7;
|
|
if ((((int32_t)L_7) >= ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_8 = V_0;
|
|
return L_8;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_9;
|
|
L_9 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5D3712231996A1C41EDA4CA1C12669294FE63D36)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanControl_m26274BE5776CF5AC03E8EAC7B5972C0A8AF2A95B_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::IsOnlyTopOption(System.Text.RegularExpressions.RegexOptions)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsOnlyTopOption_mAA13B95864B8B314B8B6689B47FA4BFE3B433280 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_option, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_option;
|
|
if ((((int32_t)L_0) == ((int32_t)((int32_t)64))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_option;
|
|
if ((((int32_t)L_1) == ((int32_t)((int32_t)512))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___0_option;
|
|
return (bool)((((int32_t)L_2) == ((int32_t)((int32_t)256)))? 1 : 0);
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::ScanOptions()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_ScanOptions_m56F01464F53558D3AF3BF1CD874A2656930AF31C (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_0059;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
Il2CppChar L_0;
|
|
L_0 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
V_0 = L_0;
|
|
Il2CppChar L_1 = V_0;
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)45)))))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)1;
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Il2CppChar L_2 = V_0;
|
|
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)43)))))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
Il2CppChar L_3 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
int32_t L_4;
|
|
L_4 = RegexParser_OptionFromCode_m7E2E8164FA38C45692BC68054E574F00B65F383A(L_3, NULL);
|
|
V_2 = L_4;
|
|
int32_t L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_2;
|
|
bool L_7;
|
|
L_7 = RegexParser_IsOnlyTopOption_mAA13B95864B8B314B8B6689B47FA4BFE3B433280(__this, L_6, NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
bool L_8 = V_1;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = __this->____options_16;
|
|
int32_t L_10 = V_2;
|
|
__this->____options_16 = ((int32_t)((int32_t)L_9&(int32_t)((~L_10))));
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
int32_t L_11 = __this->____options_16;
|
|
int32_t L_12 = V_2;
|
|
__this->____options_16 = ((int32_t)((int32_t)L_11|(int32_t)L_12));
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
int32_t L_13;
|
|
L_13 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_13) > ((int32_t)0)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Char System.Text.RegularExpressions.RegexParser::ScanCharEscape()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_ScanCharEscape_mA872DDDD24E165F5B5C5F62DCFAE3B02CCF97C98 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
{
|
|
Il2CppChar L_0;
|
|
L_0 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
V_0 = L_0;
|
|
Il2CppChar L_1 = V_0;
|
|
if ((((int32_t)L_1) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = V_0;
|
|
if ((((int32_t)L_2) > ((int32_t)((int32_t)55))))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_MoveLeft_m57BB7A0146D0E8834D715667048B75A517761AD5(__this, NULL);
|
|
Il2CppChar L_3;
|
|
L_3 = RegexParser_ScanOctal_m95EA0AE4B61D5418914DDD3815C6277471B4EDFD(__this, NULL);
|
|
return L_3;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
Il2CppChar L_4 = V_0;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, ((int32_t)97))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0086;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_00a3;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_5 = V_0;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_5, ((int32_t)110))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0090;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_00a3;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_00a3;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_00a3;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_00a3;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_0099;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_00a3;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_0076;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_00a3;
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
Il2CppChar L_6;
|
|
L_6 = RegexParser_ScanHex_mDD96A112E30DABDB5BC0C558373DA5607F8ACF95(__this, 2, NULL);
|
|
return L_6;
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
Il2CppChar L_7;
|
|
L_7 = RegexParser_ScanHex_mDD96A112E30DABDB5BC0C558373DA5607F8ACF95(__this, 4, NULL);
|
|
return L_7;
|
|
}
|
|
|
|
IL_0086:
|
|
{
|
|
return 7;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
return 8;
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
return ((int32_t)27);
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
return ((int32_t)12);
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
return ((int32_t)10);
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
return ((int32_t)13);
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
return ((int32_t)9);
|
|
}
|
|
|
|
IL_0099:
|
|
{
|
|
return ((int32_t)11);
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
Il2CppChar L_8;
|
|
L_8 = RegexParser_ScanControl_m26274BE5776CF5AC03E8EAC7B5972C0A8AF2A95B(__this, NULL);
|
|
return L_8;
|
|
}
|
|
|
|
IL_00a3:
|
|
{
|
|
bool L_9;
|
|
L_9 = RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9(__this, NULL);
|
|
if (L_9)
|
|
{
|
|
goto IL_00cb;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_10 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
bool L_11;
|
|
L_11 = RegexCharClass_IsWordChar_m2912E5148F0F89512DDF7D629188ADA82961080C(L_10, NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_00cb;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)));
|
|
String_t* L_12;
|
|
L_12 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C((&V_0), NULL);
|
|
String_t* L_13;
|
|
L_13 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCB62281B27D708B122BB052F6C5C203A9C9CA10B)), L_12, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_14;
|
|
L_14 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, L_13, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharEscape_mA872DDDD24E165F5B5C5F62DCFAE3B02CCF97C98_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
Il2CppChar L_15 = V_0;
|
|
return L_15;
|
|
}
|
|
}
|
|
// System.String System.Text.RegularExpressions.RegexParser::ParseProperty()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexParser_ParseProperty_m3B765A1B30A38A723CAFE63AF9D6F3D08C7C6F38 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
int32_t V_1 = 0;
|
|
String_t* G_B11_0 = NULL;
|
|
String_t* G_B10_0 = NULL;
|
|
String_t* G_B12_0 = NULL;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_0) >= ((int32_t)3)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_1;
|
|
L_1 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5CC823378CCA508A81792DDC107D7253062D4F0D)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ParseProperty_m3B765A1B30A38A723CAFE63AF9D6F3D08C7C6F38_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Il2CppChar L_2;
|
|
L_2 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
V_0 = L_2;
|
|
Il2CppChar L_3 = V_0;
|
|
if ((((int32_t)L_3) == ((int32_t)((int32_t)123))))
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4;
|
|
L_4 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral326FE389E7BF8CF01EAC82490F9CDC8DC7132486)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ParseProperty_m3B765A1B30A38A723CAFE63AF9D6F3D08C7C6F38_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
int32_t L_5;
|
|
L_5 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
V_1 = L_5;
|
|
goto IL_0052;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
Il2CppChar L_6;
|
|
L_6 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
V_0 = L_6;
|
|
Il2CppChar L_7 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
bool L_8;
|
|
L_8 = RegexCharClass_IsWordChar_m2912E5148F0F89512DDF7D629188ADA82961080C(L_7, NULL);
|
|
if (L_8)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_9 = V_0;
|
|
if ((((int32_t)L_9) == ((int32_t)((int32_t)45))))
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_MoveLeft_m57BB7A0146D0E8834D715667048B75A517761AD5(__this, NULL);
|
|
goto IL_005b;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
int32_t L_10;
|
|
L_10 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_10) > ((int32_t)0)))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
String_t* L_11 = __this->____pattern_5;
|
|
int32_t L_12 = V_1;
|
|
int32_t L_13;
|
|
L_13 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_11);
|
|
String_t* L_15;
|
|
L_15 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_11, L_12, ((int32_t)il2cpp_codegen_subtract(L_13, L_14)), NULL);
|
|
int32_t L_16;
|
|
L_16 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
G_B10_0 = L_15;
|
|
if (!L_16)
|
|
{
|
|
G_B11_0 = L_15;
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_17;
|
|
L_17 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
G_B11_0 = G_B10_0;
|
|
if ((((int32_t)L_17) == ((int32_t)((int32_t)125))))
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_18;
|
|
L_18 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5CC823378CCA508A81792DDC107D7253062D4F0D)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ParseProperty_m3B765A1B30A38A723CAFE63AF9D6F3D08C7C6F38_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
return G_B12_0;
|
|
}
|
|
}
|
|
// System.Int32 System.Text.RegularExpressions.RegexParser::TypeFromCode(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_TypeFromCode_m11B176B0B9A6EF391370E021B111101AE56F4CC6 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, Il2CppChar ___0_ch, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = ___0_ch;
|
|
if ((!(((uint32_t)L_0) <= ((uint32_t)((int32_t)71)))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_1 = ___0_ch;
|
|
if ((((int32_t)L_1) == ((int32_t)((int32_t)65))))
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___0_ch;
|
|
if ((((int32_t)L_2) == ((int32_t)((int32_t)66))))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_3 = ___0_ch;
|
|
if ((((int32_t)L_3) == ((int32_t)((int32_t)71))))
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
Il2CppChar L_4 = ___0_ch;
|
|
if ((((int32_t)L_4) == ((int32_t)((int32_t)90))))
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_5 = ___0_ch;
|
|
if ((((int32_t)L_5) == ((int32_t)((int32_t)98))))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_6 = ___0_ch;
|
|
if ((((int32_t)L_6) == ((int32_t)((int32_t)122))))
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
bool L_7;
|
|
L_7 = RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9(__this, NULL);
|
|
if (L_7)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
return ((int32_t)16);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return ((int32_t)41);
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
bool L_8;
|
|
L_8 = RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9(__this, NULL);
|
|
if (L_8)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
return ((int32_t)17);
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
return ((int32_t)42);
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
return ((int32_t)18);
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
return ((int32_t)19);
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
return ((int32_t)20);
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
return ((int32_t)21);
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
return ((int32_t)22);
|
|
}
|
|
}
|
|
// System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.RegexParser::OptionFromCode(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_OptionFromCode_m7E2E8164FA38C45692BC68054E574F00B65F383A (Il2CppChar ___0_ch, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = ___0_ch;
|
|
if ((((int32_t)L_0) < ((int32_t)((int32_t)65))))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_1 = ___0_ch;
|
|
if ((((int32_t)L_1) > ((int32_t)((int32_t)90))))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___0_ch;
|
|
___0_ch = ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, ((int32_t)32))));
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
Il2CppChar L_3 = ___0_ch;
|
|
if ((!(((uint32_t)L_3) <= ((uint32_t)((int32_t)105)))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_4 = ___0_ch;
|
|
if ((((int32_t)L_4) == ((int32_t)((int32_t)101))))
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_5 = ___0_ch;
|
|
if ((((int32_t)L_5) == ((int32_t)((int32_t)105))))
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
Il2CppChar L_6 = ___0_ch;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, ((int32_t)109))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_7 = ___0_ch;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)120))))
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
return (int32_t)(1);
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
return (int32_t)(((int32_t)64));
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
return (int32_t)(2);
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
return (int32_t)(4);
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
return (int32_t)(((int32_t)16));
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
return (int32_t)(((int32_t)32));
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
return (int32_t)(((int32_t)256));
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
return (int32_t)(0);
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::CountCaptures()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_CountCaptures_m2ECDC9ED534F245A12224038BB86DE5D66DB56A3 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
RegexParser_NoteCaptureSlot_m21BD1F90FF2C62FFA445303D574D271757D62222(__this, 0, 0, NULL);
|
|
__this->____autocap_8 = 1;
|
|
goto IL_01c3;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
int32_t L_0;
|
|
L_0 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
V_1 = L_0;
|
|
Il2CppChar L_1;
|
|
L_1 = RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9(__this, NULL);
|
|
V_0 = L_1;
|
|
Il2CppChar L_2 = V_0;
|
|
if ((!(((uint32_t)L_2) <= ((uint32_t)((int32_t)40)))))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_3 = V_0;
|
|
if ((((int32_t)L_3) == ((int32_t)((int32_t)35))))
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_4 = V_0;
|
|
if ((((int32_t)L_4) == ((int32_t)((int32_t)40))))
|
|
{
|
|
goto IL_00a1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01c3;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
Il2CppChar L_5 = V_0;
|
|
if ((((int32_t)L_5) == ((int32_t)((int32_t)41))))
|
|
{
|
|
goto IL_008b;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_6 = V_0;
|
|
if ((((int32_t)L_6) == ((int32_t)((int32_t)91))))
|
|
{
|
|
goto IL_007d;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_7 = V_0;
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)92)))))
|
|
{
|
|
goto IL_01c3;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8;
|
|
L_8 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_8) <= ((int32_t)0)))
|
|
{
|
|
goto IL_01c3;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_9;
|
|
L_9 = RegexParser_ScanBackslash_mAAE11106CB78789803468679894E1D7AE6B0C92E(__this, (bool)1, NULL);
|
|
goto IL_01c3;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
bool L_10;
|
|
L_10 = RegexParser_UseOptionX_m0BFB48EDC8A2F38A29A8F6CEC85080D9E04010FC(__this, NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_01c3;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_MoveLeft_m57BB7A0146D0E8834D715667048B75A517761AD5(__this, NULL);
|
|
RegexParser_ScanBlank_m4C1B18EC7A5DF860363CA17E69B20A00023B5E82(__this, NULL);
|
|
goto IL_01c3;
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_11;
|
|
L_11 = RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D(__this, (bool)0, (bool)1, NULL);
|
|
goto IL_01c3;
|
|
}
|
|
|
|
IL_008b:
|
|
{
|
|
bool L_12;
|
|
L_12 = RegexParser_EmptyOptionsStack_mC16A4D18503FF296911710732A95062A8279163B(__this, NULL);
|
|
if (L_12)
|
|
{
|
|
goto IL_01c3;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_PopOptions_mAE4848419A71162B8E563781AC817A8D6ACEB91B(__this, NULL);
|
|
goto IL_01c3;
|
|
}
|
|
|
|
IL_00a1:
|
|
{
|
|
int32_t L_13;
|
|
L_13 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_13) < ((int32_t)2)))
|
|
{
|
|
goto IL_00d0;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_14;
|
|
L_14 = RegexParser_RightChar_m6BEE1FBF048A2DFC53235447BB2F6AC8C56A4147(__this, 1, NULL);
|
|
if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)35)))))
|
|
{
|
|
goto IL_00d0;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_15;
|
|
L_15 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)63)))))
|
|
{
|
|
goto IL_00d0;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_MoveLeft_m57BB7A0146D0E8834D715667048B75A517761AD5(__this, NULL);
|
|
RegexParser_ScanBlank_m4C1B18EC7A5DF860363CA17E69B20A00023B5E82(__this, NULL);
|
|
goto IL_01bc;
|
|
}
|
|
|
|
IL_00d0:
|
|
{
|
|
RegexParser_PushOptions_m6E501EE3C5D6FE990ED74935A9AC9A6E834FD968(__this, NULL);
|
|
int32_t L_16;
|
|
L_16 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_16) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0194;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_17;
|
|
L_17 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_17) == ((uint32_t)((int32_t)63)))))
|
|
{
|
|
goto IL_0194;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
int32_t L_18;
|
|
L_18 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_18) <= ((int32_t)1)))
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_19;
|
|
L_19 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((((int32_t)L_19) == ((int32_t)((int32_t)60))))
|
|
{
|
|
goto IL_0112;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_20;
|
|
L_20 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)39)))))
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
|
|
IL_0112:
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
Il2CppChar L_21;
|
|
L_21 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
V_0 = L_21;
|
|
Il2CppChar L_22 = V_0;
|
|
if ((((int32_t)L_22) == ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_23 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
bool L_24;
|
|
L_24 = RegexCharClass_IsWordChar_m2912E5148F0F89512DDF7D629188ADA82961080C(L_23, NULL);
|
|
if (!L_24)
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_25 = V_0;
|
|
if ((((int32_t)L_25) < ((int32_t)((int32_t)49))))
|
|
{
|
|
goto IL_014b;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_26 = V_0;
|
|
if ((((int32_t)L_26) > ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_014b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_27;
|
|
L_27 = RegexParser_ScanDecimal_m1BFFE19E0698D0EC97D81C655F3D04B608897161(__this, NULL);
|
|
int32_t L_28 = V_1;
|
|
RegexParser_NoteCaptureSlot_m21BD1F90FF2C62FFA445303D574D271757D62222(__this, L_27, L_28, NULL);
|
|
goto IL_01bc;
|
|
}
|
|
|
|
IL_014b:
|
|
{
|
|
String_t* L_29;
|
|
L_29 = RegexParser_ScanCapname_mC9524DCBE266D677078207375663506AC32BE3F7(__this, NULL);
|
|
int32_t L_30 = V_1;
|
|
RegexParser_NoteCaptureName_m5CDAF94FD43B665DE067B6DC02BD72A315D48FFD(__this, L_29, L_30, NULL);
|
|
goto IL_01bc;
|
|
}
|
|
|
|
IL_015a:
|
|
{
|
|
RegexParser_ScanOptions_m56F01464F53558D3AF3BF1CD874A2656930AF31C(__this, NULL);
|
|
int32_t L_31;
|
|
L_31 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_31) <= ((int32_t)0)))
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_32;
|
|
L_32 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_32) == ((uint32_t)((int32_t)41)))))
|
|
{
|
|
goto IL_0181;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9(__this, NULL);
|
|
RegexParser_PopKeepOptions_m911F83DFA290ED90B06D3D3166553E6205C256C1(__this, NULL);
|
|
goto IL_01bc;
|
|
}
|
|
|
|
IL_0181:
|
|
{
|
|
Il2CppChar L_33;
|
|
L_33 = RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91(__this, NULL);
|
|
if ((!(((uint32_t)L_33) == ((uint32_t)((int32_t)40)))))
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
}
|
|
{
|
|
__this->____ignoreNextParen_18 = (bool)1;
|
|
goto IL_01c3;
|
|
}
|
|
|
|
IL_0194:
|
|
{
|
|
bool L_34;
|
|
L_34 = RegexParser_UseOptionN_mD441B71AC8368C644B8D9A0CCB3DB8BD681639B3(__this, NULL);
|
|
if (L_34)
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
}
|
|
{
|
|
bool L_35 = __this->____ignoreNextParen_18;
|
|
if (L_35)
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_36 = __this->____autocap_8;
|
|
V_2 = L_36;
|
|
int32_t L_37 = V_2;
|
|
__this->____autocap_8 = ((int32_t)il2cpp_codegen_add(L_37, 1));
|
|
int32_t L_38 = V_2;
|
|
int32_t L_39 = V_1;
|
|
RegexParser_NoteCaptureSlot_m21BD1F90FF2C62FFA445303D574D271757D62222(__this, L_38, L_39, NULL);
|
|
}
|
|
|
|
IL_01bc:
|
|
{
|
|
__this->____ignoreNextParen_18 = (bool)0;
|
|
}
|
|
|
|
IL_01c3:
|
|
{
|
|
int32_t L_40;
|
|
L_40 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
if ((((int32_t)L_40) > ((int32_t)0)))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
RegexParser_AssignNameSlots_mC5738B99DE328E7D1FA7279A717640EC2044857E(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::NoteCaptureSlot(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_NoteCaptureSlot_m21BD1F90FF2C62FFA445303D574D271757D62222 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_i, int32_t ___1_pos, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____caps_12;
|
|
int32_t L_1 = ___0_i;
|
|
int32_t L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_2);
|
|
NullCheck(L_0);
|
|
bool L_4;
|
|
L_4 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(25 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_0, L_3);
|
|
if (L_4)
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_5 = __this->____caps_12;
|
|
int32_t L_6 = ___0_i;
|
|
int32_t L_7 = L_6;
|
|
RuntimeObject* L_8 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_7);
|
|
int32_t L_9 = ___1_pos;
|
|
int32_t L_10 = L_9;
|
|
RuntimeObject* L_11 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_10);
|
|
NullCheck(L_5);
|
|
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(21 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_5, L_8, L_11);
|
|
int32_t L_12 = __this->____capcount_9;
|
|
__this->____capcount_9 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
int32_t L_13 = __this->____captop_10;
|
|
int32_t L_14 = ___0_i;
|
|
if ((((int32_t)L_13) > ((int32_t)L_14)))
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15 = ___0_i;
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)2147483647LL)))))
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = ___0_i;
|
|
__this->____captop_10 = L_16;
|
|
return;
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
int32_t L_17 = ___0_i;
|
|
__this->____captop_10 = ((int32_t)il2cpp_codegen_add(L_17, 1));
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::NoteCaptureName(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_NoteCaptureName_m5CDAF94FD43B665DE067B6DC02BD72A315D48FFD (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, String_t* ___0_name, int32_t ___1_pos, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____capnames_13;
|
|
if (L_0)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_1, NULL);
|
|
__this->____capnames_13 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____capnames_13), (void*)L_1);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_2 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_2, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
|
|
__this->____capnamelist_15 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____capnamelist_15), (void*)L_2);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_3 = __this->____capnames_13;
|
|
String_t* L_4 = ___0_name;
|
|
NullCheck(L_3);
|
|
bool L_5;
|
|
L_5 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(25 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_3, L_4);
|
|
if (L_5)
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_6 = __this->____capnames_13;
|
|
String_t* L_7 = ___0_name;
|
|
int32_t L_8 = ___1_pos;
|
|
int32_t L_9 = L_8;
|
|
RuntimeObject* L_10 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_9);
|
|
NullCheck(L_6);
|
|
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(21 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_6, L_7, L_10);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_11 = __this->____capnamelist_15;
|
|
String_t* L_12 = ___0_name;
|
|
NullCheck(L_11);
|
|
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_11, L_12, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::NoteCaptures(System.Collections.Hashtable,System.Int32,System.Collections.Hashtable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_NoteCaptures_mC02396D9D7C522A5B701A2C1C88E742C98EAAF17 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___0_caps, int32_t ___1_capsize, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___2_capnames, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = ___0_caps;
|
|
__this->____caps_12 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____caps_12), (void*)L_0);
|
|
int32_t L_1 = ___1_capsize;
|
|
__this->____capsize_11 = L_1;
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_2 = ___2_capnames;
|
|
__this->____capnames_13 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____capnames_13), (void*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AssignNameSlots()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AssignNameSlots_mC5738B99DE328E7D1FA7279A717640EC2044857E (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m25890A92F785FE37EA662CF502AB0E2A80143F68_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
String_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
RuntimeObject* V_4 = NULL;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
int32_t V_9 = 0;
|
|
String_t* V_10 = NULL;
|
|
int32_t G_B20_0 = 0;
|
|
int32_t G_B24_0 = 0;
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____capnames_13;
|
|
if (!L_0)
|
|
{
|
|
goto IL_008e;
|
|
}
|
|
}
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0080;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_1 = __this->____autocap_8;
|
|
__this->____autocap_8 = ((int32_t)il2cpp_codegen_add(L_1, 1));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_2 = __this->____autocap_8;
|
|
bool L_3;
|
|
L_3 = RegexParser_IsCaptureSlot_m1EE21960AA0BB1C072BD9D765AFF8A6DFC3192C3(__this, L_2, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_4 = __this->____capnamelist_15;
|
|
int32_t L_5 = V_0;
|
|
NullCheck(L_4);
|
|
String_t* L_6;
|
|
L_6 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_4, L_5, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
V_1 = L_6;
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_7 = __this->____capnames_13;
|
|
String_t* L_8 = V_1;
|
|
NullCheck(L_7);
|
|
RuntimeObject* L_9;
|
|
L_9 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(28 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_7, L_8);
|
|
V_2 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_9, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))));
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_10 = __this->____capnames_13;
|
|
String_t* L_11 = V_1;
|
|
int32_t L_12 = __this->____autocap_8;
|
|
int32_t L_13 = L_12;
|
|
RuntimeObject* L_14 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_13);
|
|
NullCheck(L_10);
|
|
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(29 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_10, L_11, L_14);
|
|
int32_t L_15 = __this->____autocap_8;
|
|
int32_t L_16 = V_2;
|
|
RegexParser_NoteCaptureSlot_m21BD1F90FF2C62FFA445303D574D271757D62222(__this, L_15, L_16, NULL);
|
|
int32_t L_17 = __this->____autocap_8;
|
|
__this->____autocap_8 = ((int32_t)il2cpp_codegen_add(L_17, 1));
|
|
int32_t L_18 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_18, 1));
|
|
}
|
|
|
|
IL_0080:
|
|
{
|
|
int32_t L_19 = V_0;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_20 = __this->____capnamelist_15;
|
|
NullCheck(L_20);
|
|
int32_t L_21;
|
|
L_21 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_20, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
if ((((int32_t)L_19) < ((int32_t)L_21)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
int32_t L_22 = __this->____capcount_9;
|
|
int32_t L_23 = __this->____captop_10;
|
|
if ((((int32_t)L_22) >= ((int32_t)L_23)))
|
|
{
|
|
goto IL_00ef;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_24 = __this->____capcount_9;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_25 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)L_24);
|
|
__this->____capnumlist_14 = L_25;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____capnumlist_14), (void*)L_25);
|
|
V_3 = 0;
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_26 = __this->____caps_12;
|
|
NullCheck(L_26);
|
|
RuntimeObject* L_27;
|
|
L_27 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(30 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_26);
|
|
V_4 = L_27;
|
|
goto IL_00d6;
|
|
}
|
|
|
|
IL_00be:
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_28 = __this->____capnumlist_14;
|
|
int32_t L_29 = V_3;
|
|
int32_t L_30 = L_29;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_30, 1));
|
|
RuntimeObject* L_31 = V_4;
|
|
NullCheck(L_31);
|
|
RuntimeObject* L_32;
|
|
L_32 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Object System.Collections.IDictionaryEnumerator::get_Key() */, IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var, L_31);
|
|
NullCheck(L_28);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(L_30), (int32_t)((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_32, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))));
|
|
}
|
|
|
|
IL_00d6:
|
|
{
|
|
RuntimeObject* L_33 = V_4;
|
|
NullCheck(L_33);
|
|
bool L_34;
|
|
L_34 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_33);
|
|
if (L_34)
|
|
{
|
|
goto IL_00be;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_35 = __this->____capnumlist_14;
|
|
Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* L_36;
|
|
L_36 = Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051(Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051_RuntimeMethod_var);
|
|
Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m25890A92F785FE37EA662CF502AB0E2A80143F68(L_35, L_36, Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m25890A92F785FE37EA662CF502AB0E2A80143F68_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00ef:
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_37 = __this->____capnames_13;
|
|
if (L_37)
|
|
{
|
|
goto IL_0102;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_38 = __this->____capnumlist_14;
|
|
if (!L_38)
|
|
{
|
|
goto IL_0204;
|
|
}
|
|
}
|
|
|
|
IL_0102:
|
|
{
|
|
V_7 = 0;
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_39 = __this->____capnames_13;
|
|
if (L_39)
|
|
{
|
|
goto IL_012b;
|
|
}
|
|
}
|
|
{
|
|
V_5 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)NULL;
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_40 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
|
|
NullCheck(L_40);
|
|
Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_40, NULL);
|
|
__this->____capnames_13 = L_40;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____capnames_13), (void*)L_40);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_41 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
NullCheck(L_41);
|
|
List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_41, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
|
|
__this->____capnamelist_15 = L_41;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____capnamelist_15), (void*)L_41);
|
|
V_6 = (-1);
|
|
goto IL_0158;
|
|
}
|
|
|
|
IL_012b:
|
|
{
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_42 = __this->____capnamelist_15;
|
|
V_5 = L_42;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_43 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
NullCheck(L_43);
|
|
List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_43, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
|
|
__this->____capnamelist_15 = L_43;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____capnamelist_15), (void*)L_43);
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_44 = __this->____capnames_13;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_45 = V_5;
|
|
NullCheck(L_45);
|
|
String_t* L_46;
|
|
L_46 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_45, 0, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
NullCheck(L_44);
|
|
RuntimeObject* L_47;
|
|
L_47 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(28 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_44, L_46);
|
|
V_6 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_47, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))));
|
|
}
|
|
|
|
IL_0158:
|
|
{
|
|
V_8 = 0;
|
|
goto IL_01f7;
|
|
}
|
|
|
|
IL_0160:
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_48 = __this->____capnumlist_14;
|
|
if (!L_48)
|
|
{
|
|
goto IL_0173;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_49 = __this->____capnumlist_14;
|
|
int32_t L_50 = V_8;
|
|
NullCheck(L_49);
|
|
int32_t L_51 = L_50;
|
|
int32_t L_52 = (L_49)->GetAt(static_cast<il2cpp_array_size_t>(L_51));
|
|
G_B20_0 = L_52;
|
|
goto IL_0175;
|
|
}
|
|
|
|
IL_0173:
|
|
{
|
|
int32_t L_53 = V_8;
|
|
G_B20_0 = L_53;
|
|
}
|
|
|
|
IL_0175:
|
|
{
|
|
V_9 = G_B20_0;
|
|
int32_t L_54 = V_6;
|
|
int32_t L_55 = V_9;
|
|
if ((!(((uint32_t)L_54) == ((uint32_t)L_55))))
|
|
{
|
|
goto IL_01c1;
|
|
}
|
|
}
|
|
{
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_56 = __this->____capnamelist_15;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_57 = V_5;
|
|
int32_t L_58 = V_7;
|
|
int32_t L_59 = L_58;
|
|
V_7 = ((int32_t)il2cpp_codegen_add(L_59, 1));
|
|
NullCheck(L_57);
|
|
String_t* L_60;
|
|
L_60 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_57, L_59, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
NullCheck(L_56);
|
|
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_56, L_60, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
int32_t L_61 = V_7;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_62 = V_5;
|
|
NullCheck(L_62);
|
|
int32_t L_63;
|
|
L_63 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_62, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
if ((((int32_t)L_61) == ((int32_t)L_63)))
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_64 = __this->____capnames_13;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_65 = V_5;
|
|
int32_t L_66 = V_7;
|
|
NullCheck(L_65);
|
|
String_t* L_67;
|
|
L_67 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_65, L_66, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
NullCheck(L_64);
|
|
RuntimeObject* L_68;
|
|
L_68 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(28 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_64, L_67);
|
|
G_B24_0 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_68, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))));
|
|
goto IL_01bd;
|
|
}
|
|
|
|
IL_01bc:
|
|
{
|
|
G_B24_0 = (-1);
|
|
}
|
|
|
|
IL_01bd:
|
|
{
|
|
V_6 = G_B24_0;
|
|
goto IL_01f1;
|
|
}
|
|
|
|
IL_01c1:
|
|
{
|
|
int32_t L_69 = V_9;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_70 = __this->____culture_7;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
String_t* L_71;
|
|
L_71 = Convert_ToString_mC65AC3BEDED3049732E8A67B496AAAEF4C732871(L_69, L_70, NULL);
|
|
V_10 = L_71;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_72 = __this->____capnamelist_15;
|
|
String_t* L_73 = V_10;
|
|
NullCheck(L_72);
|
|
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_72, L_73, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_74 = __this->____capnames_13;
|
|
String_t* L_75 = V_10;
|
|
int32_t L_76 = V_9;
|
|
int32_t L_77 = L_76;
|
|
RuntimeObject* L_78 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_77);
|
|
NullCheck(L_74);
|
|
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(29 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_74, L_75, L_78);
|
|
}
|
|
|
|
IL_01f1:
|
|
{
|
|
int32_t L_79 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_79, 1));
|
|
}
|
|
|
|
IL_01f7:
|
|
{
|
|
int32_t L_80 = V_8;
|
|
int32_t L_81 = __this->____capcount_9;
|
|
if ((((int32_t)L_80) < ((int32_t)L_81)))
|
|
{
|
|
goto IL_0160;
|
|
}
|
|
}
|
|
|
|
IL_0204:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 System.Text.RegularExpressions.RegexParser::CaptureSlotFromName(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_CaptureSlotFromName_mE18BA49BCA1CE4B972DC804E52C78E48905FEFAB (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, String_t* ___0_capname, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____capnames_13;
|
|
String_t* L_1 = ___0_capname;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_2;
|
|
L_2 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(28 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_1);
|
|
return ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_2, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))));
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::IsCaptureSlot(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsCaptureSlot_m1EE21960AA0BB1C072BD9D765AFF8A6DFC3192C3 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____caps_12;
|
|
if (!L_0)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->____caps_12;
|
|
int32_t L_2 = ___0_i;
|
|
int32_t L_3 = L_2;
|
|
RuntimeObject* L_4 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_3);
|
|
NullCheck(L_1);
|
|
bool L_5;
|
|
L_5 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(25 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_1, L_4);
|
|
return L_5;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_6 = ___0_i;
|
|
if ((((int32_t)L_6) < ((int32_t)0)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = ___0_i;
|
|
int32_t L_8 = __this->____capsize_11;
|
|
return (bool)((((int32_t)L_7) < ((int32_t)L_8))? 1 : 0);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::IsCaptureName(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsCaptureName_m5DC0D7BF3AD01C929CB982048722BCD43797CEAE (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, String_t* ___0_capname, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____capnames_13;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->____capnames_13;
|
|
String_t* L_2 = ___0_capname;
|
|
NullCheck(L_1);
|
|
bool L_3;
|
|
L_3 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(25 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_1, L_2);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionN()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionN_mD441B71AC8368C644B8D9A0CCB3DB8BD681639B3 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____options_16;
|
|
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&4))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionI()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionI_mB3FB0740ED596E6ABC827E903DCE8AA4258BA701 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____options_16;
|
|
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&1))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionM()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionM_mAE3FC2655A6E80EA35D5CEBEE1D82B5B07529118 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____options_16;
|
|
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&2))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionS()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionS_m070AD4458172FB14FF21E4502DCA6ECEE8938994 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____options_16;
|
|
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)16)))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionX()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionX_m0BFB48EDC8A2F38A29A8F6CEC85080D9E04010FC (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____options_16;
|
|
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)32)))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionE()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____options_16;
|
|
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)256)))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::IsSpecial(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsSpecial_mF59FE804CDD354250CB77C4113F39C627349D051 (Il2CppChar ___0_ch, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___0_ch;
|
|
if ((((int32_t)L_0) > ((int32_t)((int32_t)124))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ((RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_StaticFields*)il2cpp_codegen_static_fields_for(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var))->___s_category_19;
|
|
Il2CppChar L_2 = ___0_ch;
|
|
NullCheck(L_1);
|
|
Il2CppChar L_3 = L_2;
|
|
uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
return (bool)((((int32_t)((((int32_t)L_4) < ((int32_t)4))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::IsStopperX(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsStopperX_m173A82937CA9600F7CB12B9A101F39CCFDA630C9 (Il2CppChar ___0_ch, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___0_ch;
|
|
if ((((int32_t)L_0) > ((int32_t)((int32_t)124))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ((RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_StaticFields*)il2cpp_codegen_static_fields_for(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var))->___s_category_19;
|
|
Il2CppChar L_2 = ___0_ch;
|
|
NullCheck(L_1);
|
|
Il2CppChar L_3 = L_2;
|
|
uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
return (bool)((((int32_t)((((int32_t)L_4) < ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::IsQuantifier(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsQuantifier_mBD18FA810A0404B632392725175846E6B30A8782 (Il2CppChar ___0_ch, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___0_ch;
|
|
if ((((int32_t)L_0) > ((int32_t)((int32_t)123))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ((RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_StaticFields*)il2cpp_codegen_static_fields_for(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var))->___s_category_19;
|
|
Il2CppChar L_2 = ___0_ch;
|
|
NullCheck(L_1);
|
|
Il2CppChar L_3 = L_2;
|
|
uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
return (bool)((((int32_t)((((int32_t)L_4) < ((int32_t)5))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::IsTrueQuantifier()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsTrueQuantifier_m22CCE851B85E0760270178DF1184746040E68AEF (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79(__this, NULL);
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t L_2;
|
|
L_2 = RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline(__this, NULL);
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
Il2CppChar L_4;
|
|
L_4 = RegexParser_CharAt_mF46179762DDF46FB78E32CCA3058950244CFCB70(__this, L_3, NULL);
|
|
V_2 = L_4;
|
|
Il2CppChar L_5 = V_2;
|
|
if ((((int32_t)L_5) == ((int32_t)((int32_t)123))))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_6 = V_2;
|
|
if ((((int32_t)L_6) > ((int32_t)((int32_t)123))))
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = ((RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_StaticFields*)il2cpp_codegen_static_fields_for(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var))->___s_category_19;
|
|
Il2CppChar L_8 = V_2;
|
|
NullCheck(L_7);
|
|
Il2CppChar L_9 = L_8;
|
|
uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
return (bool)((((int32_t)((((int32_t)L_10) < ((int32_t)5))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
int32_t L_11 = V_1;
|
|
V_3 = L_11;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
int32_t L_12 = V_0;
|
|
int32_t L_13 = ((int32_t)il2cpp_codegen_subtract(L_12, 1));
|
|
V_0 = L_13;
|
|
if ((((int32_t)L_13) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_14 = V_3;
|
|
int32_t L_15 = ((int32_t)il2cpp_codegen_add(L_14, 1));
|
|
V_3 = L_15;
|
|
Il2CppChar L_16;
|
|
L_16 = RegexParser_CharAt_mF46179762DDF46FB78E32CCA3058950244CFCB70(__this, L_15, NULL);
|
|
Il2CppChar L_17 = L_16;
|
|
V_2 = L_17;
|
|
if ((((int32_t)L_17) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_18 = V_2;
|
|
if ((((int32_t)L_18) <= ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
int32_t L_19 = V_0;
|
|
if (!L_19)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_20 = V_3;
|
|
int32_t L_21 = V_1;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract(L_20, L_21))) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
Il2CppChar L_22 = V_2;
|
|
if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
Il2CppChar L_23 = V_2;
|
|
if ((((int32_t)L_23) == ((int32_t)((int32_t)44))))
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
int32_t L_24 = V_0;
|
|
int32_t L_25 = ((int32_t)il2cpp_codegen_subtract(L_24, 1));
|
|
V_0 = L_25;
|
|
if ((((int32_t)L_25) <= ((int32_t)0)))
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_26 = V_3;
|
|
int32_t L_27 = ((int32_t)il2cpp_codegen_add(L_26, 1));
|
|
V_3 = L_27;
|
|
Il2CppChar L_28;
|
|
L_28 = RegexParser_CharAt_mF46179762DDF46FB78E32CCA3058950244CFCB70(__this, L_27, NULL);
|
|
Il2CppChar L_29 = L_28;
|
|
V_2 = L_29;
|
|
if ((((int32_t)L_29) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_30 = V_2;
|
|
if ((((int32_t)L_30) <= ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
int32_t L_31 = V_0;
|
|
if ((((int32_t)L_31) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_32 = V_2;
|
|
return (bool)((((int32_t)L_32) == ((int32_t)((int32_t)125)))? 1 : 0);
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::IsSpace(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsSpace_m322B45C2A04F07D8C83B547370D266F39A8DE14E (Il2CppChar ___0_ch, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___0_ch;
|
|
if ((((int32_t)L_0) > ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ((RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_StaticFields*)il2cpp_codegen_static_fields_for(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var))->___s_category_19;
|
|
Il2CppChar L_2 = ___0_ch;
|
|
NullCheck(L_1);
|
|
Il2CppChar L_3 = L_2;
|
|
uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
return (bool)((((int32_t)L_4) == ((int32_t)2))? 1 : 0);
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddConcatenate(System.Int32,System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddConcatenate_mDDD0350FE254D75D6707668332D0F3088A5572AF (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_pos, int32_t ___1_cch, bool ___2_isReplacement, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* V_0 = NULL;
|
|
String_t* V_1 = NULL;
|
|
StringBuilder_t* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
Il2CppChar V_4 = 0x0;
|
|
{
|
|
int32_t L_0 = ___1_cch;
|
|
if (L_0)
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
int32_t L_1 = ___1_cch;
|
|
if ((((int32_t)L_1) <= ((int32_t)1)))
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = __this->____pattern_5;
|
|
int32_t L_3 = ___0_pos;
|
|
int32_t L_4 = ___1_cch;
|
|
NullCheck(L_2);
|
|
String_t* L_5;
|
|
L_5 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_2, L_3, L_4, NULL);
|
|
V_1 = L_5;
|
|
bool L_6;
|
|
L_6 = RegexParser_UseOptionI_mB3FB0740ED596E6ABC827E903DCE8AA4258BA701(__this, NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
{
|
|
bool L_7 = ___2_isReplacement;
|
|
if (L_7)
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_8 = V_1;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL);
|
|
StringBuilder_t* L_10;
|
|
L_10 = StringBuilderCache_Acquire_m1CF9421EC0F3431719E18A8EE78669748DF10892(L_9, NULL);
|
|
V_2 = L_10;
|
|
V_3 = 0;
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
StringBuilder_t* L_11 = V_2;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_12 = __this->____culture_7;
|
|
NullCheck(L_12);
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_13;
|
|
L_13 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_12);
|
|
String_t* L_14 = V_1;
|
|
int32_t L_15 = V_3;
|
|
NullCheck(L_14);
|
|
Il2CppChar L_16;
|
|
L_16 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_14, L_15, NULL);
|
|
NullCheck(L_13);
|
|
Il2CppChar L_17;
|
|
L_17 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_13, L_16);
|
|
NullCheck(L_11);
|
|
StringBuilder_t* L_18;
|
|
L_18 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_11, L_17, NULL);
|
|
int32_t L_19 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
int32_t L_20 = V_3;
|
|
String_t* L_21 = V_1;
|
|
NullCheck(L_21);
|
|
int32_t L_22;
|
|
L_22 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_21, NULL);
|
|
if ((((int32_t)L_20) < ((int32_t)L_22)))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_23 = V_2;
|
|
String_t* L_24;
|
|
L_24 = StringBuilderCache_GetStringAndRelease_m4A7AB11554F7E80352AB8C3AC72D7AD4C7108FB0(L_23, NULL);
|
|
V_1 = L_24;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
int32_t L_25 = __this->____options_16;
|
|
String_t* L_26 = V_1;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_27 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_27);
|
|
RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA(L_27, ((int32_t)12), L_25, L_26, NULL);
|
|
V_0 = L_27;
|
|
goto IL_00b1;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
String_t* L_28 = __this->____pattern_5;
|
|
int32_t L_29 = ___0_pos;
|
|
NullCheck(L_28);
|
|
Il2CppChar L_30;
|
|
L_30 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_28, L_29, NULL);
|
|
V_4 = L_30;
|
|
bool L_31;
|
|
L_31 = RegexParser_UseOptionI_mB3FB0740ED596E6ABC827E903DCE8AA4258BA701(__this, NULL);
|
|
if (!L_31)
|
|
{
|
|
goto IL_00a1;
|
|
}
|
|
}
|
|
{
|
|
bool L_32 = ___2_isReplacement;
|
|
if (L_32)
|
|
{
|
|
goto IL_00a1;
|
|
}
|
|
}
|
|
{
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_33 = __this->____culture_7;
|
|
NullCheck(L_33);
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_34;
|
|
L_34 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_33);
|
|
Il2CppChar L_35 = V_4;
|
|
NullCheck(L_34);
|
|
Il2CppChar L_36;
|
|
L_36 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_34, L_35);
|
|
V_4 = L_36;
|
|
}
|
|
|
|
IL_00a1:
|
|
{
|
|
int32_t L_37 = __this->____options_16;
|
|
Il2CppChar L_38 = V_4;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_39 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_39);
|
|
RegexNode__ctor_mFA693535F5B9610F075D30F19626A8AFFA879D7B(L_39, ((int32_t)9), L_37, L_38, NULL);
|
|
V_0 = L_39;
|
|
}
|
|
|
|
IL_00b1:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_40 = __this->____concatenation_3;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_41 = V_0;
|
|
NullCheck(L_40);
|
|
RegexNode_AddChild_m1A2B3A7445927E39341C233C0E533D77FC9517A8(L_40, L_41, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::PushGroup()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PushGroup_m2D76CB852430A3B3F7454DDC3322B2A5E4CE398F (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_0 = __this->____group_1;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_1 = __this->____stack_0;
|
|
NullCheck(L_0);
|
|
L_0->___Next_7 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_0->___Next_7), (void*)L_1);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_2 = __this->____alternation_2;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_3 = __this->____group_1;
|
|
NullCheck(L_2);
|
|
L_2->___Next_7 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_2->___Next_7), (void*)L_3);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_4 = __this->____concatenation_3;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_5 = __this->____alternation_2;
|
|
NullCheck(L_4);
|
|
L_4->___Next_7 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_4->___Next_7), (void*)L_5);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_6 = __this->____concatenation_3;
|
|
__this->____stack_0 = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____stack_0), (void*)L_6);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::PopGroup()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PopGroup_mEC525DC83E5BF2F8DA03129AE3DF06834EB76552 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_0 = __this->____stack_0;
|
|
__this->____concatenation_3 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____concatenation_3), (void*)L_0);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_1 = __this->____concatenation_3;
|
|
NullCheck(L_1);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_2 = L_1->___Next_7;
|
|
__this->____alternation_2 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____alternation_2), (void*)L_2);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_3 = __this->____alternation_2;
|
|
NullCheck(L_3);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_4 = L_3->___Next_7;
|
|
__this->____group_1 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____group_1), (void*)L_4);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_5 = __this->____group_1;
|
|
NullCheck(L_5);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_6 = L_5->___Next_7;
|
|
__this->____stack_0 = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____stack_0), (void*)L_6);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_7 = __this->____group_1;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = RegexNode_Type_mDE9685FD99646016D0D6038C4509C6392B10F019_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)34)))))
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_9 = __this->____group_1;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = RegexNode_ChildCount_m833AF69D2711D8EEC5E50FD666A61F428A12396D(L_9, NULL);
|
|
if (L_10)
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_11 = __this->____unit_4;
|
|
if (L_11)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_12;
|
|
L_12 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC668438A41E16934CBA83B80E3101B8222C11AEC)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_PopGroup_mEC525DC83E5BF2F8DA03129AE3DF06834EB76552_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_13 = __this->____group_1;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_14 = __this->____unit_4;
|
|
NullCheck(L_13);
|
|
RegexNode_AddChild_m1A2B3A7445927E39341C233C0E533D77FC9517A8(L_13, L_14, NULL);
|
|
__this->____unit_4 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____unit_4), (void*)(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL);
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::EmptyStack()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_EmptyStack_m756AC5BB66D0F2077EC7DD655A3D57681200F5CA (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_0 = __this->____stack_0;
|
|
return (bool)((((RuntimeObject*)(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::StartGroup(System.Text.RegularExpressions.RegexNode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_StartGroup_mBF861FCFB0FB9ED26744CAE2297537DAB6DF37C1 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___0_openGroup, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_0 = ___0_openGroup;
|
|
__this->____group_1 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____group_1), (void*)L_0);
|
|
int32_t L_1 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_2 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
RegexNode__ctor_mAE4AC160F21E5DF26B99B74753BCFB9EF0951B2B(L_2, ((int32_t)24), L_1, NULL);
|
|
__this->____alternation_2 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____alternation_2), (void*)L_2);
|
|
int32_t L_3 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_4 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_4);
|
|
RegexNode__ctor_mAE4AC160F21E5DF26B99B74753BCFB9EF0951B2B(L_4, ((int32_t)25), L_3, NULL);
|
|
__this->____concatenation_3 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____concatenation_3), (void*)L_4);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddAlternate()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddAlternate_m77BCF63DD4E1AB89B70F72821CAE4B67936CD847 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_0 = __this->____group_1;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = RegexNode_Type_mDE9685FD99646016D0D6038C4509C6392B10F019_inline(L_0, NULL);
|
|
if ((((int32_t)L_1) == ((int32_t)((int32_t)34))))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_2 = __this->____group_1;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = RegexNode_Type_mDE9685FD99646016D0D6038C4509C6392B10F019_inline(L_2, NULL);
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)33)))))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_4 = __this->____group_1;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_5 = __this->____concatenation_3;
|
|
NullCheck(L_5);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_6;
|
|
L_6 = RegexNode_ReverseLeft_m251846220299FD022068361A09B9A7A4CF67A586(L_5, NULL);
|
|
NullCheck(L_4);
|
|
RegexNode_AddChild_m1A2B3A7445927E39341C233C0E533D77FC9517A8(L_4, L_6, NULL);
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_7 = __this->____alternation_2;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_8 = __this->____concatenation_3;
|
|
NullCheck(L_8);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_9;
|
|
L_9 = RegexNode_ReverseLeft_m251846220299FD022068361A09B9A7A4CF67A586(L_8, NULL);
|
|
NullCheck(L_7);
|
|
RegexNode_AddChild_m1A2B3A7445927E39341C233C0E533D77FC9517A8(L_7, L_9, NULL);
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
int32_t L_10 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_11 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_11);
|
|
RegexNode__ctor_mAE4AC160F21E5DF26B99B74753BCFB9EF0951B2B(L_11, ((int32_t)25), L_10, NULL);
|
|
__this->____concatenation_3 = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____concatenation_3), (void*)L_11);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddConcatenate()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddConcatenate_m77A3D9F6B1484C7B656BDF3CC5659248F9DEA1EA (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_0 = __this->____concatenation_3;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_1 = __this->____unit_4;
|
|
NullCheck(L_0);
|
|
RegexNode_AddChild_m1A2B3A7445927E39341C233C0E533D77FC9517A8(L_0, L_1, NULL);
|
|
__this->____unit_4 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____unit_4), (void*)(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddConcatenate(System.Boolean,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddConcatenate_m3B10D68AE09CC6A2F06AC65E49B918D11D5375FF (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, bool ___0_lazy, int32_t ___1_min, int32_t ___2_max, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_0 = __this->____concatenation_3;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_1 = __this->____unit_4;
|
|
bool L_2 = ___0_lazy;
|
|
int32_t L_3 = ___1_min;
|
|
int32_t L_4 = ___2_max;
|
|
NullCheck(L_1);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_5;
|
|
L_5 = RegexNode_MakeQuantifier_mA6A10E1AEF5AA80F82BD1BE6D28E62259208B5BC(L_1, L_2, L_3, L_4, NULL);
|
|
NullCheck(L_0);
|
|
RegexNode_AddChild_m1A2B3A7445927E39341C233C0E533D77FC9517A8(L_0, L_5, NULL);
|
|
__this->____unit_4 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____unit_4), (void*)(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::Unit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexParser_Unit_m6C984A797C4A92AB0A9985E5A8207DB9CA9AE87F (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_0 = __this->____unit_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddUnitOne(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitOne_m991DCA85D3432B8F7F74D18125A69FFE25108F47 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, Il2CppChar ___0_ch, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0;
|
|
L_0 = RegexParser_UseOptionI_mB3FB0740ED596E6ABC827E903DCE8AA4258BA701(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1 = __this->____culture_7;
|
|
NullCheck(L_1);
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_2;
|
|
L_2 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_1);
|
|
Il2CppChar L_3 = ___0_ch;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_2, L_3);
|
|
___0_ch = L_4;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
int32_t L_5 = __this->____options_16;
|
|
Il2CppChar L_6 = ___0_ch;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_7 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_7);
|
|
RegexNode__ctor_mFA693535F5B9610F075D30F19626A8AFFA879D7B(L_7, ((int32_t)9), L_5, L_6, NULL);
|
|
__this->____unit_4 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____unit_4), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddUnitNotone(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitNotone_m4F79DE175B95FDB88323D7FE9DC3132E24F8F0C0 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, Il2CppChar ___0_ch, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0;
|
|
L_0 = RegexParser_UseOptionI_mB3FB0740ED596E6ABC827E903DCE8AA4258BA701(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1 = __this->____culture_7;
|
|
NullCheck(L_1);
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_2;
|
|
L_2 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_1);
|
|
Il2CppChar L_3 = ___0_ch;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_2, L_3);
|
|
___0_ch = L_4;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
int32_t L_5 = __this->____options_16;
|
|
Il2CppChar L_6 = ___0_ch;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_7 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_7);
|
|
RegexNode__ctor_mFA693535F5B9610F075D30F19626A8AFFA879D7B(L_7, ((int32_t)10), L_5, L_6, NULL);
|
|
__this->____unit_4 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____unit_4), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddUnitSet(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitSet_mA262F57A7FAB27996D8115F66BC84A5C58317D7F (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, String_t* ___0_cc, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = __this->____options_16;
|
|
String_t* L_1 = ___0_cc;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_2 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA(L_2, ((int32_t)11), L_0, L_1, NULL);
|
|
__this->____unit_4 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____unit_4), (void*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddUnitNode(System.Text.RegularExpressions.RegexNode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitNode_mE8DC7CD039C933AE881097E041BA620AA325FDE8 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___0_node, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_0 = ___0_node;
|
|
__this->____unit_4 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____unit_4), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddUnitType(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitType_mEBDFA2325ABDA3FDA74184DBFB706824F6540553 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_type, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___0_type;
|
|
int32_t L_1 = __this->____options_16;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_2 = (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360*)il2cpp_codegen_object_new(RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
RegexNode__ctor_mAE4AC160F21E5DF26B99B74753BCFB9EF0951B2B(L_2, L_0, L_1, NULL);
|
|
__this->____unit_4 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____unit_4), (void*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::AddGroup()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddGroup_m8989D6A9CD4B700522D722DEF5FEFC267C4DBFB7 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_0 = __this->____group_1;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = RegexNode_Type_mDE9685FD99646016D0D6038C4509C6392B10F019_inline(L_0, NULL);
|
|
if ((((int32_t)L_1) == ((int32_t)((int32_t)34))))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_2 = __this->____group_1;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = RegexNode_Type_mDE9685FD99646016D0D6038C4509C6392B10F019_inline(L_2, NULL);
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)33)))))
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_4 = __this->____group_1;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_5 = __this->____concatenation_3;
|
|
NullCheck(L_5);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_6;
|
|
L_6 = RegexNode_ReverseLeft_m251846220299FD022068361A09B9A7A4CF67A586(L_5, NULL);
|
|
NullCheck(L_4);
|
|
RegexNode_AddChild_m1A2B3A7445927E39341C233C0E533D77FC9517A8(L_4, L_6, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_7 = __this->____group_1;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = RegexNode_Type_mDE9685FD99646016D0D6038C4509C6392B10F019_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)33)))))
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_9 = __this->____group_1;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = RegexNode_ChildCount_m833AF69D2711D8EEC5E50FD666A61F428A12396D(L_9, NULL);
|
|
if ((((int32_t)L_10) > ((int32_t)2)))
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_11 = __this->____group_1;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = RegexNode_ChildCount_m833AF69D2711D8EEC5E50FD666A61F428A12396D(L_11, NULL);
|
|
if ((((int32_t)L_12) <= ((int32_t)3)))
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_13;
|
|
L_13 = RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE33035121EF6BAC3BBD73C519FBB6B270CE5657E)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_AddGroup_m8989D6A9CD4B700522D722DEF5FEFC267C4DBFB7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_14 = __this->____alternation_2;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_15 = __this->____concatenation_3;
|
|
NullCheck(L_15);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_16;
|
|
L_16 = RegexNode_ReverseLeft_m251846220299FD022068361A09B9A7A4CF67A586(L_15, NULL);
|
|
NullCheck(L_14);
|
|
RegexNode_AddChild_m1A2B3A7445927E39341C233C0E533D77FC9517A8(L_14, L_16, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_17 = __this->____group_1;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_18 = __this->____alternation_2;
|
|
NullCheck(L_17);
|
|
RegexNode_AddChild_m1A2B3A7445927E39341C233C0E533D77FC9517A8(L_17, L_18, NULL);
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_19 = __this->____group_1;
|
|
__this->____unit_4 = L_19;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____unit_4), (void*)L_19);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::PushOptions()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PushOptions_m6E501EE3C5D6FE990ED74935A9AC9A6E834FD968 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m39E2181975ACDC6FBCDD64B6C002096DF63A0676_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* L_0 = __this->____optionsStack_17;
|
|
int32_t L_1 = __this->____options_16;
|
|
NullCheck(L_0);
|
|
List_1_Add_m39E2181975ACDC6FBCDD64B6C002096DF63A0676_inline(L_0, L_1, List_1_Add_m39E2181975ACDC6FBCDD64B6C002096DF63A0676_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::PopOptions()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PopOptions_mAE4848419A71162B8E563781AC817A8D6ACEB91B (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_mC1A21C23C8601F8794072BBEFCE60E1283C8302F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m86ACB65A93FC551348931DE521B278E5A505FB69_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* L_0 = __this->____optionsStack_17;
|
|
List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* L_1 = __this->____optionsStack_17;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_inline(L_1, List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
int32_t L_3;
|
|
L_3 = List_1_get_Item_m86ACB65A93FC551348931DE521B278E5A505FB69(L_0, ((int32_t)il2cpp_codegen_subtract(L_2, 1)), List_1_get_Item_m86ACB65A93FC551348931DE521B278E5A505FB69_RuntimeMethod_var);
|
|
__this->____options_16 = L_3;
|
|
List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* L_4 = __this->____optionsStack_17;
|
|
List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* L_5 = __this->____optionsStack_17;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_inline(L_5, List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_RuntimeMethod_var);
|
|
NullCheck(L_4);
|
|
List_1_RemoveAt_mC1A21C23C8601F8794072BBEFCE60E1283C8302F(L_4, ((int32_t)il2cpp_codegen_subtract(L_6, 1)), List_1_RemoveAt_mC1A21C23C8601F8794072BBEFCE60E1283C8302F_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexParser::EmptyOptionsStack()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_EmptyOptionsStack_mC16A4D18503FF296911710732A95062A8279163B (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* L_0 = __this->____optionsStack_17;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_inline(L_0, List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_RuntimeMethod_var);
|
|
return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::PopKeepOptions()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PopKeepOptions_m911F83DFA290ED90B06D3D3166553E6205C256C1 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_mC1A21C23C8601F8794072BBEFCE60E1283C8302F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* L_0 = __this->____optionsStack_17;
|
|
List_1_tEE9D21067B06E9376583F5A60FB5D70AF940EE39* L_1 = __this->____optionsStack_17;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_inline(L_1, List_1_get_Count_mF93F38746A66702F98B4CE2C7D0BAEE72A57BE80_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
List_1_RemoveAt_mC1A21C23C8601F8794072BBEFCE60E1283C8302F(L_0, ((int32_t)il2cpp_codegen_subtract(L_2, 1)), List_1_RemoveAt_mC1A21C23C8601F8794072BBEFCE60E1283C8302F_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.ArgumentException System.Text.RegularExpressions.RegexParser::MakeException(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, String_t* ___0_message, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD3E190B5EC5D5C32F6121F694010F47769FCBDD1);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = __this->____pattern_5;
|
|
String_t* L_1 = ___0_message;
|
|
String_t* L_2;
|
|
L_2 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(_stringLiteralD3E190B5EC5D5C32F6121F694010F47769FCBDD1, L_0, L_1, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_3, L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Int32 System.Text.RegularExpressions.RegexParser::Textpos()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____currentPos_6;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::Textto(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_Textto_mA45B325CA6CCBC0012F1CBB0282AE114B34AEBE2 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_pos, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_pos;
|
|
__this->____currentPos_6 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Char System.Text.RegularExpressions.RegexParser::RightCharMoveRight()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
String_t* L_0 = __this->____pattern_5;
|
|
int32_t L_1 = __this->____currentPos_6;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
__this->____currentPos_6 = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_0);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::MoveRight()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RegexParser_MoveRight_m921C1D96B625B4C8AF1D658E514D57CC44E40B61(__this, 1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::MoveRight(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_MoveRight_m921C1D96B625B4C8AF1D658E514D57CC44E40B61 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____currentPos_6;
|
|
int32_t L_1 = ___0_i;
|
|
__this->____currentPos_6 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::MoveLeft()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_MoveLeft_m57BB7A0146D0E8834D715667048B75A517761AD5 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____currentPos_6;
|
|
__this->____currentPos_6 = ((int32_t)il2cpp_codegen_subtract(L_0, 1));
|
|
return;
|
|
}
|
|
}
|
|
// System.Char System.Text.RegularExpressions.RegexParser::CharAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_CharAt_mF46179762DDF46FB78E32CCA3058950244CFCB70 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->____pattern_5;
|
|
int32_t L_1 = ___0_i;
|
|
NullCheck(L_0);
|
|
Il2CppChar L_2;
|
|
L_2 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Char System.Text.RegularExpressions.RegexParser::RightChar()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->____pattern_5;
|
|
int32_t L_1 = __this->____currentPos_6;
|
|
NullCheck(L_0);
|
|
Il2CppChar L_2;
|
|
L_2 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Char System.Text.RegularExpressions.RegexParser::RightChar(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_RightChar_m6BEE1FBF048A2DFC53235447BB2F6AC8C56A4147 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->____pattern_5;
|
|
int32_t L_1 = __this->____currentPos_6;
|
|
int32_t L_2 = ___0_i;
|
|
NullCheck(L_0);
|
|
Il2CppChar L_3;
|
|
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, ((int32_t)il2cpp_codegen_add(L_1, L_2)), NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Int32 System.Text.RegularExpressions.RegexParser::CharsRight()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79 (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->____pattern_5;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
|
|
int32_t L_2 = __this->____currentPos_6;
|
|
return ((int32_t)il2cpp_codegen_subtract(L_1, L_2));
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexParser::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser__cctor_mC883BE9D9C8D47723D5CAD7CE25B5F347929AF54 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____B849624EC20707184A433E21DAAC963906D4B261A19BD8F139F0E269E59E308C_14_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)128));
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____B849624EC20707184A433E21DAAC963906D4B261A19BD8F139F0E269E59E308C_14_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_1, L_2, NULL);
|
|
((RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_StaticFields*)il2cpp_codegen_static_fields_for(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var))->___s_category_19 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_StaticFields*)il2cpp_codegen_static_fields_for(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var))->___s_category_19), (void*)L_1);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Conversion methods for marshalling of: System.Text.RegularExpressions.RegexPrefix
|
|
IL2CPP_EXTERN_C void RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_marshal_pinvoke(const RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044& unmarshaled, RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_marshaled_pinvoke& marshaled)
|
|
{
|
|
marshaled.___U3CCaseInsensitiveU3Ek__BackingField_0 = static_cast<int32_t>(unmarshaled.___U3CCaseInsensitiveU3Ek__BackingField_0);
|
|
marshaled.___U3CPrefixU3Ek__BackingField_2 = il2cpp_codegen_marshal_string(unmarshaled.___U3CPrefixU3Ek__BackingField_2);
|
|
}
|
|
IL2CPP_EXTERN_C void RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_marshal_pinvoke_back(const RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_marshaled_pinvoke& marshaled, RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044& unmarshaled)
|
|
{
|
|
bool unmarshaledU3CCaseInsensitiveU3Ek__BackingField_temp_0 = false;
|
|
unmarshaledU3CCaseInsensitiveU3Ek__BackingField_temp_0 = static_cast<bool>(marshaled.___U3CCaseInsensitiveU3Ek__BackingField_0);
|
|
unmarshaled.___U3CCaseInsensitiveU3Ek__BackingField_0 = unmarshaledU3CCaseInsensitiveU3Ek__BackingField_temp_0;
|
|
unmarshaled.___U3CPrefixU3Ek__BackingField_2 = il2cpp_codegen_marshal_string_result(marshaled.___U3CPrefixU3Ek__BackingField_2);
|
|
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___U3CPrefixU3Ek__BackingField_2), (void*)il2cpp_codegen_marshal_string_result(marshaled.___U3CPrefixU3Ek__BackingField_2));
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.Text.RegularExpressions.RegexPrefix
|
|
IL2CPP_EXTERN_C void RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_marshal_pinvoke_cleanup(RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_marshaled_pinvoke& marshaled)
|
|
{
|
|
il2cpp_codegen_marshal_free(marshaled.___U3CPrefixU3Ek__BackingField_2);
|
|
marshaled.___U3CPrefixU3Ek__BackingField_2 = NULL;
|
|
}
|
|
// Conversion methods for marshalling of: System.Text.RegularExpressions.RegexPrefix
|
|
IL2CPP_EXTERN_C void RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_marshal_com(const RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044& unmarshaled, RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_marshaled_com& marshaled)
|
|
{
|
|
marshaled.___U3CCaseInsensitiveU3Ek__BackingField_0 = static_cast<int32_t>(unmarshaled.___U3CCaseInsensitiveU3Ek__BackingField_0);
|
|
marshaled.___U3CPrefixU3Ek__BackingField_2 = il2cpp_codegen_marshal_bstring(unmarshaled.___U3CPrefixU3Ek__BackingField_2);
|
|
}
|
|
IL2CPP_EXTERN_C void RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_marshal_com_back(const RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_marshaled_com& marshaled, RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044& unmarshaled)
|
|
{
|
|
bool unmarshaledU3CCaseInsensitiveU3Ek__BackingField_temp_0 = false;
|
|
unmarshaledU3CCaseInsensitiveU3Ek__BackingField_temp_0 = static_cast<bool>(marshaled.___U3CCaseInsensitiveU3Ek__BackingField_0);
|
|
unmarshaled.___U3CCaseInsensitiveU3Ek__BackingField_0 = unmarshaledU3CCaseInsensitiveU3Ek__BackingField_temp_0;
|
|
unmarshaled.___U3CPrefixU3Ek__BackingField_2 = il2cpp_codegen_marshal_bstring_result(marshaled.___U3CPrefixU3Ek__BackingField_2);
|
|
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___U3CPrefixU3Ek__BackingField_2), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___U3CPrefixU3Ek__BackingField_2));
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.Text.RegularExpressions.RegexPrefix
|
|
IL2CPP_EXTERN_C void RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_marshal_com_cleanup(RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_marshaled_com& marshaled)
|
|
{
|
|
il2cpp_codegen_marshal_free_bstring(marshaled.___U3CPrefixU3Ek__BackingField_2);
|
|
marshaled.___U3CPrefixU3Ek__BackingField_2 = NULL;
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexPrefix::.ctor(System.String,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexPrefix__ctor_m05CD44F32CB0B5F8B2C080EAB94886F9743E86A4 (RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044* __this, String_t* ___0_prefix, bool ___1_ci, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_prefix;
|
|
__this->___U3CPrefixU3Ek__BackingField_2 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPrefixU3Ek__BackingField_2), (void*)L_0);
|
|
bool L_1 = ___1_ci;
|
|
__this->___U3CCaseInsensitiveU3Ek__BackingField_0 = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void RegexPrefix__ctor_m05CD44F32CB0B5F8B2C080EAB94886F9743E86A4_AdjustorThunk (RuntimeObject* __this, String_t* ___0_prefix, bool ___1_ci, const RuntimeMethod* method)
|
|
{
|
|
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044*>(__this + _offset);
|
|
RegexPrefix__ctor_m05CD44F32CB0B5F8B2C080EAB94886F9743E86A4(_thisAdjusted, ___0_prefix, ___1_ci, method);
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexPrefix::get_CaseInsensitive()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexPrefix_get_CaseInsensitive_m4DAE2D9E91916BFFAB928F7DCAA20A5ABD4560E6 (RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CCaseInsensitiveU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool RegexPrefix_get_CaseInsensitive_m4DAE2D9E91916BFFAB928F7DCAA20A5ABD4560E6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = RegexPrefix_get_CaseInsensitive_m4DAE2D9E91916BFFAB928F7DCAA20A5ABD4560E6_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Text.RegularExpressions.RegexPrefix System.Text.RegularExpressions.RegexPrefix::get_Empty()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 RegexPrefix_get_Empty_m54EA279F2BE7F39358AB5DF1A5362A8CD92B4326 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var);
|
|
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 L_0 = ((RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_StaticFields*)il2cpp_codegen_static_fields_for(RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var))->___U3CEmptyU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String System.Text.RegularExpressions.RegexPrefix::get_Prefix()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexPrefix_get_Prefix_m844D02262C0720B0DC488AD1541713AD37BC518E (RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->___U3CPrefixU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* RegexPrefix_get_Prefix_m844D02262C0720B0DC488AD1541713AD37BC518E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = RegexPrefix_get_Prefix_m844D02262C0720B0DC488AD1541713AD37BC518E_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexPrefix::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexPrefix__cctor_m55930FB75AB023BADBEAB107BE38A1A559DDB7F2 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
RegexPrefix__ctor_m05CD44F32CB0B5F8B2C080EAB94886F9743E86A4((&L_1), L_0, (bool)0, /*hidden argument*/NULL);
|
|
((RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_StaticFields*)il2cpp_codegen_static_fields_for(RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var))->___U3CEmptyU3Ek__BackingField_1 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&((RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_StaticFields*)il2cpp_codegen_static_fields_for(RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var))->___U3CEmptyU3Ek__BackingField_1))->___U3CPrefixU3Ek__BackingField_2), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Text.RegularExpressions.RegexReplacement::.ctor(System.String,System.Text.RegularExpressions.RegexNode,System.Collections.Hashtable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexReplacement__ctor_m9CE743F0908A59F98461440AE5B842BE1BC72EA5 (RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* __this, String_t* ___0_rep, RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___1_concat, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___2__caps, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringBuilder_t* V_0 = NULL;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* V_1 = NULL;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* V_4 = NULL;
|
|
int32_t V_5 = 0;
|
|
int32_t V_6 = 0;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_0 = ___1_concat;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = RegexNode_Type_mDE9685FD99646016D0D6038C4509C6392B10F019_inline(L_0, NULL);
|
|
if ((((int32_t)L_1) == ((int32_t)((int32_t)25))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59A83BD1E85529AB2BC64F229A50F1DE88588D40)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexReplacement__ctor_m9CE743F0908A59F98461440AE5B842BE1BC72EA5_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
StringBuilder_t* L_3;
|
|
L_3 = StringBuilderCache_Acquire_m1CF9421EC0F3431719E18A8EE78669748DF10892(((int32_t)16), NULL);
|
|
V_0 = L_3;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_4 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
NullCheck(L_4);
|
|
List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_4, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
|
|
V_1 = L_4;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_5 = (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cpp_codegen_object_new(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
NullCheck(L_5);
|
|
List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8(L_5, List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
|
|
V_2 = L_5;
|
|
V_3 = 0;
|
|
goto IL_00f1;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_6 = ___1_concat;
|
|
int32_t L_7 = V_3;
|
|
NullCheck(L_6);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_8;
|
|
L_8 = RegexNode_Child_m6F5C25EE5349D1BE0D65C89475FB0C42A15BFF27(L_6, L_7, NULL);
|
|
V_4 = L_8;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_9 = V_4;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = RegexNode_Type_mDE9685FD99646016D0D6038C4509C6392B10F019_inline(L_9, NULL);
|
|
V_6 = L_10;
|
|
int32_t L_11 = V_6;
|
|
switch (((int32_t)il2cpp_codegen_subtract(L_11, ((int32_t)9))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_00e2;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_00e2;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_00e2;
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
StringBuilder_t* L_12 = V_0;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_13 = V_4;
|
|
NullCheck(L_13);
|
|
String_t* L_14 = L_13->___Str_2;
|
|
NullCheck(L_12);
|
|
StringBuilder_t* L_15;
|
|
L_15 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_12, L_14, NULL);
|
|
goto IL_00ed;
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
StringBuilder_t* L_16 = V_0;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_17 = V_4;
|
|
NullCheck(L_17);
|
|
Il2CppChar L_18 = L_17->___Ch_3;
|
|
NullCheck(L_16);
|
|
StringBuilder_t* L_19;
|
|
L_19 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_16, L_18, NULL);
|
|
goto IL_00ed;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
StringBuilder_t* L_20 = V_0;
|
|
NullCheck(L_20);
|
|
int32_t L_21;
|
|
L_21 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_20, NULL);
|
|
if ((((int32_t)L_21) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00b0;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_22 = V_2;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_23 = V_1;
|
|
NullCheck(L_23);
|
|
int32_t L_24;
|
|
L_24 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_23, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
NullCheck(L_22);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_22, L_24, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_25 = V_1;
|
|
StringBuilder_t* L_26 = V_0;
|
|
NullCheck(L_26);
|
|
String_t* L_27;
|
|
L_27 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_26);
|
|
NullCheck(L_25);
|
|
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_25, L_27, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
StringBuilder_t* L_28 = V_0;
|
|
NullCheck(L_28);
|
|
StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_28, 0, NULL);
|
|
}
|
|
|
|
IL_00b0:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_29 = V_4;
|
|
NullCheck(L_29);
|
|
int32_t L_30 = L_29->___M_4;
|
|
V_5 = L_30;
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_31 = ___2__caps;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00d5;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_32 = V_5;
|
|
if ((((int32_t)L_32) < ((int32_t)0)))
|
|
{
|
|
goto IL_00d5;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_33 = ___2__caps;
|
|
int32_t L_34 = V_5;
|
|
int32_t L_35 = L_34;
|
|
RuntimeObject* L_36 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_35);
|
|
NullCheck(L_33);
|
|
RuntimeObject* L_37;
|
|
L_37 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(28 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_33, L_36);
|
|
V_5 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_37, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))));
|
|
}
|
|
|
|
IL_00d5:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_38 = V_2;
|
|
int32_t L_39 = V_5;
|
|
NullCheck(L_38);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_38, ((int32_t)il2cpp_codegen_subtract(((int32_t)-5), L_39)), List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
goto IL_00ed;
|
|
}
|
|
|
|
IL_00e2:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_40 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_40);
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_40, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59A83BD1E85529AB2BC64F229A50F1DE88588D40)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexReplacement__ctor_m9CE743F0908A59F98461440AE5B842BE1BC72EA5_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_00ed:
|
|
{
|
|
int32_t L_41 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_41, 1));
|
|
}
|
|
|
|
IL_00f1:
|
|
{
|
|
int32_t L_42 = V_3;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_43 = ___1_concat;
|
|
NullCheck(L_43);
|
|
int32_t L_44;
|
|
L_44 = RegexNode_ChildCount_m833AF69D2711D8EEC5E50FD666A61F428A12396D(L_43, NULL);
|
|
if ((((int32_t)L_42) < ((int32_t)L_44)))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_45 = V_0;
|
|
NullCheck(L_45);
|
|
int32_t L_46;
|
|
L_46 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_45, NULL);
|
|
if ((((int32_t)L_46) <= ((int32_t)0)))
|
|
{
|
|
goto IL_011e;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_47 = V_2;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_48 = V_1;
|
|
NullCheck(L_48);
|
|
int32_t L_49;
|
|
L_49 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_48, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
NullCheck(L_47);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_47, L_49, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_50 = V_1;
|
|
StringBuilder_t* L_51 = V_0;
|
|
NullCheck(L_51);
|
|
String_t* L_52;
|
|
L_52 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_51);
|
|
NullCheck(L_50);
|
|
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_50, L_52, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_011e:
|
|
{
|
|
StringBuilder_t* L_53 = V_0;
|
|
StringBuilderCache_Release_m65C472D3E200ECA86BF7EFDAAF55CA6109678EB5(L_53, NULL);
|
|
String_t* L_54 = ___0_rep;
|
|
__this->___U3CPatternU3Ek__BackingField_7 = L_54;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPatternU3Ek__BackingField_7), (void*)L_54);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_55 = V_1;
|
|
__this->____strings_5 = L_55;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____strings_5), (void*)L_55);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_56 = V_2;
|
|
__this->____rules_6 = L_56;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____rules_6), (void*)L_56);
|
|
return;
|
|
}
|
|
}
|
|
// System.Text.RegularExpressions.RegexReplacement System.Text.RegularExpressions.RegexReplacement::GetOrCreate(System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>,System.String,System.Collections.Hashtable,System.Int32,System.Collections.Hashtable,System.Text.RegularExpressions.RegexOptions)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* RegexReplacement_GetOrCreate_m2C3E8DB4E10AFC24D45D754E67E5C989F40455F1 (WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* ___0_replRef, String_t* ___1_replacement, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___2_caps, int32_t ___3_capsize, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___4_capnames, int32_t ___5_roptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WeakReference_1_SetTarget_m87BF827B6B3CCB82958155D5DEEC9EA1951272D4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WeakReference_1_TryGetTarget_mF3D765CD93EDFAF1750A2F4F47CB879B365DD3B8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* V_0 = NULL;
|
|
{
|
|
WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* L_0 = ___0_replRef;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = WeakReference_1_TryGetTarget_mF3D765CD93EDFAF1750A2F4F47CB879B365DD3B8(L_0, (&V_0), WeakReference_1_TryGetTarget_mF3D765CD93EDFAF1750A2F4F47CB879B365DD3B8_RuntimeMethod_var);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
String_t* L_3;
|
|
L_3 = RegexReplacement_get_Pattern_m146EA30FB574587E88DD056AC22F79375C3F55E6_inline(L_2, NULL);
|
|
String_t* L_4 = ___1_replacement;
|
|
NullCheck(L_3);
|
|
bool L_5;
|
|
L_5 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_3, L_4, NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
String_t* L_6 = ___1_replacement;
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_7 = ___2_caps;
|
|
int32_t L_8 = ___3_capsize;
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_9 = ___4_capnames;
|
|
int32_t L_10 = ___5_roptions;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40_il2cpp_TypeInfo_var);
|
|
RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* L_11;
|
|
L_11 = RegexParser_ParseReplacement_m552460B4F6F5F7B1B0D2F4E01A3847BE8662AF13(L_6, L_7, L_8, L_9, L_10, NULL);
|
|
V_0 = L_11;
|
|
WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* L_12 = ___0_replRef;
|
|
RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* L_13 = V_0;
|
|
NullCheck(L_12);
|
|
WeakReference_1_SetTarget_m87BF827B6B3CCB82958155D5DEEC9EA1951272D4(L_12, L_13, WeakReference_1_SetTarget_m87BF827B6B3CCB82958155D5DEEC9EA1951272D4_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* L_14 = V_0;
|
|
return L_14;
|
|
}
|
|
}
|
|
// System.String System.Text.RegularExpressions.RegexReplacement::get_Pattern()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexReplacement_get_Pattern_m146EA30FB574587E88DD056AC22F79375C3F55E6 (RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->___U3CPatternU3Ek__BackingField_7;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexReplacement::ReplacementImpl(System.Text.StringBuilder,System.Text.RegularExpressions.Match)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexReplacement_ReplacementImpl_m60E4B82702C44912E56FED402AC793E7B7CCC7E8 (RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* __this, StringBuilder_t* ___0_sb, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___1_match, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_00a3;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_0 = __this->____rules_6;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
int32_t L_2;
|
|
L_2 = List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D(L_0, L_1, List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
if ((((int32_t)L_3) < ((int32_t)0)))
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_4 = ___0_sb;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_5 = __this->____strings_5;
|
|
int32_t L_6 = V_1;
|
|
NullCheck(L_5);
|
|
String_t* L_7;
|
|
L_7 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_5, L_6, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
NullCheck(L_4);
|
|
StringBuilder_t* L_8;
|
|
L_8 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_4, L_7, NULL);
|
|
goto IL_009f;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
int32_t L_9 = V_1;
|
|
if ((((int32_t)L_9) >= ((int32_t)((int32_t)-4))))
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_10 = ___0_sb;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_11 = ___1_match;
|
|
int32_t L_12 = V_1;
|
|
NullCheck(L_11);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_13;
|
|
L_13 = VirtualFuncInvoker1< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, int32_t >::Invoke(6 /* System.ReadOnlySpan`1<System.Char> System.Text.RegularExpressions.Match::GroupToStringImpl(System.Int32) */, L_11, ((int32_t)il2cpp_codegen_subtract(((int32_t)-5), L_12)));
|
|
NullCheck(L_10);
|
|
StringBuilder_t* L_14;
|
|
L_14 = StringBuilder_Append_mD62AD6E44E881E1D56C486CD0C91C275C86D42E0(L_10, L_13, NULL);
|
|
goto IL_009f;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
int32_t L_15 = V_1;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract(((int32_t)-5), L_15));
|
|
int32_t L_16 = V_2;
|
|
switch (((int32_t)il2cpp_codegen_subtract(L_16, ((int32_t)-4))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
StringBuilder_t* L_17 = ___0_sb;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_18 = ___1_match;
|
|
NullCheck(L_18);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_19;
|
|
L_19 = Capture_GetLeftSubstring_mBFF01B80F38DA0FF4E56EFEF9FD9EE8899AE57DC(L_18, NULL);
|
|
NullCheck(L_17);
|
|
StringBuilder_t* L_20;
|
|
L_20 = StringBuilder_Append_mD62AD6E44E881E1D56C486CD0C91C275C86D42E0(L_17, L_19, NULL);
|
|
goto IL_009f;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
StringBuilder_t* L_21 = ___0_sb;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_22 = ___1_match;
|
|
NullCheck(L_22);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_23;
|
|
L_23 = Capture_GetRightSubstring_m1F1F896A999BC08AEEBD1BB28616F12FC593D1C3(L_22, NULL);
|
|
NullCheck(L_21);
|
|
StringBuilder_t* L_24;
|
|
L_24 = StringBuilder_Append_mD62AD6E44E881E1D56C486CD0C91C275C86D42E0(L_21, L_23, NULL);
|
|
goto IL_009f;
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
StringBuilder_t* L_25 = ___0_sb;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_26 = ___1_match;
|
|
NullCheck(L_26);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27;
|
|
L_27 = Match_LastGroupToStringImpl_m78C890F3547E00454BEB81BC939FE680AAEBB29A(L_26, NULL);
|
|
NullCheck(L_25);
|
|
StringBuilder_t* L_28;
|
|
L_28 = StringBuilder_Append_mD62AD6E44E881E1D56C486CD0C91C275C86D42E0(L_25, L_27, NULL);
|
|
goto IL_009f;
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
StringBuilder_t* L_29 = ___0_sb;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_30 = ___1_match;
|
|
NullCheck(L_30);
|
|
String_t* L_31;
|
|
L_31 = Capture_get_Text_mDD394681E5FC39FFDCCD9552C0BF09DF8A7054ED_inline(L_30, NULL);
|
|
NullCheck(L_29);
|
|
StringBuilder_t* L_32;
|
|
L_32 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_29, L_31, NULL);
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
int32_t L_33 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_33, 1));
|
|
}
|
|
|
|
IL_00a3:
|
|
{
|
|
int32_t L_34 = V_0;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_35 = __this->____rules_6;
|
|
NullCheck(L_35);
|
|
int32_t L_36;
|
|
L_36 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_35, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
if ((((int32_t)L_34) < ((int32_t)L_36)))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexReplacement::ReplacementImplRTL(System.Collections.Generic.List`1<System.String>,System.Text.RegularExpressions.Match)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexReplacement_ReplacementImplRTL_m343AE6575EE1B8810D049CA7F8203237920C84E0 (RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* __this, List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___0_al, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___1_match, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
int32_t V_3 = 0;
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_0 = __this->____rules_6;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_0, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
|
|
goto IL_00e7;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_2 = __this->____rules_6;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_4;
|
|
L_4 = List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D(L_2, L_3, List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
|
|
V_1 = L_4;
|
|
int32_t L_5 = V_1;
|
|
if ((((int32_t)L_5) < ((int32_t)0)))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_6 = ___0_al;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_7 = __this->____strings_5;
|
|
int32_t L_8 = V_1;
|
|
NullCheck(L_7);
|
|
String_t* L_9;
|
|
L_9 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_7, L_8, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
NullCheck(L_6);
|
|
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_6, L_9, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
goto IL_00e3;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
if ((((int32_t)L_10) >= ((int32_t)((int32_t)-4))))
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
{
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_11 = ___0_al;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_12 = ___1_match;
|
|
int32_t L_13 = V_1;
|
|
NullCheck(L_12);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_14;
|
|
L_14 = VirtualFuncInvoker1< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, int32_t >::Invoke(6 /* System.ReadOnlySpan`1<System.Char> System.Text.RegularExpressions.Match::GroupToStringImpl(System.Int32) */, L_12, ((int32_t)il2cpp_codegen_subtract(((int32_t)-5), L_13)));
|
|
V_2 = L_14;
|
|
String_t* L_15;
|
|
L_15 = ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D((&V_2), ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D_RuntimeMethod_var);
|
|
NullCheck(L_11);
|
|
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_11, L_15, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
goto IL_00e3;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
int32_t L_16 = V_1;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(((int32_t)-5), L_16));
|
|
int32_t L_17 = V_3;
|
|
switch (((int32_t)il2cpp_codegen_subtract(L_17, ((int32_t)-4))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_00d7;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_00bb;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_00e3;
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_18 = ___0_al;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_19 = ___1_match;
|
|
NullCheck(L_19);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_20;
|
|
L_20 = Capture_GetLeftSubstring_mBFF01B80F38DA0FF4E56EFEF9FD9EE8899AE57DC(L_19, NULL);
|
|
V_2 = L_20;
|
|
String_t* L_21;
|
|
L_21 = ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D((&V_2), ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D_RuntimeMethod_var);
|
|
NullCheck(L_18);
|
|
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_18, L_21, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
goto IL_00e3;
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_22 = ___0_al;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_23 = ___1_match;
|
|
NullCheck(L_23);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_24;
|
|
L_24 = Capture_GetRightSubstring_m1F1F896A999BC08AEEBD1BB28616F12FC593D1C3(L_23, NULL);
|
|
V_2 = L_24;
|
|
String_t* L_25;
|
|
L_25 = ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D((&V_2), ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D_RuntimeMethod_var);
|
|
NullCheck(L_22);
|
|
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_22, L_25, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
goto IL_00e3;
|
|
}
|
|
|
|
IL_00bb:
|
|
{
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_26 = ___0_al;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_27 = ___1_match;
|
|
NullCheck(L_27);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_28;
|
|
L_28 = Match_LastGroupToStringImpl_m78C890F3547E00454BEB81BC939FE680AAEBB29A(L_27, NULL);
|
|
V_2 = L_28;
|
|
String_t* L_29;
|
|
L_29 = ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D((&V_2), ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D_RuntimeMethod_var);
|
|
NullCheck(L_26);
|
|
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_26, L_29, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
goto IL_00e3;
|
|
}
|
|
|
|
IL_00d7:
|
|
{
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_30 = ___0_al;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_31 = ___1_match;
|
|
NullCheck(L_31);
|
|
String_t* L_32;
|
|
L_32 = Capture_get_Text_mDD394681E5FC39FFDCCD9552C0BF09DF8A7054ED_inline(L_31, NULL);
|
|
NullCheck(L_30);
|
|
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_30, L_32, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00e3:
|
|
{
|
|
int32_t L_33 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_33, 1));
|
|
}
|
|
|
|
IL_00e7:
|
|
{
|
|
int32_t L_34 = V_0;
|
|
if ((((int32_t)L_34) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.Text.RegularExpressions.RegexReplacement::Replace(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexReplacement_Replace_m54375FA094C20D81305C8DDC17AB973BF1B461F9 (RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* __this, Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___0_regex, String_t* ___1_input, int32_t ___2_count, int32_t ___3_startat, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* V_0 = NULL;
|
|
StringBuilder_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
{
|
|
int32_t L_0 = ___2_count;
|
|
if ((((int32_t)L_0) >= ((int32_t)(-1))))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9957B21B361EC3B1754C930C5A1C41F851A55813)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexReplacement_Replace_m54375FA094C20D81305C8DDC17AB973BF1B461F9_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
int32_t L_2 = ___3_startat;
|
|
if ((((int32_t)L_2) < ((int32_t)0)))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___3_startat;
|
|
String_t* L_4 = ___1_input;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
|
|
if ((((int32_t)L_3) <= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_6 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_6);
|
|
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB132716D89EF0EE2CEF39498DA0895B2449AB344)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB596320AE4D74537B29168E9BDF95B753E2B5301)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexReplacement_Replace_m54375FA094C20D81305C8DDC17AB973BF1B461F9_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
int32_t L_7 = ___2_count;
|
|
if (L_7)
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_8 = ___1_input;
|
|
return L_8;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_9 = ___0_regex;
|
|
String_t* L_10 = ___1_input;
|
|
int32_t L_11 = ___3_startat;
|
|
NullCheck(L_9);
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_12;
|
|
L_12 = Regex_Match_mDF110993CAA26CD41AE9F5DB7F0C307B2680CED3(L_9, L_10, L_11, NULL);
|
|
V_0 = L_12;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_13 = V_0;
|
|
NullCheck(L_13);
|
|
bool L_14;
|
|
L_14 = Group_get_Success_m4E0238EE4B1E7F927E2AF13E2E5901BCA92BE62F(L_13, NULL);
|
|
if (L_14)
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_15 = ___1_input;
|
|
return L_15;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
StringBuilder_t* L_16;
|
|
L_16 = StringBuilderCache_Acquire_m1CF9421EC0F3431719E18A8EE78669748DF10892(((int32_t)16), NULL);
|
|
V_1 = L_16;
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_17 = ___0_regex;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = Regex_get_RightToLeft_m52C4DEE1DC94FC9531785B74111022F3BCC1DF4B(L_17, NULL);
|
|
if (L_18)
|
|
{
|
|
goto IL_00c7;
|
|
}
|
|
}
|
|
{
|
|
V_2 = 0;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_19 = V_0;
|
|
NullCheck(L_19);
|
|
int32_t L_20;
|
|
L_20 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(L_19, NULL);
|
|
int32_t L_21 = V_2;
|
|
if ((((int32_t)L_20) == ((int32_t)L_21)))
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_22 = V_1;
|
|
String_t* L_23 = ___1_input;
|
|
int32_t L_24 = V_2;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_25 = V_0;
|
|
NullCheck(L_25);
|
|
int32_t L_26;
|
|
L_26 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(L_25, NULL);
|
|
int32_t L_27 = V_2;
|
|
NullCheck(L_22);
|
|
StringBuilder_t* L_28;
|
|
L_28 = StringBuilder_Append_mE7CA22532FEF1545B8BC357CB7CAA304BA264703(L_22, L_23, L_24, ((int32_t)il2cpp_codegen_subtract(L_26, L_27)), NULL);
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_29 = V_0;
|
|
NullCheck(L_29);
|
|
int32_t L_30;
|
|
L_30 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(L_29, NULL);
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_31 = V_0;
|
|
NullCheck(L_31);
|
|
int32_t L_32;
|
|
L_32 = Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92_inline(L_31, NULL);
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_30, L_32));
|
|
StringBuilder_t* L_33 = V_1;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_34 = V_0;
|
|
RegexReplacement_ReplacementImpl_m60E4B82702C44912E56FED402AC793E7B7CCC7E8(__this, L_33, L_34, NULL);
|
|
int32_t L_35 = ___2_count;
|
|
int32_t L_36 = ((int32_t)il2cpp_codegen_subtract(L_35, 1));
|
|
___2_count = L_36;
|
|
if (!L_36)
|
|
{
|
|
goto IL_00a5;
|
|
}
|
|
}
|
|
{
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_37 = V_0;
|
|
NullCheck(L_37);
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_38;
|
|
L_38 = Match_NextMatch_m4B7BA2B21E09FA0937806F41DDE3EE0F052C4052(L_37, NULL);
|
|
V_0 = L_38;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_39 = V_0;
|
|
NullCheck(L_39);
|
|
bool L_40;
|
|
L_40 = Group_get_Success_m4E0238EE4B1E7F927E2AF13E2E5901BCA92BE62F(L_39, NULL);
|
|
if (L_40)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
|
|
IL_00a5:
|
|
{
|
|
int32_t L_41 = V_2;
|
|
String_t* L_42 = ___1_input;
|
|
NullCheck(L_42);
|
|
int32_t L_43;
|
|
L_43 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_42, NULL);
|
|
if ((((int32_t)L_41) >= ((int32_t)L_43)))
|
|
{
|
|
goto IL_016c;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_44 = V_1;
|
|
String_t* L_45 = ___1_input;
|
|
int32_t L_46 = V_2;
|
|
String_t* L_47 = ___1_input;
|
|
NullCheck(L_47);
|
|
int32_t L_48;
|
|
L_48 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_47, NULL);
|
|
int32_t L_49 = V_2;
|
|
NullCheck(L_44);
|
|
StringBuilder_t* L_50;
|
|
L_50 = StringBuilder_Append_mE7CA22532FEF1545B8BC357CB7CAA304BA264703(L_44, L_45, L_46, ((int32_t)il2cpp_codegen_subtract(L_48, L_49)), NULL);
|
|
goto IL_016c;
|
|
}
|
|
|
|
IL_00c7:
|
|
{
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_51 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
NullCheck(L_51);
|
|
List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_51, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
|
|
V_3 = L_51;
|
|
String_t* L_52 = ___1_input;
|
|
NullCheck(L_52);
|
|
int32_t L_53;
|
|
L_53 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_52, NULL);
|
|
V_4 = L_53;
|
|
}
|
|
|
|
IL_00d5:
|
|
{
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_54 = V_0;
|
|
NullCheck(L_54);
|
|
int32_t L_55;
|
|
L_55 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(L_54, NULL);
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_56 = V_0;
|
|
NullCheck(L_56);
|
|
int32_t L_57;
|
|
L_57 = Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92_inline(L_56, NULL);
|
|
int32_t L_58 = V_4;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_55, L_57))) == ((int32_t)L_58)))
|
|
{
|
|
goto IL_010f;
|
|
}
|
|
}
|
|
{
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_59 = V_3;
|
|
String_t* L_60 = ___1_input;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_61 = V_0;
|
|
NullCheck(L_61);
|
|
int32_t L_62;
|
|
L_62 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(L_61, NULL);
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_63 = V_0;
|
|
NullCheck(L_63);
|
|
int32_t L_64;
|
|
L_64 = Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92_inline(L_63, NULL);
|
|
int32_t L_65 = V_4;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_66 = V_0;
|
|
NullCheck(L_66);
|
|
int32_t L_67;
|
|
L_67 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(L_66, NULL);
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_68 = V_0;
|
|
NullCheck(L_68);
|
|
int32_t L_69;
|
|
L_69 = Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92_inline(L_68, NULL);
|
|
NullCheck(L_60);
|
|
String_t* L_70;
|
|
L_70 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_60, ((int32_t)il2cpp_codegen_add(L_62, L_64)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_65, L_67)), L_69)), NULL);
|
|
NullCheck(L_59);
|
|
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_59, L_70, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_71 = V_0;
|
|
NullCheck(L_71);
|
|
int32_t L_72;
|
|
L_72 = Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline(L_71, NULL);
|
|
V_4 = L_72;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_73 = V_3;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_74 = V_0;
|
|
RegexReplacement_ReplacementImplRTL_m343AE6575EE1B8810D049CA7F8203237920C84E0(__this, L_73, L_74, NULL);
|
|
int32_t L_75 = ___2_count;
|
|
int32_t L_76 = ((int32_t)il2cpp_codegen_subtract(L_75, 1));
|
|
___2_count = L_76;
|
|
if (!L_76)
|
|
{
|
|
goto IL_0136;
|
|
}
|
|
}
|
|
{
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_77 = V_0;
|
|
NullCheck(L_77);
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_78;
|
|
L_78 = Match_NextMatch_m4B7BA2B21E09FA0937806F41DDE3EE0F052C4052(L_77, NULL);
|
|
V_0 = L_78;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_79 = V_0;
|
|
NullCheck(L_79);
|
|
bool L_80;
|
|
L_80 = Group_get_Success_m4E0238EE4B1E7F927E2AF13E2E5901BCA92BE62F(L_79, NULL);
|
|
if (L_80)
|
|
{
|
|
goto IL_00d5;
|
|
}
|
|
}
|
|
|
|
IL_0136:
|
|
{
|
|
int32_t L_81 = V_4;
|
|
if ((((int32_t)L_81) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0146;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_82 = V_1;
|
|
String_t* L_83 = ___1_input;
|
|
int32_t L_84 = V_4;
|
|
NullCheck(L_82);
|
|
StringBuilder_t* L_85;
|
|
L_85 = StringBuilder_Append_mE7CA22532FEF1545B8BC357CB7CAA304BA264703(L_82, L_83, 0, L_84, NULL);
|
|
}
|
|
|
|
IL_0146:
|
|
{
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_86 = V_3;
|
|
NullCheck(L_86);
|
|
int32_t L_87;
|
|
L_87 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_86, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_87, 1));
|
|
goto IL_0167;
|
|
}
|
|
|
|
IL_0152:
|
|
{
|
|
StringBuilder_t* L_88 = V_1;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_89 = V_3;
|
|
int32_t L_90 = V_5;
|
|
NullCheck(L_89);
|
|
String_t* L_91;
|
|
L_91 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_89, L_90, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
NullCheck(L_88);
|
|
StringBuilder_t* L_92;
|
|
L_92 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_88, L_91, NULL);
|
|
int32_t L_93 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_93, 1));
|
|
}
|
|
|
|
IL_0167:
|
|
{
|
|
int32_t L_94 = V_5;
|
|
if ((((int32_t)L_94) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0152;
|
|
}
|
|
}
|
|
|
|
IL_016c:
|
|
{
|
|
StringBuilder_t* L_95 = V_1;
|
|
String_t* L_96;
|
|
L_96 = StringBuilderCache_GetStringAndRelease_m4A7AB11554F7E80352AB8C3AC72D7AD4C7108FB0(L_95, NULL);
|
|
return L_96;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner__ctor_mBC777F351AD6D1CDD5F20C408B936F7D0F36ED69 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.RegexRunner::Scan(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* RegexRunner_Scan_m903691F4DFB68C0267F240D61A6F166BB592CE53 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___0_regex, String_t* ___1_text, int32_t ___2_textbeg, int32_t ___3_textend, int32_t ___4_textstart, int32_t ___5_prevlen, bool ___6_quick, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___7_timeout, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* G_B2_0 = NULL;
|
|
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* G_B1_0 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* G_B3_1 = NULL;
|
|
int32_t G_B6_0 = 0;
|
|
int32_t G_B9_0 = 0;
|
|
{
|
|
V_2 = (bool)0;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___7_timeout;
|
|
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
|
|
Regex_ValidateMatchTimeout_m530D1B5EBC69BEAA11CCB7053A96C4AA9869C591(L_0, NULL);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___InfiniteMatchTimeout_9;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ___7_timeout;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = TimeSpan_op_Equality_m951689F806957B14F237DAFCEE4CB322799A723E(L_1, L_2, NULL);
|
|
__this->____ignoreTimeout_15 = L_3;
|
|
bool L_4 = __this->____ignoreTimeout_15;
|
|
G_B1_0 = __this;
|
|
if (L_4)
|
|
{
|
|
G_B2_0 = __this;
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
double L_5;
|
|
L_5 = TimeSpan_get_TotalMilliseconds_m3506C1A49F1FE37A82F3027EA061D18215EF87CF((&___7_timeout), NULL);
|
|
G_B3_0 = il2cpp_codegen_cast_double_to_int<int32_t>(((double)il2cpp_codegen_add(L_5, (0.5))));
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_0043;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
double L_6;
|
|
L_6 = TimeSpan_get_TotalMilliseconds_m3506C1A49F1FE37A82F3027EA061D18215EF87CF((&((Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields*)il2cpp_codegen_static_fields_for(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var))->___InfiniteMatchTimeout_9), NULL);
|
|
G_B3_0 = il2cpp_codegen_cast_double_to_int<int32_t>(L_6);
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
NullCheck(G_B3_1);
|
|
G_B3_1->____timeout_14 = G_B3_0;
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_7 = ___0_regex;
|
|
__this->___runregex_13 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___runregex_13), (void*)L_7);
|
|
String_t* L_8 = ___1_text;
|
|
__this->___runtext_3 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___runtext_3), (void*)L_8);
|
|
int32_t L_9 = ___2_textbeg;
|
|
__this->___runtextbeg_0 = L_9;
|
|
int32_t L_10 = ___3_textend;
|
|
__this->___runtextend_1 = L_10;
|
|
int32_t L_11 = ___4_textstart;
|
|
__this->___runtextstart_2 = L_11;
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_12 = __this->___runregex_13;
|
|
NullCheck(L_12);
|
|
bool L_13;
|
|
L_13 = Regex_get_RightToLeft_m52C4DEE1DC94FC9531785B74111022F3BCC1DF4B(L_12, NULL);
|
|
if (L_13)
|
|
{
|
|
goto IL_007d;
|
|
}
|
|
}
|
|
{
|
|
G_B6_0 = 1;
|
|
goto IL_007e;
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
G_B6_0 = (-1);
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
V_0 = G_B6_0;
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_14 = __this->___runregex_13;
|
|
NullCheck(L_14);
|
|
bool L_15;
|
|
L_15 = Regex_get_RightToLeft_m52C4DEE1DC94FC9531785B74111022F3BCC1DF4B(L_14, NULL);
|
|
if (L_15)
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = __this->___runtextend_1;
|
|
G_B9_0 = L_16;
|
|
goto IL_009a;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
int32_t L_17 = __this->___runtextbeg_0;
|
|
G_B9_0 = L_17;
|
|
}
|
|
|
|
IL_009a:
|
|
{
|
|
V_1 = G_B9_0;
|
|
int32_t L_18 = ___4_textstart;
|
|
__this->___runtextpos_4 = L_18;
|
|
int32_t L_19 = ___5_prevlen;
|
|
if (L_19)
|
|
{
|
|
goto IL_00c4;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_20 = __this->___runtextpos_4;
|
|
int32_t L_21 = V_1;
|
|
if ((!(((uint32_t)L_20) == ((uint32_t)L_21))))
|
|
{
|
|
goto IL_00b6;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var);
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_22;
|
|
L_22 = Match_get_Empty_m50E10899C5A892532ED484CDA11DE27CC6A7B546_inline(NULL);
|
|
return L_22;
|
|
}
|
|
|
|
IL_00b6:
|
|
{
|
|
int32_t L_23 = __this->___runtextpos_4;
|
|
int32_t L_24 = V_0;
|
|
__this->___runtextpos_4 = ((int32_t)il2cpp_codegen_add(L_23, L_24));
|
|
}
|
|
|
|
IL_00c4:
|
|
{
|
|
RegexRunner_StartTimeoutWatch_mA17870A15492787CA1384132267054AB09BE8BE9(__this, NULL);
|
|
}
|
|
|
|
IL_00ca:
|
|
{
|
|
bool L_25;
|
|
L_25 = VirtualFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.Text.RegularExpressions.RegexRunner::FindFirstChar() */, __this);
|
|
if (!L_25)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
RegexRunner_CheckTimeout_m20BF0CD8BC16738ED6E7F20AAF5B4EE695E7E120(__this, NULL);
|
|
bool L_26 = V_2;
|
|
if (L_26)
|
|
{
|
|
goto IL_00e3;
|
|
}
|
|
}
|
|
{
|
|
RegexRunner_InitMatch_mCCF94A1E7CCE89275E47BB218C4DD58DF5D5593D(__this, NULL);
|
|
V_2 = (bool)1;
|
|
}
|
|
|
|
IL_00e3:
|
|
{
|
|
VirtualActionInvoker0::Invoke(4 /* System.Void System.Text.RegularExpressions.RegexRunner::Go() */, __this);
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_27 = __this->___runmatch_12;
|
|
NullCheck(L_27);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_28 = L_27->____matchcount_15;
|
|
NullCheck(L_28);
|
|
int32_t L_29 = 0;
|
|
int32_t L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
|
|
if ((((int32_t)L_30) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0102;
|
|
}
|
|
}
|
|
{
|
|
bool L_31 = ___6_quick;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_32;
|
|
L_32 = RegexRunner_TidyMatch_m0EEEF0CFBB55AFF485B4D9F9FD21834B9B3A01FA(__this, L_31, NULL);
|
|
return L_32;
|
|
}
|
|
|
|
IL_0102:
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_33 = __this->___runtrack_5;
|
|
NullCheck(L_33);
|
|
__this->___runtrackpos_6 = ((int32_t)(((RuntimeArray*)L_33)->max_length));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_34 = __this->___runstack_7;
|
|
NullCheck(L_34);
|
|
__this->___runstackpos_8 = ((int32_t)(((RuntimeArray*)L_34)->max_length));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_35 = __this->___runcrawl_9;
|
|
NullCheck(L_35);
|
|
__this->___runcrawlpos_10 = ((int32_t)(((RuntimeArray*)L_35)->max_length));
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
int32_t L_36 = __this->___runtextpos_4;
|
|
int32_t L_37 = V_1;
|
|
if ((!(((uint32_t)L_36) == ((uint32_t)L_37))))
|
|
{
|
|
goto IL_0143;
|
|
}
|
|
}
|
|
{
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_38;
|
|
L_38 = RegexRunner_TidyMatch_m0EEEF0CFBB55AFF485B4D9F9FD21834B9B3A01FA(__this, (bool)1, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var);
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_39;
|
|
L_39 = Match_get_Empty_m50E10899C5A892532ED484CDA11DE27CC6A7B546_inline(NULL);
|
|
return L_39;
|
|
}
|
|
|
|
IL_0143:
|
|
{
|
|
int32_t L_40 = __this->___runtextpos_4;
|
|
int32_t L_41 = V_0;
|
|
__this->___runtextpos_4 = ((int32_t)il2cpp_codegen_add(L_40, L_41));
|
|
goto IL_00ca;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::StartTimeoutWatch()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_StartTimeoutWatch_mA17870A15492787CA1384132267054AB09BE8BE9 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->____ignoreTimeout_15;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
__this->____timeoutChecksToSkip_18 = ((int32_t)1000);
|
|
int32_t L_1;
|
|
L_1 = Environment_get_TickCount_m183BFCF001E12849E3D898957F0B81FD88BA183C(NULL);
|
|
int32_t L_2 = __this->____timeout_14;
|
|
__this->____timeoutOccursAt_16 = ((int32_t)il2cpp_codegen_add(L_1, L_2));
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::CheckTimeout()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_CheckTimeout_m20BF0CD8BC16738ED6E7F20AAF5B4EE695E7E120 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->____ignoreTimeout_15;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
RegexRunner_DoCheckTimeout_mC26B9239FA1CD3DC98F11A82800F61852793CEA5(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::DoCheckTimeout()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_DoCheckTimeout_mC26B9239FA1CD3DC98F11A82800F61852793CEA5 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____timeoutChecksToSkip_18;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_0, 1));
|
|
int32_t L_1 = V_1;
|
|
__this->____timeoutChecksToSkip_18 = L_1;
|
|
int32_t L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
__this->____timeoutChecksToSkip_18 = ((int32_t)1000);
|
|
int32_t L_3;
|
|
L_3 = Environment_get_TickCount_m183BFCF001E12849E3D898957F0B81FD88BA183C(NULL);
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = __this->____timeoutOccursAt_16;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
int32_t L_6 = __this->____timeoutOccursAt_16;
|
|
if ((((int32_t)0) <= ((int32_t)L_6)))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)0) >= ((int32_t)L_7)))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
String_t* L_8 = __this->___runtext_3;
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_9 = __this->___runregex_13;
|
|
NullCheck(L_9);
|
|
String_t* L_10 = L_9->___pattern_12;
|
|
int32_t L_11 = __this->____timeout_14;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)));
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_12;
|
|
L_12 = TimeSpan_FromMilliseconds_mFDCBE9EDA3F6743302C3DD81259AF5D2F00EF775(((double)L_11), NULL);
|
|
RegexMatchTimeoutException_t95DDC5399E4D8ADB37A9AADD221BA8DE0A342336* L_13 = (RegexMatchTimeoutException_t95DDC5399E4D8ADB37A9AADD221BA8DE0A342336*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexMatchTimeoutException_t95DDC5399E4D8ADB37A9AADD221BA8DE0A342336_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_13);
|
|
RegexMatchTimeoutException__ctor_m24286DF7231B227E3A8B3C31AE33447361971005(L_13, L_8, L_10, L_12, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexRunner_DoCheckTimeout_mC26B9239FA1CD3DC98F11A82800F61852793CEA5_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::InitMatch()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_InitMatch_mCCF94A1E7CCE89275E47BB218C4DD58DF5D5593D (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MatchSparse_t06FDC774ECCE8FFA0534A17E5990A8407658E906_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_0 = __this->___runmatch_12;
|
|
if (L_0)
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
}
|
|
{
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_1 = __this->___runregex_13;
|
|
NullCheck(L_1);
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_2 = L_1->___caps_15;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
{
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_3 = __this->___runregex_13;
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_4 = __this->___runregex_13;
|
|
NullCheck(L_4);
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_5 = L_4->___caps_15;
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_6 = __this->___runregex_13;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = L_6->___capsize_18;
|
|
String_t* L_8 = __this->___runtext_3;
|
|
int32_t L_9 = __this->___runtextbeg_0;
|
|
int32_t L_10 = __this->___runtextend_1;
|
|
int32_t L_11 = __this->___runtextbeg_0;
|
|
int32_t L_12 = __this->___runtextstart_2;
|
|
MatchSparse_t06FDC774ECCE8FFA0534A17E5990A8407658E906* L_13 = (MatchSparse_t06FDC774ECCE8FFA0534A17E5990A8407658E906*)il2cpp_codegen_object_new(MatchSparse_t06FDC774ECCE8FFA0534A17E5990A8407658E906_il2cpp_TypeInfo_var);
|
|
NullCheck(L_13);
|
|
MatchSparse__ctor_m7CEA8A7F538C706527778E8E75003DD74AC2FD41(L_13, L_3, L_5, L_7, L_8, L_9, ((int32_t)il2cpp_codegen_subtract(L_10, L_11)), L_12, NULL);
|
|
__this->___runmatch_12 = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___runmatch_12), (void*)L_13);
|
|
goto IL_00c6;
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_14 = __this->___runregex_13;
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_15 = __this->___runregex_13;
|
|
NullCheck(L_15);
|
|
int32_t L_16 = L_15->___capsize_18;
|
|
String_t* L_17 = __this->___runtext_3;
|
|
int32_t L_18 = __this->___runtextbeg_0;
|
|
int32_t L_19 = __this->___runtextend_1;
|
|
int32_t L_20 = __this->___runtextbeg_0;
|
|
int32_t L_21 = __this->___runtextstart_2;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_22 = (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*)il2cpp_codegen_object_new(Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_22);
|
|
Match__ctor_m2A6BD37E98680890114AC62CDD23E1821E80A53A(L_22, L_14, L_16, L_17, L_18, ((int32_t)il2cpp_codegen_subtract(L_19, L_20)), L_21, NULL);
|
|
__this->___runmatch_12 = L_22;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___runmatch_12), (void*)L_22);
|
|
goto IL_00c6;
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_23 = __this->___runmatch_12;
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_24 = __this->___runregex_13;
|
|
String_t* L_25 = __this->___runtext_3;
|
|
int32_t L_26 = __this->___runtextbeg_0;
|
|
int32_t L_27 = __this->___runtextend_1;
|
|
int32_t L_28 = __this->___runtextstart_2;
|
|
NullCheck(L_23);
|
|
VirtualActionInvoker5< Regex_tE773142C2BE45C5D362B0F815AFF831707A51772*, String_t*, int32_t, int32_t, int32_t >::Invoke(4 /* System.Void System.Text.RegularExpressions.Match::Reset(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32) */, L_23, L_24, L_25, L_26, L_27, L_28);
|
|
}
|
|
|
|
IL_00c6:
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_29 = __this->___runcrawl_9;
|
|
if (!L_29)
|
|
{
|
|
goto IL_00f9;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_30 = __this->___runtrack_5;
|
|
NullCheck(L_30);
|
|
__this->___runtrackpos_6 = ((int32_t)(((RuntimeArray*)L_30)->max_length));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_31 = __this->___runstack_7;
|
|
NullCheck(L_31);
|
|
__this->___runstackpos_8 = ((int32_t)(((RuntimeArray*)L_31)->max_length));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_32 = __this->___runcrawl_9;
|
|
NullCheck(L_32);
|
|
__this->___runcrawlpos_10 = ((int32_t)(((RuntimeArray*)L_32)->max_length));
|
|
return;
|
|
}
|
|
|
|
IL_00f9:
|
|
{
|
|
VirtualActionInvoker0::Invoke(6 /* System.Void System.Text.RegularExpressions.RegexRunner::InitTrackCount() */, __this);
|
|
int32_t L_33 = __this->___runtrackcount_11;
|
|
V_0 = ((int32_t)il2cpp_codegen_multiply(L_33, 8));
|
|
int32_t L_34 = __this->___runtrackcount_11;
|
|
V_1 = ((int32_t)il2cpp_codegen_multiply(L_34, 8));
|
|
int32_t L_35 = V_0;
|
|
if ((((int32_t)L_35) >= ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_0119;
|
|
}
|
|
}
|
|
{
|
|
V_0 = ((int32_t)32);
|
|
}
|
|
|
|
IL_0119:
|
|
{
|
|
int32_t L_36 = V_1;
|
|
if ((((int32_t)L_36) >= ((int32_t)((int32_t)16))))
|
|
{
|
|
goto IL_0121;
|
|
}
|
|
}
|
|
{
|
|
V_1 = ((int32_t)16);
|
|
}
|
|
|
|
IL_0121:
|
|
{
|
|
int32_t L_37 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_38 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)L_37);
|
|
__this->___runtrack_5 = L_38;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___runtrack_5), (void*)L_38);
|
|
int32_t L_39 = V_0;
|
|
__this->___runtrackpos_6 = L_39;
|
|
int32_t L_40 = V_1;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_41 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)L_40);
|
|
__this->___runstack_7 = L_41;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___runstack_7), (void*)L_41);
|
|
int32_t L_42 = V_1;
|
|
__this->___runstackpos_8 = L_42;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_43 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)32));
|
|
__this->___runcrawl_9 = L_43;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___runcrawl_9), (void*)L_43);
|
|
__this->___runcrawlpos_10 = ((int32_t)32);
|
|
return;
|
|
}
|
|
}
|
|
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.RegexRunner::TidyMatch(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* RegexRunner_TidyMatch_m0EEEF0CFBB55AFF485B4D9F9FD21834B9B3A01FA (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, bool ___0_quick, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_quick;
|
|
if (L_0)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_1 = __this->___runmatch_12;
|
|
__this->___runmatch_12 = (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___runmatch_12), (void*)(Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*)NULL);
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_2 = L_1;
|
|
int32_t L_3 = __this->___runtextpos_4;
|
|
NullCheck(L_2);
|
|
VirtualActionInvoker1< int32_t >::Invoke(13 /* System.Void System.Text.RegularExpressions.Match::Tidy(System.Int32) */, L_2, L_3);
|
|
return L_2;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
return (Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F*)NULL;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::EnsureStorage()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_EnsureStorage_mB3DB043396771740A05B2AABC293DAAB1250B024 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___runstackpos_8;
|
|
int32_t L_1 = __this->___runtrackcount_11;
|
|
if ((((int32_t)L_0) >= ((int32_t)((int32_t)il2cpp_codegen_multiply(L_1, 4)))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
RegexRunner_DoubleStack_m89C12DF438D7BE4ADA2A4D1DFA36F274F292E1F4(__this, NULL);
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
int32_t L_2 = __this->___runtrackpos_6;
|
|
int32_t L_3 = __this->___runtrackcount_11;
|
|
if ((((int32_t)L_2) >= ((int32_t)((int32_t)il2cpp_codegen_multiply(L_3, 4)))))
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
RegexRunner_DoubleTrack_m15E35365FAF5F438C7BD0BB0C37594F765949F1F(__this, NULL);
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexRunner::IsBoundary(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexRunner_IsBoundary_mCF4AE83F6FE3CC46C71C4558DBCDEC255BD422B8 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___0_index, int32_t ___1_startpos, int32_t ___2_endpos, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B6_0 = 0;
|
|
int32_t G_B6_1 = 0;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_startpos;
|
|
if ((((int32_t)L_0) <= ((int32_t)L_1)))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = __this->___runtext_3;
|
|
int32_t L_3 = ___0_index;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, ((int32_t)il2cpp_codegen_subtract(L_3, 1)), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = RegexCharClass_IsWordChar_m2912E5148F0F89512DDF7D629188ADA82961080C(L_4, NULL);
|
|
G_B3_0 = ((int32_t)(L_5));
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_6 = ___0_index;
|
|
int32_t L_7 = ___2_endpos;
|
|
G_B4_0 = G_B3_0;
|
|
if ((((int32_t)L_6) >= ((int32_t)L_7)))
|
|
{
|
|
G_B5_0 = G_B3_0;
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_8 = __this->___runtext_3;
|
|
int32_t L_9 = ___0_index;
|
|
NullCheck(L_8);
|
|
Il2CppChar L_10;
|
|
L_10 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_8, L_9, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
bool L_11;
|
|
L_11 = RegexCharClass_IsWordChar_m2912E5148F0F89512DDF7D629188ADA82961080C(L_10, NULL);
|
|
G_B6_0 = ((int32_t)(L_11));
|
|
G_B6_1 = G_B4_0;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
G_B6_0 = 0;
|
|
G_B6_1 = G_B5_0;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return (bool)((((int32_t)((((int32_t)G_B6_1) == ((int32_t)G_B6_0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexRunner::IsECMABoundary(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexRunner_IsECMABoundary_m56C692126DF69F0933BBFCBF122F764C6093DA26 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___0_index, int32_t ___1_startpos, int32_t ___2_endpos, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B6_0 = 0;
|
|
int32_t G_B6_1 = 0;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_startpos;
|
|
if ((((int32_t)L_0) <= ((int32_t)L_1)))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = __this->___runtext_3;
|
|
int32_t L_3 = ___0_index;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, ((int32_t)il2cpp_codegen_subtract(L_3, 1)), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = RegexCharClass_IsECMAWordChar_m95AFA872BB22C901C60DFCC9C8735BA78EE1EC84(L_4, NULL);
|
|
G_B3_0 = ((int32_t)(L_5));
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_6 = ___0_index;
|
|
int32_t L_7 = ___2_endpos;
|
|
G_B4_0 = G_B3_0;
|
|
if ((((int32_t)L_6) >= ((int32_t)L_7)))
|
|
{
|
|
G_B5_0 = G_B3_0;
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_8 = __this->___runtext_3;
|
|
int32_t L_9 = ___0_index;
|
|
NullCheck(L_8);
|
|
Il2CppChar L_10;
|
|
L_10 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_8, L_9, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C_il2cpp_TypeInfo_var);
|
|
bool L_11;
|
|
L_11 = RegexCharClass_IsECMAWordChar_m95AFA872BB22C901C60DFCC9C8735BA78EE1EC84(L_10, NULL);
|
|
G_B6_0 = ((int32_t)(L_11));
|
|
G_B6_1 = G_B4_0;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
G_B6_0 = 0;
|
|
G_B6_1 = G_B5_0;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return (bool)((((int32_t)((((int32_t)G_B6_1) == ((int32_t)G_B6_0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::DoubleTrack()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_DoubleTrack_m15E35365FAF5F438C7BD0BB0C37594F765949F1F (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___runtrack_5;
|
|
NullCheck(L_0);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_0)->max_length)), 2)));
|
|
V_0 = L_1;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___runtrack_5;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = __this->___runtrack_5;
|
|
NullCheck(L_4);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = __this->___runtrack_5;
|
|
NullCheck(L_5);
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_2, 0, (RuntimeArray*)L_3, ((int32_t)(((RuntimeArray*)L_4)->max_length)), ((int32_t)(((RuntimeArray*)L_5)->max_length)), NULL);
|
|
int32_t L_6 = __this->___runtrackpos_6;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = __this->___runtrack_5;
|
|
NullCheck(L_7);
|
|
__this->___runtrackpos_6 = ((int32_t)il2cpp_codegen_add(L_6, ((int32_t)(((RuntimeArray*)L_7)->max_length))));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = V_0;
|
|
__this->___runtrack_5 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___runtrack_5), (void*)L_8);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::DoubleStack()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_DoubleStack_m89C12DF438D7BE4ADA2A4D1DFA36F274F292E1F4 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___runstack_7;
|
|
NullCheck(L_0);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_0)->max_length)), 2)));
|
|
V_0 = L_1;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___runstack_7;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = __this->___runstack_7;
|
|
NullCheck(L_4);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = __this->___runstack_7;
|
|
NullCheck(L_5);
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_2, 0, (RuntimeArray*)L_3, ((int32_t)(((RuntimeArray*)L_4)->max_length)), ((int32_t)(((RuntimeArray*)L_5)->max_length)), NULL);
|
|
int32_t L_6 = __this->___runstackpos_8;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = __this->___runstack_7;
|
|
NullCheck(L_7);
|
|
__this->___runstackpos_8 = ((int32_t)il2cpp_codegen_add(L_6, ((int32_t)(((RuntimeArray*)L_7)->max_length))));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = V_0;
|
|
__this->___runstack_7 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___runstack_7), (void*)L_8);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::DoubleCrawl()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_DoubleCrawl_m7B67CFD3071825C9F01BC0ACE0E27B1C4EC6DED5 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___runcrawl_9;
|
|
NullCheck(L_0);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_0)->max_length)), 2)));
|
|
V_0 = L_1;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___runcrawl_9;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = __this->___runcrawl_9;
|
|
NullCheck(L_4);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = __this->___runcrawl_9;
|
|
NullCheck(L_5);
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_2, 0, (RuntimeArray*)L_3, ((int32_t)(((RuntimeArray*)L_4)->max_length)), ((int32_t)(((RuntimeArray*)L_5)->max_length)), NULL);
|
|
int32_t L_6 = __this->___runcrawlpos_10;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = __this->___runcrawl_9;
|
|
NullCheck(L_7);
|
|
__this->___runcrawlpos_10 = ((int32_t)il2cpp_codegen_add(L_6, ((int32_t)(((RuntimeArray*)L_7)->max_length))));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = V_0;
|
|
__this->___runcrawl_9 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___runcrawl_9), (void*)L_8);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::Crawl(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_Crawl_mBE60CC8F17E6D85E1A87F0A86BC684F32ACE7CA5 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___runcrawlpos_10;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
RegexRunner_DoubleCrawl_m7B67CFD3071825C9F01BC0ACE0E27B1C4EC6DED5(__this, NULL);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = __this->___runcrawl_9;
|
|
int32_t L_2 = __this->___runcrawlpos_10;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
|
|
int32_t L_3 = V_0;
|
|
__this->___runcrawlpos_10 = L_3;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___0_i;
|
|
NullCheck(L_1);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (int32_t)L_5);
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::Popcrawl()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_Popcrawl_m2C994BE22A9A4DE0D897691A1CEF87189DB43E67 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___runcrawl_9;
|
|
int32_t L_1 = __this->___runcrawlpos_10;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
__this->___runcrawlpos_10 = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_0);
|
|
int32_t L_4 = L_3;
|
|
int32_t L_5 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::Crawlpos()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_Crawlpos_m4EC84964D3AD3DB49724BFC28CE89FC34478D532 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___runcrawl_9;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = __this->___runcrawlpos_10;
|
|
return ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_0)->max_length)), L_1));
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::Capture(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_Capture_m3EB42B55A19BD7776156F04CBE9367C6EBA59F9C (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___0_capnum, int32_t ___1_start, int32_t ___2_end, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___2_end;
|
|
int32_t L_1 = ___1_start;
|
|
if ((((int32_t)L_0) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___2_end;
|
|
int32_t L_3 = ___1_start;
|
|
___2_end = L_3;
|
|
___1_start = L_2;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_4 = ___0_capnum;
|
|
RegexRunner_Crawl_mBE60CC8F17E6D85E1A87F0A86BC684F32ACE7CA5(__this, L_4, NULL);
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_5 = __this->___runmatch_12;
|
|
int32_t L_6 = ___0_capnum;
|
|
int32_t L_7 = ___1_start;
|
|
int32_t L_8 = ___2_end;
|
|
int32_t L_9 = ___1_start;
|
|
NullCheck(L_5);
|
|
VirtualActionInvoker3< int32_t, int32_t, int32_t >::Invoke(7 /* System.Void System.Text.RegularExpressions.Match::AddMatch(System.Int32,System.Int32,System.Int32) */, L_5, L_6, L_7, ((int32_t)il2cpp_codegen_subtract(L_8, L_9)));
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::TransferCapture(System.Int32,System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_TransferCapture_m642CC595E9FA641B913CCBE02E233DBB319A6E8A (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___0_capnum, int32_t ___1_uncapnum, int32_t ___2_start, int32_t ___3_end, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = ___3_end;
|
|
int32_t L_1 = ___2_start;
|
|
if ((((int32_t)L_0) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___3_end;
|
|
int32_t L_3 = ___2_start;
|
|
___3_end = L_3;
|
|
___2_start = L_2;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t L_4 = ___1_uncapnum;
|
|
int32_t L_5;
|
|
L_5 = RegexRunner_MatchIndex_m150A8B71C07022C485630C71B2A9FA6FD195F88F(__this, L_4, NULL);
|
|
V_0 = L_5;
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7 = ___1_uncapnum;
|
|
int32_t L_8;
|
|
L_8 = RegexRunner_MatchLength_m19C9B24F4F6CAC56A391A0AC47A4358C61615BF7(__this, L_7, NULL);
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_6, L_8));
|
|
int32_t L_9 = ___2_start;
|
|
int32_t L_10 = V_1;
|
|
if ((((int32_t)L_9) < ((int32_t)L_10)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = ___2_start;
|
|
___3_end = L_11;
|
|
int32_t L_12 = V_1;
|
|
___2_start = L_12;
|
|
goto IL_0043;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
int32_t L_13 = ___3_end;
|
|
int32_t L_14 = V_0;
|
|
if ((((int32_t)L_13) > ((int32_t)L_14)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15 = V_0;
|
|
___2_start = L_15;
|
|
goto IL_0043;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_16 = ___3_end;
|
|
int32_t L_17 = V_1;
|
|
if ((((int32_t)L_16) <= ((int32_t)L_17)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_18 = V_1;
|
|
___3_end = L_18;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
int32_t L_19 = V_0;
|
|
int32_t L_20 = ___2_start;
|
|
if ((((int32_t)L_19) <= ((int32_t)L_20)))
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_21 = V_0;
|
|
___2_start = L_21;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
int32_t L_22 = ___1_uncapnum;
|
|
RegexRunner_Crawl_mBE60CC8F17E6D85E1A87F0A86BC684F32ACE7CA5(__this, L_22, NULL);
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_23 = __this->___runmatch_12;
|
|
int32_t L_24 = ___1_uncapnum;
|
|
NullCheck(L_23);
|
|
VirtualActionInvoker1< int32_t >::Invoke(8 /* System.Void System.Text.RegularExpressions.Match::BalanceMatch(System.Int32) */, L_23, L_24);
|
|
int32_t L_25 = ___0_capnum;
|
|
if ((((int32_t)L_25) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_26 = ___0_capnum;
|
|
RegexRunner_Crawl_mBE60CC8F17E6D85E1A87F0A86BC684F32ACE7CA5(__this, L_26, NULL);
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_27 = __this->___runmatch_12;
|
|
int32_t L_28 = ___0_capnum;
|
|
int32_t L_29 = ___2_start;
|
|
int32_t L_30 = ___3_end;
|
|
int32_t L_31 = ___2_start;
|
|
NullCheck(L_27);
|
|
VirtualActionInvoker3< int32_t, int32_t, int32_t >::Invoke(7 /* System.Void System.Text.RegularExpressions.Match::AddMatch(System.Int32,System.Int32,System.Int32) */, L_27, L_28, L_29, ((int32_t)il2cpp_codegen_subtract(L_30, L_31)));
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexRunner::Uncapture()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_Uncapture_m70B0FFB308F48B4673F73311330BFF640F47B7D9 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = RegexRunner_Popcrawl_m2C994BE22A9A4DE0D897691A1CEF87189DB43E67(__this, NULL);
|
|
V_0 = L_0;
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_1 = __this->___runmatch_12;
|
|
int32_t L_2 = V_0;
|
|
NullCheck(L_1);
|
|
VirtualActionInvoker1< int32_t >::Invoke(9 /* System.Void System.Text.RegularExpressions.Match::RemoveMatch(System.Int32) */, L_1, L_2);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.Text.RegularExpressions.RegexRunner::IsMatched(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexRunner_IsMatched_m7E64237D020BFFA74813A8B6455D5F35671A876C (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___0_cap, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_0 = __this->___runmatch_12;
|
|
int32_t L_1 = ___0_cap;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = VirtualFuncInvoker1< bool, int32_t >::Invoke(10 /* System.Boolean System.Text.RegularExpressions.Match::IsMatched(System.Int32) */, L_0, L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::MatchIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_MatchIndex_m150A8B71C07022C485630C71B2A9FA6FD195F88F (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___0_cap, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_0 = __this->___runmatch_12;
|
|
int32_t L_1 = ___0_cap;
|
|
NullCheck(L_0);
|
|
int32_t L_2;
|
|
L_2 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(11 /* System.Int32 System.Text.RegularExpressions.Match::MatchIndex(System.Int32) */, L_0, L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Int32 System.Text.RegularExpressions.RegexRunner::MatchLength(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_MatchLength_m19C9B24F4F6CAC56A391A0AC47A4358C61615BF7 (RegexRunner_t4D255CE33E7985A04AF21F0B57984D6C65615B3B* __this, int32_t ___0_cap, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_0 = __this->___runmatch_12;
|
|
int32_t L_1 = ___0_cap;
|
|
NullCheck(L_0);
|
|
int32_t L_2;
|
|
L_2 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(12 /* System.Int32 System.Text.RegularExpressions.Match::MatchLength(System.Int32) */, L_0, L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Text.RegularExpressions.RegexTree::.ctor(System.Text.RegularExpressions.RegexNode,System.Collections.Hashtable,System.Int32[],System.Int32,System.Collections.Hashtable,System.String[],System.Text.RegularExpressions.RegexOptions)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexTree__ctor_m89DA1335AAB55B0707774E978E6078CE42DB0DA6 (RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* __this, RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___0_root, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___1_caps, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___2_capNumList, int32_t ___3_capTop, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___4_capNames, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___5_capsList, int32_t ___6_options, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_0 = ___0_root;
|
|
__this->___Root_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Root_0), (void*)L_0);
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = ___1_caps;
|
|
__this->___Caps_1 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Caps_1), (void*)L_1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = ___2_capNumList;
|
|
__this->___CapNumList_2 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___CapNumList_2), (void*)L_2);
|
|
int32_t L_3 = ___3_capTop;
|
|
__this->___CapTop_3 = L_3;
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_4 = ___4_capNames;
|
|
__this->___CapNames_4 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___CapNames_4), (void*)L_4);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = ___5_capsList;
|
|
__this->___CapsList_5 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___CapsList_5), (void*)L_5);
|
|
int32_t L_6 = ___6_options;
|
|
__this->___Options_6 = L_6;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Conversion methods for marshalling of: System.Text.RegularExpressions.RegexWriter
|
|
IL2CPP_EXTERN_C void RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12_marshal_pinvoke(const RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12& unmarshaled, RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ____emitted_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_emitted' of type 'RegexWriter'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(____emitted_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12_marshal_pinvoke_back(const RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12_marshaled_pinvoke& marshaled, RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12& unmarshaled)
|
|
{
|
|
Exception_t* ____emitted_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_emitted' of type 'RegexWriter'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(____emitted_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.Text.RegularExpressions.RegexWriter
|
|
IL2CPP_EXTERN_C void RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12_marshal_pinvoke_cleanup(RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: System.Text.RegularExpressions.RegexWriter
|
|
IL2CPP_EXTERN_C void RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12_marshal_com(const RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12& unmarshaled, RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ____emitted_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_emitted' of type 'RegexWriter'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(____emitted_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12_marshal_com_back(const RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12_marshaled_com& marshaled, RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12& unmarshaled)
|
|
{
|
|
Exception_t* ____emitted_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_emitted' of type 'RegexWriter'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(____emitted_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.Text.RegularExpressions.RegexWriter
|
|
IL2CPP_EXTERN_C void RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12_marshal_com_cleanup(RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexWriter::.ctor(System.Span`1<System.Int32>,System.Span`1<System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter__ctor_m37DF964F59213D287C9D812A3D0945744BF341EE (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 ___0_emittedSpan, Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 ___1_intStackSpan, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mA3C3860EDE2CDD08BBD68C389377BC89D029D968_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1__ctor_mA62BCDD51B8B91EA78E0475452807113F20E60A8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 L_0 = ___0_emittedSpan;
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
ValueListBuilder_1__ctor_mA62BCDD51B8B91EA78E0475452807113F20E60A8((&L_1), L_0, /*hidden argument*/ValueListBuilder_1__ctor_mA62BCDD51B8B91EA78E0475452807113F20E60A8_RuntimeMethod_var);
|
|
__this->____emitted_0 = L_1;
|
|
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 L_2 = ___1_intStackSpan;
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961 L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
ValueListBuilder_1__ctor_mA62BCDD51B8B91EA78E0475452807113F20E60A8((&L_3), L_2, /*hidden argument*/ValueListBuilder_1__ctor_mA62BCDD51B8B91EA78E0475452807113F20E60A8_RuntimeMethod_var);
|
|
__this->____intStack_1 = L_3;
|
|
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_4 = (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588*)il2cpp_codegen_object_new(Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588_il2cpp_TypeInfo_var);
|
|
NullCheck(L_4);
|
|
Dictionary_2__ctor_mA3C3860EDE2CDD08BBD68C389377BC89D029D968(L_4, Dictionary_2__ctor_mA3C3860EDE2CDD08BBD68C389377BC89D029D968_RuntimeMethod_var);
|
|
__this->____stringHash_2 = L_4;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_5 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
NullCheck(L_5);
|
|
List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_5, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
|
|
__this->____stringTable_3 = L_5;
|
|
__this->____caps_4 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)NULL;
|
|
__this->____trackCount_5 = 0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.RegexWriter::Write(System.Text.RegularExpressions.RegexTree)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* RegexWriter_Write_m69A5583635E511D67176A977E96C17AC982C4F01 (RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* ___0_tree, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
uintptr_t L_0 = ((uintptr_t)((int32_t)224));
|
|
int8_t* L_1 = (int8_t*) (L_0 ? alloca(L_0) : NULL);
|
|
memset(L_1, 0, L_0);
|
|
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_inline((&L_2), (void*)(L_1), ((int32_t)56), /*hidden argument*/Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
uintptr_t L_3 = ((uintptr_t)((int32_t)128));
|
|
int8_t* L_4 = (int8_t*) (L_3 ? alloca(L_3) : NULL);
|
|
memset(L_4, 0, L_3);
|
|
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 L_5;
|
|
memset((&L_5), 0, sizeof(L_5));
|
|
Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_inline((&L_5), (void*)(L_4), ((int32_t)32), /*hidden argument*/Span_1__ctor_m31EE4A5510B5C504DB26DB281BC7D4179B859F2B_RuntimeMethod_var);
|
|
V_1 = L_5;
|
|
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 L_6 = V_0;
|
|
Span_1_t3C5DB525B005B1AC5A1F3BDD528900C5C7C7D316 L_7 = V_1;
|
|
RegexWriter__ctor_m37DF964F59213D287C9D812A3D0945744BF341EE((&V_2), L_6, L_7, NULL);
|
|
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_8 = ___0_tree;
|
|
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_9;
|
|
L_9 = RegexWriter_RegexCodeFromRegexTree_m3352CAF05A1B1753D32D768B83BB778B3E2D4568((&V_2), L_8, NULL);
|
|
RegexWriter_Dispose_mD34F8BFC41D28F22FBC65E3F1A211DFE85625E04((&V_2), NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexWriter::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_Dispose_mD34F8BFC41D28F22FBC65E3F1A211DFE85625E04 (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_Dispose_m9A7AA015AAA843E07EF071CACC44C580A6A27955_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_0 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
ValueListBuilder_1_Dispose_m9A7AA015AAA843E07EF071CACC44C580A6A27955_inline(L_0, ValueListBuilder_1_Dispose_m9A7AA015AAA843E07EF071CACC44C580A6A27955_RuntimeMethod_var);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_1 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
ValueListBuilder_1_Dispose_m9A7AA015AAA843E07EF071CACC44C580A6A27955_inline(L_1, ValueListBuilder_1_Dispose_m9A7AA015AAA843E07EF071CACC44C580A6A27955_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.RegexWriter::RegexCodeFromRegexTree(System.Text.RegularExpressions.RegexTree)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* RegexWriter_RegexCodeFromRegexTree_m3352CAF05A1B1753D32D768B83BB778B3E2D4568 (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* ___0_tree, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mE239CC7C457C1C1C2CF293913AFEDFCF5C8F6DF6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_ToArray_m750D7BEFA43F3FEAC24A67EA3D9FC30725B68962_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_AsSpan_mB168B0C17F53FF2A5F8EA0B25A60F4741D20312F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
bool V_5 = false;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* V_6 = NULL;
|
|
RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* V_7 = NULL;
|
|
int32_t V_8 = 0;
|
|
int32_t V_9 = 0;
|
|
ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* G_B16_0 = NULL;
|
|
{
|
|
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_0 = ___0_tree;
|
|
NullCheck(L_0);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = L_0->___CapNumList_2;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_2 = ___0_tree;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->___CapTop_3;
|
|
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_4 = ___0_tree;
|
|
NullCheck(L_4);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = L_4->___CapNumList_2;
|
|
NullCheck(L_5);
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_6 = ___0_tree;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = L_6->___CapTop_3;
|
|
V_0 = L_7;
|
|
__this->____caps_4 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)NULL;
|
|
goto IL_0074;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_8 = ___0_tree;
|
|
NullCheck(L_8);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9 = L_8->___CapNumList_2;
|
|
NullCheck(L_9);
|
|
V_0 = ((int32_t)(((RuntimeArray*)L_9)->max_length));
|
|
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_10 = ___0_tree;
|
|
NullCheck(L_10);
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_11 = L_10->___Caps_1;
|
|
__this->____caps_4 = L_11;
|
|
V_9 = 0;
|
|
goto IL_0068;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_12 = __this->____caps_4;
|
|
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_13 = ___0_tree;
|
|
NullCheck(L_13);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_14 = L_13->___CapNumList_2;
|
|
int32_t L_15 = V_9;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
int32_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
int32_t L_18 = L_17;
|
|
RuntimeObject* L_19 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_18);
|
|
int32_t L_20 = V_9;
|
|
int32_t L_21 = L_20;
|
|
RuntimeObject* L_22 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_21);
|
|
NullCheck(L_12);
|
|
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(29 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_12, L_19, L_22);
|
|
int32_t L_23 = V_9;
|
|
V_9 = ((int32_t)il2cpp_codegen_add(L_23, 1));
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
int32_t L_24 = V_9;
|
|
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_25 = ___0_tree;
|
|
NullCheck(L_25);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_26 = L_25->___CapNumList_2;
|
|
NullCheck(L_26);
|
|
if ((((int32_t)L_24) < ((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length)))))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_27 = ___0_tree;
|
|
NullCheck(L_27);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_28 = L_27->___Root_0;
|
|
V_1 = L_28;
|
|
V_2 = 0;
|
|
RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75(__this, ((int32_t)23), 0, NULL);
|
|
}
|
|
|
|
IL_0086:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_29 = V_1;
|
|
NullCheck(L_29);
|
|
List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8* L_30 = L_29->___Children_1;
|
|
if (L_30)
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_31 = V_1;
|
|
NullCheck(L_31);
|
|
int32_t L_32 = L_31->___NType_0;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_33 = V_1;
|
|
RegexWriter_EmitFragment_m0B35F7C3BDC22B5DE82735F2652C7948AE8494A5(__this, L_32, L_33, 0, NULL);
|
|
goto IL_00da;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
int32_t L_34 = V_2;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_35 = V_1;
|
|
NullCheck(L_35);
|
|
List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8* L_36 = L_35->___Children_1;
|
|
NullCheck(L_36);
|
|
int32_t L_37;
|
|
L_37 = List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_inline(L_36, List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_RuntimeMethod_var);
|
|
if ((((int32_t)L_34) >= ((int32_t)L_37)))
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_38 = V_1;
|
|
NullCheck(L_38);
|
|
int32_t L_39 = L_38->___NType_0;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_40 = V_1;
|
|
int32_t L_41 = V_2;
|
|
RegexWriter_EmitFragment_m0B35F7C3BDC22B5DE82735F2652C7948AE8494A5(__this, ((int32_t)(L_39|((int32_t)64))), L_40, L_41, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_42 = V_1;
|
|
NullCheck(L_42);
|
|
List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8* L_43 = L_42->___Children_1;
|
|
int32_t L_44 = V_2;
|
|
NullCheck(L_43);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_45;
|
|
L_45 = List_1_get_Item_mE239CC7C457C1C1C2CF293913AFEDFCF5C8F6DF6(L_43, L_44, List_1_get_Item_mE239CC7C457C1C1C2CF293913AFEDFCF5C8F6DF6_RuntimeMethod_var);
|
|
V_1 = L_45;
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_46 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
int32_t L_47 = V_2;
|
|
ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline(L_46, L_47, ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
V_2 = 0;
|
|
goto IL_0086;
|
|
}
|
|
|
|
IL_00da:
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_48 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
int32_t L_49;
|
|
L_49 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_48, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
if (!L_49)
|
|
{
|
|
goto IL_0117;
|
|
}
|
|
}
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_50 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
int32_t L_51;
|
|
L_51 = ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_inline(L_50, ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_RuntimeMethod_var);
|
|
V_2 = L_51;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_52 = V_1;
|
|
NullCheck(L_52);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_53 = L_52->___Next_7;
|
|
V_1 = L_53;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_54 = V_1;
|
|
NullCheck(L_54);
|
|
int32_t L_55 = L_54->___NType_0;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_56 = V_1;
|
|
int32_t L_57 = V_2;
|
|
RegexWriter_EmitFragment_m0B35F7C3BDC22B5DE82735F2652C7948AE8494A5(__this, ((int32_t)(L_55|((int32_t)128))), L_56, L_57, NULL);
|
|
int32_t L_58 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_58, 1));
|
|
goto IL_0086;
|
|
}
|
|
|
|
IL_0117:
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_59 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_60;
|
|
L_60 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_59, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
RegexWriter_PatchJump_mC1090F37107CAF7F4B52B020E070BDE9284118A6(__this, 0, L_60, NULL);
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)40), NULL);
|
|
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_61 = ___0_tree;
|
|
Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8 L_62;
|
|
L_62 = RegexFCD_FirstChars_m3BAEF0481AF78F4FC40C35CEDA9100017A6D794B(L_61, NULL);
|
|
V_3 = L_62;
|
|
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_63 = ___0_tree;
|
|
RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044 L_64;
|
|
L_64 = RegexFCD_Prefix_mE4F5ABEA5443B6940F83E59C60D0A9A201CC4BD6(L_63, NULL);
|
|
V_4 = L_64;
|
|
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_65 = ___0_tree;
|
|
NullCheck(L_65);
|
|
int32_t L_66 = L_65->___Options_6;
|
|
V_5 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_66&((int32_t)64)))) <= ((uint32_t)0)))? 1 : 0);
|
|
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_67 = ___0_tree;
|
|
NullCheck(L_67);
|
|
int32_t L_68 = L_67->___Options_6;
|
|
if (((int32_t)((int32_t)L_68&((int32_t)512))))
|
|
{
|
|
goto IL_0163;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_69;
|
|
L_69 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
|
|
G_B16_0 = L_69;
|
|
goto IL_0168;
|
|
}
|
|
|
|
IL_0163:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_70;
|
|
L_70 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
G_B16_0 = L_70;
|
|
}
|
|
|
|
IL_0168:
|
|
{
|
|
V_6 = G_B16_0;
|
|
il2cpp_codegen_runtime_class_init_inline(RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var);
|
|
String_t* L_71;
|
|
L_71 = RegexPrefix_get_Prefix_m844D02262C0720B0DC488AD1541713AD37BC518E_inline((&V_4), NULL);
|
|
NullCheck(L_71);
|
|
int32_t L_72;
|
|
L_72 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_71, NULL);
|
|
if ((((int32_t)L_72) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0194;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044_il2cpp_TypeInfo_var);
|
|
String_t* L_73;
|
|
L_73 = RegexPrefix_get_Prefix_m844D02262C0720B0DC488AD1541713AD37BC518E_inline((&V_4), NULL);
|
|
bool L_74;
|
|
L_74 = RegexPrefix_get_CaseInsensitive_m4DAE2D9E91916BFFAB928F7DCAA20A5ABD4560E6_inline((&V_4), NULL);
|
|
bool L_75 = V_5;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_76 = V_6;
|
|
RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* L_77 = (RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A*)il2cpp_codegen_object_new(RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A_il2cpp_TypeInfo_var);
|
|
NullCheck(L_77);
|
|
RegexBoyerMoore__ctor_mFDCB1AB420E718548B67DE42C233402955BBB189(L_77, L_73, L_74, L_75, L_76, NULL);
|
|
V_7 = L_77;
|
|
goto IL_0197;
|
|
}
|
|
|
|
IL_0194:
|
|
{
|
|
V_7 = (RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A*)NULL;
|
|
}
|
|
|
|
IL_0197:
|
|
{
|
|
RegexTree_t5D6449C980A6C3549B4A6A12F03E11D984D51FE2* L_78 = ___0_tree;
|
|
int32_t L_79;
|
|
L_79 = RegexFCD_Anchors_m9211098DA08795B8459B918CA3D9A1A4733365D7(L_78, NULL);
|
|
V_8 = L_79;
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_80 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
ReadOnlySpan_1_t6190994DF094ABDFA6908C2C3FB347457E8E4282 L_81;
|
|
L_81 = ValueListBuilder_1_AsSpan_mB168B0C17F53FF2A5F8EA0B25A60F4741D20312F(L_80, ValueListBuilder_1_AsSpan_mB168B0C17F53FF2A5F8EA0B25A60F4741D20312F_RuntimeMethod_var);
|
|
V_10 = L_81;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_82;
|
|
L_82 = ReadOnlySpan_1_ToArray_m750D7BEFA43F3FEAC24A67EA3D9FC30725B68962((&V_10), ReadOnlySpan_1_ToArray_m750D7BEFA43F3FEAC24A67EA3D9FC30725B68962_RuntimeMethod_var);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_83 = __this->____stringTable_3;
|
|
int32_t L_84 = __this->____trackCount_5;
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_85 = __this->____caps_4;
|
|
int32_t L_86 = V_0;
|
|
RegexBoyerMoore_t35CDC1AE074379A7CDE02CCDB96BC422230DF57A* L_87 = V_7;
|
|
Nullable_1_t458CC908E14982BAD720536410542EBA0E8F8AF8 L_88 = V_3;
|
|
int32_t L_89 = V_8;
|
|
bool L_90 = V_5;
|
|
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* L_91 = (RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7*)il2cpp_codegen_object_new(RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7_il2cpp_TypeInfo_var);
|
|
NullCheck(L_91);
|
|
RegexCode__ctor_mA50EE1CFA1A050BFC45E135DAB7E2704049512E0(L_91, L_82, L_83, L_84, L_85, L_86, L_87, L_88, L_89, L_90, NULL);
|
|
return L_91;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexWriter::PatchJump(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_PatchJump_mC1090F37107CAF7F4B52B020E070BDE9284118A6 (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, int32_t ___0_offset, int32_t ___1_jumpDest, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_get_Item_m5EF2B61BDC18BDA4F358250CFF2AD3F4180851FB_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_0 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_1 = ___0_offset;
|
|
int32_t* L_2;
|
|
L_2 = ValueListBuilder_1_get_Item_m5EF2B61BDC18BDA4F358250CFF2AD3F4180851FB(L_0, ((int32_t)il2cpp_codegen_add(L_1, 1)), ValueListBuilder_1_get_Item_m5EF2B61BDC18BDA4F358250CFF2AD3F4180851FB_RuntimeMethod_var);
|
|
int32_t L_3 = ___1_jumpDest;
|
|
*((int32_t*)L_2) = (int32_t)L_3;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexWriter::Emit(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, int32_t ___0_op, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___0_op;
|
|
bool L_1;
|
|
L_1 = RegexCode_OpcodeBacktracks_m44FC8B177CFCB191B72C109984A707744FD7B2BC(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = __this->____trackCount_5;
|
|
__this->____trackCount_5 = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_3 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_4 = ___0_op;
|
|
ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline(L_3, L_4, ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexWriter::Emit(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75 (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, int32_t ___0_op, int32_t ___1_opd1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___0_op;
|
|
bool L_1;
|
|
L_1 = RegexCode_OpcodeBacktracks_m44FC8B177CFCB191B72C109984A707744FD7B2BC(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = __this->____trackCount_5;
|
|
__this->____trackCount_5 = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_3 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_4 = ___0_op;
|
|
ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline(L_3, L_4, ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_5 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_6 = ___1_opd1;
|
|
ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline(L_5, L_6, ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexWriter::Emit(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_Emit_mDED2545E64CE95D941A1232DBA24EB6C81A7DB0C (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, int32_t ___0_op, int32_t ___1_opd1, int32_t ___2_opd2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___0_op;
|
|
bool L_1;
|
|
L_1 = RegexCode_OpcodeBacktracks_m44FC8B177CFCB191B72C109984A707744FD7B2BC(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = __this->____trackCount_5;
|
|
__this->____trackCount_5 = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_3 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_4 = ___0_op;
|
|
ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline(L_3, L_4, ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_5 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_6 = ___1_opd1;
|
|
ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline(L_5, L_6, ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_7 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_8 = ___2_opd2;
|
|
ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline(L_7, L_8, ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 System.Text.RegularExpressions.RegexWriter::StringCode(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexWriter_StringCode_m5D4A227BBAA0674B820D70BEA1A2F7D0B29635FE (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, String_t* ___0_str, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
String_t* L_0 = ___0_str;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
___0_str = L_1;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_2 = __this->____stringHash_2;
|
|
String_t* L_3 = ___0_str;
|
|
NullCheck(L_2);
|
|
bool L_4;
|
|
L_4 = Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A(L_2, L_3, (&V_0), Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A_RuntimeMethod_var);
|
|
if (L_4)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_5 = __this->____stringTable_3;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_5, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
V_0 = L_6;
|
|
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_7 = __this->____stringHash_2;
|
|
String_t* L_8 = ___0_str;
|
|
int32_t L_9 = V_0;
|
|
NullCheck(L_7);
|
|
Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2(L_7, L_8, L_9, Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2_RuntimeMethod_var);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_10 = __this->____stringTable_3;
|
|
String_t* L_11 = ___0_str;
|
|
NullCheck(L_10);
|
|
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_10, L_11, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
int32_t L_12 = V_0;
|
|
return L_12;
|
|
}
|
|
}
|
|
// System.Int32 System.Text.RegularExpressions.RegexWriter::MapCapnum(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexWriter_MapCapnum_m5EA7BA45A1C4D51DC20C281246D3997A3001A0B6 (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, int32_t ___0_capnum, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___0_capnum;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->____caps_4;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_2 = __this->____caps_4;
|
|
int32_t L_3 = ___0_capnum;
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_4);
|
|
NullCheck(L_2);
|
|
RuntimeObject* L_6;
|
|
L_6 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(28 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_2, L_5);
|
|
return ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_6, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))));
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
int32_t L_7 = ___0_capnum;
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Void System.Text.RegularExpressions.RegexWriter::EmitFragment(System.Int32,System.Text.RegularExpressions.RegexNode,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_EmitFragment_m0B35F7C3BDC22B5DE82735F2652C7948AE8494A5 (RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* __this, int32_t ___0_nodetype, RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___1_node, int32_t ___2_curIndex, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
int32_t V_6 = 0;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B35_0 = NULL;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B34_0 = NULL;
|
|
int32_t G_B36_0 = 0;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B36_1 = NULL;
|
|
int32_t G_B38_0 = 0;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B38_1 = NULL;
|
|
int32_t G_B37_0 = 0;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B37_1 = NULL;
|
|
int32_t G_B39_0 = 0;
|
|
int32_t G_B39_1 = 0;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B39_2 = NULL;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B42_0 = NULL;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B41_0 = NULL;
|
|
int32_t G_B43_0 = 0;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B43_1 = NULL;
|
|
int32_t G_B51_0 = 0;
|
|
int32_t G_B51_1 = 0;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B51_2 = NULL;
|
|
int32_t G_B50_0 = 0;
|
|
int32_t G_B50_1 = 0;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B50_2 = NULL;
|
|
int32_t G_B52_0 = 0;
|
|
int32_t G_B52_1 = 0;
|
|
int32_t G_B52_2 = 0;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B52_3 = NULL;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B69_0 = NULL;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B67_0 = NULL;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B68_0 = NULL;
|
|
int32_t G_B70_0 = 0;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B70_1 = NULL;
|
|
Il2CppChar G_B74_0 = 0x0;
|
|
int32_t G_B74_1 = 0;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B74_2 = NULL;
|
|
Il2CppChar G_B73_0 = 0x0;
|
|
int32_t G_B73_1 = 0;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B73_2 = NULL;
|
|
int32_t G_B75_0 = 0;
|
|
Il2CppChar G_B75_1 = 0x0;
|
|
int32_t G_B75_2 = 0;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B75_3 = NULL;
|
|
int32_t G_B81_0 = 0;
|
|
int32_t G_B81_1 = 0;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B81_2 = NULL;
|
|
int32_t G_B80_0 = 0;
|
|
int32_t G_B80_1 = 0;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B80_2 = NULL;
|
|
int32_t G_B82_0 = 0;
|
|
int32_t G_B82_1 = 0;
|
|
int32_t G_B82_2 = 0;
|
|
RegexWriter_t618A9F9480E99C224DE6D93EEFED48EF0CEFAB12* G_B82_3 = NULL;
|
|
{
|
|
V_0 = 0;
|
|
int32_t L_0 = ___0_nodetype;
|
|
if ((((int32_t)L_0) > ((int32_t)((int32_t)13))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_1 = ___1_node;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = RegexNode_UseOptionR_mEBD872419C386D7C7802D2A6D2187E7B6D1D1641(L_1, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
V_0 = ((int32_t)(L_3|((int32_t)64)));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_4 = ___1_node;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___Options_6;
|
|
if (!((int32_t)((int32_t)L_5&1)))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_0;
|
|
V_0 = ((int32_t)(L_6|((int32_t)512)));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
int32_t L_7 = ___0_nodetype;
|
|
switch (((int32_t)il2cpp_codegen_subtract(L_7, 3)))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0579;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0579;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_05f3;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0579;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0579;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_05f3;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0564;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_0564;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_067f;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_0664;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_069a;
|
|
}
|
|
case 11:
|
|
{
|
|
goto IL_06b5;
|
|
}
|
|
case 12:
|
|
{
|
|
goto IL_06b5;
|
|
}
|
|
case 13:
|
|
{
|
|
goto IL_06b5;
|
|
}
|
|
case 14:
|
|
{
|
|
goto IL_06b5;
|
|
}
|
|
case 15:
|
|
{
|
|
goto IL_06b5;
|
|
}
|
|
case 16:
|
|
{
|
|
goto IL_06b5;
|
|
}
|
|
case 17:
|
|
{
|
|
goto IL_06b5;
|
|
}
|
|
case 18:
|
|
{
|
|
goto IL_06b5;
|
|
}
|
|
case 19:
|
|
{
|
|
goto IL_06b5;
|
|
}
|
|
case 20:
|
|
{
|
|
goto IL_06de;
|
|
}
|
|
case 21:
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
case 22:
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
case 23:
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
case 24:
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
case 25:
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
case 26:
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
case 27:
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
case 28:
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
case 29:
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
case 30:
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
case 31:
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
case 32:
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
case 33:
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
case 34:
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
case 35:
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
case 36:
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
case 37:
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
case 38:
|
|
{
|
|
goto IL_06b5;
|
|
}
|
|
case 39:
|
|
{
|
|
goto IL_06b5;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = ___0_nodetype;
|
|
switch (((int32_t)il2cpp_codegen_subtract(L_8, ((int32_t)88))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0140;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_06de;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0386;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0386;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_04b1;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_06de;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_04db;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_04fd;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_0552;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_01ea;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_02af;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = ___0_nodetype;
|
|
switch (((int32_t)il2cpp_codegen_subtract(L_9, ((int32_t)152))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0173;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_06de;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0417;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0417;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_04ba;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_06de;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_04ec;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_0525;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_055b;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_0234;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_02e5;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_06c2;
|
|
}
|
|
|
|
IL_0140:
|
|
{
|
|
int32_t L_10 = ___2_curIndex;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_11 = ___1_node;
|
|
NullCheck(L_11);
|
|
List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8* L_12 = L_11->___Children_1;
|
|
NullCheck(L_12);
|
|
int32_t L_13;
|
|
L_13 = List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_inline(L_12, List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_RuntimeMethod_var);
|
|
if ((((int32_t)L_10) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_13, 1)))))
|
|
{
|
|
goto IL_06de;
|
|
}
|
|
}
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_14 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_15 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_16;
|
|
L_16 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_15, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline(L_14, L_16, ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75(__this, ((int32_t)23), 0, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0173:
|
|
{
|
|
int32_t L_17 = ___2_curIndex;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_18 = ___1_node;
|
|
NullCheck(L_18);
|
|
List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8* L_19 = L_18->___Children_1;
|
|
NullCheck(L_19);
|
|
int32_t L_20;
|
|
L_20 = List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_inline(L_19, List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_RuntimeMethod_var);
|
|
if ((((int32_t)L_17) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_20, 1)))))
|
|
{
|
|
goto IL_01c1;
|
|
}
|
|
}
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_21 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
int32_t L_22;
|
|
L_22 = ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_inline(L_21, ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_RuntimeMethod_var);
|
|
V_1 = L_22;
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_23 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_24 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_25;
|
|
L_25 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_24, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline(L_23, L_25, ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75(__this, ((int32_t)38), 0, NULL);
|
|
int32_t L_26 = V_1;
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_27 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_28;
|
|
L_28 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_27, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
RegexWriter_PatchJump_mC1090F37107CAF7F4B52B020E070BDE9284118A6(__this, L_26, L_28, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_01c1:
|
|
{
|
|
V_2 = 0;
|
|
goto IL_01e5;
|
|
}
|
|
|
|
IL_01c5:
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_29 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
int32_t L_30;
|
|
L_30 = ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_inline(L_29, ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_RuntimeMethod_var);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_31 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_32;
|
|
L_32 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_31, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
RegexWriter_PatchJump_mC1090F37107CAF7F4B52B020E070BDE9284118A6(__this, L_30, L_32, NULL);
|
|
int32_t L_33 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_33, 1));
|
|
}
|
|
|
|
IL_01e5:
|
|
{
|
|
int32_t L_34 = V_2;
|
|
int32_t L_35 = ___2_curIndex;
|
|
if ((((int32_t)L_34) < ((int32_t)L_35)))
|
|
{
|
|
goto IL_01c5;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_01ea:
|
|
{
|
|
int32_t L_36 = ___2_curIndex;
|
|
if (L_36)
|
|
{
|
|
goto IL_06de;
|
|
}
|
|
}
|
|
{
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)34), NULL);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_37 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_38 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_39;
|
|
L_39 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_38, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline(L_37, L_39, ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75(__this, ((int32_t)23), 0, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_40 = ___1_node;
|
|
NullCheck(L_40);
|
|
int32_t L_41 = L_40->___M_4;
|
|
int32_t L_42;
|
|
L_42 = RegexWriter_MapCapnum_m5EA7BA45A1C4D51DC20C281246D3997A3001A0B6(__this, L_41, NULL);
|
|
RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75(__this, ((int32_t)37), L_42, NULL);
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)36), NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0234:
|
|
{
|
|
int32_t L_43 = ___2_curIndex;
|
|
if (!L_43)
|
|
{
|
|
goto IL_023c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_44 = ___2_curIndex;
|
|
if ((((int32_t)L_44) == ((int32_t)1)))
|
|
{
|
|
goto IL_0292;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_023c:
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_45 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
int32_t L_46;
|
|
L_46 = ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_inline(L_45, ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_RuntimeMethod_var);
|
|
V_3 = L_46;
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_47 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_48 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_49;
|
|
L_49 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_48, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline(L_47, L_49, ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75(__this, ((int32_t)38), 0, NULL);
|
|
int32_t L_50 = V_3;
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_51 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_52;
|
|
L_52 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_51, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
RegexWriter_PatchJump_mC1090F37107CAF7F4B52B020E070BDE9284118A6(__this, L_50, L_52, NULL);
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)36), NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_53 = ___1_node;
|
|
NullCheck(L_53);
|
|
List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8* L_54 = L_53->___Children_1;
|
|
NullCheck(L_54);
|
|
int32_t L_55;
|
|
L_55 = List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_inline(L_54, List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_RuntimeMethod_var);
|
|
if ((((int32_t)L_55) > ((int32_t)1)))
|
|
{
|
|
goto IL_06de;
|
|
}
|
|
}
|
|
|
|
IL_0292:
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_56 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
int32_t L_57;
|
|
L_57 = ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_inline(L_56, ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_RuntimeMethod_var);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_58 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_59;
|
|
L_59 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_58, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
RegexWriter_PatchJump_mC1090F37107CAF7F4B52B020E070BDE9284118A6(__this, L_57, L_59, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_02af:
|
|
{
|
|
int32_t L_60 = ___2_curIndex;
|
|
if (L_60)
|
|
{
|
|
goto IL_06de;
|
|
}
|
|
}
|
|
{
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)34), NULL);
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)31), NULL);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_61 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_62 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_63;
|
|
L_63 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_62, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline(L_61, L_63, ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75(__this, ((int32_t)23), 0, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_02e5:
|
|
{
|
|
int32_t L_64 = ___2_curIndex;
|
|
switch (L_64)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_02f8;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0309;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0369;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_02f8:
|
|
{
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)33), NULL);
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)36), NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0309:
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_65 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
int32_t L_66;
|
|
L_66 = ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_inline(L_65, ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_RuntimeMethod_var);
|
|
V_4 = L_66;
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_67 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_68 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_69;
|
|
L_69 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_68, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline(L_67, L_69, ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75(__this, ((int32_t)38), 0, NULL);
|
|
int32_t L_70 = V_4;
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_71 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_72;
|
|
L_72 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_71, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
RegexWriter_PatchJump_mC1090F37107CAF7F4B52B020E070BDE9284118A6(__this, L_70, L_72, NULL);
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)33), NULL);
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)36), NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_73 = ___1_node;
|
|
NullCheck(L_73);
|
|
List_1_t14E7CB3A94AB27255C94FB29406F34FD0D2EFBD8* L_74 = L_73->___Children_1;
|
|
NullCheck(L_74);
|
|
int32_t L_75;
|
|
L_75 = List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_inline(L_74, List_1_get_Count_m3C6681628B32562CD2D86326C0587588E43A160F_RuntimeMethod_var);
|
|
if ((((int32_t)L_75) > ((int32_t)2)))
|
|
{
|
|
goto IL_06de;
|
|
}
|
|
}
|
|
|
|
IL_0369:
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_76 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
int32_t L_77;
|
|
L_77 = ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_inline(L_76, ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_RuntimeMethod_var);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_78 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_79;
|
|
L_79 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_78, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
RegexWriter_PatchJump_mC1090F37107CAF7F4B52B020E070BDE9284118A6(__this, L_77, L_79, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0386:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_80 = ___1_node;
|
|
NullCheck(L_80);
|
|
int32_t L_81 = L_80->___N_5;
|
|
if ((((int32_t)L_81) < ((int32_t)((int32_t)2147483647LL))))
|
|
{
|
|
goto IL_039c;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_82 = ___1_node;
|
|
NullCheck(L_82);
|
|
int32_t L_83 = L_82->___M_4;
|
|
if ((((int32_t)L_83) <= ((int32_t)1)))
|
|
{
|
|
goto IL_03c5;
|
|
}
|
|
}
|
|
|
|
IL_039c:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_84 = ___1_node;
|
|
NullCheck(L_84);
|
|
int32_t L_85 = L_84->___M_4;
|
|
G_B34_0 = __this;
|
|
if (!L_85)
|
|
{
|
|
G_B35_0 = __this;
|
|
goto IL_03a9;
|
|
}
|
|
}
|
|
{
|
|
G_B36_0 = ((int32_t)27);
|
|
G_B36_1 = G_B34_0;
|
|
goto IL_03ab;
|
|
}
|
|
|
|
IL_03a9:
|
|
{
|
|
G_B36_0 = ((int32_t)26);
|
|
G_B36_1 = G_B35_0;
|
|
}
|
|
|
|
IL_03ab:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_86 = ___1_node;
|
|
NullCheck(L_86);
|
|
int32_t L_87 = L_86->___M_4;
|
|
G_B37_0 = G_B36_0;
|
|
G_B37_1 = G_B36_1;
|
|
if (!L_87)
|
|
{
|
|
G_B38_0 = G_B36_0;
|
|
G_B38_1 = G_B36_1;
|
|
goto IL_03bd;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_88 = ___1_node;
|
|
NullCheck(L_88);
|
|
int32_t L_89 = L_88->___M_4;
|
|
G_B39_0 = ((int32_t)il2cpp_codegen_subtract(1, L_89));
|
|
G_B39_1 = G_B37_0;
|
|
G_B39_2 = G_B37_1;
|
|
goto IL_03be;
|
|
}
|
|
|
|
IL_03bd:
|
|
{
|
|
G_B39_0 = 0;
|
|
G_B39_1 = G_B38_0;
|
|
G_B39_2 = G_B38_1;
|
|
}
|
|
|
|
IL_03be:
|
|
{
|
|
RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75(G_B39_2, G_B39_1, G_B39_0, NULL);
|
|
goto IL_03d9;
|
|
}
|
|
|
|
IL_03c5:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_90 = ___1_node;
|
|
NullCheck(L_90);
|
|
int32_t L_91 = L_90->___M_4;
|
|
G_B41_0 = __this;
|
|
if (!L_91)
|
|
{
|
|
G_B42_0 = __this;
|
|
goto IL_03d2;
|
|
}
|
|
}
|
|
{
|
|
G_B43_0 = ((int32_t)31);
|
|
G_B43_1 = G_B41_0;
|
|
goto IL_03d4;
|
|
}
|
|
|
|
IL_03d2:
|
|
{
|
|
G_B43_0 = ((int32_t)30);
|
|
G_B43_1 = G_B42_0;
|
|
}
|
|
|
|
IL_03d4:
|
|
{
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(G_B43_1, G_B43_0, NULL);
|
|
}
|
|
|
|
IL_03d9:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_92 = ___1_node;
|
|
NullCheck(L_92);
|
|
int32_t L_93 = L_92->___M_4;
|
|
if (L_93)
|
|
{
|
|
goto IL_0400;
|
|
}
|
|
}
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_94 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_95 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_96;
|
|
L_96 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_95, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline(L_94, L_96, ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75(__this, ((int32_t)38), 0, NULL);
|
|
}
|
|
|
|
IL_0400:
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_97 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_98 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_99;
|
|
L_99 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_98, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline(L_97, L_99, ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
|
|
IL_0417:
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_100 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_101;
|
|
L_101 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_100, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
V_5 = L_101;
|
|
int32_t L_102 = ___0_nodetype;
|
|
V_6 = ((int32_t)il2cpp_codegen_subtract(L_102, ((int32_t)154)));
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_103 = ___1_node;
|
|
NullCheck(L_103);
|
|
int32_t L_104 = L_103->___N_5;
|
|
if ((((int32_t)L_104) < ((int32_t)((int32_t)2147483647LL))))
|
|
{
|
|
goto IL_0443;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_105 = ___1_node;
|
|
NullCheck(L_105);
|
|
int32_t L_106 = L_105->___M_4;
|
|
if ((((int32_t)L_106) <= ((int32_t)1)))
|
|
{
|
|
goto IL_047c;
|
|
}
|
|
}
|
|
|
|
IL_0443:
|
|
{
|
|
int32_t L_107 = V_6;
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_108 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
int32_t L_109;
|
|
L_109 = ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_inline(L_108, ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_RuntimeMethod_var);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_110 = ___1_node;
|
|
NullCheck(L_110);
|
|
int32_t L_111 = L_110->___N_5;
|
|
G_B50_0 = L_109;
|
|
G_B50_1 = ((int32_t)il2cpp_codegen_add(((int32_t)28), L_107));
|
|
G_B50_2 = __this;
|
|
if ((((int32_t)L_111) == ((int32_t)((int32_t)2147483647LL))))
|
|
{
|
|
G_B51_0 = L_109;
|
|
G_B51_1 = ((int32_t)il2cpp_codegen_add(((int32_t)28), L_107));
|
|
G_B51_2 = __this;
|
|
goto IL_0470;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_112 = ___1_node;
|
|
NullCheck(L_112);
|
|
int32_t L_113 = L_112->___N_5;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_114 = ___1_node;
|
|
NullCheck(L_114);
|
|
int32_t L_115 = L_114->___M_4;
|
|
G_B52_0 = ((int32_t)il2cpp_codegen_subtract(L_113, L_115));
|
|
G_B52_1 = G_B50_0;
|
|
G_B52_2 = G_B50_1;
|
|
G_B52_3 = G_B50_2;
|
|
goto IL_0475;
|
|
}
|
|
|
|
IL_0470:
|
|
{
|
|
G_B52_0 = ((int32_t)2147483647LL);
|
|
G_B52_1 = G_B51_0;
|
|
G_B52_2 = G_B51_1;
|
|
G_B52_3 = G_B51_2;
|
|
}
|
|
|
|
IL_0475:
|
|
{
|
|
RegexWriter_Emit_mDED2545E64CE95D941A1232DBA24EB6C81A7DB0C(G_B52_3, G_B52_2, G_B52_1, G_B52_0, NULL);
|
|
goto IL_0492;
|
|
}
|
|
|
|
IL_047c:
|
|
{
|
|
int32_t L_116 = V_6;
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_117 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
int32_t L_118;
|
|
L_118 = ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_inline(L_117, ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_RuntimeMethod_var);
|
|
RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75(__this, ((int32_t)il2cpp_codegen_add(((int32_t)24), L_116)), L_118, NULL);
|
|
}
|
|
|
|
IL_0492:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_119 = ___1_node;
|
|
NullCheck(L_119);
|
|
int32_t L_120 = L_119->___M_4;
|
|
if (L_120)
|
|
{
|
|
goto IL_06de;
|
|
}
|
|
}
|
|
{
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_121 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
int32_t L_122;
|
|
L_122 = ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_inline(L_121, ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_RuntimeMethod_var);
|
|
int32_t L_123 = V_5;
|
|
RegexWriter_PatchJump_mC1090F37107CAF7F4B52B020E070BDE9284118A6(__this, L_122, L_123, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_04b1:
|
|
{
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)31), NULL);
|
|
return;
|
|
}
|
|
|
|
IL_04ba:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_124 = ___1_node;
|
|
NullCheck(L_124);
|
|
int32_t L_125 = L_124->___M_4;
|
|
int32_t L_126;
|
|
L_126 = RegexWriter_MapCapnum_m5EA7BA45A1C4D51DC20C281246D3997A3001A0B6(__this, L_125, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_127 = ___1_node;
|
|
NullCheck(L_127);
|
|
int32_t L_128 = L_127->___N_5;
|
|
int32_t L_129;
|
|
L_129 = RegexWriter_MapCapnum_m5EA7BA45A1C4D51DC20C281246D3997A3001A0B6(__this, L_128, NULL);
|
|
RegexWriter_Emit_mDED2545E64CE95D941A1232DBA24EB6C81A7DB0C(__this, ((int32_t)32), L_126, L_129, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_04db:
|
|
{
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)34), NULL);
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)31), NULL);
|
|
return;
|
|
}
|
|
|
|
IL_04ec:
|
|
{
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)33), NULL);
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)36), NULL);
|
|
return;
|
|
}
|
|
|
|
IL_04fd:
|
|
{
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)34), NULL);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_130 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_131 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_132;
|
|
L_132 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_131, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_inline(L_130, L_132, ValueListBuilder_1_Append_m3C09DD65CA1AD087C9DC19F07D5A4B0E4AEEDE1A_RuntimeMethod_var);
|
|
RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75(__this, ((int32_t)23), 0, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0525:
|
|
{
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)35), NULL);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_133 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____intStack_1);
|
|
int32_t L_134;
|
|
L_134 = ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_inline(L_133, ValueListBuilder_1_Pop_m160A17E97A3D3EDA393B28EBD989A9A77A7B5242_RuntimeMethod_var);
|
|
ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961* L_135 = (ValueListBuilder_1_t6FD822120F40721DF2404D457F44E0620BF20961*)(&__this->____emitted_0);
|
|
int32_t L_136;
|
|
L_136 = ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_inline(L_135, ValueListBuilder_1_get_Length_mAD606EF0B41D73E52C0B7D4FA09A001E03082F74_RuntimeMethod_var);
|
|
RegexWriter_PatchJump_mC1090F37107CAF7F4B52B020E070BDE9284118A6(__this, L_134, L_136, NULL);
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)36), NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0552:
|
|
{
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)34), NULL);
|
|
return;
|
|
}
|
|
|
|
IL_055b:
|
|
{
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, ((int32_t)36), NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0564:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_137 = ___1_node;
|
|
NullCheck(L_137);
|
|
int32_t L_138 = L_137->___NType_0;
|
|
int32_t L_139 = V_0;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_140 = ___1_node;
|
|
NullCheck(L_140);
|
|
Il2CppChar L_141 = L_140->___Ch_3;
|
|
RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75(__this, ((int32_t)(L_138|L_139)), L_141, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0579:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_142 = ___1_node;
|
|
NullCheck(L_142);
|
|
int32_t L_143 = L_142->___M_4;
|
|
if ((((int32_t)L_143) <= ((int32_t)0)))
|
|
{
|
|
goto IL_05ac;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_144 = ___1_node;
|
|
NullCheck(L_144);
|
|
int32_t L_145 = L_144->___NType_0;
|
|
G_B67_0 = __this;
|
|
if ((((int32_t)L_145) == ((int32_t)3)))
|
|
{
|
|
G_B69_0 = __this;
|
|
goto IL_0598;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_146 = ___1_node;
|
|
NullCheck(L_146);
|
|
int32_t L_147 = L_146->___NType_0;
|
|
G_B68_0 = G_B67_0;
|
|
if ((((int32_t)L_147) == ((int32_t)6)))
|
|
{
|
|
G_B69_0 = G_B67_0;
|
|
goto IL_0598;
|
|
}
|
|
}
|
|
{
|
|
G_B70_0 = 1;
|
|
G_B70_1 = G_B68_0;
|
|
goto IL_0599;
|
|
}
|
|
|
|
IL_0598:
|
|
{
|
|
G_B70_0 = 0;
|
|
G_B70_1 = G_B69_0;
|
|
}
|
|
|
|
IL_0599:
|
|
{
|
|
int32_t L_148 = V_0;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_149 = ___1_node;
|
|
NullCheck(L_149);
|
|
Il2CppChar L_150 = L_149->___Ch_3;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_151 = ___1_node;
|
|
NullCheck(L_151);
|
|
int32_t L_152 = L_151->___M_4;
|
|
RegexWriter_Emit_mDED2545E64CE95D941A1232DBA24EB6C81A7DB0C(G_B70_1, ((int32_t)(G_B70_0|L_148)), L_150, L_152, NULL);
|
|
}
|
|
|
|
IL_05ac:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_153 = ___1_node;
|
|
NullCheck(L_153);
|
|
int32_t L_154 = L_153->___N_5;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_155 = ___1_node;
|
|
NullCheck(L_155);
|
|
int32_t L_156 = L_155->___M_4;
|
|
if ((((int32_t)L_154) <= ((int32_t)L_156)))
|
|
{
|
|
goto IL_06de;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_157 = ___1_node;
|
|
NullCheck(L_157);
|
|
int32_t L_158 = L_157->___NType_0;
|
|
int32_t L_159 = V_0;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_160 = ___1_node;
|
|
NullCheck(L_160);
|
|
Il2CppChar L_161 = L_160->___Ch_3;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_162 = ___1_node;
|
|
NullCheck(L_162);
|
|
int32_t L_163 = L_162->___N_5;
|
|
G_B73_0 = L_161;
|
|
G_B73_1 = ((int32_t)(L_158|L_159));
|
|
G_B73_2 = __this;
|
|
if ((((int32_t)L_163) == ((int32_t)((int32_t)2147483647LL))))
|
|
{
|
|
G_B74_0 = L_161;
|
|
G_B74_1 = ((int32_t)(L_158|L_159));
|
|
G_B74_2 = __this;
|
|
goto IL_05e8;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_164 = ___1_node;
|
|
NullCheck(L_164);
|
|
int32_t L_165 = L_164->___N_5;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_166 = ___1_node;
|
|
NullCheck(L_166);
|
|
int32_t L_167 = L_166->___M_4;
|
|
G_B75_0 = ((int32_t)il2cpp_codegen_subtract(L_165, L_167));
|
|
G_B75_1 = G_B73_0;
|
|
G_B75_2 = G_B73_1;
|
|
G_B75_3 = G_B73_2;
|
|
goto IL_05ed;
|
|
}
|
|
|
|
IL_05e8:
|
|
{
|
|
G_B75_0 = ((int32_t)2147483647LL);
|
|
G_B75_1 = G_B74_0;
|
|
G_B75_2 = G_B74_1;
|
|
G_B75_3 = G_B74_2;
|
|
}
|
|
|
|
IL_05ed:
|
|
{
|
|
RegexWriter_Emit_mDED2545E64CE95D941A1232DBA24EB6C81A7DB0C(G_B75_3, G_B75_2, G_B75_1, G_B75_0, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_05f3:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_168 = ___1_node;
|
|
NullCheck(L_168);
|
|
int32_t L_169 = L_168->___M_4;
|
|
if ((((int32_t)L_169) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0617;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_170 = V_0;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_171 = ___1_node;
|
|
NullCheck(L_171);
|
|
String_t* L_172 = L_171->___Str_2;
|
|
int32_t L_173;
|
|
L_173 = RegexWriter_StringCode_m5D4A227BBAA0674B820D70BEA1A2F7D0B29635FE(__this, L_172, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_174 = ___1_node;
|
|
NullCheck(L_174);
|
|
int32_t L_175 = L_174->___M_4;
|
|
RegexWriter_Emit_mDED2545E64CE95D941A1232DBA24EB6C81A7DB0C(__this, ((int32_t)(2|L_170)), L_173, L_175, NULL);
|
|
}
|
|
|
|
IL_0617:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_176 = ___1_node;
|
|
NullCheck(L_176);
|
|
int32_t L_177 = L_176->___N_5;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_178 = ___1_node;
|
|
NullCheck(L_178);
|
|
int32_t L_179 = L_178->___M_4;
|
|
if ((((int32_t)L_177) <= ((int32_t)L_179)))
|
|
{
|
|
goto IL_06de;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_180 = ___1_node;
|
|
NullCheck(L_180);
|
|
int32_t L_181 = L_180->___NType_0;
|
|
int32_t L_182 = V_0;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_183 = ___1_node;
|
|
NullCheck(L_183);
|
|
String_t* L_184 = L_183->___Str_2;
|
|
int32_t L_185;
|
|
L_185 = RegexWriter_StringCode_m5D4A227BBAA0674B820D70BEA1A2F7D0B29635FE(__this, L_184, NULL);
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_186 = ___1_node;
|
|
NullCheck(L_186);
|
|
int32_t L_187 = L_186->___N_5;
|
|
G_B80_0 = L_185;
|
|
G_B80_1 = ((int32_t)(L_181|L_182));
|
|
G_B80_2 = __this;
|
|
if ((((int32_t)L_187) == ((int32_t)((int32_t)2147483647LL))))
|
|
{
|
|
G_B81_0 = L_185;
|
|
G_B81_1 = ((int32_t)(L_181|L_182));
|
|
G_B81_2 = __this;
|
|
goto IL_0659;
|
|
}
|
|
}
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_188 = ___1_node;
|
|
NullCheck(L_188);
|
|
int32_t L_189 = L_188->___N_5;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_190 = ___1_node;
|
|
NullCheck(L_190);
|
|
int32_t L_191 = L_190->___M_4;
|
|
G_B82_0 = ((int32_t)il2cpp_codegen_subtract(L_189, L_191));
|
|
G_B82_1 = G_B80_0;
|
|
G_B82_2 = G_B80_1;
|
|
G_B82_3 = G_B80_2;
|
|
goto IL_065e;
|
|
}
|
|
|
|
IL_0659:
|
|
{
|
|
G_B82_0 = ((int32_t)2147483647LL);
|
|
G_B82_1 = G_B81_0;
|
|
G_B82_2 = G_B81_1;
|
|
G_B82_3 = G_B81_2;
|
|
}
|
|
|
|
IL_065e:
|
|
{
|
|
RegexWriter_Emit_mDED2545E64CE95D941A1232DBA24EB6C81A7DB0C(G_B82_3, G_B82_2, G_B82_1, G_B82_0, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0664:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_192 = ___1_node;
|
|
NullCheck(L_192);
|
|
int32_t L_193 = L_192->___NType_0;
|
|
int32_t L_194 = V_0;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_195 = ___1_node;
|
|
NullCheck(L_195);
|
|
String_t* L_196 = L_195->___Str_2;
|
|
int32_t L_197;
|
|
L_197 = RegexWriter_StringCode_m5D4A227BBAA0674B820D70BEA1A2F7D0B29635FE(__this, L_196, NULL);
|
|
RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75(__this, ((int32_t)(L_193|L_194)), L_197, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_067f:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_198 = ___1_node;
|
|
NullCheck(L_198);
|
|
int32_t L_199 = L_198->___NType_0;
|
|
int32_t L_200 = V_0;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_201 = ___1_node;
|
|
NullCheck(L_201);
|
|
String_t* L_202 = L_201->___Str_2;
|
|
int32_t L_203;
|
|
L_203 = RegexWriter_StringCode_m5D4A227BBAA0674B820D70BEA1A2F7D0B29635FE(__this, L_202, NULL);
|
|
RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75(__this, ((int32_t)(L_199|L_200)), L_203, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_069a:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_204 = ___1_node;
|
|
NullCheck(L_204);
|
|
int32_t L_205 = L_204->___NType_0;
|
|
int32_t L_206 = V_0;
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_207 = ___1_node;
|
|
NullCheck(L_207);
|
|
int32_t L_208 = L_207->___M_4;
|
|
int32_t L_209;
|
|
L_209 = RegexWriter_MapCapnum_m5EA7BA45A1C4D51DC20C281246D3997A3001A0B6(__this, L_208, NULL);
|
|
RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75(__this, ((int32_t)(L_205|L_206)), L_209, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_06b5:
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_210 = ___1_node;
|
|
NullCheck(L_210);
|
|
int32_t L_211 = L_210->___NType_0;
|
|
RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC(__this, L_211, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_06c2:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_212;
|
|
L_212 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
|
|
String_t* L_213;
|
|
L_213 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&___0_nodetype), L_212, NULL);
|
|
String_t* L_214;
|
|
L_214 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1A521FB9CB5DD09DAE84196DD4656194D3654284)), L_213, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_215 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_215);
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_215, L_214, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_215, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexWriter_EmitFragment_m0B35F7C3BDC22B5DE82735F2652C7948AE8494A5_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_06de:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Diagnostics.BooleanSwitch::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BooleanSwitch__ctor_mA9232C7B57B18DBDDFD4F14DA26483509C0FFD53 (BooleanSwitch_tF8C9C56BCA0DF054365CDFC4664C0E8B30312BB1* __this, String_t* ___0_displayName, String_t* ___1_description, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___0_displayName;
|
|
String_t* L_1 = ___1_description;
|
|
il2cpp_codegen_runtime_class_init_inline(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
Switch__ctor_mA295E111B6A7F4B8D2B6AF796926017759669EA7(__this, L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Diagnostics.Switch::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Switch__ctor_mA295E111B6A7F4B8D2B6AF796926017759669EA7 (Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412* __this, String_t* ___0_displayName, String_t* ___1_description, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___0_displayName;
|
|
String_t* L_1 = ___1_description;
|
|
Switch__ctor_mE69262A89E3F19ACB4610B1EBFB35C763BB3EA48(__this, L_0, L_1, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Diagnostics.Switch::.ctor(System.String,System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Switch__ctor_mE69262A89E3F19ACB4610B1EBFB35C763BB3EA48 (Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412* __this, String_t* ___0_displayName, String_t* ___1_description, String_t* ___2_defaultSwitchValue, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m25F4DF4DE179873ACDA24F3C314479DDBCCC0BDD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* V_0 = NULL;
|
|
bool V_1 = false;
|
|
{
|
|
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___switchValueString_2 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___switchValueString_2), (void*)L_0);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
String_t* L_1 = ___0_displayName;
|
|
if (L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
___0_displayName = L_2;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
String_t* L_3 = ___0_displayName;
|
|
__this->___displayName_1 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___displayName_1), (void*)L_3);
|
|
String_t* L_4 = ___1_description;
|
|
__this->___description_0 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___description_0), (void*)L_4);
|
|
il2cpp_codegen_runtime_class_init_inline(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_5 = ((Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_StaticFields*)il2cpp_codegen_static_fields_for(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var))->___switches_4;
|
|
V_0 = L_5;
|
|
V_1 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0052:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_7 = V_0;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_7, NULL);
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_8 = V_0;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_8, (&V_1), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
Switch__pruneCachedSwitches_mA5E329450FA91F01653114272FD2FBD5670C7D59(NULL);
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_9 = ((Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_StaticFields*)il2cpp_codegen_static_fields_for(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var))->___switches_4;
|
|
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_10 = (WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)il2cpp_codegen_object_new(WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var);
|
|
NullCheck(L_10);
|
|
WeakReference__ctor_m5F9E2F970CD85965A003C0B37ABDBFAA1F5CF241(L_10, __this, NULL);
|
|
NullCheck(L_9);
|
|
List_1_Add_m25F4DF4DE179873ACDA24F3C314479DDBCCC0BDD_inline(L_9, L_10, List_1_Add_m25F4DF4DE179873ACDA24F3C314479DDBCCC0BDD_RuntimeMethod_var);
|
|
goto IL_005c;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
String_t* L_11 = ___2_defaultSwitchValue;
|
|
__this->___defaultValue_3 = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___defaultValue_3), (void*)L_11);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Diagnostics.Switch::_pruneCachedSwitches()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Switch__pruneCachedSwitches_mA5E329450FA91F01653114272FD2FBD5670C7D59 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_m9752A24431B17AFB6B8807C580DEB0B87E85704F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m25F4DF4DE179873ACDA24F3C314479DDBCCC0BDD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m2225CCB9E5EE9E4981F4AE6EB18C904ED9CCB2E2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_TrimExcess_m99F8F07466512A8305AA9DC50A79BFFA0D426743_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m2C4FA91F495564C79C92BA3B2BE4B8855F69BB91_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m4D47FECAB21C77F7F4D9632A361C697E7D81CADC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m83668C338517BB0174D4836DD9700CC489D01E44_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* V_0 = NULL;
|
|
bool V_1 = false;
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_0 = ((Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_StaticFields*)il2cpp_codegen_static_fields_for(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var))->___switches_4;
|
|
V_0 = L_0;
|
|
V_1 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00ab:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_00b4;
|
|
}
|
|
}
|
|
{
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_2 = V_0;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_2, NULL);
|
|
}
|
|
|
|
IL_00b4:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_3 = V_0;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_3, (&V_1), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
int32_t L_4 = ((Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_StaticFields*)il2cpp_codegen_static_fields_for(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var))->___s_LastCollectionCount_5;
|
|
il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = GC_CollectionCount_m9589E16E4BA8DF175E3A6766A80F5EE3AA616876(2, NULL);
|
|
if ((((int32_t)L_4) == ((int32_t)L_5)))
|
|
{
|
|
goto IL_00a9_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_6 = ((Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_StaticFields*)il2cpp_codegen_static_fields_for(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var))->___switches_4;
|
|
NullCheck(L_6);
|
|
int32_t L_7;
|
|
L_7 = List_1_get_Count_m4D47FECAB21C77F7F4D9632A361C697E7D81CADC_inline(L_6, List_1_get_Count_m4D47FECAB21C77F7F4D9632A361C697E7D81CADC_RuntimeMethod_var);
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_8 = (List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9*)il2cpp_codegen_object_new(List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9_il2cpp_TypeInfo_var);
|
|
NullCheck(L_8);
|
|
List_1__ctor_m2C4FA91F495564C79C92BA3B2BE4B8855F69BB91(L_8, L_7, List_1__ctor_m2C4FA91F495564C79C92BA3B2BE4B8855F69BB91_RuntimeMethod_var);
|
|
V_2 = L_8;
|
|
V_3 = 0;
|
|
goto IL_0060_1;
|
|
}
|
|
|
|
IL_0034_1:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_9 = ((Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_StaticFields*)il2cpp_codegen_static_fields_for(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var))->___switches_4;
|
|
int32_t L_10 = V_3;
|
|
NullCheck(L_9);
|
|
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_11;
|
|
L_11 = List_1_get_Item_m83668C338517BB0174D4836DD9700CC489D01E44(L_9, L_10, List_1_get_Item_m83668C338517BB0174D4836DD9700CC489D01E44_RuntimeMethod_var);
|
|
NullCheck(L_11);
|
|
RuntimeObject* L_12;
|
|
L_12 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, L_11);
|
|
if (!((Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412*)CastclassClass((RuntimeObject*)L_12, Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_005c_1;
|
|
}
|
|
}
|
|
{
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_13 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_14 = ((Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_StaticFields*)il2cpp_codegen_static_fields_for(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var))->___switches_4;
|
|
int32_t L_15 = V_3;
|
|
NullCheck(L_14);
|
|
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_16;
|
|
L_16 = List_1_get_Item_m83668C338517BB0174D4836DD9700CC489D01E44(L_14, L_15, List_1_get_Item_m83668C338517BB0174D4836DD9700CC489D01E44_RuntimeMethod_var);
|
|
NullCheck(L_13);
|
|
List_1_Add_m25F4DF4DE179873ACDA24F3C314479DDBCCC0BDD_inline(L_13, L_16, List_1_Add_m25F4DF4DE179873ACDA24F3C314479DDBCCC0BDD_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_005c_1:
|
|
{
|
|
int32_t L_17 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_17, 1));
|
|
}
|
|
|
|
IL_0060_1:
|
|
{
|
|
int32_t L_18 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_19 = ((Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_StaticFields*)il2cpp_codegen_static_fields_for(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var))->___switches_4;
|
|
NullCheck(L_19);
|
|
int32_t L_20;
|
|
L_20 = List_1_get_Count_m4D47FECAB21C77F7F4D9632A361C697E7D81CADC_inline(L_19, List_1_get_Count_m4D47FECAB21C77F7F4D9632A361C697E7D81CADC_RuntimeMethod_var);
|
|
if ((((int32_t)L_18) < ((int32_t)L_20)))
|
|
{
|
|
goto IL_0034_1;
|
|
}
|
|
}
|
|
{
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_21 = V_2;
|
|
NullCheck(L_21);
|
|
int32_t L_22;
|
|
L_22 = List_1_get_Count_m4D47FECAB21C77F7F4D9632A361C697E7D81CADC_inline(L_21, List_1_get_Count_m4D47FECAB21C77F7F4D9632A361C697E7D81CADC_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_23 = ((Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_StaticFields*)il2cpp_codegen_static_fields_for(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var))->___switches_4;
|
|
NullCheck(L_23);
|
|
int32_t L_24;
|
|
L_24 = List_1_get_Count_m4D47FECAB21C77F7F4D9632A361C697E7D81CADC_inline(L_23, List_1_get_Count_m4D47FECAB21C77F7F4D9632A361C697E7D81CADC_RuntimeMethod_var);
|
|
if ((((int32_t)L_22) >= ((int32_t)L_24)))
|
|
{
|
|
goto IL_009e_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_25 = ((Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_StaticFields*)il2cpp_codegen_static_fields_for(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var))->___switches_4;
|
|
NullCheck(L_25);
|
|
List_1_Clear_m2225CCB9E5EE9E4981F4AE6EB18C904ED9CCB2E2_inline(L_25, List_1_Clear_m2225CCB9E5EE9E4981F4AE6EB18C904ED9CCB2E2_RuntimeMethod_var);
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_26 = ((Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_StaticFields*)il2cpp_codegen_static_fields_for(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var))->___switches_4;
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_27 = V_2;
|
|
NullCheck(L_26);
|
|
List_1_AddRange_m9752A24431B17AFB6B8807C580DEB0B87E85704F(L_26, L_27, List_1_AddRange_m9752A24431B17AFB6B8807C580DEB0B87E85704F_RuntimeMethod_var);
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_28 = ((Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_StaticFields*)il2cpp_codegen_static_fields_for(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var))->___switches_4;
|
|
NullCheck(L_28);
|
|
List_1_TrimExcess_m99F8F07466512A8305AA9DC50A79BFFA0D426743(L_28, List_1_TrimExcess_m99F8F07466512A8305AA9DC50A79BFFA0D426743_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_009e_1:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
int32_t L_29;
|
|
L_29 = GC_CollectionCount_m9589E16E4BA8DF175E3A6766A80F5EE3AA616876(2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
((Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_StaticFields*)il2cpp_codegen_static_fields_for(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var))->___s_LastCollectionCount_5 = L_29;
|
|
}
|
|
|
|
IL_00a9_1:
|
|
{
|
|
goto IL_00b5;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00b5:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Diagnostics.Switch::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Switch__cctor_m7F71C503283C774EFE1595C32D59E37698CD028F (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m63EDE1AEAA4A4FCAB6203FB0C262E31C79D24F9E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9* L_0 = (List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9*)il2cpp_codegen_object_new(List_1_t99645769CE679BC507C0D8F0C572B4E324C834D9_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
List_1__ctor_m63EDE1AEAA4A4FCAB6203FB0C262E31C79D24F9E(L_0, List_1__ctor_m63EDE1AEAA4A4FCAB6203FB0C262E31C79D24F9E_RuntimeMethod_var);
|
|
((Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_StaticFields*)il2cpp_codegen_static_fields_for(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var))->___switches_4 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_StaticFields*)il2cpp_codegen_static_fields_for(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var))->___switches_4), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Diagnostics.SwitchLevelAttribute::.ctor(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SwitchLevelAttribute__ctor_mB0C0910F9AA6FC3C568CD3DCEF69731CC528B53A (SwitchLevelAttribute_t1C9B38E19789AFAA9F130ED5BF3D1E5EF7FEF4BF* __this, Type_t* ___0_switchLevelType, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
|
|
Type_t* L_0 = ___0_switchLevelType;
|
|
SwitchLevelAttribute_set_SwitchLevelType_m4757AB3B3D77487056F17495239C40B56FC2E9AF(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Diagnostics.SwitchLevelAttribute::set_SwitchLevelType(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SwitchLevelAttribute_set_SwitchLevelType_m4757AB3B3D77487056F17495239C40B56FC2E9AF (SwitchLevelAttribute_t1C9B38E19789AFAA9F130ED5BF3D1E5EF7FEF4BF* __this, Type_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t* L_0 = ___0_value;
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_0, (Type_t*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SwitchLevelAttribute_set_SwitchLevelType_m4757AB3B3D77487056F17495239C40B56FC2E9AF_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Type_t* L_3 = ___0_value;
|
|
__this->___type_0 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___type_0), (void*)L_3);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Diagnostics.TraceSwitch::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceSwitch__ctor_m775278D7946F29D7A7939D2048CA72DBCB0A5ABF (TraceSwitch_t199A0DB240149B5CDCF2754FC0E11CCBF51224B4* __this, String_t* ___0_displayName, String_t* ___1_description, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___0_displayName;
|
|
String_t* L_1 = ___1_description;
|
|
il2cpp_codegen_runtime_class_init_inline(Switch_t9C3FB6E0121B928798EA7C18AAB5DFC8F3A09412_il2cpp_TypeInfo_var);
|
|
Switch__ctor_mA295E111B6A7F4B8D2B6AF796926017759669EA7(__this, L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Int64 System.Diagnostics.Stopwatch::GetTimestamp()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Stopwatch_GetTimestamp_mA3BDF219C573A34751D6A792E86C825B74D2CEB7 (const RuntimeMethod* method)
|
|
{
|
|
typedef int64_t (*Stopwatch_GetTimestamp_mA3BDF219C573A34751D6A792E86C825B74D2CEB7_ftn) ();
|
|
using namespace il2cpp::icalls;
|
|
return ((Stopwatch_GetTimestamp_mA3BDF219C573A34751D6A792E86C825B74D2CEB7_ftn)System::System::Diagnostics::Stopwatch::GetTimestamp) ();
|
|
}
|
|
// System.Void System.Diagnostics.Stopwatch::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stopwatch__ctor_mAFE6B2F45CF1C3469EF6D5307972BC098B473D0A (Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.TimeSpan System.Diagnostics.Stopwatch::get_Elapsed()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A Stopwatch_get_Elapsed_mF16CCA2F9B7E2EAEFCAF8D81F44370DBAC1B2178 (Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
|
|
bool L_0 = ((Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var))->___IsHighResolution_1;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_1;
|
|
L_1 = Stopwatch_get_ElapsedTicks_m3F4040FBF8C7CCDC69E0E04824019DEBB25AA410(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
|
|
int64_t L_2 = ((Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var))->___Frequency_0;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3;
|
|
L_3 = TimeSpan_FromTicks_m9C683B1D142312F22E8CC6C803E32EF6D42F9003(((int64_t)(L_1/((int64_t)(L_2/((int64_t)((int32_t)10000000)))))), NULL);
|
|
return L_3;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int64_t L_4;
|
|
L_4 = Stopwatch_get_ElapsedTicks_m3F4040FBF8C7CCDC69E0E04824019DEBB25AA410(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5;
|
|
L_5 = TimeSpan_FromTicks_m9C683B1D142312F22E8CC6C803E32EF6D42F9003(L_4, NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Int64 System.Diagnostics.Stopwatch::get_ElapsedMilliseconds()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Stopwatch_get_ElapsedMilliseconds_m8D8E60ADEB47D008C06D8E57D28D41EAE07AECBF (Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_get_ElapsedMilliseconds_m8D8E60ADEB47D008C06D8E57D28D41EAE07AECBF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
|
|
bool L_0 = ((Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var))->___IsHighResolution_1;
|
|
if (!L_0)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_1;
|
|
L_1 = Stopwatch_get_ElapsedTicks_m3F4040FBF8C7CCDC69E0E04824019DEBB25AA410(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
|
|
int64_t L_2 = ((Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var))->___Frequency_0;
|
|
return ((int64_t)(L_1/((int64_t)(L_2/((int64_t)((int32_t)1000))))));
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3;
|
|
L_3 = Stopwatch_get_Elapsed_mF16CCA2F9B7E2EAEFCAF8D81F44370DBAC1B2178(__this, NULL);
|
|
V_0 = L_3;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
double L_4;
|
|
L_4 = TimeSpan_get_TotalMilliseconds_m3506C1A49F1FE37A82F3027EA061D18215EF87CF((&V_0), NULL);
|
|
if (L_4 > (double)((std::numeric_limits<int64_t>::max)())) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Stopwatch_get_ElapsedMilliseconds_m8D8E60ADEB47D008C06D8E57D28D41EAE07AECBF_RuntimeMethod_var);
|
|
return il2cpp_codegen_cast_double_to_int<int64_t>(L_4);
|
|
}
|
|
}
|
|
// System.Int64 System.Diagnostics.Stopwatch::get_ElapsedTicks()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Stopwatch_get_ElapsedTicks_m3F4040FBF8C7CCDC69E0E04824019DEBB25AA410 (Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = __this->___is_running_4;
|
|
if (L_0)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_1 = __this->___elapsed_2;
|
|
return L_1;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
|
|
int64_t L_2;
|
|
L_2 = Stopwatch_GetTimestamp_mA3BDF219C573A34751D6A792E86C825B74D2CEB7(NULL);
|
|
int64_t L_3 = __this->___started_3;
|
|
int64_t L_4 = __this->___elapsed_2;
|
|
return ((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_subtract(L_2, L_3)), L_4));
|
|
}
|
|
}
|
|
// System.Boolean System.Diagnostics.Stopwatch::get_IsRunning()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Stopwatch_get_IsRunning_mB1C465B7089DFB8A94BF56CC694F5EF72A55E5B6 (Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___is_running_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.Diagnostics.Stopwatch::Start()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stopwatch_Start_m35906A38C7D336CF9DD35854C7E170D762A55915 (Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = __this->___is_running_4;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
|
|
int64_t L_1;
|
|
L_1 = Stopwatch_GetTimestamp_mA3BDF219C573A34751D6A792E86C825B74D2CEB7(NULL);
|
|
__this->___started_3 = L_1;
|
|
__this->___is_running_4 = (bool)1;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Diagnostics.Stopwatch::Stop()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stopwatch_Stop_m8F2A2EFD9D7D5B4180A5E5379E5443864618D7DC (Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = __this->___is_running_4;
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
int64_t L_1 = __this->___elapsed_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
|
|
int64_t L_2;
|
|
L_2 = Stopwatch_GetTimestamp_mA3BDF219C573A34751D6A792E86C825B74D2CEB7(NULL);
|
|
int64_t L_3 = __this->___started_3;
|
|
__this->___elapsed_2 = ((int64_t)il2cpp_codegen_add(L_1, ((int64_t)il2cpp_codegen_subtract(L_2, L_3))));
|
|
int64_t L_4 = __this->___elapsed_2;
|
|
if ((((int64_t)L_4) >= ((int64_t)((int64_t)0))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
__this->___elapsed_2 = ((int64_t)0);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
__this->___is_running_4 = (bool)0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Diagnostics.Stopwatch::Restart()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stopwatch_Restart_m9CE82CCD811EE12C2E4FDFF708B5529D1CE6DA58 (Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
|
|
int64_t L_0;
|
|
L_0 = Stopwatch_GetTimestamp_mA3BDF219C573A34751D6A792E86C825B74D2CEB7(NULL);
|
|
__this->___started_3 = L_0;
|
|
__this->___elapsed_2 = ((int64_t)0);
|
|
__this->___is_running_4 = (bool)1;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Diagnostics.Stopwatch::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stopwatch__cctor_mF9BBC572803E232BF2D323301E90A6AFDB496FB9 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
((Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var))->___Frequency_0 = ((int64_t)((int32_t)10000000));
|
|
((Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var))->___IsHighResolution_1 = (bool)1;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExcludeFromCodeCoverageAttribute__ctor_m2CB8196E20519167E842D03BE4CFBCC84BEFC9E2 (ExcludeFromCodeCoverageAttribute_tD4CB13A2A9FCF2022C854E503D3B44DFF634FAAD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Security.Authentication.AuthenticationException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AuthenticationException__ctor_m7A29E86FE3299D40A63064FF6DB61D0E1A70C1F6 (AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0BBF32E37A38CB4C85C7D8C51BE0820F8937DA43);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0;
|
|
L_0 = Locale_GetText_m7BA18BC14D3028C4C4722E220800563188DA3600(_stringLiteral0BBF32E37A38CB4C85C7D8C51BE0820F8937DA43, NULL);
|
|
SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Authentication.AuthenticationException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AuthenticationException__ctor_mF08E9BCF31EFCDBECB34BB56D05EEF158B200896 (AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8* __this, String_t* ___0_message, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_message;
|
|
SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Authentication.AuthenticationException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AuthenticationException__ctor_m6EDDEE3840629AC06E70CDF7878F955FE1ED538A (AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_message;
|
|
Exception_t* L_1 = ___1_innerException;
|
|
SystemException__ctor_m0FC84CACD2A5D66222998AA601A5C41CEC36A611(__this, L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Authentication.AuthenticationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AuthenticationException__ctor_m091E6A6612916774EDF1C0F7544B70A5FA97A542 (AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_serializationInfo, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_streamingContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_serializationInfo;
|
|
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_streamingContext;
|
|
SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879(__this, L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Security.Cryptography.DerSequenceReader::set_ContentLength(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerSequenceReader_set_ContentLength_mA2B091D517ABF0AFDF9C54477720668E09F47BCA (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CContentLengthU3Ek__BackingField_6 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.DerSequenceReader::.ctor(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerSequenceReader__ctor_m899D7771F7F469E94812F8EB9BB0A75A0BE69CBD (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_data;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_data;
|
|
NullCheck(L_1);
|
|
DerSequenceReader__ctor_mAA932343BB190BC44E41A6D8FBA75EC976D0D09A(__this, L_0, 0, ((int32_t)(((RuntimeArray*)L_1)->max_length)), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.DerSequenceReader::.ctor(System.Byte[],System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerSequenceReader__ctor_mAA932343BB190BC44E41A6D8FBA75EC976D0D09A (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, int32_t ___1_offset, int32_t ___2_length, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_data;
|
|
int32_t L_1 = ___1_offset;
|
|
int32_t L_2 = ___2_length;
|
|
DerSequenceReader__ctor_m09BDCF87C8D4558CABCC96159ADDBB6E49361141(__this, ((int32_t)16), L_0, L_1, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.DerSequenceReader::.ctor(System.Security.Cryptography.DerSequenceReader/DerTag,System.Byte[],System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerSequenceReader__ctor_m09BDCF87C8D4558CABCC96159ADDBB6E49361141 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, uint8_t ___0_tagToEat, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_data, int32_t ___2_offset, int32_t ___3_length, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
int32_t L_0 = ___2_offset;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___3_length;
|
|
if ((((int32_t)L_1) < ((int32_t)2)))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___3_length;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___1_data;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = ___2_offset;
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_3)->max_length)), L_4)))))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_5 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_5);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader__ctor_m09BDCF87C8D4558CABCC96159ADDBB6E49361141_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___1_data;
|
|
__this->____data_3 = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____data_3), (void*)L_6);
|
|
int32_t L_7 = ___2_offset;
|
|
int32_t L_8 = ___3_length;
|
|
__this->____end_4 = ((int32_t)il2cpp_codegen_add(L_7, L_8));
|
|
int32_t L_9 = ___2_offset;
|
|
__this->____position_5 = L_9;
|
|
uint8_t L_10 = ___0_tagToEat;
|
|
DerSequenceReader_EatTag_mF2658A324EBFAF16DAEB9762EA7DFE9036D4FB8E(__this, L_10, NULL);
|
|
int32_t L_11;
|
|
L_11 = DerSequenceReader_EatLength_m2D1533B44A7CE4E4C97B206F704CF0BEE6D2A6A5(__this, NULL);
|
|
V_0 = L_11;
|
|
int32_t L_12 = V_0;
|
|
DerSequenceReader_set_ContentLength_mA2B091D517ABF0AFDF9C54477720668E09F47BCA_inline(__this, L_12, NULL);
|
|
int32_t L_13 = __this->____position_5;
|
|
int32_t L_14 = V_0;
|
|
__this->____end_4 = ((int32_t)il2cpp_codegen_add(L_13, L_14));
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.Security.Cryptography.DerSequenceReader::get_HasData()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____position_5;
|
|
int32_t L_1 = __this->____end_4;
|
|
return (bool)((((int32_t)L_0) < ((int32_t)L_1))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Byte System.Security.Cryptography.DerSequenceReader::PeekTag()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_1 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = __this->____data_3;
|
|
int32_t L_3 = __this->____position_5;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
uint8_t L_6 = L_5;
|
|
G_B3_0 = ((int32_t)(L_6));
|
|
if ((!(((uint32_t)((int32_t)((int32_t)L_6&((int32_t)31)))) == ((uint32_t)((int32_t)31)))))
|
|
{
|
|
G_B4_0 = ((int32_t)(L_6));
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_7 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_7);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
return (uint8_t)G_B4_0;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.DerSequenceReader::SkipValue()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerSequenceReader_SkipValue_m0F715CE70FF6EDD8575359FDC2E8ADBAC72FFACE (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
uint8_t L_0;
|
|
L_0 = DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B(__this, NULL);
|
|
DerSequenceReader_EatTag_mF2658A324EBFAF16DAEB9762EA7DFE9036D4FB8E(__this, L_0, NULL);
|
|
int32_t L_1;
|
|
L_1 = DerSequenceReader_EatLength_m2D1533B44A7CE4E4C97B206F704CF0BEE6D2A6A5(__this, NULL);
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____position_5;
|
|
int32_t L_3 = V_0;
|
|
__this->____position_5 = ((int32_t)il2cpp_codegen_add(L_2, L_3));
|
|
return;
|
|
}
|
|
}
|
|
// System.Byte[] System.Security.Cryptography.DerSequenceReader::ReadNextEncodedValue()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DerSequenceReader_ReadNextEncodedValue_mB9D376F1ED7428BFE7DE86B327E1B80E52E91CB7 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_3 = NULL;
|
|
{
|
|
uint8_t L_0;
|
|
L_0 = DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B(__this, NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = __this->____data_3;
|
|
int32_t L_2 = __this->____position_5;
|
|
int32_t L_3 = __this->____end_4;
|
|
int32_t L_4;
|
|
L_4 = DerSequenceReader_ScanContentLength_mDCE749F3AF5DEBB56A9683C6F5D6AE817F3D344D(L_1, ((int32_t)il2cpp_codegen_add(L_2, 1)), L_3, (&V_0), NULL);
|
|
V_1 = L_4;
|
|
int32_t L_5 = V_0;
|
|
int32_t L_6 = V_1;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(1, L_5)), L_6));
|
|
int32_t L_7 = V_2;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_7);
|
|
V_3 = L_8;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = __this->____data_3;
|
|
int32_t L_10 = __this->____position_5;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = V_3;
|
|
int32_t L_12 = V_2;
|
|
Buffer_BlockCopy_m2F7BC0C5BA97C500E3F87D5008718F797E02B358((RuntimeArray*)L_9, L_10, (RuntimeArray*)L_11, 0, L_12, NULL);
|
|
int32_t L_13 = __this->____position_5;
|
|
int32_t L_14 = V_2;
|
|
__this->____position_5 = ((int32_t)il2cpp_codegen_add(L_13, L_14));
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15 = V_3;
|
|
return L_15;
|
|
}
|
|
}
|
|
// System.Boolean System.Security.Cryptography.DerSequenceReader::ReadBoolean()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DerSequenceReader_ReadBoolean_m568EA640EA9967B8785075997D5161FC7C6C5EBD (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
DerSequenceReader_EatTag_mF2658A324EBFAF16DAEB9762EA7DFE9036D4FB8E(__this, 1, NULL);
|
|
int32_t L_0;
|
|
L_0 = DerSequenceReader_EatLength_m2D1533B44A7CE4E4C97B206F704CF0BEE6D2A6A5(__this, NULL);
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
if ((((int32_t)L_1) == ((int32_t)1)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_2 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_ReadBoolean_m568EA640EA9967B8785075997D5161FC7C6C5EBD_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = __this->____data_3;
|
|
int32_t L_4 = __this->____position_5;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
uint8_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
int32_t L_7 = __this->____position_5;
|
|
int32_t L_8 = V_0;
|
|
__this->____position_5 = ((int32_t)il2cpp_codegen_add(L_7, L_8));
|
|
return (bool)((!(((uint32_t)L_6) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Int32 System.Security.Cryptography.DerSequenceReader::ReadInteger()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DerSequenceReader_ReadInteger_mEFB23332B798605A0F474C5B43C59D70543B93BC (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Reverse_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m4298AF0CA764FA936F9C5ED3606D1B4E2EC9EBA2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0;
|
|
L_0 = DerSequenceReader_ReadIntegerBytes_mBF491D99194CDD9FC70F58CF07E66B535C3F63EB(__this, NULL);
|
|
V_0 = L_0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = V_0;
|
|
Array_Reverse_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m4298AF0CA764FA936F9C5ED3606D1B4E2EC9EBA2(L_1, Array_Reverse_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m4298AF0CA764FA936F9C5ED3606D1B4E2EC9EBA2_RuntimeMethod_var);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = V_0;
|
|
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
BigInteger__ctor_m25FA3F3C832BC621CD91ABFAC3535A2F4EE7B371((&L_3), L_2, /*hidden argument*/NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var);
|
|
int32_t L_4;
|
|
L_4 = BigInteger_op_Explicit_m381F80B7F65BFEC7F2597DCDB24622F7F32E6848(L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Byte[] System.Security.Cryptography.DerSequenceReader::ReadIntegerBytes()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DerSequenceReader_ReadIntegerBytes_mBF491D99194CDD9FC70F58CF07E66B535C3F63EB (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DerSequenceReader_EatTag_mF2658A324EBFAF16DAEB9762EA7DFE9036D4FB8E(__this, 2, NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0;
|
|
L_0 = DerSequenceReader_ReadContentAsBytes_m1DA571FBC10F30D7D68D49DAADF32C320A2B9907(__this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Byte[] System.Security.Cryptography.DerSequenceReader::ReadBitString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DerSequenceReader_ReadBitString_m6519951E58B9642238778071AF7926A6948F0387 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
|
|
{
|
|
DerSequenceReader_EatTag_mF2658A324EBFAF16DAEB9762EA7DFE9036D4FB8E(__this, 3, NULL);
|
|
int32_t L_0;
|
|
L_0 = DerSequenceReader_EatLength_m2D1533B44A7CE4E4C97B206F704CF0BEE6D2A6A5(__this, NULL);
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
if ((((int32_t)L_1) >= ((int32_t)1)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_2 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_ReadBitString_m6519951E58B9642238778071AF7926A6948F0387_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = __this->____data_3;
|
|
int32_t L_4 = __this->____position_5;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
uint8_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
if ((((int32_t)L_6) <= ((int32_t)7)))
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_7 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_7);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_ReadBitString_m6519951E58B9642238778071AF7926A6948F0387_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_8, 1));
|
|
int32_t L_9 = __this->____position_5;
|
|
__this->____position_5 = ((int32_t)il2cpp_codegen_add(L_9, 1));
|
|
int32_t L_10 = V_0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_10);
|
|
V_1 = L_11;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = __this->____data_3;
|
|
int32_t L_13 = __this->____position_5;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = V_1;
|
|
int32_t L_15 = V_0;
|
|
Buffer_BlockCopy_m2F7BC0C5BA97C500E3F87D5008718F797E02B358((RuntimeArray*)L_12, L_13, (RuntimeArray*)L_14, 0, L_15, NULL);
|
|
int32_t L_16 = __this->____position_5;
|
|
int32_t L_17 = V_0;
|
|
__this->____position_5 = ((int32_t)il2cpp_codegen_add(L_16, L_17));
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = V_1;
|
|
return L_18;
|
|
}
|
|
}
|
|
// System.Byte[] System.Security.Cryptography.DerSequenceReader::ReadOctetString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DerSequenceReader_ReadOctetString_mDF80CEA6892B5E2BAA457C153DEBE8C411EC70FE (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DerSequenceReader_EatTag_mF2658A324EBFAF16DAEB9762EA7DFE9036D4FB8E(__this, 4, NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0;
|
|
L_0 = DerSequenceReader_ReadContentAsBytes_m1DA571FBC10F30D7D68D49DAADF32C320A2B9907(__this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.DerSequenceReader::ReadOidAsString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DerSequenceReader_ReadOidAsString_m53E76684261C012927DE60E2A8A5A4ECC6B33198 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
StringBuilder_t* V_1 = NULL;
|
|
uint8_t V_2 = 0x0;
|
|
uint8_t V_3 = 0x0;
|
|
bool V_4 = false;
|
|
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
int32_t V_6 = 0;
|
|
uint8_t V_7 = 0x0;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
DerSequenceReader_EatTag_mF2658A324EBFAF16DAEB9762EA7DFE9036D4FB8E(__this, 6, NULL);
|
|
int32_t L_0;
|
|
L_0 = DerSequenceReader_EatLength_m2D1533B44A7CE4E4C97B206F704CF0BEE6D2A6A5(__this, NULL);
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
if ((((int32_t)L_1) >= ((int32_t)1)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_2 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_ReadOidAsString_m53E76684261C012927DE60E2A8A5A4ECC6B33198_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_3 = V_0;
|
|
StringBuilder_t* L_4 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
NullCheck(L_4);
|
|
StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5(L_4, ((int32_t)il2cpp_codegen_multiply(L_3, 4)), NULL);
|
|
V_1 = L_4;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = __this->____data_3;
|
|
int32_t L_6 = __this->____position_5;
|
|
NullCheck(L_5);
|
|
int32_t L_7 = L_6;
|
|
uint8_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
|
|
uint8_t L_9 = L_8;
|
|
V_2 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_9/((int32_t)40))));
|
|
V_3 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_9%((int32_t)40))));
|
|
StringBuilder_t* L_10 = V_1;
|
|
uint8_t L_11 = V_2;
|
|
NullCheck(L_10);
|
|
StringBuilder_t* L_12;
|
|
L_12 = StringBuilder_Append_m2AE3195218B68BDDF01EF85928C76D6B596ED18D(L_10, L_11, NULL);
|
|
StringBuilder_t* L_13 = V_1;
|
|
NullCheck(L_13);
|
|
StringBuilder_t* L_14;
|
|
L_14 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_13, ((int32_t)46), NULL);
|
|
StringBuilder_t* L_15 = V_1;
|
|
uint8_t L_16 = V_3;
|
|
NullCheck(L_15);
|
|
StringBuilder_t* L_17;
|
|
L_17 = StringBuilder_Append_m2AE3195218B68BDDF01EF85928C76D6B596ED18D(L_15, L_16, NULL);
|
|
V_4 = (bool)1;
|
|
il2cpp_codegen_runtime_class_init_inline(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var);
|
|
BigInteger__ctor_mFEDEDA4A6AFC2BA534FEEF4EB3431B9C5AC3F9D9((&V_5), 0, NULL);
|
|
V_6 = 1;
|
|
goto IL_00cb;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = __this->____data_3;
|
|
int32_t L_19 = __this->____position_5;
|
|
int32_t L_20 = V_6;
|
|
NullCheck(L_18);
|
|
int32_t L_21 = ((int32_t)il2cpp_codegen_add(L_19, L_20));
|
|
uint8_t L_22 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
|
|
uint8_t L_23 = L_22;
|
|
V_7 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_23&((int32_t)127))));
|
|
bool L_24 = V_4;
|
|
G_B4_0 = ((int32_t)(L_23));
|
|
if (!L_24)
|
|
{
|
|
G_B5_0 = ((int32_t)(L_23));
|
|
goto IL_008e;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_25 = V_1;
|
|
NullCheck(L_25);
|
|
StringBuilder_t* L_26;
|
|
L_26 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_25, ((int32_t)46), NULL);
|
|
V_4 = (bool)0;
|
|
G_B5_0 = G_B4_0;
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_27 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var);
|
|
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_28;
|
|
L_28 = BigInteger_op_LeftShift_m9C9DD1A22775C31A01650FEB59A91D4A58B719B3(L_27, 7, NULL);
|
|
V_5 = L_28;
|
|
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_29 = V_5;
|
|
uint8_t L_30 = V_7;
|
|
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_31;
|
|
L_31 = BigInteger_op_Implicit_m9B2DA118DD0522DFA6983787CC9C09DACDB5469B(L_30, NULL);
|
|
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_32;
|
|
L_32 = BigInteger_op_Addition_m895A3ED96D07E1A6E4AD97483EDC256107A31B12(L_29, L_31, NULL);
|
|
V_5 = L_32;
|
|
uint8_t L_33 = V_7;
|
|
if ((!(((uint32_t)G_B5_0) == ((uint32_t)L_33))))
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_34 = V_1;
|
|
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_35 = V_5;
|
|
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_36 = L_35;
|
|
RuntimeObject* L_37 = Box(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var, &L_36);
|
|
NullCheck(L_34);
|
|
StringBuilder_t* L_38;
|
|
L_38 = StringBuilder_Append_m3A7D629DAA5E0E36B8A617A911E34F79AF84AE63(L_34, L_37, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var);
|
|
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_39;
|
|
L_39 = BigInteger_op_Implicit_m0E4A1C7B1F24EB10AE57608F2EBA5B127006D850(0, NULL);
|
|
V_5 = L_39;
|
|
V_4 = (bool)1;
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
int32_t L_40 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_40, 1));
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
int32_t L_41 = V_6;
|
|
int32_t L_42 = V_0;
|
|
if ((((int32_t)L_41) < ((int32_t)L_42)))
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_43 = __this->____position_5;
|
|
int32_t L_44 = V_0;
|
|
__this->____position_5 = ((int32_t)il2cpp_codegen_add(L_43, L_44));
|
|
StringBuilder_t* L_45 = V_1;
|
|
NullCheck(L_45);
|
|
String_t* L_46;
|
|
L_46 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_45);
|
|
return L_46;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.DerSequenceReader::ReadUtf8String()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DerSequenceReader_ReadUtf8String_m695D8EC313847638A5E9FCB3B036B3AD4A73DB83 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
DerSequenceReader_EatTag_mF2658A324EBFAF16DAEB9762EA7DFE9036D4FB8E(__this, ((int32_t)12), NULL);
|
|
int32_t L_0;
|
|
L_0 = DerSequenceReader_EatLength_m2D1533B44A7CE4E4C97B206F704CF0BEE6D2A6A5(__this, NULL);
|
|
V_0 = L_0;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1;
|
|
L_1 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = __this->____data_3;
|
|
int32_t L_3 = __this->____position_5;
|
|
int32_t L_4 = V_0;
|
|
NullCheck(L_1);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_1, L_2, L_3, L_4);
|
|
int32_t L_6 = __this->____position_5;
|
|
int32_t L_7 = V_0;
|
|
__this->____position_5 = ((int32_t)il2cpp_codegen_add(L_6, L_7));
|
|
String_t* L_8;
|
|
L_8 = DerSequenceReader_TrimTrailingNulls_m6F8B443B4DD8AD5D94A873B7849A2C51A2036801(L_5, NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.DerSequenceReader System.Security.Cryptography.DerSequenceReader::ReadCollectionWithTag(System.Security.Cryptography.DerSequenceReader/DerTag)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* DerSequenceReader_ReadCollectionWithTag_mBF55466089C1EAABB9D84B29A9A6193525AC412F (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, uint8_t ___0_expected, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
uint8_t L_0 = ___0_expected;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = __this->____data_3;
|
|
int32_t L_2 = __this->____position_5;
|
|
DerSequenceReader_CheckTag_mCD70359356B835C7EAC514E2A4701D226B84588F(L_0, L_1, L_2, NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = __this->____data_3;
|
|
int32_t L_4 = __this->____position_5;
|
|
int32_t L_5 = __this->____end_4;
|
|
int32_t L_6;
|
|
L_6 = DerSequenceReader_ScanContentLength_mDCE749F3AF5DEBB56A9683C6F5D6AE817F3D344D(L_3, ((int32_t)il2cpp_codegen_add(L_4, 1)), L_5, (&V_0), NULL);
|
|
V_1 = L_6;
|
|
int32_t L_7 = V_0;
|
|
int32_t L_8 = V_1;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(1, L_7)), L_8));
|
|
uint8_t L_9 = ___0_expected;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = __this->____data_3;
|
|
int32_t L_11 = __this->____position_5;
|
|
int32_t L_12 = V_2;
|
|
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_13 = (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A*)il2cpp_codegen_object_new(DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var);
|
|
NullCheck(L_13);
|
|
DerSequenceReader__ctor_m09BDCF87C8D4558CABCC96159ADDBB6E49361141(L_13, L_9, L_10, L_11, L_12, NULL);
|
|
int32_t L_14 = __this->____position_5;
|
|
int32_t L_15 = V_2;
|
|
__this->____position_5 = ((int32_t)il2cpp_codegen_add(L_14, L_15));
|
|
return L_13;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.DerSequenceReader System.Security.Cryptography.DerSequenceReader::ReadSequence()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* DerSequenceReader_ReadSequence_m97DF1A79453D57FB5DB012273F34213180921AB4 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_0;
|
|
L_0 = DerSequenceReader_ReadCollectionWithTag_mBF55466089C1EAABB9D84B29A9A6193525AC412F(__this, ((int32_t)16), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.DerSequenceReader System.Security.Cryptography.DerSequenceReader::ReadSet()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* DerSequenceReader_ReadSet_mB2770ADE8AF6F651659562AEF5B8F247619641FF (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_0;
|
|
L_0 = DerSequenceReader_ReadCollectionWithTag_mBF55466089C1EAABB9D84B29A9A6193525AC412F(__this, ((int32_t)17), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.DerSequenceReader::ReadPrintableString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DerSequenceReader_ReadPrintableString_m9ED84D1BD26B7DB18C047355BD2011CAFC2E72FE (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
DerSequenceReader_EatTag_mF2658A324EBFAF16DAEB9762EA7DFE9036D4FB8E(__this, ((int32_t)19), NULL);
|
|
int32_t L_0;
|
|
L_0 = DerSequenceReader_EatLength_m2D1533B44A7CE4E4C97B206F704CF0BEE6D2A6A5(__this, NULL);
|
|
V_0 = L_0;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1;
|
|
L_1 = Encoding_get_ASCII_mCC61B512D320FD4E2E71CC0DFDF8DDF3CD215C65(NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = __this->____data_3;
|
|
int32_t L_3 = __this->____position_5;
|
|
int32_t L_4 = V_0;
|
|
NullCheck(L_1);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_1, L_2, L_3, L_4);
|
|
int32_t L_6 = __this->____position_5;
|
|
int32_t L_7 = V_0;
|
|
__this->____position_5 = ((int32_t)il2cpp_codegen_add(L_6, L_7));
|
|
String_t* L_8;
|
|
L_8 = DerSequenceReader_TrimTrailingNulls_m6F8B443B4DD8AD5D94A873B7849A2C51A2036801(L_5, NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.DerSequenceReader::ReadIA5String()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DerSequenceReader_ReadIA5String_m0C23F1CCD96F9F4BD97A43459D1839BDFD1EAB40 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
DerSequenceReader_EatTag_mF2658A324EBFAF16DAEB9762EA7DFE9036D4FB8E(__this, ((int32_t)22), NULL);
|
|
int32_t L_0;
|
|
L_0 = DerSequenceReader_EatLength_m2D1533B44A7CE4E4C97B206F704CF0BEE6D2A6A5(__this, NULL);
|
|
V_0 = L_0;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1;
|
|
L_1 = Encoding_get_ASCII_mCC61B512D320FD4E2E71CC0DFDF8DDF3CD215C65(NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = __this->____data_3;
|
|
int32_t L_3 = __this->____position_5;
|
|
int32_t L_4 = V_0;
|
|
NullCheck(L_1);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_1, L_2, L_3, L_4);
|
|
int32_t L_6 = __this->____position_5;
|
|
int32_t L_7 = V_0;
|
|
__this->____position_5 = ((int32_t)il2cpp_codegen_add(L_6, L_7));
|
|
String_t* L_8;
|
|
L_8 = DerSequenceReader_TrimTrailingNulls_m6F8B443B4DD8AD5D94A873B7849A2C51A2036801(L_5, NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.DerSequenceReader::ReadT61String()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DerSequenceReader_ReadT61String_m30F888297CE3E176BE97EE993BA1FA945607999E (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_t01E2C750A870E045042E56862BC569C800166539_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LazyInitializer_EnsureInitialized_TisEncoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_m2736CF83A2CA83587FFCB63D7FF01994A7A6314A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CReadT61StringU3Eb__45_0_m53F555E4EFBF56385A389ACA1681D68920A18735_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CReadT61StringU3Eb__45_1_m2DE60562D90243EC4880800B7AAE0463F5E8B557_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
String_t* V_1 = NULL;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_2 = NULL;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_3 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
Func_1_t01E2C750A870E045042E56862BC569C800166539* G_B2_0 = NULL;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095** G_B2_1 = NULL;
|
|
Func_1_t01E2C750A870E045042E56862BC569C800166539* G_B1_0 = NULL;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095** G_B1_1 = NULL;
|
|
Func_1_t01E2C750A870E045042E56862BC569C800166539* G_B4_0 = NULL;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095** G_B4_1 = NULL;
|
|
Func_1_t01E2C750A870E045042E56862BC569C800166539* G_B3_0 = NULL;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095** G_B3_1 = NULL;
|
|
{
|
|
DerSequenceReader_EatTag_mF2658A324EBFAF16DAEB9762EA7DFE9036D4FB8E(__this, ((int32_t)20), NULL);
|
|
int32_t L_0;
|
|
L_0 = DerSequenceReader_EatLength_m2D1533B44A7CE4E4C97B206F704CF0BEE6D2A6A5(__this, NULL);
|
|
V_0 = L_0;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var);
|
|
Func_1_t01E2C750A870E045042E56862BC569C800166539* L_1 = ((U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var))->___U3CU3E9__45_0_1;
|
|
Func_1_t01E2C750A870E045042E56862BC569C800166539* L_2 = L_1;
|
|
G_B1_0 = L_2;
|
|
G_B1_1 = (&((DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_StaticFields*)il2cpp_codegen_static_fields_for(DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var))->___s_utf8EncodingWithExceptionFallback_1);
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
G_B2_1 = (&((DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_StaticFields*)il2cpp_codegen_static_fields_for(DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var))->___s_utf8EncodingWithExceptionFallback_1);
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423* L_3 = ((U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var))->___U3CU3E9_0;
|
|
Func_1_t01E2C750A870E045042E56862BC569C800166539* L_4 = (Func_1_t01E2C750A870E045042E56862BC569C800166539*)il2cpp_codegen_object_new(Func_1_t01E2C750A870E045042E56862BC569C800166539_il2cpp_TypeInfo_var);
|
|
NullCheck(L_4);
|
|
Func_1__ctor_m6C754E4D0B45BA7670981BB593CB2664F6059CEB(L_4, L_3, (intptr_t)((void*)U3CU3Ec_U3CReadT61StringU3Eb__45_0_m53F555E4EFBF56385A389ACA1681D68920A18735_RuntimeMethod_var), NULL);
|
|
Func_1_t01E2C750A870E045042E56862BC569C800166539* L_5 = L_4;
|
|
((U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var))->___U3CU3E9__45_0_1 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var))->___U3CU3E9__45_0_1), (void*)L_5);
|
|
G_B2_0 = L_5;
|
|
G_B2_1 = G_B1_1;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_6;
|
|
L_6 = LazyInitializer_EnsureInitialized_TisEncoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_m2736CF83A2CA83587FFCB63D7FF01994A7A6314A(G_B2_1, G_B2_0, LazyInitializer_EnsureInitialized_TisEncoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_m2736CF83A2CA83587FFCB63D7FF01994A7A6314A_RuntimeMethod_var);
|
|
V_2 = L_6;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var);
|
|
Func_1_t01E2C750A870E045042E56862BC569C800166539* L_7 = ((U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var))->___U3CU3E9__45_1_2;
|
|
Func_1_t01E2C750A870E045042E56862BC569C800166539* L_8 = L_7;
|
|
G_B3_0 = L_8;
|
|
G_B3_1 = (&((DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_StaticFields*)il2cpp_codegen_static_fields_for(DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var))->___s_latin1Encoding_2);
|
|
if (L_8)
|
|
{
|
|
G_B4_0 = L_8;
|
|
G_B4_1 = (&((DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_StaticFields*)il2cpp_codegen_static_fields_for(DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var))->___s_latin1Encoding_2);
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423* L_9 = ((U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var))->___U3CU3E9_0;
|
|
Func_1_t01E2C750A870E045042E56862BC569C800166539* L_10 = (Func_1_t01E2C750A870E045042E56862BC569C800166539*)il2cpp_codegen_object_new(Func_1_t01E2C750A870E045042E56862BC569C800166539_il2cpp_TypeInfo_var);
|
|
NullCheck(L_10);
|
|
Func_1__ctor_m6C754E4D0B45BA7670981BB593CB2664F6059CEB(L_10, L_9, (intptr_t)((void*)U3CU3Ec_U3CReadT61StringU3Eb__45_1_m2DE60562D90243EC4880800B7AAE0463F5E8B557_RuntimeMethod_var), NULL);
|
|
Func_1_t01E2C750A870E045042E56862BC569C800166539* L_11 = L_10;
|
|
((U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var))->___U3CU3E9__45_1_2 = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var))->___U3CU3E9__45_1_2), (void*)L_11);
|
|
G_B4_0 = L_11;
|
|
G_B4_1 = G_B3_1;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_12;
|
|
L_12 = LazyInitializer_EnsureInitialized_TisEncoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_m2736CF83A2CA83587FFCB63D7FF01994A7A6314A(G_B4_1, G_B4_0, LazyInitializer_EnsureInitialized_TisEncoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_m2736CF83A2CA83587FFCB63D7FF01994A7A6314A_RuntimeMethod_var);
|
|
V_3 = L_12;
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_13 = V_2;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = __this->____data_3;
|
|
int32_t L_15 = __this->____position_5;
|
|
int32_t L_16 = V_0;
|
|
NullCheck(L_13);
|
|
String_t* L_17;
|
|
L_17 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_13, L_14, L_15, L_16);
|
|
V_1 = L_17;
|
|
goto IL_0090;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DecoderFallbackException_t2C3FC33AE2DFD1ECB47F945ABA8F6D292BC7FBA4_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0079;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0079:
|
|
{// begin catch(System.Text.DecoderFallbackException)
|
|
DecoderFallbackException_t2C3FC33AE2DFD1ECB47F945ABA8F6D292BC7FBA4* L_18 = ((DecoderFallbackException_t2C3FC33AE2DFD1ECB47F945ABA8F6D292BC7FBA4*)IL2CPP_GET_ACTIVE_EXCEPTION(DecoderFallbackException_t2C3FC33AE2DFD1ECB47F945ABA8F6D292BC7FBA4*));;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = V_3;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = __this->____data_3;
|
|
int32_t L_21 = __this->____position_5;
|
|
int32_t L_22 = V_0;
|
|
NullCheck(L_19);
|
|
String_t* L_23;
|
|
L_23 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_19, L_20, L_21, L_22);
|
|
V_1 = L_23;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0090;
|
|
}// end catch (depth: 1)
|
|
|
|
IL_0090:
|
|
{
|
|
int32_t L_24 = __this->____position_5;
|
|
int32_t L_25 = V_0;
|
|
__this->____position_5 = ((int32_t)il2cpp_codegen_add(L_24, L_25));
|
|
String_t* L_26 = V_1;
|
|
String_t* L_27;
|
|
L_27 = DerSequenceReader_TrimTrailingNulls_m6F8B443B4DD8AD5D94A873B7849A2C51A2036801(L_26, NULL);
|
|
return L_27;
|
|
}
|
|
}
|
|
// System.DateTime System.Security.Cryptography.DerSequenceReader::ReadX509Date()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DerSequenceReader_ReadX509Date_m4B50094324675B16BCF2F77BCB1CD6827F04A568 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
uint8_t V_0 = 0;
|
|
{
|
|
uint8_t L_0;
|
|
L_0 = DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B(__this, NULL);
|
|
V_0 = L_0;
|
|
uint8_t L_1 = V_0;
|
|
if ((((int32_t)L_1) == ((int32_t)((int32_t)23))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_2 = V_0;
|
|
if ((((int32_t)L_2) == ((int32_t)((int32_t)24))))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3;
|
|
L_3 = DerSequenceReader_ReadUtcTime_m16083186C07F2771CB7B4EA9EA68248FCFA9B66B(__this, NULL);
|
|
return L_3;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4;
|
|
L_4 = DerSequenceReader_ReadGeneralizedTime_m24100E18CD48B8F2E7415BEA4095466A0DBF3042(__this, NULL);
|
|
return L_4;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_5 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_5);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_ReadX509Date_m4B50094324675B16BCF2F77BCB1CD6827F04A568_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// System.DateTime System.Security.Cryptography.DerSequenceReader::ReadUtcTime()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DerSequenceReader_ReadUtcTime_m16083186C07F2771CB7B4EA9EA68248FCFA9B66B (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB565140D7F16AA34B6B76F63B9721525520345F7);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0;
|
|
L_0 = DerSequenceReader_ReadTime_m492DB6BB481B1CFC586644EE3D233145A5486F32(__this, ((int32_t)23), _stringLiteralB565140D7F16AA34B6B76F63B9721525520345F7, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.DateTime System.Security.Cryptography.DerSequenceReader::ReadGeneralizedTime()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DerSequenceReader_ReadGeneralizedTime_m24100E18CD48B8F2E7415BEA4095466A0DBF3042 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4946F949F5ECA9D410C3E3829DA66DED8E3B604D);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0;
|
|
L_0 = DerSequenceReader_ReadTime_m492DB6BB481B1CFC586644EE3D233145A5486F32(__this, ((int32_t)24), _stringLiteral4946F949F5ECA9D410C3E3829DA66DED8E3B604D, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.DerSequenceReader::ReadBMPString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DerSequenceReader_ReadBMPString_m6AD51BC4D16BF2659A5F0D197A0A2F184D36375E (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
DerSequenceReader_EatTag_mF2658A324EBFAF16DAEB9762EA7DFE9036D4FB8E(__this, ((int32_t)30), NULL);
|
|
int32_t L_0;
|
|
L_0 = DerSequenceReader_EatLength_m2D1533B44A7CE4E4C97B206F704CF0BEE6D2A6A5(__this, NULL);
|
|
V_0 = L_0;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1;
|
|
L_1 = Encoding_get_BigEndianUnicode_m249BEC175A03C3DCEF799A020B05215053F1053B(NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = __this->____data_3;
|
|
int32_t L_3 = __this->____position_5;
|
|
int32_t L_4 = V_0;
|
|
NullCheck(L_1);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_1, L_2, L_3, L_4);
|
|
int32_t L_6 = __this->____position_5;
|
|
int32_t L_7 = V_0;
|
|
__this->____position_5 = ((int32_t)il2cpp_codegen_add(L_6, L_7));
|
|
String_t* L_8;
|
|
L_8 = DerSequenceReader_TrimTrailingNulls_m6F8B443B4DD8AD5D94A873B7849A2C51A2036801(L_5, NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.DerSequenceReader::TrimTrailingNulls(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DerSequenceReader_TrimTrailingNulls_m6F8B443B4DD8AD5D94A873B7849A2C51A2036801 (String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
if (!L_0)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = ___0_value;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_3 = ___0_value;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
|
|
V_0 = L_4;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
int32_t L_5 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_5, 1));
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
int32_t L_6 = V_0;
|
|
if ((((int32_t)L_6) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_7 = ___0_value;
|
|
int32_t L_8 = V_0;
|
|
NullCheck(L_7);
|
|
Il2CppChar L_9;
|
|
L_9 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_7, ((int32_t)il2cpp_codegen_subtract(L_8, 1)), NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
String_t* L_11 = ___0_value;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
if ((((int32_t)L_10) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = ___0_value;
|
|
int32_t L_14 = V_0;
|
|
NullCheck(L_13);
|
|
String_t* L_15;
|
|
L_15 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_13, 0, L_14, NULL);
|
|
return L_15;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
String_t* L_16 = ___0_value;
|
|
return L_16;
|
|
}
|
|
}
|
|
// System.DateTime System.Security.Cryptography.DerSequenceReader::ReadTime(System.Security.Cryptography.DerSequenceReader/DerTag,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DerSequenceReader_ReadTime_m492DB6BB481B1CFC586644EE3D233145A5486F32 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, uint8_t ___0_timeTag, String_t* ___1_formatString, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_t74FC36A4C2A548316E77F19B2968741BF64B13D7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LazyInitializer_EnsureInitialized_TisDateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_m3A8FCF153BED44EE5F0E5941DCEFE4B503CBBB21_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CReadTimeU3Eb__51_0_mA023CCE123BD5D9DF2635970BA3E5D664BCA33EC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* V_2 = NULL;
|
|
Func_1_t74FC36A4C2A548316E77F19B2968741BF64B13D7* G_B2_0 = NULL;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** G_B2_1 = NULL;
|
|
String_t* G_B2_2 = NULL;
|
|
Func_1_t74FC36A4C2A548316E77F19B2968741BF64B13D7* G_B1_0 = NULL;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** G_B1_1 = NULL;
|
|
String_t* G_B1_2 = NULL;
|
|
{
|
|
uint8_t L_0 = ___0_timeTag;
|
|
DerSequenceReader_EatTag_mF2658A324EBFAF16DAEB9762EA7DFE9036D4FB8E(__this, L_0, NULL);
|
|
int32_t L_1;
|
|
L_1 = DerSequenceReader_EatLength_m2D1533B44A7CE4E4C97B206F704CF0BEE6D2A6A5(__this, NULL);
|
|
V_0 = L_1;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2;
|
|
L_2 = Encoding_get_ASCII_mCC61B512D320FD4E2E71CC0DFDF8DDF3CD215C65(NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = __this->____data_3;
|
|
int32_t L_4 = __this->____position_5;
|
|
int32_t L_5 = V_0;
|
|
NullCheck(L_2);
|
|
String_t* L_6;
|
|
L_6 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_2, L_3, L_4, L_5);
|
|
int32_t L_7 = __this->____position_5;
|
|
int32_t L_8 = V_0;
|
|
__this->____position_5 = ((int32_t)il2cpp_codegen_add(L_7, L_8));
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var);
|
|
Func_1_t74FC36A4C2A548316E77F19B2968741BF64B13D7* L_9 = ((U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var))->___U3CU3E9__51_0_3;
|
|
Func_1_t74FC36A4C2A548316E77F19B2968741BF64B13D7* L_10 = L_9;
|
|
G_B1_0 = L_10;
|
|
G_B1_1 = (&((DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_StaticFields*)il2cpp_codegen_static_fields_for(DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var))->___s_validityDateTimeFormatInfo_0);
|
|
G_B1_2 = L_6;
|
|
if (L_10)
|
|
{
|
|
G_B2_0 = L_10;
|
|
G_B2_1 = (&((DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_StaticFields*)il2cpp_codegen_static_fields_for(DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var))->___s_validityDateTimeFormatInfo_0);
|
|
G_B2_2 = L_6;
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423* L_11 = ((U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var))->___U3CU3E9_0;
|
|
Func_1_t74FC36A4C2A548316E77F19B2968741BF64B13D7* L_12 = (Func_1_t74FC36A4C2A548316E77F19B2968741BF64B13D7*)il2cpp_codegen_object_new(Func_1_t74FC36A4C2A548316E77F19B2968741BF64B13D7_il2cpp_TypeInfo_var);
|
|
NullCheck(L_12);
|
|
Func_1__ctor_mEA0BC3F29EEF76F1469C7D656F49F2B6F435DE5E(L_12, L_11, (intptr_t)((void*)U3CU3Ec_U3CReadTimeU3Eb__51_0_mA023CCE123BD5D9DF2635970BA3E5D664BCA33EC_RuntimeMethod_var), NULL);
|
|
Func_1_t74FC36A4C2A548316E77F19B2968741BF64B13D7* L_13 = L_12;
|
|
((U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var))->___U3CU3E9__51_0_3 = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var))->___U3CU3E9__51_0_3), (void*)L_13);
|
|
G_B2_0 = L_13;
|
|
G_B2_1 = G_B1_1;
|
|
G_B2_2 = G_B1_2;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_14;
|
|
L_14 = LazyInitializer_EnsureInitialized_TisDateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_m3A8FCF153BED44EE5F0E5941DCEFE4B503CBBB21(G_B2_1, G_B2_0, LazyInitializer_EnsureInitialized_TisDateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_m3A8FCF153BED44EE5F0E5941DCEFE4B503CBBB21_RuntimeMethod_var);
|
|
V_2 = L_14;
|
|
String_t* L_15 = ___1_formatString;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_16 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
bool L_17;
|
|
L_17 = DateTime_TryParseExact_mA0100669E6CE6EFFCC836F1DCA56BDDE1E7C2662(G_B2_2, L_15, L_16, ((int32_t)80), (&V_1), NULL);
|
|
if (L_17)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_18 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_18);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_ReadTime_m492DB6BB481B1CFC586644EE3D233145A5486F32_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_19 = V_1;
|
|
return L_19;
|
|
}
|
|
}
|
|
// System.Byte[] System.Security.Cryptography.DerSequenceReader::ReadContentAsBytes()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DerSequenceReader_ReadContentAsBytes_m1DA571FBC10F30D7D68D49DAADF32C320A2B9907 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = DerSequenceReader_EatLength_m2D1533B44A7CE4E4C97B206F704CF0BEE6D2A6A5(__this, NULL);
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_1);
|
|
V_1 = L_2;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = __this->____data_3;
|
|
int32_t L_4 = __this->____position_5;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = V_1;
|
|
int32_t L_6 = V_0;
|
|
Buffer_BlockCopy_m2F7BC0C5BA97C500E3F87D5008718F797E02B358((RuntimeArray*)L_3, L_4, (RuntimeArray*)L_5, 0, L_6, NULL);
|
|
int32_t L_7 = __this->____position_5;
|
|
int32_t L_8 = V_0;
|
|
__this->____position_5 = ((int32_t)il2cpp_codegen_add(L_7, L_8));
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.DerSequenceReader::EatTag(System.Security.Cryptography.DerSequenceReader/DerTag)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerSequenceReader_EatTag_mF2658A324EBFAF16DAEB9762EA7DFE9036D4FB8E (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, uint8_t ___0_expected, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0;
|
|
L_0 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_1 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_EatTag_mF2658A324EBFAF16DAEB9762EA7DFE9036D4FB8E_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
uint8_t L_2 = ___0_expected;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = __this->____data_3;
|
|
int32_t L_4 = __this->____position_5;
|
|
DerSequenceReader_CheckTag_mCD70359356B835C7EAC514E2A4701D226B84588F(L_2, L_3, L_4, NULL);
|
|
int32_t L_5 = __this->____position_5;
|
|
__this->____position_5 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.DerSequenceReader::CheckTag(System.Security.Cryptography.DerSequenceReader/DerTag,System.Byte[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerSequenceReader_CheckTag_mCD70359356B835C7EAC514E2A4701D226B84588F (uint8_t ___0_expected, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_data, int32_t ___2_position, const RuntimeMethod* method)
|
|
{
|
|
uint8_t V_0 = 0x0;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
int32_t L_0 = ___2_position;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___1_data;
|
|
NullCheck(L_1);
|
|
if ((((int32_t)L_0) < ((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_2 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_CheckTag_mCD70359356B835C7EAC514E2A4701D226B84588F_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___1_data;
|
|
int32_t L_4 = ___2_position;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
uint8_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
uint8_t L_7 = L_6;
|
|
V_0 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_7&((int32_t)31))));
|
|
uint8_t L_8 = V_0;
|
|
G_B3_0 = ((int32_t)(L_7));
|
|
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)31)))))
|
|
{
|
|
G_B4_0 = ((int32_t)(L_7));
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_9 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_9);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_CheckTag_mCD70359356B835C7EAC514E2A4701D226B84588F_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
if (!((int32_t)(G_B4_0&((int32_t)128))))
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
uint8_t L_10 = ___0_expected;
|
|
uint8_t L_11 = V_0;
|
|
if ((((int32_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_10&((int32_t)31))))) == ((int32_t)L_11)))
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_12 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_12);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_CheckTag_mCD70359356B835C7EAC514E2A4701D226B84588F_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 System.Security.Cryptography.DerSequenceReader::EatLength()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DerSequenceReader_EatLength_m2D1533B44A7CE4E4C97B206F704CF0BEE6D2A6A5 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->____data_3;
|
|
int32_t L_1 = __this->____position_5;
|
|
int32_t L_2 = __this->____end_4;
|
|
int32_t L_3;
|
|
L_3 = DerSequenceReader_ScanContentLength_mDCE749F3AF5DEBB56A9683C6F5D6AE817F3D344D(L_0, L_1, L_2, (&V_0), NULL);
|
|
int32_t L_4 = __this->____position_5;
|
|
int32_t L_5 = V_0;
|
|
__this->____position_5 = ((int32_t)il2cpp_codegen_add(L_4, L_5));
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Int32 System.Security.Cryptography.DerSequenceReader::ScanContentLength(System.Byte[],System.Int32,System.Int32,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DerSequenceReader_ScanContentLength_mDCE749F3AF5DEBB56A9683C6F5D6AE817F3D344D (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, int32_t ___1_offset, int32_t ___2_end, int32_t* ___3_bytesConsumed, const RuntimeMethod* method)
|
|
{
|
|
uint8_t V_0 = 0x0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
{
|
|
int32_t L_0 = ___1_offset;
|
|
int32_t L_1 = ___2_end;
|
|
if ((((int32_t)L_0) < ((int32_t)L_1)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_2 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_ScanContentLength_mDCE749F3AF5DEBB56A9683C6F5D6AE817F3D344D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___0_data;
|
|
int32_t L_4 = ___1_offset;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
uint8_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
V_0 = L_6;
|
|
uint8_t L_7 = V_0;
|
|
if ((((int32_t)L_7) >= ((int32_t)((int32_t)128))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_8 = ___3_bytesConsumed;
|
|
*((int32_t*)L_8) = (int32_t)1;
|
|
uint8_t L_9 = V_0;
|
|
int32_t L_10 = ___2_end;
|
|
int32_t L_11 = ___1_offset;
|
|
int32_t* L_12 = ___3_bytesConsumed;
|
|
int32_t L_13 = *((int32_t*)L_12);
|
|
if ((((int32_t)L_9) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_10, L_11)), L_13)))))
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_14 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_14);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_ScanContentLength_mDCE749F3AF5DEBB56A9683C6F5D6AE817F3D344D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
uint8_t L_15 = V_0;
|
|
return L_15;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
uint8_t L_16 = V_0;
|
|
V_1 = ((int32_t)((int32_t)L_16&((int32_t)127)));
|
|
int32_t L_17 = V_1;
|
|
if ((((int32_t)L_17) <= ((int32_t)4)))
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_18 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_18);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_ScanContentLength_mDCE749F3AF5DEBB56A9683C6F5D6AE817F3D344D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
int32_t* L_19 = ___3_bytesConsumed;
|
|
int32_t L_20 = V_1;
|
|
*((int32_t*)L_19) = (int32_t)((int32_t)il2cpp_codegen_add(1, L_20));
|
|
int32_t* L_21 = ___3_bytesConsumed;
|
|
int32_t L_22 = *((int32_t*)L_21);
|
|
int32_t L_23 = ___2_end;
|
|
int32_t L_24 = ___1_offset;
|
|
if ((((int32_t)L_22) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_23, L_24)))))
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_25 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_25);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_25, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_ScanContentLength_mDCE749F3AF5DEBB56A9683C6F5D6AE817F3D344D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t* L_26 = ___3_bytesConsumed;
|
|
int32_t L_27 = *((int32_t*)L_26);
|
|
if ((!(((uint32_t)L_27) == ((uint32_t)1))))
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_28 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_28);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_28, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_ScanContentLength_mDCE749F3AF5DEBB56A9683C6F5D6AE817F3D344D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
int32_t L_29 = ___1_offset;
|
|
int32_t* L_30 = ___3_bytesConsumed;
|
|
int32_t L_31 = *((int32_t*)L_30);
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_29, L_31));
|
|
V_3 = 0;
|
|
int32_t L_32 = ___1_offset;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
goto IL_008e;
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
int32_t L_33 = V_3;
|
|
V_3 = ((int32_t)(L_33<<8));
|
|
int32_t L_34 = V_3;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_35 = ___0_data;
|
|
int32_t L_36 = V_4;
|
|
NullCheck(L_35);
|
|
int32_t L_37 = L_36;
|
|
uint8_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
|
|
V_3 = ((int32_t)(L_34|(int32_t)L_38));
|
|
int32_t L_39 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_39, 1));
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
int32_t L_40 = V_4;
|
|
int32_t L_41 = V_2;
|
|
if ((((int32_t)L_40) < ((int32_t)L_41)))
|
|
{
|
|
goto IL_007d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_42 = V_3;
|
|
if ((((int32_t)L_42) >= ((int32_t)0)))
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_43 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_43);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_43, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_ScanContentLength_mDCE749F3AF5DEBB56A9683C6F5D6AE817F3D344D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
int32_t L_44 = V_3;
|
|
int32_t L_45 = ___2_end;
|
|
int32_t L_46 = ___1_offset;
|
|
int32_t* L_47 = ___3_bytesConsumed;
|
|
int32_t L_48 = *((int32_t*)L_47);
|
|
if ((((int32_t)L_44) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_45, L_46)), L_48)))))
|
|
{
|
|
goto IL_00b6;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_49 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_49);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_49, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_49, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DerSequenceReader_ScanContentLength_mDCE749F3AF5DEBB56A9683C6F5D6AE817F3D344D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_00b6:
|
|
{
|
|
int32_t L_50 = V_3;
|
|
return L_50;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Security.Cryptography.DerSequenceReader/<>c::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m74F7DD9456E0DDFB13D260B0A94F75270A71D3BE (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423* L_0 = (U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423*)il2cpp_codegen_object_new(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
U3CU3Ec__ctor_mF050E3B4FEBB43DB13E684C3B309D33A66DCC861(L_0, NULL);
|
|
((U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.DerSequenceReader/<>c::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mF050E3B4FEBB43DB13E684C3B309D33A66DCC861 (U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Text.Encoding System.Security.Cryptography.DerSequenceReader/<>c::<ReadT61String>b__45_0()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* U3CU3Ec_U3CReadT61StringU3Eb__45_0_m53F555E4EFBF56385A389ACA1681D68920A18735 (U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE* L_0 = (UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE*)il2cpp_codegen_object_new(UTF8Encoding_t90B56215A1B0B7ED5CDEA772E695F0DDAFBCD3BE_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
UTF8Encoding__ctor_m128F4B4A103E718AAB699E2D64011DB13F486726(L_0, (bool)0, (bool)1, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Text.Encoding System.Security.Cryptography.DerSequenceReader/<>c::<ReadT61String>b__45_1()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* U3CU3Ec_U3CReadT61StringU3Eb__45_1_m2DE60562D90243EC4880800B7AAE0463F5E8B557 (U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFBC07F6BD47DF829ABDBABCE58B748504460B7BB);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
|
|
L_0 = Encoding_GetEncoding_m979B224460094E241BD5C283BE279886664C9187(_stringLiteralFBC07F6BD47DF829ABDBABCE58B748504460B7BB, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Globalization.DateTimeFormatInfo System.Security.Cryptography.DerSequenceReader/<>c::<ReadTime>b__51_0()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* U3CU3Ec_U3CReadTimeU3Eb__51_0_mA023CCE123BD5D9DF2635970BA3E5D664BCA33EC (U3CU3Ec_t46F8CBE52BE456099AB7F8C4174AC9393611E423* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0;
|
|
L_0 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
NullCheck(L_0);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_1;
|
|
L_1 = VirtualFuncInvoker0< DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* >::Invoke(16 /* System.Globalization.DateTimeFormatInfo System.Globalization.CultureInfo::get_DateTimeFormat() */, L_0);
|
|
NullCheck(L_1);
|
|
RuntimeObject* L_2;
|
|
L_2 = DateTimeFormatInfo_Clone_mCBA61859E15A29FC79AC3CDAA616D063901540E8(L_1, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_3 = ((DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A*)CastclassSealed((RuntimeObject*)L_2, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var));
|
|
NullCheck(L_3);
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_4;
|
|
L_4 = DateTimeFormatInfo_get_Calendar_m1280AC2F196ECBE7B664394CC3821062015DEF99_inline(L_3, NULL);
|
|
NullCheck(L_4);
|
|
VirtualActionInvoker1< int32_t >::Invoke(29 /* System.Void System.Globalization.Calendar::set_TwoDigitYearMax(System.Int32) */, L_4, ((int32_t)2049));
|
|
return L_3;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Security.Cryptography.Oid::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Oid__ctor_m9032299ACEB6DC66674CB2D8889D875A1A9D308F (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.Oid::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Oid__ctor_m4AF81B9D51BED48AE505251E0874EC654BA07B72 (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, String_t* ___0_oid, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
String_t* L_0 = ___0_oid;
|
|
il2cpp_codegen_runtime_class_init_inline(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
|
|
String_t* L_1;
|
|
L_1 = OidLookup_ToOid_m084AE2948BA1D784EAC148B97B6D5EF94F0D58B0(L_0, 0, (bool)0, NULL);
|
|
V_0 = L_1;
|
|
String_t* L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_3 = ___0_oid;
|
|
V_0 = L_3;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
String_t* L_4 = V_0;
|
|
Oid_set_Value_m122282994E6EE138CE4284B052EF8BE2086CA72F_inline(__this, L_4, NULL);
|
|
__this->____group_2 = 0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.Oid::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Oid__ctor_m533C0126C7C8D382D3E702287A9AD0CED2D0377D (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, String_t* ___0_value, String_t* ___1_friendlyName, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
String_t* L_0 = ___0_value;
|
|
__this->____value_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____value_0), (void*)L_0);
|
|
String_t* L_1 = ___1_friendlyName;
|
|
__this->____friendlyName_1 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____friendlyName_1), (void*)L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.Oid::.ctor(System.Security.Cryptography.Oid)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Oid__ctor_m3973A5FE5482D45FABC8642E59B655274B0B5D59 (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* ___0_oid, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_0 = ___0_oid;
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral17E5BE9B221C767EF04A364F24B81309DAE38512)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Oid__ctor_m3973A5FE5482D45FABC8642E59B655274B0B5D59_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_2 = ___0_oid;
|
|
NullCheck(L_2);
|
|
String_t* L_3 = L_2->____value_0;
|
|
__this->____value_0 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____value_0), (void*)L_3);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_4 = ___0_oid;
|
|
NullCheck(L_4);
|
|
String_t* L_5 = L_4->____friendlyName_1;
|
|
__this->____friendlyName_1 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____friendlyName_1), (void*)L_5);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_6 = ___0_oid;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = L_6->____group_2;
|
|
__this->____group_2 = L_7;
|
|
return;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.Oid System.Security.Cryptography.Oid::FromOidValue(System.String,System.Security.Cryptography.OidGroup)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* Oid_FromOidValue_m44CB94625A6CFB2780CA8E50CF845801A1A6E18C (String_t* ___0_oidValue, int32_t ___1_group, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
String_t* L_0 = ___0_oidValue;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDBC1DDA2BB7F49449327F610631E760D993A5779)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Oid_FromOidValue_m44CB94625A6CFB2780CA8E50CF845801A1A6E18C_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
String_t* L_2 = ___0_oidValue;
|
|
int32_t L_3 = ___1_group;
|
|
il2cpp_codegen_runtime_class_init_inline(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
|
|
String_t* L_4;
|
|
L_4 = OidLookup_ToFriendlyName_m701DBD29D72B7D43C2513E29E8433B1E12C3A0AF(L_2, L_3, (bool)0, NULL);
|
|
V_0 = L_4;
|
|
String_t* L_5 = V_0;
|
|
if (L_5)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_6 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_6);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA09468464D8DEB5672FD1B9FC0C4AF9D93E1240D)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Oid_FromOidValue_m44CB94625A6CFB2780CA8E50CF845801A1A6E18C_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
String_t* L_7 = ___0_oidValue;
|
|
String_t* L_8 = V_0;
|
|
int32_t L_9 = ___1_group;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_10 = (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)il2cpp_codegen_object_new(Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
NullCheck(L_10);
|
|
Oid__ctor_m29BE61A97566E5BE4D5AE6D0A5C31FE30885AADC(L_10, L_7, L_8, L_9, NULL);
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.Oid::get_Value()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Oid_get_Value_m59D678A83ED4DE7D87FB7450C8CF4084DB506FD3 (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->____value_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.Oid::set_Value(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Oid_set_Value_m122282994E6EE138CE4284B052EF8BE2086CA72F (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
__this->____value_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____value_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.Oid::get_FriendlyName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Oid_get_FriendlyName_m1B7B5D80B6B533A33DAB2B28DCD0B53927D1BD17 (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = __this->____friendlyName_1;
|
|
if (L_0)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = __this->____value_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = __this->____value_0;
|
|
int32_t L_3 = __this->____group_2;
|
|
il2cpp_codegen_runtime_class_init_inline(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
|
|
String_t* L_4;
|
|
L_4 = OidLookup_ToFriendlyName_m701DBD29D72B7D43C2513E29E8433B1E12C3A0AF(L_2, L_3, (bool)1, NULL);
|
|
__this->____friendlyName_1 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____friendlyName_1), (void*)L_4);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
String_t* L_5 = __this->____friendlyName_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.Oid::.ctor(System.String,System.String,System.Security.Cryptography.OidGroup)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Oid__ctor_m29BE61A97566E5BE4D5AE6D0A5C31FE30885AADC (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, String_t* ___0_value, String_t* ___1_friendlyName, int32_t ___2_group, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
String_t* L_0 = ___0_value;
|
|
__this->____value_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____value_0), (void*)L_0);
|
|
String_t* L_1 = ___1_friendlyName;
|
|
__this->____friendlyName_1 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____friendlyName_1), (void*)L_1);
|
|
int32_t L_2 = ___2_group;
|
|
__this->____group_2 = L_2;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Security.Cryptography.OidCollection::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OidCollection__ctor_m9B8C252AE048962DAD7419597007ABA2793F9D98 (OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m3BB823E6AB875ADEA1C357D9FD3988FC3BD07DC8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t31E53E1C1BAA65ECAEFCBC9D003166BC01081D6B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
List_1_t31E53E1C1BAA65ECAEFCBC9D003166BC01081D6B* L_0 = (List_1_t31E53E1C1BAA65ECAEFCBC9D003166BC01081D6B*)il2cpp_codegen_object_new(List_1_t31E53E1C1BAA65ECAEFCBC9D003166BC01081D6B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
List_1__ctor_m3BB823E6AB875ADEA1C357D9FD3988FC3BD07DC8(L_0, List_1__ctor_m3BB823E6AB875ADEA1C357D9FD3988FC3BD07DC8_RuntimeMethod_var);
|
|
__this->____list_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____list_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 System.Security.Cryptography.OidCollection::Add(System.Security.Cryptography.Oid)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OidCollection_Add_m1D4822DF4EA0B912A1DED6AA102D41F7FAEDC8F5 (OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* __this, Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* ___0_oid, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m3365EDCFC60E7D35967ECEB93DD7851CC2D9B41F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m00523F252234FC6049965BF2606B179CEF09A759_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_t31E53E1C1BAA65ECAEFCBC9D003166BC01081D6B* L_0 = __this->____list_0;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_m00523F252234FC6049965BF2606B179CEF09A759_inline(L_0, List_1_get_Count_m00523F252234FC6049965BF2606B179CEF09A759_RuntimeMethod_var);
|
|
List_1_t31E53E1C1BAA65ECAEFCBC9D003166BC01081D6B* L_2 = __this->____list_0;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_3 = ___0_oid;
|
|
NullCheck(L_2);
|
|
List_1_Add_m3365EDCFC60E7D35967ECEB93DD7851CC2D9B41F_inline(L_2, L_3, List_1_Add_m3365EDCFC60E7D35967ECEB93DD7851CC2D9B41F_RuntimeMethod_var);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.Oid System.Security.Cryptography.OidCollection::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* OidCollection_get_Item_m0AEC71C746E735035A05C50EE2721C1E8FE08F7A (OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m79E063DD5D6C2BF1AF8CB852A77E38360E5484BE_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_t31E53E1C1BAA65ECAEFCBC9D003166BC01081D6B* L_0 = __this->____list_0;
|
|
int32_t L_1 = ___0_index;
|
|
NullCheck(L_0);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_2;
|
|
L_2 = List_1_get_Item_m79E063DD5D6C2BF1AF8CB852A77E38360E5484BE(L_0, L_1, List_1_get_Item_m79E063DD5D6C2BF1AF8CB852A77E38360E5484BE_RuntimeMethod_var);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Int32 System.Security.Cryptography.OidCollection::get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OidCollection_get_Count_m9560D70809087591935904924A15FBEC1FEFEB11 (OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m00523F252234FC6049965BF2606B179CEF09A759_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_t31E53E1C1BAA65ECAEFCBC9D003166BC01081D6B* L_0 = __this->____list_0;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_m00523F252234FC6049965BF2606B179CEF09A759_inline(L_0, List_1_get_Count_m00523F252234FC6049965BF2606B179CEF09A759_RuntimeMethod_var);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.OidEnumerator System.Security.Cryptography.OidCollection::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OidEnumerator_t9E63ADFA5DD6DB1AA249F81E650FF063479EDD41* OidCollection_GetEnumerator_mBB791F48E305B3355A1BCE624E0BB367331F82AC (OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OidEnumerator_t9E63ADFA5DD6DB1AA249F81E650FF063479EDD41_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
OidEnumerator_t9E63ADFA5DD6DB1AA249F81E650FF063479EDD41* L_0 = (OidEnumerator_t9E63ADFA5DD6DB1AA249F81E650FF063479EDD41*)il2cpp_codegen_object_new(OidEnumerator_t9E63ADFA5DD6DB1AA249F81E650FF063479EDD41_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
OidEnumerator__ctor_m2168FEE96614FB7460C84762ED3728A5413F42E6(L_0, __this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Collections.IEnumerator System.Security.Cryptography.OidCollection::System.Collections.IEnumerable.GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OidCollection_System_Collections_IEnumerable_GetEnumerator_m4624AA2C7F0693698228803D9B59EFE6AAD6AFE4 (OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
OidEnumerator_t9E63ADFA5DD6DB1AA249F81E650FF063479EDD41* L_0;
|
|
L_0 = OidCollection_GetEnumerator_mBB791F48E305B3355A1BCE624E0BB367331F82AC(__this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.OidCollection::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OidCollection_System_Collections_ICollection_CopyTo_m4EF1FB9A18E822BA196BF3F0204B7C06178B9CFC (OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* __this, RuntimeArray* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeArray* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OidCollection_System_Collections_ICollection_CopyTo_m4EF1FB9A18E822BA196BF3F0204B7C06178B9CFC_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeArray* L_2 = ___0_array;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_2, NULL);
|
|
if ((((int32_t)L_3) == ((int32_t)1)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_4);
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OidCollection_System_Collections_ICollection_CopyTo_m4EF1FB9A18E822BA196BF3F0204B7C06178B9CFC_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_5 = ___1_index;
|
|
if ((((int32_t)L_5) < ((int32_t)0)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___1_index;
|
|
RuntimeArray* L_7 = ___0_array;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_7, NULL);
|
|
if ((((int32_t)L_6) < ((int32_t)L_8)))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_9 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_9);
|
|
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OidCollection_System_Collections_ICollection_CopyTo_m4EF1FB9A18E822BA196BF3F0204B7C06178B9CFC_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
int32_t L_10 = ___1_index;
|
|
int32_t L_11;
|
|
L_11 = OidCollection_get_Count_m9560D70809087591935904924A15FBEC1FEFEB11(__this, NULL);
|
|
RuntimeArray* L_12 = ___0_array;
|
|
NullCheck(L_12);
|
|
int32_t L_13;
|
|
L_13 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_12, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_10, L_11))) <= ((int32_t)L_13)))
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_14 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_14);
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7F4C724BD10943E8B0B17A6E069F992E219EF5E8)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OidCollection_System_Collections_ICollection_CopyTo_m4EF1FB9A18E822BA196BF3F0204B7C06178B9CFC_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0075;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
RuntimeArray* L_15 = ___0_array;
|
|
int32_t L_16 = V_0;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_17;
|
|
L_17 = OidCollection_get_Item_m0AEC71C746E735035A05C50EE2721C1E8FE08F7A(__this, L_16, NULL);
|
|
int32_t L_18 = ___1_index;
|
|
NullCheck(L_15);
|
|
Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_15, L_17, L_18, NULL);
|
|
int32_t L_19 = ___1_index;
|
|
___1_index = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
int32_t L_20 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_20, 1));
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
int32_t L_21 = V_0;
|
|
int32_t L_22;
|
|
L_22 = OidCollection_get_Count_m9560D70809087591935904924A15FBEC1FEFEB11(__this, NULL);
|
|
if ((((int32_t)L_21) < ((int32_t)L_22)))
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.Security.Cryptography.OidCollection::get_IsSynchronized()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OidCollection_get_IsSynchronized_mF751E9C1DBC7A5637C7CD8A0FEB39AB15C74A0A7 (OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Object System.Security.Cryptography.OidCollection::get_SyncRoot()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OidCollection_get_SyncRoot_mD310358F3BF4454604AD96C734BA6EC180CE7A85 (OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return __this;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Security.Cryptography.OidEnumerator::.ctor(System.Security.Cryptography.OidCollection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OidEnumerator__ctor_m2168FEE96614FB7460C84762ED3728A5413F42E6 (OidEnumerator_t9E63ADFA5DD6DB1AA249F81E650FF063479EDD41* __this, OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* ___0_oids, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* L_0 = ___0_oids;
|
|
__this->____oids_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____oids_0), (void*)L_0);
|
|
__this->____current_1 = (-1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.Oid System.Security.Cryptography.OidEnumerator::get_Current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* OidEnumerator_get_Current_mCED077699FA00ED57FA82F8B460C28B86F1B5C9F (OidEnumerator_t9E63ADFA5DD6DB1AA249F81E650FF063479EDD41* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* L_0 = __this->____oids_0;
|
|
int32_t L_1 = __this->____current_1;
|
|
NullCheck(L_0);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_2;
|
|
L_2 = OidCollection_get_Item_m0AEC71C746E735035A05C50EE2721C1E8FE08F7A(L_0, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Object System.Security.Cryptography.OidEnumerator::System.Collections.IEnumerator.get_Current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OidEnumerator_System_Collections_IEnumerator_get_Current_m0B627B9F510EF4F283F40EBE17164B9231BB7735 (OidEnumerator_t9E63ADFA5DD6DB1AA249F81E650FF063479EDD41* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_0;
|
|
L_0 = OidEnumerator_get_Current_mCED077699FA00ED57FA82F8B460C28B86F1B5C9F(__this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.Security.Cryptography.OidEnumerator::MoveNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OidEnumerator_MoveNext_mD42201944C163E81DABDE08B1535C4AB9A5778DD (OidEnumerator_t9E63ADFA5DD6DB1AA249F81E650FF063479EDD41* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____current_1;
|
|
OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* L_1 = __this->____oids_0;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = OidCollection_get_Count_m9560D70809087591935904924A15FBEC1FEFEB11(L_1, NULL);
|
|
if ((((int32_t)L_0) < ((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, 1)))))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
int32_t L_3 = __this->____current_1;
|
|
__this->____current_1 = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.OidEnumerator::Reset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OidEnumerator_Reset_m24F1F25812A7BFE9B02B312BA9E670C930622F27 (OidEnumerator_t9E63ADFA5DD6DB1AA249F81E650FF063479EDD41* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->____current_1 = (-1);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Security.Cryptography.AsnEncodedData::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsnEncodedData__ctor_m90028EC56A5E36272EAA4A9279AE23358D46F547 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.AsnEncodedData::.ctor(System.String,System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsnEncodedData__ctor_m90834437DE68932EB0BE8BB434DDA1DB896DA67E (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, String_t* ___0_oid, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_rawData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
String_t* L_0 = ___0_oid;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_1 = (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)il2cpp_codegen_object_new(Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
Oid__ctor_m4AF81B9D51BED48AE505251E0874EC654BA07B72(L_1, L_0, NULL);
|
|
__this->____oid_0 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____oid_0), (void*)L_1);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___1_rawData;
|
|
AsnEncodedData_set_RawData_m05F9F17765AD384ECE3A333DCBF6A0572099346B(__this, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.AsnEncodedData::.ctor(System.Security.Cryptography.Oid,System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsnEncodedData__ctor_m3E8C1D1E0CE464176742B847DC99BF8EAABF15E6 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* ___0_oid, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_rawData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_0 = ___0_oid;
|
|
AsnEncodedData_set_Oid_m877771219F651EA3FF834952300180274531C9C7(__this, L_0, NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___1_rawData;
|
|
AsnEncodedData_set_RawData_m05F9F17765AD384ECE3A333DCBF6A0572099346B(__this, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.AsnEncodedData::.ctor(System.Security.Cryptography.AsnEncodedData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsnEncodedData__ctor_mA80B22E2D7D98198B55D04474F6926EF80CBABF6 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* ___0_asnEncodedData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_0 = ___0_asnEncodedData;
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC9FB8C73B342D5B3C700EDA7C5212DD547D29E4E)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AsnEncodedData__ctor_mA80B22E2D7D98198B55D04474F6926EF80CBABF6_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_2 = ___0_asnEncodedData;
|
|
NullCheck(L_2);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_3 = L_2->____oid_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_4 = ___0_asnEncodedData;
|
|
NullCheck(L_4);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_5 = L_4->____oid_0;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_6 = (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)il2cpp_codegen_object_new(Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
NullCheck(L_6);
|
|
Oid__ctor_m3973A5FE5482D45FABC8642E59B655274B0B5D59(L_6, L_5, NULL);
|
|
AsnEncodedData_set_Oid_m877771219F651EA3FF834952300180274531C9C7(__this, L_6, NULL);
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_7 = ___0_asnEncodedData;
|
|
NullCheck(L_7);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = L_7->____raw_1;
|
|
AsnEncodedData_set_RawData_m05F9F17765AD384ECE3A333DCBF6A0572099346B(__this, L_8, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.Oid System.Security.Cryptography.AsnEncodedData::get_Oid()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* AsnEncodedData_get_Oid_mBDB4803B2ADEE3BD40596E82FF738C2DC339BC28 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_0 = __this->____oid_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.AsnEncodedData::set_Oid(System.Security.Cryptography.Oid)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsnEncodedData_set_Oid_m877771219F651EA3FF834952300180274531C9C7 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_0 = ___0_value;
|
|
if (L_0)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
__this->____oid_0 = (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____oid_0), (void*)(Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)NULL);
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_1 = ___0_value;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_2 = (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)il2cpp_codegen_object_new(Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
Oid__ctor_m3973A5FE5482D45FABC8642E59B655274B0B5D59(L_2, L_1, NULL);
|
|
__this->____oid_0 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____oid_0), (void*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
// System.Byte[] System.Security.Cryptography.AsnEncodedData::get_RawData()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->____raw_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.AsnEncodedData::set_RawData(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsnEncodedData_set_RawData_m05F9F17765AD384ECE3A333DCBF6A0572099346B (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_value;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF41760006700B346FE970834ED6436CD21A1330F)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AsnEncodedData_set_RawData_m05F9F17765AD384ECE3A333DCBF6A0572099346B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___0_value;
|
|
NullCheck((RuntimeArray*)L_2);
|
|
RuntimeObject* L_3;
|
|
L_3 = Array_Clone_m66C9D0727C9BAA0995E4142F29B45BC03582E042((RuntimeArray*)L_2, NULL);
|
|
__this->____raw_1 = ((ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)Castclass((RuntimeObject*)L_3, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var));
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____raw_1), (void*)((ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)Castclass((RuntimeObject*)L_3, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var)));
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.AsnEncodedData::CopyFrom(System.Security.Cryptography.AsnEncodedData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsnEncodedData_CopyFrom_mA5DD4A419C5FC29D82DBE9B69C9F8CBC2872A1F2 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* ___0_asnEncodedData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_0 = ___0_asnEncodedData;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC9FB8C73B342D5B3C700EDA7C5212DD547D29E4E)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AsnEncodedData_CopyFrom_mA5DD4A419C5FC29D82DBE9B69C9F8CBC2872A1F2_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_2 = ___0_asnEncodedData;
|
|
NullCheck(L_2);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_3 = L_2->____oid_0;
|
|
if (L_3)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
AsnEncodedData_set_Oid_m877771219F651EA3FF834952300180274531C9C7(__this, (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)NULL, NULL);
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_4 = ___0_asnEncodedData;
|
|
NullCheck(L_4);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_5 = L_4->____oid_0;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_6 = (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)il2cpp_codegen_object_new(Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
NullCheck(L_6);
|
|
Oid__ctor_m3973A5FE5482D45FABC8642E59B655274B0B5D59(L_6, L_5, NULL);
|
|
AsnEncodedData_set_Oid_m877771219F651EA3FF834952300180274531C9C7(__this, L_6, NULL);
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_7 = ___0_asnEncodedData;
|
|
NullCheck(L_7);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = L_7->____raw_1;
|
|
AsnEncodedData_set_RawData_m05F9F17765AD384ECE3A333DCBF6A0572099346B(__this, L_8, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.AsnEncodedData::Format(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsnEncodedData_Format_m557790DA037FAFD8C7FE28D4579487863DCB3346 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, bool ___0_multiLine, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->____raw_1;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
return L_1;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_2 = __this->____oid_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
bool L_3 = ___0_multiLine;
|
|
String_t* L_4;
|
|
L_4 = AsnEncodedData_Default_m883444CBD5238793D1B94A6DE273FF2F9C47EA70(__this, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
bool L_5 = ___0_multiLine;
|
|
String_t* L_6;
|
|
L_6 = VirtualFuncInvoker1< String_t*, bool >::Invoke(6 /* System.String System.Security.Cryptography.AsnEncodedData::ToString(System.Boolean) */, __this, L_5);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.AsnEncodedData::ToString(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsnEncodedData_ToString_m669772943B78D9242BC5F176A4BD857326F95021 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, bool ___0_multiLine, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E0E07FBC53FA8C48B097E23C1F51253713BFE1D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral50ED994EAB5E4B5A327FC8D974EAB06E7CFA83A4);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5EDC47BC71D706BB11343CC890323569C143CD50);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral830B64B4254C502C612E53C83DBEE6238E710499);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDEB31152738116748FADCEF38CE0C9964DACCF2F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_0 = __this->____oid_0;
|
|
NullCheck(L_0);
|
|
String_t* L_1;
|
|
L_1 = Oid_get_Value_m59D678A83ED4DE7D87FB7450C8CF4084DB506FD3_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
String_t* L_2 = V_0;
|
|
bool L_3;
|
|
L_3 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_2, _stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_4 = V_0;
|
|
bool L_5;
|
|
L_5 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_4, _stringLiteral5EDC47BC71D706BB11343CC890323569C143CD50, NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_6 = V_0;
|
|
bool L_7;
|
|
L_7 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_6, _stringLiteralDEB31152738116748FADCEF38CE0C9964DACCF2F, NULL);
|
|
if (L_7)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_8 = V_0;
|
|
bool L_9;
|
|
L_9 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_8, _stringLiteral830B64B4254C502C612E53C83DBEE6238E710499, NULL);
|
|
if (L_9)
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_10 = V_0;
|
|
bool L_11;
|
|
L_11 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_10, _stringLiteral0E0E07FBC53FA8C48B097E23C1F51253713BFE1D, NULL);
|
|
if (L_11)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_12 = V_0;
|
|
bool L_13;
|
|
L_13 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_12, _stringLiteral50ED994EAB5E4B5A327FC8D974EAB06E7CFA83A4, NULL);
|
|
if (L_13)
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
bool L_14 = ___0_multiLine;
|
|
String_t* L_15;
|
|
L_15 = AsnEncodedData_BasicConstraintsExtension_m74BFC192666755E9D8A088880789AB6EA84F1FCC(__this, L_14, NULL);
|
|
return L_15;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
bool L_16 = ___0_multiLine;
|
|
String_t* L_17;
|
|
L_17 = AsnEncodedData_EnhancedKeyUsageExtension_m3C95D5D2D8F81BEA5E33B264767C8A5E5575D7CA(__this, L_16, NULL);
|
|
return L_17;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
bool L_18 = ___0_multiLine;
|
|
String_t* L_19;
|
|
L_19 = AsnEncodedData_KeyUsageExtension_m9A9C72CF2A831A1849A55336FC8D6DEE097E28D3(__this, L_18, NULL);
|
|
return L_19;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
bool L_20 = ___0_multiLine;
|
|
String_t* L_21;
|
|
L_21 = AsnEncodedData_SubjectKeyIdentifierExtension_m3CEDDCED26AD5621407DAA401F385269348BB789(__this, L_20, NULL);
|
|
return L_21;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
bool L_22 = ___0_multiLine;
|
|
String_t* L_23;
|
|
L_23 = AsnEncodedData_SubjectAltName_mDE2F39E1A43C1E13D89319F221517EE54B1A6A14(__this, L_22, NULL);
|
|
return L_23;
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
bool L_24 = ___0_multiLine;
|
|
String_t* L_25;
|
|
L_25 = AsnEncodedData_NetscapeCertType_m55E43EBDA7882304E8FE5F3DC134A2719F519373(__this, L_24, NULL);
|
|
return L_25;
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
bool L_26 = ___0_multiLine;
|
|
String_t* L_27;
|
|
L_27 = AsnEncodedData_Default_m883444CBD5238793D1B94A6DE273FF2F9C47EA70(__this, L_26, NULL);
|
|
return L_27;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.AsnEncodedData::Default(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsnEncodedData_Default_m883444CBD5238793D1B94A6DE273FF2F9C47EA70 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, bool ___0_multiLine, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65A0F9B64ACE7C859A284EA54B1190CBF83E1260);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringBuilder_t* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_0, NULL);
|
|
V_0 = L_0;
|
|
V_1 = 0;
|
|
goto IL_0044;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
StringBuilder_t* L_1 = V_0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = __this->____raw_1;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
String_t* L_4;
|
|
L_4 = Byte_ToString_m793A41EEEB7B422F6FE658E99D2F7683F59EE310(((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3))), _stringLiteral65A0F9B64ACE7C859A284EA54B1190CBF83E1260, NULL);
|
|
NullCheck(L_1);
|
|
StringBuilder_t* L_5;
|
|
L_5 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_1, L_4, NULL);
|
|
int32_t L_6 = V_1;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = __this->____raw_1;
|
|
NullCheck(L_7);
|
|
if ((((int32_t)L_6) == ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_7)->max_length)), 1)))))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_8 = V_0;
|
|
NullCheck(L_8);
|
|
StringBuilder_t* L_9;
|
|
L_9 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_8, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, NULL);
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
int32_t L_11 = V_1;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = __this->____raw_1;
|
|
NullCheck(L_12);
|
|
if ((((int32_t)L_11) < ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_13 = V_0;
|
|
NullCheck(L_13);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_13);
|
|
return L_14;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.AsnEncodedData::BasicConstraintsExtension(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsnEncodedData_BasicConstraintsExtension_m74BFC192666755E9D8A088880789AB6EA84F1FCC (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, bool ___0_multiLine, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
try
|
|
{// begin try (depth: 1)
|
|
X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35* L_0 = (X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35*)il2cpp_codegen_object_new(X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
X509BasicConstraintsExtension__ctor_m76C88E8D4C7CCEC7B2C3D56CC58A56352F7729E4(L_0, __this, (bool)0, NULL);
|
|
bool L_1 = ___0_multiLine;
|
|
NullCheck(L_0);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker1< String_t*, bool >::Invoke(6 /* System.String System.Security.Cryptography.AsnEncodedData::ToString(System.Boolean) */, L_0, L_1);
|
|
V_0 = L_2;
|
|
goto IL_0019;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0010;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0010:
|
|
{// begin catch(System.Object)
|
|
RuntimeObject* L_3 = ((RuntimeObject*)IL2CPP_GET_ACTIVE_EXCEPTION(RuntimeObject*));;
|
|
String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6;
|
|
V_0 = L_4;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0019;
|
|
}// end catch (depth: 1)
|
|
|
|
IL_0019:
|
|
{
|
|
String_t* L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.AsnEncodedData::EnhancedKeyUsageExtension(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsnEncodedData_EnhancedKeyUsageExtension_m3C95D5D2D8F81BEA5E33B264767C8A5E5575D7CA (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, bool ___0_multiLine, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509EnhancedKeyUsageExtension_t237A41510BAC916B5FFC67B464E1D38980D70BFF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
try
|
|
{// begin try (depth: 1)
|
|
X509EnhancedKeyUsageExtension_t237A41510BAC916B5FFC67B464E1D38980D70BFF* L_0 = (X509EnhancedKeyUsageExtension_t237A41510BAC916B5FFC67B464E1D38980D70BFF*)il2cpp_codegen_object_new(X509EnhancedKeyUsageExtension_t237A41510BAC916B5FFC67B464E1D38980D70BFF_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
X509EnhancedKeyUsageExtension__ctor_mBDA55EB3C6594D4F6A06102B4EAF633F86C3E092(L_0, __this, (bool)0, NULL);
|
|
bool L_1 = ___0_multiLine;
|
|
NullCheck(L_0);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker1< String_t*, bool >::Invoke(6 /* System.String System.Security.Cryptography.AsnEncodedData::ToString(System.Boolean) */, L_0, L_1);
|
|
V_0 = L_2;
|
|
goto IL_0019;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0010;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0010:
|
|
{// begin catch(System.Object)
|
|
RuntimeObject* L_3 = ((RuntimeObject*)IL2CPP_GET_ACTIVE_EXCEPTION(RuntimeObject*));;
|
|
String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6;
|
|
V_0 = L_4;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0019;
|
|
}// end catch (depth: 1)
|
|
|
|
IL_0019:
|
|
{
|
|
String_t* L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.AsnEncodedData::KeyUsageExtension(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsnEncodedData_KeyUsageExtension_m9A9C72CF2A831A1849A55336FC8D6DEE097E28D3 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, bool ___0_multiLine, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
try
|
|
{// begin try (depth: 1)
|
|
X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B* L_0 = (X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B*)il2cpp_codegen_object_new(X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
X509KeyUsageExtension__ctor_m1DE9CD768712A07E5803496501CCFDA81CFB2689(L_0, __this, (bool)0, NULL);
|
|
bool L_1 = ___0_multiLine;
|
|
NullCheck(L_0);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker1< String_t*, bool >::Invoke(6 /* System.String System.Security.Cryptography.AsnEncodedData::ToString(System.Boolean) */, L_0, L_1);
|
|
V_0 = L_2;
|
|
goto IL_0019;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0010;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0010:
|
|
{// begin catch(System.Object)
|
|
RuntimeObject* L_3 = ((RuntimeObject*)IL2CPP_GET_ACTIVE_EXCEPTION(RuntimeObject*));;
|
|
String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6;
|
|
V_0 = L_4;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0019;
|
|
}// end catch (depth: 1)
|
|
|
|
IL_0019:
|
|
{
|
|
String_t* L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.AsnEncodedData::SubjectKeyIdentifierExtension(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsnEncodedData_SubjectKeyIdentifierExtension_m3CEDDCED26AD5621407DAA401F385269348BB789 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, bool ___0_multiLine, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
try
|
|
{// begin try (depth: 1)
|
|
X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5* L_0 = (X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5*)il2cpp_codegen_object_new(X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
X509SubjectKeyIdentifierExtension__ctor_m421293DCB67F3A918098962166B8166FD9657D08(L_0, __this, (bool)0, NULL);
|
|
bool L_1 = ___0_multiLine;
|
|
NullCheck(L_0);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker1< String_t*, bool >::Invoke(6 /* System.String System.Security.Cryptography.AsnEncodedData::ToString(System.Boolean) */, L_0, L_1);
|
|
V_0 = L_2;
|
|
goto IL_0019;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0010;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0010:
|
|
{// begin catch(System.Object)
|
|
RuntimeObject* L_3 = ((RuntimeObject*)IL2CPP_GET_ACTIVE_EXCEPTION(RuntimeObject*));;
|
|
String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6;
|
|
V_0 = L_4;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0019;
|
|
}// end catch (depth: 1)
|
|
|
|
IL_0019:
|
|
{
|
|
String_t* L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.AsnEncodedData::SubjectAltName(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsnEncodedData_SubjectAltName_mDE2F39E1A43C1E13D89319F221517EE54B1A6A14 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, bool ___0_multiLine, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral08F78B1140DE9B7FF7C3C57BB5C1F10BBD3B15CB);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6EE6BFCFA9B2342B9FF2A513D72A69E2065C4446);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCD32F08BAB4EE365057213BCC6332DD39C2DE46B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDE873DB986C802AEB50AD8FEA9D8885FC21EDE3D);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* V_0 = NULL;
|
|
StringBuilder_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* V_3 = NULL;
|
|
String_t* V_4 = NULL;
|
|
String_t* V_5 = NULL;
|
|
uint8_t V_6 = 0x0;
|
|
String_t* V_7 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->____raw_1;
|
|
NullCheck(L_0);
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)5)))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return _stringLiteralCD32F08BAB4EE365057213BCC6332DD39C2DE46B;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = __this->____raw_1;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_2 = (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F*)il2cpp_codegen_object_new(ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
ASN1__ctor_m950BFCCF44A987ACBA12142624AA222200EE503E(L_2, L_1, NULL);
|
|
V_0 = L_2;
|
|
StringBuilder_t* L_3 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_3, NULL);
|
|
V_1 = L_3;
|
|
V_2 = 0;
|
|
goto IL_00ed_1;
|
|
}
|
|
|
|
IL_002b_1:
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_4 = V_0;
|
|
int32_t L_5 = V_2;
|
|
NullCheck(L_4);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_6;
|
|
L_6 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_4, L_5, NULL);
|
|
V_3 = L_6;
|
|
V_4 = (String_t*)NULL;
|
|
V_5 = (String_t*)NULL;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_7 = V_3;
|
|
NullCheck(L_7);
|
|
uint8_t L_8;
|
|
L_8 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_7, NULL);
|
|
V_6 = L_8;
|
|
uint8_t L_9 = V_6;
|
|
if ((((int32_t)L_9) == ((int32_t)((int32_t)129))))
|
|
{
|
|
goto IL_0055_1;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_10 = V_6;
|
|
if ((((int32_t)L_10) == ((int32_t)((int32_t)130))))
|
|
{
|
|
goto IL_0070_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008b_1;
|
|
}
|
|
|
|
IL_0055_1:
|
|
{
|
|
V_4 = _stringLiteralDE873DB986C802AEB50AD8FEA9D8885FC21EDE3D;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_11;
|
|
L_11 = Encoding_get_ASCII_mCC61B512D320FD4E2E71CC0DFDF8DDF3CD215C65(NULL);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_12 = V_3;
|
|
NullCheck(L_12);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13;
|
|
L_13 = ASN1_get_Value_mA6F9BE5AC19AC060AC42673C8FD5AA864EA046B6(L_12, NULL);
|
|
NullCheck(L_11);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker1< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(34 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_11, L_13);
|
|
V_5 = L_14;
|
|
goto IL_00af_1;
|
|
}
|
|
|
|
IL_0070_1:
|
|
{
|
|
V_4 = _stringLiteral6EE6BFCFA9B2342B9FF2A513D72A69E2065C4446;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_15;
|
|
L_15 = Encoding_get_ASCII_mCC61B512D320FD4E2E71CC0DFDF8DDF3CD215C65(NULL);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_16 = V_3;
|
|
NullCheck(L_16);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17;
|
|
L_17 = ASN1_get_Value_mA6F9BE5AC19AC060AC42673C8FD5AA864EA046B6(L_16, NULL);
|
|
NullCheck(L_15);
|
|
String_t* L_18;
|
|
L_18 = VirtualFuncInvoker1< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(34 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_15, L_17);
|
|
V_5 = L_18;
|
|
goto IL_00af_1;
|
|
}
|
|
|
|
IL_008b_1:
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_19 = V_3;
|
|
NullCheck(L_19);
|
|
uint8_t L_20;
|
|
L_20 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_19, NULL);
|
|
uint8_t L_21 = L_20;
|
|
RuntimeObject* L_22 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_21);
|
|
String_t* L_23;
|
|
L_23 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(_stringLiteral08F78B1140DE9B7FF7C3C57BB5C1F10BBD3B15CB, L_22, NULL);
|
|
V_4 = L_23;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_24 = V_3;
|
|
NullCheck(L_24);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_25;
|
|
L_25 = ASN1_get_Value_mA6F9BE5AC19AC060AC42673C8FD5AA864EA046B6(L_24, NULL);
|
|
String_t* L_26;
|
|
L_26 = CryptoConvert_ToHex_m1A0AD4D32CEEC47D3C60CB2E4D05A935C62F261A(L_25, NULL);
|
|
V_5 = L_26;
|
|
}
|
|
|
|
IL_00af_1:
|
|
{
|
|
StringBuilder_t* L_27 = V_1;
|
|
String_t* L_28 = V_4;
|
|
NullCheck(L_27);
|
|
StringBuilder_t* L_29;
|
|
L_29 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_27, L_28, NULL);
|
|
StringBuilder_t* L_30 = V_1;
|
|
String_t* L_31 = V_5;
|
|
NullCheck(L_30);
|
|
StringBuilder_t* L_32;
|
|
L_32 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_30, L_31, NULL);
|
|
bool L_33 = ___0_multiLine;
|
|
if (!L_33)
|
|
{
|
|
goto IL_00d2_1;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_34 = V_1;
|
|
String_t* L_35;
|
|
L_35 = Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF(NULL);
|
|
NullCheck(L_34);
|
|
StringBuilder_t* L_36;
|
|
L_36 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_34, L_35, NULL);
|
|
goto IL_00e9_1;
|
|
}
|
|
|
|
IL_00d2_1:
|
|
{
|
|
int32_t L_37 = V_2;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_38 = V_0;
|
|
NullCheck(L_38);
|
|
int32_t L_39;
|
|
L_39 = ASN1_get_Count_mBE45E73126FAD2694E9059CAC53B7AC9A5F60833(L_38, NULL);
|
|
if ((((int32_t)L_37) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_39, 1)))))
|
|
{
|
|
goto IL_00e9_1;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_40 = V_1;
|
|
NullCheck(L_40);
|
|
StringBuilder_t* L_41;
|
|
L_41 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_40, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, NULL);
|
|
}
|
|
|
|
IL_00e9_1:
|
|
{
|
|
int32_t L_42 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_42, 1));
|
|
}
|
|
|
|
IL_00ed_1:
|
|
{
|
|
int32_t L_43 = V_2;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_44 = V_0;
|
|
NullCheck(L_44);
|
|
int32_t L_45;
|
|
L_45 = ASN1_get_Count_mBE45E73126FAD2694E9059CAC53B7AC9A5F60833(L_44, NULL);
|
|
if ((((int32_t)L_43) < ((int32_t)L_45)))
|
|
{
|
|
goto IL_002b_1;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_46 = V_1;
|
|
NullCheck(L_46);
|
|
String_t* L_47;
|
|
L_47 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_46);
|
|
V_7 = L_47;
|
|
goto IL_010d;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0103;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0103:
|
|
{// begin catch(System.Object)
|
|
RuntimeObject* L_48 = ((RuntimeObject*)IL2CPP_GET_ACTIVE_EXCEPTION(RuntimeObject*));;
|
|
String_t* L_49 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6;
|
|
V_7 = L_49;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_010d;
|
|
}// end catch (depth: 1)
|
|
|
|
IL_010d:
|
|
{
|
|
String_t* L_50 = V_7;
|
|
return L_50;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.AsnEncodedData::NetscapeCertType(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsnEncodedData_NetscapeCertType_m55E43EBDA7882304E8FE5F3DC134A2719F519373 (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, bool ___0_multiLine, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1B9C2E56B6E7518DF358644E56A37604D9A7C17A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral20BFDEE599B675B43C275E62F4062F4333B183F9);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2D33F3CC9AFA97ECECBBF5C0881C8F9C86690251);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65A0F9B64ACE7C859A284EA54B1190CBF83E1260);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral95E0BCC89582D0EEC7BEA5EEF50AA6E16AA82363);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBBE682A549E4FD2504E5F2F69458189FB5C75139);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCD32F08BAB4EE365057213BCC6332DD39C2DE46B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE2892956422830EFD61D6B1C95A865ED0BDFF66);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD30CDE84D4CFDAD1992F4DD1DBC71AE0074AAA08);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF5FCF7BFB0603BEB0CFB789198783073B2306D9D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFF0046B99C0F5DFE48BFA77D6703520FE5ECEB63);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
StringBuilder_t* V_1 = NULL;
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->____raw_1;
|
|
NullCheck(L_0);
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) < ((int32_t)4)))
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = __this->____raw_1;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = 0;
|
|
uint8_t L_3 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)3))))
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = __this->____raw_1;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = 1;
|
|
uint8_t L_6 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
if ((((int32_t)L_6) == ((int32_t)2)))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
return _stringLiteralCD32F08BAB4EE365057213BCC6332DD39C2DE46B;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = __this->____raw_1;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = 3;
|
|
uint8_t L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = __this->____raw_1;
|
|
NullCheck(L_10);
|
|
int32_t L_11 = 2;
|
|
uint8_t L_12 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13 = __this->____raw_1;
|
|
NullCheck(L_13);
|
|
int32_t L_14 = 2;
|
|
uint8_t L_15 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
V_0 = ((int32_t)(((int32_t)((int32_t)L_9>>((int32_t)((int32_t)L_12&((int32_t)31)))))<<((int32_t)((int32_t)L_15&((int32_t)31)))));
|
|
StringBuilder_t* L_16 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
NullCheck(L_16);
|
|
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_16, NULL);
|
|
V_1 = L_16;
|
|
int32_t L_17 = V_0;
|
|
if ((!(((uint32_t)((int32_t)(L_17&((int32_t)128)))) == ((uint32_t)((int32_t)128)))))
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_18 = V_1;
|
|
NullCheck(L_18);
|
|
StringBuilder_t* L_19;
|
|
L_19 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_18, _stringLiteralFF0046B99C0F5DFE48BFA77D6703520FE5ECEB63, NULL);
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
int32_t L_20 = V_0;
|
|
if ((!(((uint32_t)((int32_t)(L_20&((int32_t)64)))) == ((uint32_t)((int32_t)64)))))
|
|
{
|
|
goto IL_0091;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_21 = V_1;
|
|
NullCheck(L_21);
|
|
int32_t L_22;
|
|
L_22 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_21, NULL);
|
|
if ((((int32_t)L_22) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_23 = V_1;
|
|
NullCheck(L_23);
|
|
StringBuilder_t* L_24;
|
|
L_24 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_23, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, NULL);
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
StringBuilder_t* L_25 = V_1;
|
|
NullCheck(L_25);
|
|
StringBuilder_t* L_26;
|
|
L_26 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_25, _stringLiteral20BFDEE599B675B43C275E62F4062F4333B183F9, NULL);
|
|
}
|
|
|
|
IL_0091:
|
|
{
|
|
int32_t L_27 = V_0;
|
|
if ((!(((uint32_t)((int32_t)(L_27&((int32_t)32)))) == ((uint32_t)((int32_t)32)))))
|
|
{
|
|
goto IL_00ba;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_28 = V_1;
|
|
NullCheck(L_28);
|
|
int32_t L_29;
|
|
L_29 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_28, NULL);
|
|
if ((((int32_t)L_29) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00ae;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_30 = V_1;
|
|
NullCheck(L_30);
|
|
StringBuilder_t* L_31;
|
|
L_31 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_30, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, NULL);
|
|
}
|
|
|
|
IL_00ae:
|
|
{
|
|
StringBuilder_t* L_32 = V_1;
|
|
NullCheck(L_32);
|
|
StringBuilder_t* L_33;
|
|
L_33 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_32, _stringLiteralBBE682A549E4FD2504E5F2F69458189FB5C75139, NULL);
|
|
}
|
|
|
|
IL_00ba:
|
|
{
|
|
int32_t L_34 = V_0;
|
|
if ((!(((uint32_t)((int32_t)(L_34&((int32_t)16)))) == ((uint32_t)((int32_t)16)))))
|
|
{
|
|
goto IL_00e3;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_35 = V_1;
|
|
NullCheck(L_35);
|
|
int32_t L_36;
|
|
L_36 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_35, NULL);
|
|
if ((((int32_t)L_36) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00d7;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_37 = V_1;
|
|
NullCheck(L_37);
|
|
StringBuilder_t* L_38;
|
|
L_38 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_37, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, NULL);
|
|
}
|
|
|
|
IL_00d7:
|
|
{
|
|
StringBuilder_t* L_39 = V_1;
|
|
NullCheck(L_39);
|
|
StringBuilder_t* L_40;
|
|
L_40 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_39, _stringLiteralCE2892956422830EFD61D6B1C95A865ED0BDFF66, NULL);
|
|
}
|
|
|
|
IL_00e3:
|
|
{
|
|
int32_t L_41 = V_0;
|
|
if ((!(((uint32_t)((int32_t)(L_41&8))) == ((uint32_t)8))))
|
|
{
|
|
goto IL_010a;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_42 = V_1;
|
|
NullCheck(L_42);
|
|
int32_t L_43;
|
|
L_43 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_42, NULL);
|
|
if ((((int32_t)L_43) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00fe;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_44 = V_1;
|
|
NullCheck(L_44);
|
|
StringBuilder_t* L_45;
|
|
L_45 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_44, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, NULL);
|
|
}
|
|
|
|
IL_00fe:
|
|
{
|
|
StringBuilder_t* L_46 = V_1;
|
|
NullCheck(L_46);
|
|
StringBuilder_t* L_47;
|
|
L_47 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_46, _stringLiteralD30CDE84D4CFDAD1992F4DD1DBC71AE0074AAA08, NULL);
|
|
}
|
|
|
|
IL_010a:
|
|
{
|
|
int32_t L_48 = V_0;
|
|
if ((!(((uint32_t)((int32_t)(L_48&4))) == ((uint32_t)4))))
|
|
{
|
|
goto IL_0131;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_49 = V_1;
|
|
NullCheck(L_49);
|
|
int32_t L_50;
|
|
L_50 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_49, NULL);
|
|
if ((((int32_t)L_50) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0125;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_51 = V_1;
|
|
NullCheck(L_51);
|
|
StringBuilder_t* L_52;
|
|
L_52 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_51, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, NULL);
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
StringBuilder_t* L_53 = V_1;
|
|
NullCheck(L_53);
|
|
StringBuilder_t* L_54;
|
|
L_54 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_53, _stringLiteral2D33F3CC9AFA97ECECBBF5C0881C8F9C86690251, NULL);
|
|
}
|
|
|
|
IL_0131:
|
|
{
|
|
int32_t L_55 = V_0;
|
|
if ((!(((uint32_t)((int32_t)(L_55&2))) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0158;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_56 = V_1;
|
|
NullCheck(L_56);
|
|
int32_t L_57;
|
|
L_57 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_56, NULL);
|
|
if ((((int32_t)L_57) <= ((int32_t)0)))
|
|
{
|
|
goto IL_014c;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_58 = V_1;
|
|
NullCheck(L_58);
|
|
StringBuilder_t* L_59;
|
|
L_59 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_58, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, NULL);
|
|
}
|
|
|
|
IL_014c:
|
|
{
|
|
StringBuilder_t* L_60 = V_1;
|
|
NullCheck(L_60);
|
|
StringBuilder_t* L_61;
|
|
L_61 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_60, _stringLiteral1B9C2E56B6E7518DF358644E56A37604D9A7C17A, NULL);
|
|
}
|
|
|
|
IL_0158:
|
|
{
|
|
int32_t L_62 = V_0;
|
|
if ((!(((uint32_t)((int32_t)(L_62&1))) == ((uint32_t)1))))
|
|
{
|
|
goto IL_017f;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_63 = V_1;
|
|
NullCheck(L_63);
|
|
int32_t L_64;
|
|
L_64 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_63, NULL);
|
|
if ((((int32_t)L_64) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0173;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_65 = V_1;
|
|
NullCheck(L_65);
|
|
StringBuilder_t* L_66;
|
|
L_66 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_65, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, NULL);
|
|
}
|
|
|
|
IL_0173:
|
|
{
|
|
StringBuilder_t* L_67 = V_1;
|
|
NullCheck(L_67);
|
|
StringBuilder_t* L_68;
|
|
L_68 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_67, _stringLiteral95E0BCC89582D0EEC7BEA5EEF50AA6E16AA82363, NULL);
|
|
}
|
|
|
|
IL_017f:
|
|
{
|
|
StringBuilder_t* L_69 = V_1;
|
|
String_t* L_70;
|
|
L_70 = Int32_ToString_m967AECC237535C552A97A80C7875E31B98496CA9((&V_0), _stringLiteral65A0F9B64ACE7C859A284EA54B1190CBF83E1260, NULL);
|
|
NullCheck(L_69);
|
|
StringBuilder_t* L_71;
|
|
L_71 = StringBuilder_AppendFormat_mFA88863E4018C2912D1A783E0EA6DAE4F594124F(L_69, _stringLiteralF5FCF7BFB0603BEB0CFB789198783073B2306D9D, L_70, NULL);
|
|
StringBuilder_t* L_72 = V_1;
|
|
NullCheck(L_72);
|
|
String_t* L_73;
|
|
L_73 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_72);
|
|
return L_73;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Security.Cryptography.X509Certificates.PublicKey::.ctor(System.Security.Cryptography.Oid,System.Security.Cryptography.AsnEncodedData,System.Security.Cryptography.AsnEncodedData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PublicKey__ctor_m810A1EF4D8A0BAE8A3CB36EB8CC0BBA99D799782 (PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* __this, Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* ___0_oid, AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* ___1_parameters, AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* ___2_keyValue, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_0 = ___0_oid;
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral17E5BE9B221C767EF04A364F24B81309DAE38512)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PublicKey__ctor_m810A1EF4D8A0BAE8A3CB36EB8CC0BBA99D799782_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_2 = ___1_parameters;
|
|
if (L_2)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_3 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_3);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC611A012636D51B5EBBC7ADEBD3C8631EA8DAF13)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PublicKey__ctor_m810A1EF4D8A0BAE8A3CB36EB8CC0BBA99D799782_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_4 = ___2_keyValue;
|
|
if (L_4)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_5 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_5);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral87D7C5E974D9C89FB52B8A53360C0C2E1DAAEC63)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PublicKey__ctor_m810A1EF4D8A0BAE8A3CB36EB8CC0BBA99D799782_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_6 = ___0_oid;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_7 = (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)il2cpp_codegen_object_new(Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
NullCheck(L_7);
|
|
Oid__ctor_m3973A5FE5482D45FABC8642E59B655274B0B5D59(L_7, L_6, NULL);
|
|
__this->____oid_2 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____oid_2), (void*)L_7);
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_8 = ___1_parameters;
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_9 = (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)il2cpp_codegen_object_new(AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8_il2cpp_TypeInfo_var);
|
|
NullCheck(L_9);
|
|
AsnEncodedData__ctor_mA80B22E2D7D98198B55D04474F6926EF80CBABF6(L_9, L_8, NULL);
|
|
__this->____params_1 = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____params_1), (void*)L_9);
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_10 = ___2_keyValue;
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_11 = (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)il2cpp_codegen_object_new(AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8_il2cpp_TypeInfo_var);
|
|
NullCheck(L_11);
|
|
AsnEncodedData__ctor_mA80B22E2D7D98198B55D04474F6926EF80CBABF6(L_11, L_10, NULL);
|
|
__this->____keyValue_0 = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____keyValue_0), (void*)L_11);
|
|
return;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.AsnEncodedData System.Security.Cryptography.X509Certificates.PublicKey::get_EncodedKeyValue()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* PublicKey_get_EncodedKeyValue_m153EF781728D471C55002A40BBDA435F1B3A1213 (PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_0 = __this->____keyValue_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.AsnEncodedData System.Security.Cryptography.X509Certificates.PublicKey::get_EncodedParameters()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* PublicKey_get_EncodedParameters_mE338A4A69A15907E38A644D624A07DDD55C521E0 (PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_0 = __this->____params_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.AsymmetricAlgorithm System.Security.Cryptography.X509Certificates.PublicKey::get_Key()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8* PublicKey_get_Key_mC0A4379DAA42B565878EE09310C43A4CCB45F273 (PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2A7F604AA53E605CA5A4D06ADF4F5C4B6FCBD8E8);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65C91159DE73AB664AD579C104F3EE3E6A5B9308);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_0 = __this->____oid_2;
|
|
NullCheck(L_0);
|
|
String_t* L_1;
|
|
L_1 = Oid_get_Value_m59D678A83ED4DE7D87FB7450C8CF4084DB506FD3_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
String_t* L_2 = V_0;
|
|
bool L_3;
|
|
L_3 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_2, _stringLiteral2A7F604AA53E605CA5A4D06ADF4F5C4B6FCBD8E8, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_4 = V_0;
|
|
bool L_5;
|
|
L_5 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_4, _stringLiteral65C91159DE73AB664AD579C104F3EE3E6A5B9308, NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_6 = __this->____keyValue_0;
|
|
NullCheck(L_6);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7;
|
|
L_7 = AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline(L_6, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405_il2cpp_TypeInfo_var);
|
|
RSA_tDDE9BD4C9806074FA9B1C6A5C93523A97116F21A* L_8;
|
|
L_8 = PublicKey_DecodeRSA_m5E8D3C7200105F4571BB56BA629195367F881545(L_7, NULL);
|
|
return L_8;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_9 = __this->____keyValue_0;
|
|
NullCheck(L_9);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10;
|
|
L_10 = AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline(L_9, NULL);
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_11 = __this->____params_1;
|
|
NullCheck(L_11);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12;
|
|
L_12 = AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline(L_11, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405_il2cpp_TypeInfo_var);
|
|
DSA_tB12EE3AEA99FBD41DE318E2A371878CA94653E41* L_13;
|
|
L_13 = PublicKey_DecodeDSA_m492DDFE288B22C3ACC3B6723BF762FA5D4AC23AD(L_10, L_12, NULL);
|
|
return L_13;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = L_14;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_16 = __this->____oid_2;
|
|
NullCheck(L_16);
|
|
String_t* L_17;
|
|
L_17 = Oid_get_Value_m59D678A83ED4DE7D87FB7450C8CF4084DB506FD3_inline(L_16, NULL);
|
|
NullCheck(L_15);
|
|
ArrayElementTypeCheck (L_15, L_17);
|
|
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_17);
|
|
String_t* L_18;
|
|
L_18 = Locale_GetText_m42E1EB13401D44A17A435110DDBE57AD042267A5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE729A02D79E425BEB3FDD6C02B8B5922A8026780)), L_15, NULL);
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_19 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_19);
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_19, L_18, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PublicKey_get_Key_mC0A4379DAA42B565878EE09310C43A4CCB45F273_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// System.Security.Cryptography.Oid System.Security.Cryptography.X509Certificates.PublicKey::get_Oid()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* PublicKey_get_Oid_mB5796F569C136759CB740F747C6A3B6F8976401A (PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_0 = __this->____oid_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Byte[] System.Security.Cryptography.X509Certificates.PublicKey::GetUnsignedBigInteger(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* PublicKey_GetUnsignedBigInteger_mAB4689D859FA5A4805270E0DFE9D35AC6B56F577 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_integer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_integer;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = 0;
|
|
uint8_t L_2 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_1));
|
|
if (!L_2)
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___0_integer;
|
|
return L_3;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_integer;
|
|
NullCheck(L_4);
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_4)->max_length)), 1));
|
|
int32_t L_5 = V_0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_5);
|
|
V_1 = L_6;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = ___0_integer;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = V_1;
|
|
int32_t L_9 = V_0;
|
|
Buffer_BlockCopy_m2F7BC0C5BA97C500E3F87D5008718F797E02B358((RuntimeArray*)L_7, 1, (RuntimeArray*)L_8, 0, L_9, NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = V_1;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.DSA System.Security.Cryptography.X509Certificates.PublicKey::DecodeDSA(System.Byte[],System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DSA_tB12EE3AEA99FBD41DE318E2A371878CA94653E41* PublicKey_DecodeDSA_m492DDFE288B22C3ACC3B6723BF762FA5D4AC23AD (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_rawPublicKey, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_rawParameters, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DSACryptoServiceProvider_tB418CD8E85D69D879C7298E4A6A7D8CFAC09D79E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DSAParameters_t2FA923FEA7E2DB5515EE54A7E86B0401D025E0E9 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* V_1 = NULL;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* V_2 = NULL;
|
|
Exception_t* V_3 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(DSAParameters_t2FA923FEA7E2DB5515EE54A7E86B0401D025E0E9));
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_rawPublicKey;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_1 = (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F*)il2cpp_codegen_object_new(ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
ASN1__ctor_m950BFCCF44A987ACBA12142624AA222200EE503E(L_1, L_0, NULL);
|
|
V_1 = L_1;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_2 = V_1;
|
|
NullCheck(L_2);
|
|
uint8_t L_3;
|
|
L_3 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_2, NULL);
|
|
if ((((int32_t)L_3) == ((int32_t)2)))
|
|
{
|
|
goto IL_0028_1;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_4;
|
|
L_4 = Locale_GetText_m7BA18BC14D3028C4C4722E220800563188DA3600(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral692E718E338FFD039FB1673ADA7E9AB5DED4BB98)), NULL);
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_5 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_5);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_5, L_4, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PublicKey_DecodeDSA_m492DDFE288B22C3ACC3B6723BF762FA5D4AC23AD_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0028_1:
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_6 = V_1;
|
|
NullCheck(L_6);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7;
|
|
L_7 = ASN1_get_Value_mA6F9BE5AC19AC060AC42673C8FD5AA864EA046B6(L_6, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8;
|
|
L_8 = PublicKey_GetUnsignedBigInteger_mAB4689D859FA5A4805270E0DFE9D35AC6B56F577(L_7, NULL);
|
|
(&V_0)->___Y_3 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___Y_3), (void*)L_8);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = ___1_rawParameters;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_10 = (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F*)il2cpp_codegen_object_new(ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_10);
|
|
ASN1__ctor_m950BFCCF44A987ACBA12142624AA222200EE503E(L_10, L_9, NULL);
|
|
V_2 = L_10;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_11 = V_2;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0057_1;
|
|
}
|
|
}
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_12 = V_2;
|
|
NullCheck(L_12);
|
|
uint8_t L_13;
|
|
L_13 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_12, NULL);
|
|
if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)48)))))
|
|
{
|
|
goto IL_0057_1;
|
|
}
|
|
}
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_14 = V_2;
|
|
NullCheck(L_14);
|
|
int32_t L_15;
|
|
L_15 = ASN1_get_Count_mBE45E73126FAD2694E9059CAC53B7AC9A5F60833(L_14, NULL);
|
|
if ((((int32_t)L_15) >= ((int32_t)3)))
|
|
{
|
|
goto IL_0067_1;
|
|
}
|
|
}
|
|
|
|
IL_0057_1:
|
|
{
|
|
String_t* L_16;
|
|
L_16 = Locale_GetText_m7BA18BC14D3028C4C4722E220800563188DA3600(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral99CDE5CF8466BD020DE0C38EC323DBB9E10A2523)), NULL);
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_17 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_17);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_17, L_16, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PublicKey_DecodeDSA_m492DDFE288B22C3ACC3B6723BF762FA5D4AC23AD_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0067_1:
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_18 = V_2;
|
|
NullCheck(L_18);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_19;
|
|
L_19 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_18, 0, NULL);
|
|
NullCheck(L_19);
|
|
uint8_t L_20;
|
|
L_20 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_19, NULL);
|
|
if ((!(((uint32_t)L_20) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0094_1;
|
|
}
|
|
}
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_21 = V_2;
|
|
NullCheck(L_21);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_22;
|
|
L_22 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_21, 1, NULL);
|
|
NullCheck(L_22);
|
|
uint8_t L_23;
|
|
L_23 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_22, NULL);
|
|
if ((!(((uint32_t)L_23) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0094_1;
|
|
}
|
|
}
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_24 = V_2;
|
|
NullCheck(L_24);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_25;
|
|
L_25 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_24, 2, NULL);
|
|
NullCheck(L_25);
|
|
uint8_t L_26;
|
|
L_26 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_25, NULL);
|
|
if ((((int32_t)L_26) == ((int32_t)2)))
|
|
{
|
|
goto IL_00a4_1;
|
|
}
|
|
}
|
|
|
|
IL_0094_1:
|
|
{
|
|
String_t* L_27;
|
|
L_27 = Locale_GetText_m7BA18BC14D3028C4C4722E220800563188DA3600(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral30677B8BA7ED8BE7E7E8F9BC87DE11BEDECF6B94)), NULL);
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_28 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_28);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_28, L_27, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PublicKey_DecodeDSA_m492DDFE288B22C3ACC3B6723BF762FA5D4AC23AD_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_00a4_1:
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_29 = V_2;
|
|
NullCheck(L_29);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_30;
|
|
L_30 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_29, 0, NULL);
|
|
NullCheck(L_30);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_31;
|
|
L_31 = ASN1_get_Value_mA6F9BE5AC19AC060AC42673C8FD5AA864EA046B6(L_30, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_32;
|
|
L_32 = PublicKey_GetUnsignedBigInteger_mAB4689D859FA5A4805270E0DFE9D35AC6B56F577(L_31, NULL);
|
|
(&V_0)->___P_0 = L_32;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___P_0), (void*)L_32);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_33 = V_2;
|
|
NullCheck(L_33);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_34;
|
|
L_34 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_33, 1, NULL);
|
|
NullCheck(L_34);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_35;
|
|
L_35 = ASN1_get_Value_mA6F9BE5AC19AC060AC42673C8FD5AA864EA046B6(L_34, NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_36;
|
|
L_36 = PublicKey_GetUnsignedBigInteger_mAB4689D859FA5A4805270E0DFE9D35AC6B56F577(L_35, NULL);
|
|
(&V_0)->___Q_1 = L_36;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___Q_1), (void*)L_36);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_37 = V_2;
|
|
NullCheck(L_37);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_38;
|
|
L_38 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_37, 2, NULL);
|
|
NullCheck(L_38);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_39;
|
|
L_39 = ASN1_get_Value_mA6F9BE5AC19AC060AC42673C8FD5AA864EA046B6(L_38, NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_40;
|
|
L_40 = PublicKey_GetUnsignedBigInteger_mAB4689D859FA5A4805270E0DFE9D35AC6B56F577(L_39, NULL);
|
|
(&V_0)->___G_2 = L_40;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___G_2), (void*)L_40);
|
|
goto IL_0100;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_00ee;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00ee:
|
|
{// begin catch(System.Exception)
|
|
Exception_t* L_41 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
V_3 = L_41;
|
|
String_t* L_42;
|
|
L_42 = Locale_GetText_m7BA18BC14D3028C4C4722E220800563188DA3600(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCD24D4C14B3F256EB99D0167475D3F3E3C8CE558)), NULL);
|
|
Exception_t* L_43 = V_3;
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_44 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_44);
|
|
CryptographicException__ctor_m5DDF42BBD1BBB5006C6E912240CAE64C8B14FA9C(L_44, L_42, L_43, NULL);
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PublicKey_DecodeDSA_m492DDFE288B22C3ACC3B6723BF762FA5D4AC23AD_RuntimeMethod_var)));
|
|
}// end catch (depth: 1)
|
|
|
|
IL_0100:
|
|
{
|
|
DSAParameters_t2FA923FEA7E2DB5515EE54A7E86B0401D025E0E9 L_45 = V_0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_46 = L_45.___Y_3;
|
|
NullCheck(L_46);
|
|
DSACryptoServiceProvider_tB418CD8E85D69D879C7298E4A6A7D8CFAC09D79E* L_47 = (DSACryptoServiceProvider_tB418CD8E85D69D879C7298E4A6A7D8CFAC09D79E*)il2cpp_codegen_object_new(DSACryptoServiceProvider_tB418CD8E85D69D879C7298E4A6A7D8CFAC09D79E_il2cpp_TypeInfo_var);
|
|
NullCheck(L_47);
|
|
DSACryptoServiceProvider__ctor_m7F0D9766E2CE0031007086B713375FF8C89ADEB3(L_47, ((int32_t)(((int32_t)(((RuntimeArray*)L_46)->max_length))<<3)), NULL);
|
|
DSACryptoServiceProvider_tB418CD8E85D69D879C7298E4A6A7D8CFAC09D79E* L_48 = L_47;
|
|
DSAParameters_t2FA923FEA7E2DB5515EE54A7E86B0401D025E0E9 L_49 = V_0;
|
|
NullCheck(L_48);
|
|
VirtualActionInvoker1< DSAParameters_t2FA923FEA7E2DB5515EE54A7E86B0401D025E0E9 >::Invoke(12 /* System.Void System.Security.Cryptography.DSA::ImportParameters(System.Security.Cryptography.DSAParameters) */, L_48, L_49);
|
|
return L_48;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.RSA System.Security.Cryptography.X509Certificates.PublicKey::DecodeRSA(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RSA_tDDE9BD4C9806074FA9B1C6A5C93523A97116F21A* PublicKey_DecodeRSA_m5E8D3C7200105F4571BB56BA629195367F881545 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_rawPublicKey, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RSACryptoServiceProvider_t5B3DF0CAFF65D4103EB90063F3C3B00FE2C6967C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RSAParameters_t14B738B69F9D1EB594D5F391BDF8E42BA16435FF V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* V_1 = NULL;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* V_2 = NULL;
|
|
Exception_t* V_3 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* G_B3_0 = NULL;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* G_B2_0 = NULL;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* G_B5_0 = NULL;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* G_B4_0 = NULL;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* G_B6_0 = NULL;
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(RSAParameters_t14B738B69F9D1EB594D5F391BDF8E42BA16435FF));
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_rawPublicKey;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_1 = (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F*)il2cpp_codegen_object_new(ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
ASN1__ctor_m950BFCCF44A987ACBA12142624AA222200EE503E(L_1, L_0, NULL);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = ASN1_get_Count_mBE45E73126FAD2694E9059CAC53B7AC9A5F60833(L_2, NULL);
|
|
G_B2_0 = L_2;
|
|
if (L_3)
|
|
{
|
|
G_B3_0 = L_2;
|
|
goto IL_0026_1;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_4;
|
|
L_4 = Locale_GetText_m7BA18BC14D3028C4C4722E220800563188DA3600(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7B8F4658E4EF61B30477317B0A3F810822B218E2)), NULL);
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_5 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_5);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_5, L_4, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PublicKey_DecodeRSA_m5E8D3C7200105F4571BB56BA629195367F881545_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0026_1:
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_6 = G_B3_0;
|
|
NullCheck(L_6);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_7;
|
|
L_7 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_6, 0, NULL);
|
|
V_1 = L_7;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_8 = V_1;
|
|
G_B4_0 = L_6;
|
|
if (!L_8)
|
|
{
|
|
G_B5_0 = L_6;
|
|
goto IL_003a_1;
|
|
}
|
|
}
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
uint8_t L_10;
|
|
L_10 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_9, NULL);
|
|
G_B5_0 = G_B4_0;
|
|
if ((((int32_t)L_10) == ((int32_t)2)))
|
|
{
|
|
G_B6_0 = G_B4_0;
|
|
goto IL_004a_1;
|
|
}
|
|
}
|
|
|
|
IL_003a_1:
|
|
{
|
|
String_t* L_11;
|
|
L_11 = Locale_GetText_m7BA18BC14D3028C4C4722E220800563188DA3600(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5213C5B281E693868174731B42C5D30C8046AD88)), NULL);
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_12 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_12);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_12, L_11, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PublicKey_DecodeRSA_m5E8D3C7200105F4571BB56BA629195367F881545_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_004a_1:
|
|
{
|
|
NullCheck(G_B6_0);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_13;
|
|
L_13 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(G_B6_0, 1, NULL);
|
|
V_2 = L_13;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_14 = V_2;
|
|
NullCheck(L_14);
|
|
uint8_t L_15;
|
|
L_15 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_14, NULL);
|
|
if ((((int32_t)L_15) == ((int32_t)2)))
|
|
{
|
|
goto IL_006a_1;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_16;
|
|
L_16 = Locale_GetText_m7BA18BC14D3028C4C4722E220800563188DA3600(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0B5D93AFD273766B7965DD30D79F0F1A361CB57B)), NULL);
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_17 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_17);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_17, L_16, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PublicKey_DecodeRSA_m5E8D3C7200105F4571BB56BA629195367F881545_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_006a_1:
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_18 = V_1;
|
|
NullCheck(L_18);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19;
|
|
L_19 = ASN1_get_Value_mA6F9BE5AC19AC060AC42673C8FD5AA864EA046B6(L_18, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20;
|
|
L_20 = PublicKey_GetUnsignedBigInteger_mAB4689D859FA5A4805270E0DFE9D35AC6B56F577(L_19, NULL);
|
|
(&V_0)->___Modulus_1 = L_20;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___Modulus_1), (void*)L_20);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_21 = V_2;
|
|
NullCheck(L_21);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_22;
|
|
L_22 = ASN1_get_Value_mA6F9BE5AC19AC060AC42673C8FD5AA864EA046B6(L_21, NULL);
|
|
(&V_0)->___Exponent_0 = L_22;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___Exponent_0), (void*)L_22);
|
|
goto IL_009d;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_008b;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_008b:
|
|
{// begin catch(System.Exception)
|
|
Exception_t* L_23 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
V_3 = L_23;
|
|
String_t* L_24;
|
|
L_24 = Locale_GetText_m7BA18BC14D3028C4C4722E220800563188DA3600(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCD24D4C14B3F256EB99D0167475D3F3E3C8CE558)), NULL);
|
|
Exception_t* L_25 = V_3;
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_26 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_26);
|
|
CryptographicException__ctor_m5DDF42BBD1BBB5006C6E912240CAE64C8B14FA9C(L_26, L_24, L_25, NULL);
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PublicKey_DecodeRSA_m5E8D3C7200105F4571BB56BA629195367F881545_RuntimeMethod_var)));
|
|
}// end catch (depth: 1)
|
|
|
|
IL_009d:
|
|
{
|
|
RSAParameters_t14B738B69F9D1EB594D5F391BDF8E42BA16435FF L_27 = V_0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_28 = L_27.___Modulus_1;
|
|
NullCheck(L_28);
|
|
RSACryptoServiceProvider_t5B3DF0CAFF65D4103EB90063F3C3B00FE2C6967C* L_29 = (RSACryptoServiceProvider_t5B3DF0CAFF65D4103EB90063F3C3B00FE2C6967C*)il2cpp_codegen_object_new(RSACryptoServiceProvider_t5B3DF0CAFF65D4103EB90063F3C3B00FE2C6967C_il2cpp_TypeInfo_var);
|
|
NullCheck(L_29);
|
|
RSACryptoServiceProvider__ctor_m74A4B904FEAADB8D68D54E0DD680AE532042FFE9(L_29, ((int32_t)(((int32_t)(((RuntimeArray*)L_28)->max_length))<<3)), NULL);
|
|
RSACryptoServiceProvider_t5B3DF0CAFF65D4103EB90063F3C3B00FE2C6967C* L_30 = L_29;
|
|
RSAParameters_t14B738B69F9D1EB594D5F391BDF8E42BA16435FF L_31 = V_0;
|
|
NullCheck(L_30);
|
|
VirtualActionInvoker1< RSAParameters_t14B738B69F9D1EB594D5F391BDF8E42BA16435FF >::Invoke(12 /* System.Void System.Security.Cryptography.RSA::ImportParameters(System.Security.Cryptography.RSAParameters) */, L_30, L_31);
|
|
return L_30;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.X509Certificates.PublicKey::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PublicKey__cctor_m1B2E44B5BBF321952E0FD1F19C048E43A6506407 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)0);
|
|
((PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405_StaticFields*)il2cpp_codegen_static_fields_for(PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405_il2cpp_TypeInfo_var))->___Empty_3 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405_StaticFields*)il2cpp_codegen_static_fields_for(PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405_il2cpp_TypeInfo_var))->___Empty_3), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Security.Cryptography.X509Certificates.X500DistinguishedName::.ctor(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X500DistinguishedName__ctor_mF36480D37651E6FC6662E90ED7795F9A5C1C3DD2 (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_encodedDistinguishedName, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
AsnEncodedData__ctor_m90028EC56A5E36272EAA4A9279AE23358D46F547(__this, NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_encodedDistinguishedName;
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB8ADEE29A3CEEC199877289FBA628ADB706C89EE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X500DistinguishedName__ctor_mF36480D37651E6FC6662E90ED7795F9A5C1C3DD2_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_2 = (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)il2cpp_codegen_object_new(Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
Oid__ctor_m9032299ACEB6DC66674CB2D8889D875A1A9D308F(L_2, NULL);
|
|
AsnEncodedData_set_Oid_m877771219F651EA3FF834952300180274531C9C7(__this, L_2, NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___0_encodedDistinguishedName;
|
|
AsnEncodedData_set_RawData_m05F9F17765AD384ECE3A333DCBF6A0572099346B(__this, L_3, NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_encodedDistinguishedName;
|
|
NullCheck(L_4);
|
|
if (!(((RuntimeArray*)L_4)->max_length))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
X500DistinguishedName_DecodeRawData_mB465AEF2F370353BB809B6B310064FF67DC2D970(__this, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
__this->___name_2 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_2), (void*)L_5);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.X509Certificates.X500DistinguishedName::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X500DistinguishedName__ctor_m880E4D05D355F1B494990EFA3B9C7D0DFA0C8679 (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* __this, String_t* ___0_distinguishedName, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_distinguishedName;
|
|
X500DistinguishedName__ctor_m95199AB45F165A1B774CA88B45F08889BFA5E162(__this, L_0, 1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.X509Certificates.X500DistinguishedName::.ctor(System.String,System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X500DistinguishedName__ctor_m95199AB45F165A1B774CA88B45F08889BFA5E162 (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* __this, String_t* ___0_distinguishedName, int32_t ___1_flag, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X501_t5DBAC33581ADA4FC61FAF731E9A02855AB572EB4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* V_0 = NULL;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
{
|
|
AsnEncodedData__ctor_m90028EC56A5E36272EAA4A9279AE23358D46F547(__this, NULL);
|
|
String_t* L_0 = ___0_distinguishedName;
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral810312829FDB3577963C015162B688C40E5764D3)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X500DistinguishedName__ctor_m95199AB45F165A1B774CA88B45F08889BFA5E162_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
int32_t L_2 = ___1_flag;
|
|
if (!L_2)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___1_flag;
|
|
if (((int32_t)((int32_t)L_3&((int32_t)29169))))
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_4);
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1547D32448BC572A3BA92D824F60BCE446C923C1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X500DistinguishedName__ctor_m95199AB45F165A1B774CA88B45F08889BFA5E162_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_5 = (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)il2cpp_codegen_object_new(Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
NullCheck(L_5);
|
|
Oid__ctor_m9032299ACEB6DC66674CB2D8889D875A1A9D308F(L_5, NULL);
|
|
AsnEncodedData_set_Oid_m877771219F651EA3FF834952300180274531C9C7(__this, L_5, NULL);
|
|
String_t* L_6 = ___0_distinguishedName;
|
|
NullCheck(L_6);
|
|
int32_t L_7;
|
|
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_6, NULL);
|
|
if (L_7)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = L_8;
|
|
NullCheck(L_9);
|
|
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)48));
|
|
AsnEncodedData_set_RawData_m05F9F17765AD384ECE3A333DCBF6A0572099346B(__this, L_9, NULL);
|
|
X500DistinguishedName_DecodeRawData_mB465AEF2F370353BB809B6B310064FF67DC2D970(__this, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
String_t* L_10 = ___0_distinguishedName;
|
|
il2cpp_codegen_runtime_class_init_inline(X501_t5DBAC33581ADA4FC61FAF731E9A02855AB572EB4_il2cpp_TypeInfo_var);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_11;
|
|
L_11 = X501_FromString_m22E2E65B409AD90884F39373D865EF97AECDADC9(L_10, NULL);
|
|
V_0 = L_11;
|
|
int32_t L_12 = ___1_flag;
|
|
if (!((int32_t)((int32_t)L_12&1)))
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_13 = (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F*)il2cpp_codegen_object_new(ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_13);
|
|
ASN1__ctor_mA9AE2197367C1E13DBFDA67E0A383167F52CC114(L_13, (uint8_t)((int32_t)48), NULL);
|
|
V_1 = L_13;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_14 = V_0;
|
|
NullCheck(L_14);
|
|
int32_t L_15;
|
|
L_15 = ASN1_get_Count_mBE45E73126FAD2694E9059CAC53B7AC9A5F60833(L_14, NULL);
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract(L_15, 1));
|
|
goto IL_0087;
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_16 = V_1;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_17 = V_0;
|
|
int32_t L_18 = V_2;
|
|
NullCheck(L_17);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_19;
|
|
L_19 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_17, L_18, NULL);
|
|
NullCheck(L_16);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_20;
|
|
L_20 = ASN1_Add_m4C61487A6CCF48D5CEB0D97B248FE31F9FCD849F(L_16, L_19, NULL);
|
|
int32_t L_21 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract(L_21, 1));
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
int32_t L_22 = V_2;
|
|
if ((((int32_t)L_22) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_23 = V_1;
|
|
V_0 = L_23;
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_24 = V_0;
|
|
NullCheck(L_24);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_25;
|
|
L_25 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_24);
|
|
AsnEncodedData_set_RawData_m05F9F17765AD384ECE3A333DCBF6A0572099346B(__this, L_25, NULL);
|
|
int32_t L_26 = ___1_flag;
|
|
if (L_26)
|
|
{
|
|
goto IL_00a4;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_27 = ___0_distinguishedName;
|
|
__this->___name_2 = L_27;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_2), (void*)L_27);
|
|
return;
|
|
}
|
|
|
|
IL_00a4:
|
|
{
|
|
int32_t L_28 = ___1_flag;
|
|
String_t* L_29;
|
|
L_29 = X500DistinguishedName_Decode_mEC580A9699C0384B0196C80CD5ECFAA2151243BD(__this, L_28, NULL);
|
|
__this->___name_2 = L_29;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_2), (void*)L_29);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.X509Certificates.X500DistinguishedName::get_Name()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X500DistinguishedName_get_Name_m57B2708AAA2B4E15AB6F6B513D88C4468898B5A9 (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->___name_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.X509Certificates.X500DistinguishedName::Decode(System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X500DistinguishedName_Decode_mEC580A9699C0384B0196C80CD5ECFAA2151243BD (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* __this, int32_t ___0_flag, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X501_t5DBAC33581ADA4FC61FAF731E9A02855AB572EB4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
String_t* V_2 = NULL;
|
|
{
|
|
int32_t L_0 = ___0_flag;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_flag;
|
|
if (((int32_t)((int32_t)L_1&((int32_t)29169))))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1547D32448BC572A3BA92D824F60BCE446C923C1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X500DistinguishedName_Decode_mEC580A9699C0384B0196C80CD5ECFAA2151243BD_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3;
|
|
L_3 = AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline(__this, NULL);
|
|
NullCheck(L_3);
|
|
if ((((RuntimeArray*)L_3)->max_length))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
return L_4;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
int32_t L_5 = ___0_flag;
|
|
V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_5&1))) <= ((uint32_t)0)))? 1 : 0);
|
|
int32_t L_6 = ___0_flag;
|
|
V_1 = (bool)((((int32_t)((int32_t)((int32_t)L_6&((int32_t)64)))) == ((int32_t)0))? 1 : 0);
|
|
int32_t L_7 = ___0_flag;
|
|
String_t* L_8;
|
|
L_8 = X500DistinguishedName_GetSeparator_m5DBD24D00DDE71A1842E169AF0C63BA0242A6693(L_7, NULL);
|
|
V_2 = L_8;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9;
|
|
L_9 = AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline(__this, NULL);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_10 = (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F*)il2cpp_codegen_object_new(ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_10);
|
|
ASN1__ctor_m950BFCCF44A987ACBA12142624AA222200EE503E(L_10, L_9, NULL);
|
|
bool L_11 = V_0;
|
|
String_t* L_12 = V_2;
|
|
bool L_13 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(X501_t5DBAC33581ADA4FC61FAF731E9A02855AB572EB4_il2cpp_TypeInfo_var);
|
|
String_t* L_14;
|
|
L_14 = X501_ToString_m4C3921DEC65010E4B8A225C0982C382B1ADF0399(L_10, L_11, L_12, L_13, NULL);
|
|
return L_14;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.X509Certificates.X500DistinguishedName::Format(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X500DistinguishedName_Format_mD7DD9D893081C391AA74C66CEC456324EDC36969 (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* __this, bool ___0_multiLine, const RuntimeMethod* method)
|
|
{
|
|
String_t* V_0 = NULL;
|
|
{
|
|
bool L_0 = ___0_multiLine;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1;
|
|
L_1 = X500DistinguishedName_Decode_mEC580A9699C0384B0196C80CD5ECFAA2151243BD(__this, ((int32_t)256), NULL);
|
|
V_0 = L_1;
|
|
String_t* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
|
|
if ((((int32_t)L_3) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_4 = V_0;
|
|
String_t* L_5;
|
|
L_5 = Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF(NULL);
|
|
String_t* L_6;
|
|
L_6 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_4, L_5, NULL);
|
|
return L_6;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
String_t* L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
String_t* L_8;
|
|
L_8 = X500DistinguishedName_Decode_mEC580A9699C0384B0196C80CD5ECFAA2151243BD(__this, ((int32_t)128), NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.X509Certificates.X500DistinguishedName::GetSeparator(System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X500DistinguishedName_GetSeparator_m5DBD24D00DDE71A1842E169AF0C63BA0242A6693 (int32_t ___0_flag, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF712C5F62331F2870DB319ED66CDF53B831F3CA1);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___0_flag;
|
|
if (!((int32_t)((int32_t)L_0&((int32_t)16))))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
return _stringLiteralF712C5F62331F2870DB319ED66CDF53B831F3CA1;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t L_1 = ___0_flag;
|
|
if (!((int32_t)((int32_t)L_1&((int32_t)128))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
return _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
int32_t L_2 = ___0_flag;
|
|
if (!((int32_t)((int32_t)L_2&((int32_t)256))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_3;
|
|
L_3 = Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF(NULL);
|
|
return L_3;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
return _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.X509Certificates.X500DistinguishedName::DecodeRawData()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X500DistinguishedName_DecodeRawData_mB465AEF2F370353BB809B6B310064FF67DC2D970 (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X501_t5DBAC33581ADA4FC61FAF731E9A02855AB572EB4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* V_0 = NULL;
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0;
|
|
L_0 = AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1;
|
|
L_1 = AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline(__this, NULL);
|
|
NullCheck(L_1);
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))) >= ((int32_t)3)))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
__this->___name_2 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_2), (void*)L_2);
|
|
return;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3;
|
|
L_3 = AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline(__this, NULL);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_4 = (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F*)il2cpp_codegen_object_new(ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_4);
|
|
ASN1__ctor_m950BFCCF44A987ACBA12142624AA222200EE503E(L_4, L_3, NULL);
|
|
V_0 = L_4;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_5 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(X501_t5DBAC33581ADA4FC61FAF731E9A02855AB572EB4_il2cpp_TypeInfo_var);
|
|
String_t* L_6;
|
|
L_6 = X501_ToString_m4C3921DEC65010E4B8A225C0982C382B1ADF0399(L_5, (bool)1, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, (bool)1, NULL);
|
|
__this->___name_2 = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_2), (void*)L_6);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.X509Certificates.X500DistinguishedName::Canonize(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X500DistinguishedName_Canonize_m3CA4E6FE15959CD6599936D8B8A47C4D845E6052 (String_t* ___0_s, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
StringBuilder_t* V_1 = NULL;
|
|
bool V_2 = false;
|
|
{
|
|
String_t* L_0 = ___0_s;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_0, ((int32_t)61), NULL);
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_1, 1));
|
|
String_t* L_2 = ___0_s;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
String_t* L_4;
|
|
L_4 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_2, 0, L_3, NULL);
|
|
StringBuilder_t* L_5 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
NullCheck(L_5);
|
|
StringBuilder__ctor_mCD797D942316CB356205FD96415B0B7581CDAD60(L_5, L_4, NULL);
|
|
V_1 = L_5;
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
int32_t L_6 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
String_t* L_8 = ___0_s;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL);
|
|
if ((((int32_t)L_7) >= ((int32_t)L_9)))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_10 = ___0_s;
|
|
int32_t L_11 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_12;
|
|
L_12 = Char_IsWhiteSpace_m8A6D2951619293FCA4E8F7D3A7190B533A7EDD78(L_10, L_11, NULL);
|
|
if (L_12)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
String_t* L_13 = ___0_s;
|
|
NullCheck(L_13);
|
|
String_t* L_14;
|
|
L_14 = String_TrimEnd_m25B1EA658EE07ADFED51FED61D630E5625336AB5(L_13, NULL);
|
|
___0_s = L_14;
|
|
V_2 = (bool)0;
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
bool L_15 = V_2;
|
|
if (!L_15)
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_16 = ___0_s;
|
|
int32_t L_17 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_18;
|
|
L_18 = Char_IsWhiteSpace_m8A6D2951619293FCA4E8F7D3A7190B533A7EDD78(L_16, L_17, NULL);
|
|
V_2 = L_18;
|
|
bool L_19 = V_2;
|
|
if (L_19)
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
String_t* L_20 = ___0_s;
|
|
int32_t L_21 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_22;
|
|
L_22 = Char_IsWhiteSpace_m8A6D2951619293FCA4E8F7D3A7190B533A7EDD78(L_20, L_21, NULL);
|
|
if (!L_22)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
StringBuilder_t* L_23 = V_1;
|
|
String_t* L_24 = ___0_s;
|
|
int32_t L_25 = V_0;
|
|
NullCheck(L_24);
|
|
Il2CppChar L_26;
|
|
L_26 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_24, L_25, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
Il2CppChar L_27;
|
|
L_27 = Char_ToUpperInvariant_m43EADCB6987DB5FC44A6BFDBA8800EBACCEC68C8(L_26, NULL);
|
|
NullCheck(L_23);
|
|
StringBuilder_t* L_28;
|
|
L_28 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_23, L_27, NULL);
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
int32_t L_29 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_29, 1));
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
int32_t L_30 = V_0;
|
|
String_t* L_31 = ___0_s;
|
|
NullCheck(L_31);
|
|
int32_t L_32;
|
|
L_32 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_31, NULL);
|
|
if ((((int32_t)L_30) < ((int32_t)L_32)))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_33 = V_1;
|
|
NullCheck(L_33);
|
|
String_t* L_34;
|
|
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_33);
|
|
return L_34;
|
|
}
|
|
}
|
|
// System.Boolean System.Security.Cryptography.X509Certificates.X500DistinguishedName::AreEqual(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.X500DistinguishedName)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X500DistinguishedName_AreEqual_m7CD9B66616D1844E72C033CFCB72106F1DE79C44 (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___0_name1, X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___1_name2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_1 = NULL;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_2 = NULL;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
{
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_0 = ___0_name1;
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_1 = ___1_name2;
|
|
return (bool)((((RuntimeObject*)(X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_2 = ___1_name2;
|
|
if (L_2)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_3 = ___0_name1;
|
|
NullCheck(L_3);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = L_3->___canonEncoding_3;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
{
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_5 = ___1_name2;
|
|
NullCheck(L_5);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = L_5->___canonEncoding_3;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
{
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_7 = ___0_name1;
|
|
NullCheck(L_7);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = L_7->___canonEncoding_3;
|
|
NullCheck(L_8);
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_9 = ___1_name2;
|
|
NullCheck(L_9);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = L_9->___canonEncoding_3;
|
|
NullCheck(L_10);
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))) == ((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
V_4 = 0;
|
|
goto IL_0052;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_11 = ___0_name1;
|
|
NullCheck(L_11);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = L_11->___canonEncoding_3;
|
|
int32_t L_13 = V_4;
|
|
NullCheck(L_12);
|
|
int32_t L_14 = L_13;
|
|
uint8_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_16 = ___1_name2;
|
|
NullCheck(L_16);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = L_16->___canonEncoding_3;
|
|
int32_t L_18 = V_4;
|
|
NullCheck(L_17);
|
|
int32_t L_19 = L_18;
|
|
uint8_t L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
|
|
if ((((int32_t)L_15) == ((int32_t)L_20)))
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
int32_t L_21 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_21, 1));
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
int32_t L_22 = V_4;
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_23 = ___0_name1;
|
|
NullCheck(L_23);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_24 = L_23->___canonEncoding_3;
|
|
NullCheck(L_24);
|
|
if ((((int32_t)L_22) < ((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length)))))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
V_0 = ((int32_t)320);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_25 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_26 = L_25;
|
|
String_t* L_27;
|
|
L_27 = Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF(NULL);
|
|
NullCheck(L_26);
|
|
ArrayElementTypeCheck (L_26, L_27);
|
|
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_27);
|
|
V_1 = L_26;
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_28 = ___0_name1;
|
|
int32_t L_29 = V_0;
|
|
NullCheck(L_28);
|
|
String_t* L_30;
|
|
L_30 = X500DistinguishedName_Decode_mEC580A9699C0384B0196C80CD5ECFAA2151243BD(L_28, L_29, NULL);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_31 = V_1;
|
|
NullCheck(L_30);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_32;
|
|
L_32 = String_Split_m03F46561E2DF46D1E3AE749A77706EFC2F6488F4(L_30, L_31, 1, NULL);
|
|
V_2 = L_32;
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_33 = ___1_name2;
|
|
int32_t L_34 = V_0;
|
|
NullCheck(L_33);
|
|
String_t* L_35;
|
|
L_35 = X500DistinguishedName_Decode_mEC580A9699C0384B0196C80CD5ECFAA2151243BD(L_33, L_34, NULL);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_36 = V_1;
|
|
NullCheck(L_35);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_37;
|
|
L_37 = String_Split_m03F46561E2DF46D1E3AE749A77706EFC2F6488F4(L_35, L_36, 1, NULL);
|
|
V_3 = L_37;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_38 = V_2;
|
|
NullCheck(L_38);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_39 = V_3;
|
|
NullCheck(L_39);
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_38)->max_length))) == ((int32_t)((int32_t)(((RuntimeArray*)L_39)->max_length)))))
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
V_5 = 0;
|
|
goto IL_00c3;
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_40 = V_2;
|
|
int32_t L_41 = V_5;
|
|
NullCheck(L_40);
|
|
int32_t L_42 = L_41;
|
|
String_t* L_43 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_42));
|
|
String_t* L_44;
|
|
L_44 = X500DistinguishedName_Canonize_m3CA4E6FE15959CD6599936D8B8A47C4D845E6052(L_43, NULL);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_45 = V_3;
|
|
int32_t L_46 = V_5;
|
|
NullCheck(L_45);
|
|
int32_t L_47 = L_46;
|
|
String_t* L_48 = (L_45)->GetAt(static_cast<il2cpp_array_size_t>(L_47));
|
|
String_t* L_49;
|
|
L_49 = X500DistinguishedName_Canonize_m3CA4E6FE15959CD6599936D8B8A47C4D845E6052(L_48, NULL);
|
|
bool L_50;
|
|
L_50 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_44, L_49, NULL);
|
|
if (!L_50)
|
|
{
|
|
goto IL_00bd;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00bd:
|
|
{
|
|
int32_t L_51 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_51, 1));
|
|
}
|
|
|
|
IL_00c3:
|
|
{
|
|
int32_t L_52 = V_5;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_53 = V_2;
|
|
NullCheck(L_53);
|
|
if ((((int32_t)L_52) < ((int32_t)((int32_t)(((RuntimeArray*)L_53)->max_length)))))
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509BasicConstraintsExtension__ctor_m672BE9B41107A8C30454BF4CAC120D70512BA89A (X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBCBD089553BED56941C157C4F715B4365F724D7C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
X509Extension__ctor_mFC88C10C2C6718E6AE74CE37E10D4EBB8FD67BAC(__this, NULL);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_0 = (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)il2cpp_codegen_object_new(Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
Oid__ctor_m533C0126C7C8D382D3E702287A9AD0CED2D0377D(L_0, _stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA, _stringLiteralBCBD089553BED56941C157C4F715B4365F724D7C, NULL);
|
|
((AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)__this)->____oid_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)__this)->____oid_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::.ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509BasicConstraintsExtension__ctor_m76C88E8D4C7CCEC7B2C3D56CC58A56352F7729E4 (X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35* __this, AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* ___0_encodedBasicConstraints, bool ___1_critical, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBCBD089553BED56941C157C4F715B4365F724D7C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
X509Extension__ctor_mFC88C10C2C6718E6AE74CE37E10D4EBB8FD67BAC(__this, NULL);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_0 = (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)il2cpp_codegen_object_new(Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
Oid__ctor_m533C0126C7C8D382D3E702287A9AD0CED2D0377D(L_0, _stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA, _stringLiteralBCBD089553BED56941C157C4F715B4365F724D7C, NULL);
|
|
((AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)__this)->____oid_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)__this)->____oid_0), (void*)L_0);
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_1 = ___0_encodedBasicConstraints;
|
|
NullCheck(L_1);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2;
|
|
L_2 = AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline(L_1, NULL);
|
|
((AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)__this)->____raw_1 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)__this)->____raw_1), (void*)L_2);
|
|
bool L_3 = ___1_critical;
|
|
X509Extension_set_Critical_m19FBE6E0C8B9069E5A2C232DAAE06046AF18EFEF_inline(__this, L_3, NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4;
|
|
L_4 = AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline(__this, NULL);
|
|
int32_t L_5;
|
|
L_5 = X509BasicConstraintsExtension_Decode_m7C50097B6238FEF4DAD6A9A09A449DB0CAFFEBEB(__this, L_4, NULL);
|
|
__this->____status_8 = L_5;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::.ctor(System.Boolean,System.Boolean,System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509BasicConstraintsExtension__ctor_m02334D8CAA280B339CA41E2019CF1F02C8B2E7DE (X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35* __this, bool ___0_certificateAuthority, bool ___1_hasPathLengthConstraint, int32_t ___2_pathLengthConstraint, bool ___3_critical, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBCBD089553BED56941C157C4F715B4365F724D7C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
X509Extension__ctor_mFC88C10C2C6718E6AE74CE37E10D4EBB8FD67BAC(__this, NULL);
|
|
bool L_0 = ___1_hasPathLengthConstraint;
|
|
if (!L_0)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___2_pathLengthConstraint;
|
|
if ((((int32_t)L_1) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5D1D45B6F90EF153C0073C0B7E9492B4DBF540F1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509BasicConstraintsExtension__ctor_m02334D8CAA280B339CA41E2019CF1F02C8B2E7DE_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_3 = ___2_pathLengthConstraint;
|
|
__this->____pathLengthConstraint_7 = L_3;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
bool L_4 = ___1_hasPathLengthConstraint;
|
|
__this->____hasPathLengthConstraint_6 = L_4;
|
|
bool L_5 = ___0_certificateAuthority;
|
|
__this->____certificateAuthority_5 = L_5;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_6 = (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)il2cpp_codegen_object_new(Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
NullCheck(L_6);
|
|
Oid__ctor_m533C0126C7C8D382D3E702287A9AD0CED2D0377D(L_6, _stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA, _stringLiteralBCBD089553BED56941C157C4F715B4365F724D7C, NULL);
|
|
((AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)__this)->____oid_0 = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)__this)->____oid_0), (void*)L_6);
|
|
bool L_7 = ___3_critical;
|
|
X509Extension_set_Critical_m19FBE6E0C8B9069E5A2C232DAAE06046AF18EFEF_inline(__this, L_7, NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8;
|
|
L_8 = X509BasicConstraintsExtension_Encode_mD7FA31A70B025F67062C3844E4FEB09B14A4DE2B(__this, NULL);
|
|
AsnEncodedData_set_RawData_m05F9F17765AD384ECE3A333DCBF6A0572099346B(__this, L_8, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::get_CertificateAuthority()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509BasicConstraintsExtension_get_CertificateAuthority_mB4ECEF43A245E97DA80C6323BE339BE2DF99FF5C (X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->____status_8;
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = V_0;
|
|
if ((!(((uint32_t)L_2) == ((uint32_t)4))))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
bool L_3 = __this->____certificateAuthority_5;
|
|
return L_3;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_4 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_4);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD20A4058B7B405BF173793FAAC54A85874A0CDDE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509BasicConstraintsExtension_get_CertificateAuthority_mB4ECEF43A245E97DA80C6323BE339BE2DF99FF5C_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// System.Boolean System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::get_HasPathLengthConstraint()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509BasicConstraintsExtension_get_HasPathLengthConstraint_m8F7C371EFF99BD110663DB106BEE889955255BC7 (X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->____status_8;
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = V_0;
|
|
if ((!(((uint32_t)L_2) == ((uint32_t)4))))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
bool L_3 = __this->____hasPathLengthConstraint_6;
|
|
return L_3;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_4 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_4);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD20A4058B7B405BF173793FAAC54A85874A0CDDE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509BasicConstraintsExtension_get_HasPathLengthConstraint_m8F7C371EFF99BD110663DB106BEE889955255BC7_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::get_PathLengthConstraint()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509BasicConstraintsExtension_get_PathLengthConstraint_m4D3F016E42C243887D07DD955518A818DC14BBC5 (X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->____status_8;
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = V_0;
|
|
if ((!(((uint32_t)L_2) == ((uint32_t)4))))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_3 = __this->____pathLengthConstraint_7;
|
|
return L_3;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_4 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_4);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD20A4058B7B405BF173793FAAC54A85874A0CDDE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509BasicConstraintsExtension_get_PathLengthConstraint_m4D3F016E42C243887D07DD955518A818DC14BBC5_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::CopyFrom(System.Security.Cryptography.AsnEncodedData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509BasicConstraintsExtension_CopyFrom_mCC603D99CEC828BDF86FDEB3C4650CF4D3753B8E (X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35* __this, AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* ___0_asnEncodedData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBCBD089553BED56941C157C4F715B4365F724D7C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* V_0 = NULL;
|
|
{
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_0 = ___0_asnEncodedData;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC9FB8C73B342D5B3C700EDA7C5212DD547D29E4E)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509BasicConstraintsExtension_CopyFrom_mCC603D99CEC828BDF86FDEB3C4650CF4D3753B8E_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_2 = ___0_asnEncodedData;
|
|
V_0 = ((X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5*)IsInstClass((RuntimeObject*)L_2, X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5_il2cpp_TypeInfo_var));
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_3 = V_0;
|
|
if (L_3)
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_4;
|
|
L_4 = Locale_GetText_m7BA18BC14D3028C4C4722E220800563188DA3600(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD615D452AAA84D559E3E5FFF5168A1AF47500E8D)), NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_5 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_5);
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_5, L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC9FB8C73B342D5B3C700EDA7C5212DD547D29E4E)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509BasicConstraintsExtension_CopyFrom_mCC603D99CEC828BDF86FDEB3C4650CF4D3753B8E_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_7 = ((AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)L_6)->____oid_0;
|
|
if (L_7)
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_8 = (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)il2cpp_codegen_object_new(Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
NullCheck(L_8);
|
|
Oid__ctor_m533C0126C7C8D382D3E702287A9AD0CED2D0377D(L_8, _stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA, _stringLiteralBCBD089553BED56941C157C4F715B4365F724D7C, NULL);
|
|
((AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)__this)->____oid_0 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)__this)->____oid_0), (void*)L_8);
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_10 = ((AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)L_9)->____oid_0;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_11 = (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)il2cpp_codegen_object_new(Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
NullCheck(L_11);
|
|
Oid__ctor_m3973A5FE5482D45FABC8642E59B655274B0B5D59(L_11, L_10, NULL);
|
|
((AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)__this)->____oid_0 = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)__this)->____oid_0), (void*)L_11);
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_12 = V_0;
|
|
NullCheck(L_12);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13;
|
|
L_13 = AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline(L_12, NULL);
|
|
AsnEncodedData_set_RawData_m05F9F17765AD384ECE3A333DCBF6A0572099346B(__this, L_13, NULL);
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_14 = V_0;
|
|
NullCheck(L_14);
|
|
bool L_15;
|
|
L_15 = X509Extension_get_Critical_mEF827F09D95784210C2F8D5FD7BE27BB54803E35_inline(L_14, NULL);
|
|
X509Extension_set_Critical_m19FBE6E0C8B9069E5A2C232DAAE06046AF18EFEF_inline(__this, L_15, NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16;
|
|
L_16 = AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline(__this, NULL);
|
|
int32_t L_17;
|
|
L_17 = X509BasicConstraintsExtension_Decode_m7C50097B6238FEF4DAD6A9A09A449DB0CAFFEBEB(__this, L_16, NULL);
|
|
__this->____status_8 = L_17;
|
|
return;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.AsnDecodeStatus System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::Decode(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509BasicConstraintsExtension_Decode_m7C50097B6238FEF4DAD6A9A09A449DB0CAFFEBEB (X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_extension, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_extension;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_extension;
|
|
NullCheck(L_1);
|
|
if ((((RuntimeArray*)L_1)->max_length))
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
return (int32_t)(1);
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___0_extension;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = 0;
|
|
uint8_t L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
if ((((int32_t)L_4) == ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return (int32_t)(2);
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = ___0_extension;
|
|
NullCheck(L_5);
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))) >= ((int32_t)3)))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___0_extension;
|
|
NullCheck(L_6);
|
|
if ((!(((uint32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = ___0_extension;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = 1;
|
|
uint8_t L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
if (!L_9)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
return (int32_t)(3);
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = ___0_extension;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_11 = (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F*)il2cpp_codegen_object_new(ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_11);
|
|
ASN1__ctor_m950BFCCF44A987ACBA12142624AA222200EE503E(L_11, L_10, NULL);
|
|
V_0 = L_11;
|
|
V_1 = 0;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_12 = V_0;
|
|
int32_t L_13 = V_1;
|
|
int32_t L_14 = L_13;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_14, 1));
|
|
NullCheck(L_12);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_15;
|
|
L_15 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_12, L_14, NULL);
|
|
V_2 = L_15;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_16 = V_2;
|
|
if (!L_16)
|
|
{
|
|
goto IL_0068_1;
|
|
}
|
|
}
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_17 = V_2;
|
|
NullCheck(L_17);
|
|
uint8_t L_18;
|
|
L_18 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_17, NULL);
|
|
if ((!(((uint32_t)L_18) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0068_1;
|
|
}
|
|
}
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_19 = V_2;
|
|
NullCheck(L_19);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20;
|
|
L_20 = ASN1_get_Value_mA6F9BE5AC19AC060AC42673C8FD5AA864EA046B6(L_19, NULL);
|
|
NullCheck(L_20);
|
|
int32_t L_21 = 0;
|
|
uint8_t L_22 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
|
|
__this->____certificateAuthority_5 = (bool)((((int32_t)L_22) == ((int32_t)((int32_t)255)))? 1 : 0);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_23 = V_0;
|
|
int32_t L_24 = V_1;
|
|
int32_t L_25 = L_24;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_25, 1));
|
|
NullCheck(L_23);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_26;
|
|
L_26 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_23, L_25, NULL);
|
|
V_2 = L_26;
|
|
}
|
|
|
|
IL_0068_1:
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_27 = V_2;
|
|
if (!L_27)
|
|
{
|
|
goto IL_0087_1;
|
|
}
|
|
}
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_28 = V_2;
|
|
NullCheck(L_28);
|
|
uint8_t L_29;
|
|
L_29 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_28, NULL);
|
|
if ((!(((uint32_t)L_29) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0087_1;
|
|
}
|
|
}
|
|
{
|
|
__this->____hasPathLengthConstraint_6 = (bool)1;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_30 = V_2;
|
|
int32_t L_31;
|
|
L_31 = ASN1Convert_ToInt32_m956785EB4A235575C21677C16D2F6CBE54787032(L_30, NULL);
|
|
__this->____pathLengthConstraint_7 = L_31;
|
|
}
|
|
|
|
IL_0087_1:
|
|
{
|
|
goto IL_008e;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0089;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0089:
|
|
{// begin catch(System.Object)
|
|
RuntimeObject* L_32 = ((RuntimeObject*)IL2CPP_GET_ACTIVE_EXCEPTION(RuntimeObject*));;
|
|
V_3 = 1;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0090;
|
|
}// end catch (depth: 1)
|
|
|
|
IL_008e:
|
|
{
|
|
return (int32_t)(0);
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
int32_t L_33 = V_3;
|
|
return L_33;
|
|
}
|
|
}
|
|
// System.Byte[] System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::Encode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* X509BasicConstraintsExtension_Encode_mD7FA31A70B025F67062C3844E4FEB09B14A4DE2B (X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* V_0 = NULL;
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_0 = (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F*)il2cpp_codegen_object_new(ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
ASN1__ctor_mA9AE2197367C1E13DBFDA67E0A383167F52CC114(L_0, (uint8_t)((int32_t)48), NULL);
|
|
V_0 = L_0;
|
|
bool L_1 = __this->____certificateAuthority_5;
|
|
if (!L_1)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_2 = V_0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = L_3;
|
|
NullCheck(L_4);
|
|
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)255));
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_5 = (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F*)il2cpp_codegen_object_new(ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_5);
|
|
ASN1__ctor_mAA538F9E1BE0DE739E9747BC3BC71DC030B018AA(L_5, (uint8_t)1, L_4, NULL);
|
|
NullCheck(L_2);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_6;
|
|
L_6 = ASN1_Add_m4C61487A6CCF48D5CEB0D97B248FE31F9FCD849F(L_2, L_5, NULL);
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
bool L_7 = __this->____hasPathLengthConstraint_6;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = __this->____pathLengthConstraint_7;
|
|
if (L_8)
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_9 = V_0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_11 = (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F*)il2cpp_codegen_object_new(ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_11);
|
|
ASN1__ctor_mAA538F9E1BE0DE739E9747BC3BC71DC030B018AA(L_11, (uint8_t)2, L_10, NULL);
|
|
NullCheck(L_9);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_12;
|
|
L_12 = ASN1_Add_m4C61487A6CCF48D5CEB0D97B248FE31F9FCD849F(L_9, L_11, NULL);
|
|
goto IL_0062;
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_13 = V_0;
|
|
int32_t L_14 = __this->____pathLengthConstraint_7;
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_15;
|
|
L_15 = ASN1Convert_FromInt32_mACAC096211E525F124BE0D50D90524ADCB6EA198(L_14, NULL);
|
|
NullCheck(L_13);
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_16;
|
|
L_16 = ASN1_Add_m4C61487A6CCF48D5CEB0D97B248FE31F9FCD849F(L_13, L_15, NULL);
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18;
|
|
L_18 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_17);
|
|
return L_18;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::ToString(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509BasicConstraintsExtension_ToString_mBFC61BA07CD2BB8EACCC19A5AE72EA81C11D02E4 (X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35* __this, bool ___0_multiLine, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral244BA6FE8878C6A66F7648332C07125DF3AFBC4B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2F874A32C0360779E461A5ED6063EF8E6729A514);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral324A15BBCCD67A1997F37BF20414A7EB61126AB5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral548D93DDB2AC6B24373148B19D9A625571AB2318);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D1E32D587015A9DB04576A49D22A6924F1B9D62);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCD32F08BAB4EE365057213BCC6332DD39C2DE46B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9B53FE83B364433B53BD1F5712DD31D58258FB4);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringBuilder_t* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____status_8;
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, 1)))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
return L_2;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ((AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)__this)->____raw_1;
|
|
String_t* L_4;
|
|
L_4 = X509Extension_FormatUnkownData_mD0463F5096A6937E95E3165048299CBA9A1A6F7D(__this, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return _stringLiteralCD32F08BAB4EE365057213BCC6332DD39C2DE46B;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_5 = ((AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)__this)->____oid_0;
|
|
NullCheck(L_5);
|
|
String_t* L_6;
|
|
L_6 = Oid_get_Value_m59D678A83ED4DE7D87FB7450C8CF4084DB506FD3_inline(L_5, NULL);
|
|
bool L_7;
|
|
L_7 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_6, _stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA, NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_8 = ((AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)__this)->____oid_0;
|
|
NullCheck(L_8);
|
|
String_t* L_9;
|
|
L_9 = Oid_get_Value_m59D678A83ED4DE7D87FB7450C8CF4084DB506FD3_inline(L_8, NULL);
|
|
String_t* L_10;
|
|
L_10 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(_stringLiteralD9B53FE83B364433B53BD1F5712DD31D58258FB4, L_9, NULL);
|
|
return L_10;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
StringBuilder_t* L_11 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
NullCheck(L_11);
|
|
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_11, NULL);
|
|
V_0 = L_11;
|
|
StringBuilder_t* L_12 = V_0;
|
|
NullCheck(L_12);
|
|
StringBuilder_t* L_13;
|
|
L_13 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_12, _stringLiteral244BA6FE8878C6A66F7648332C07125DF3AFBC4B, NULL);
|
|
bool L_14 = __this->____certificateAuthority_5;
|
|
if (!L_14)
|
|
{
|
|
goto IL_008f;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
StringBuilder_t* L_16;
|
|
L_16 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_15, _stringLiteral2F874A32C0360779E461A5ED6063EF8E6729A514, NULL);
|
|
goto IL_009b;
|
|
}
|
|
|
|
IL_008f:
|
|
{
|
|
StringBuilder_t* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
StringBuilder_t* L_18;
|
|
L_18 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_17, _stringLiteral8D1E32D587015A9DB04576A49D22A6924F1B9D62, NULL);
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
bool L_19 = ___0_multiLine;
|
|
if (!L_19)
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_20 = V_0;
|
|
String_t* L_21;
|
|
L_21 = Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF(NULL);
|
|
NullCheck(L_20);
|
|
StringBuilder_t* L_22;
|
|
L_22 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_20, L_21, NULL);
|
|
goto IL_00b8;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
StringBuilder_t* L_23 = V_0;
|
|
NullCheck(L_23);
|
|
StringBuilder_t* L_24;
|
|
L_24 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_23, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, NULL);
|
|
}
|
|
|
|
IL_00b8:
|
|
{
|
|
StringBuilder_t* L_25 = V_0;
|
|
NullCheck(L_25);
|
|
StringBuilder_t* L_26;
|
|
L_26 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_25, _stringLiteral324A15BBCCD67A1997F37BF20414A7EB61126AB5, NULL);
|
|
bool L_27 = __this->____hasPathLengthConstraint_6;
|
|
if (!L_27)
|
|
{
|
|
goto IL_00db;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_28 = V_0;
|
|
int32_t L_29 = __this->____pathLengthConstraint_7;
|
|
NullCheck(L_28);
|
|
StringBuilder_t* L_30;
|
|
L_30 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_28, L_29, NULL);
|
|
goto IL_00e7;
|
|
}
|
|
|
|
IL_00db:
|
|
{
|
|
StringBuilder_t* L_31 = V_0;
|
|
NullCheck(L_31);
|
|
StringBuilder_t* L_32;
|
|
L_32 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_31, _stringLiteral548D93DDB2AC6B24373148B19D9A625571AB2318, NULL);
|
|
}
|
|
|
|
IL_00e7:
|
|
{
|
|
bool L_33 = ___0_multiLine;
|
|
if (!L_33)
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_34 = V_0;
|
|
String_t* L_35;
|
|
L_35 = Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF(NULL);
|
|
NullCheck(L_34);
|
|
StringBuilder_t* L_36;
|
|
L_36 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_34, L_35, NULL);
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
StringBuilder_t* L_37 = V_0;
|
|
NullCheck(L_37);
|
|
String_t* L_38;
|
|
L_38 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_37);
|
|
return L_38;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2::Reset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2_Reset_mE779D76DC57C54B674D7588861324F02DD784C3E (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___lazyRawData_10 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lazyRawData_10), (void*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL);
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___lazySignatureAlgorithm_11 = (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lazySignatureAlgorithm_11), (void*)(Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)NULL);
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___lazyVersion_12 = 0;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___lazySubjectName_13 = (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lazySubjectName_13), (void*)(X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6*)NULL);
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___lazyIssuerName_14 = (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lazyIssuerName_14), (void*)(X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6*)NULL);
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___lazyPublicKey_15 = (PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lazyPublicKey_15), (void*)(PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405*)NULL);
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___lazyPrivateKey_16 = (AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lazyPrivateKey_16), (void*)(AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8*)NULL);
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___lazyExtensions_17 = (X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lazyExtensions_17), (void*)(X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0*)NULL);
|
|
X509Certificate_Reset_mE107591B5DD95803C4C54D11FD51093B096938E9(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2__ctor_m84519718D6C34074E7037786ADAE51290460C2B1 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
X509Certificate__ctor_m8C7B944B736B2E80B997CEF14DA533A43B21221D(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2::.ctor(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2__ctor_m34CFFC999D3A152729A5C59DBE80AB709547DA19 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_rawData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* V_0 = NULL;
|
|
X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* V_1 = NULL;
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_rawData;
|
|
X509Certificate__ctor_mD03830ADC5DB6278898C055CFA71E7C37ADDB5DD(__this, L_0, NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_rawData;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___0_rawData;
|
|
NullCheck(L_2);
|
|
if (!(((RuntimeArray*)L_2)->max_length))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* L_3 = (SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463*)il2cpp_codegen_object_new(SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
SafePasswordHandle__ctor_m7B9E2FCDE3D3062399AC53BDF31F9098442D8309(L_3, (String_t*)NULL, NULL);
|
|
V_0 = L_3;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0027:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_5);
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___0_rawData;
|
|
SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* L_7 = V_0;
|
|
X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* L_8;
|
|
L_8 = X509Helper_Import_m0E8AD0030994213DCA95445166B707732979C200(L_6, L_7, 0, NULL);
|
|
V_1 = L_8;
|
|
X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* L_9 = V_1;
|
|
X509Certificate_ImportHandle_m54F4BDE5C14295911D620B946918213CD38DFA02(__this, L_9, NULL);
|
|
goto IL_0031;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2::.ctor(System.Byte[],System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2__ctor_m196538E20CE749EB7220F5AEF93FEBF0C7072350 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_rawData, String_t* ___1_password, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_rawData;
|
|
String_t* L_1 = ___1_password;
|
|
X509Certificate__ctor_m79D85E4F1103FF390B475632F6EC3A44105F8A2F(__this, L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2::.ctor(System.Security.Cryptography.X509Certificates.X509Certificate2Impl)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2__ctor_m7DA4EE40349835A87AAA8E5717489DFD6C44D0A2 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* ___0_impl, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_0 = ___0_impl;
|
|
X509Certificate__ctor_mC9377C026C89D0F8DBBBBBB060F786988E47FCAE(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2::.ctor(System.Security.Cryptography.X509Certificates.X509Certificate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2__ctor_m2C7F482BFC1A0BAAABDD8BE9BBB2026DA5F3E600 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___0_certificate, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_0 = ___0_certificate;
|
|
X509Certificate__ctor_m000BB695F5B3F1460BF1CA7E77D6765121CFBFCB(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2__ctor_mB1BC3DC26B71A5D5D3753B04DCA16AA49627EC15 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info;
|
|
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context;
|
|
X509Certificate__ctor_m2B56E3261F6C33A8DA297DECD0CE568B7B3B5887(__this, L_0, L_1, NULL);
|
|
PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A* L_2 = (PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
PlatformNotSupportedException__ctor_mD5DBE8E9A6FF4B75EF02671029C6D67A51EAFBD1(L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509Certificate2__ctor_mB1BC3DC26B71A5D5D3753B04DCA16AA49627EC15_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// System.Security.Cryptography.X509Certificates.X509ExtensionCollection System.Security.Cryptography.X509Certificates.X509Certificate2::get_Extensions()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* X509Certificate2_get_Extensions_m3746E7EB004789DF5AF56AD36209676860901579 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t88BC7ABEC98371147F87484F0BECBC7021EDE51D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t15779D4CC76338A5C7BB7DDD1C51143E57A5F7C8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* V_2 = NULL;
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* V_3 = NULL;
|
|
{
|
|
X509Certificate_ThrowIfInvalid_mCD48C7FC4B19DD27885F410FA3F5744F1D6AEB4F(__this, NULL);
|
|
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* L_0 = __this->___lazyExtensions_17;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
{
|
|
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* L_2 = (X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0*)il2cpp_codegen_object_new(X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
X509ExtensionCollection__ctor_m279F781688D6D8D301D06282132D8A02DC864AE9(L_2, NULL);
|
|
V_0 = L_2;
|
|
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_3;
|
|
L_3 = X509Certificate2_get_Impl_m21C56437F9DD096FA112C2DF07F04EB2E381015F(__this, NULL);
|
|
NullCheck(L_3);
|
|
RuntimeObject* L_4;
|
|
L_4 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(22 /* System.Collections.Generic.IEnumerable`1<System.Security.Cryptography.X509Certificates.X509Extension> System.Security.Cryptography.X509Certificates.X509Certificate2Impl::get_Extensions() */, L_3);
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_5;
|
|
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Security.Cryptography.X509Certificates.X509Extension>::GetEnumerator() */, IEnumerable_1_t88BC7ABEC98371147F87484F0BECBC7021EDE51D_il2cpp_TypeInfo_var, L_4);
|
|
V_1 = L_5;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0064:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_006d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
|
|
IL_002b_1:
|
|
{
|
|
RuntimeObject* L_8 = V_1;
|
|
NullCheck(L_8);
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_9;
|
|
L_9 = InterfaceFuncInvoker0< X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Security.Cryptography.X509Certificates.X509Extension>::get_Current() */, IEnumerator_1_t15779D4CC76338A5C7BB7DDD1C51143E57A5F7C8_il2cpp_TypeInfo_var, L_8);
|
|
V_2 = L_9;
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_10 = V_2;
|
|
NullCheck(L_10);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_11;
|
|
L_11 = AsnEncodedData_get_Oid_mBDB4803B2ADEE3BD40596E82FF738C2DC339BC28_inline(L_10, NULL);
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_12;
|
|
L_12 = X509Certificate2_CreateCustomExtensionIfAny_m2E709C9C8557610C4D8E5DDC182639669BA54A67(L_11, NULL);
|
|
V_3 = L_12;
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_13 = V_3;
|
|
if (L_13)
|
|
{
|
|
goto IL_004b_1;
|
|
}
|
|
}
|
|
{
|
|
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* L_14 = V_0;
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_15 = V_2;
|
|
NullCheck(L_14);
|
|
int32_t L_16;
|
|
L_16 = X509ExtensionCollection_Add_mC02BE13A042962E83E849483642F122AEADD2A79(L_14, L_15, NULL);
|
|
goto IL_005a_1;
|
|
}
|
|
|
|
IL_004b_1:
|
|
{
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_17 = V_3;
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_18 = V_2;
|
|
NullCheck(L_17);
|
|
VirtualActionInvoker1< AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* >::Invoke(4 /* System.Void System.Security.Cryptography.AsnEncodedData::CopyFrom(System.Security.Cryptography.AsnEncodedData) */, L_17, L_18);
|
|
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* L_19 = V_0;
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_20 = V_3;
|
|
NullCheck(L_19);
|
|
int32_t L_21;
|
|
L_21 = X509ExtensionCollection_Add_mC02BE13A042962E83E849483642F122AEADD2A79(L_19, L_20, NULL);
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
RuntimeObject* L_22 = V_1;
|
|
NullCheck(L_22);
|
|
bool L_23;
|
|
L_23 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_22);
|
|
if (L_23)
|
|
{
|
|
goto IL_002b_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* L_24 = V_0;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___lazyExtensions_17 = L_24;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lazyExtensions_17), (void*)L_24);
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* L_25 = V_0;
|
|
return L_25;
|
|
}
|
|
}
|
|
// System.Boolean System.Security.Cryptography.X509Certificates.X509Certificate2::get_HasPrivateKey()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509Certificate2_get_HasPrivateKey_m561EE07579AC86B96856A73367961AD01DAD8567 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
X509Certificate_ThrowIfInvalid_mCD48C7FC4B19DD27885F410FA3F5744F1D6AEB4F(__this, NULL);
|
|
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_0;
|
|
L_0 = X509Certificate2_get_Impl_m21C56437F9DD096FA112C2DF07F04EB2E381015F(__this, NULL);
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = VirtualFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Security.Cryptography.X509Certificates.X509CertificateImpl::get_HasPrivateKey() */, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.AsymmetricAlgorithm System.Security.Cryptography.X509Certificates.X509Certificate2::get_PrivateKey()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8* X509Certificate2_get_PrivateKey_mB2D1370AFF6F005B4A18A2223363C353B8D24A4A (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2A7F604AA53E605CA5A4D06ADF4F5C4B6FCBD8E8);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65C91159DE73AB664AD579C104F3EE3E6A5B9308);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
X509Certificate_ThrowIfInvalid_mCD48C7FC4B19DD27885F410FA3F5744F1D6AEB4F(__this, NULL);
|
|
bool L_0;
|
|
L_0 = X509Certificate2_get_HasPrivateKey_m561EE07579AC86B96856A73367961AD01DAD8567(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
return (AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8*)NULL;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8* L_1 = __this->___lazyPrivateKey_16;
|
|
il2cpp_codegen_memory_barrier();
|
|
if (L_1)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(14 /* System.String System.Security.Cryptography.X509Certificates.X509Certificate::GetKeyAlgorithm() */, __this);
|
|
V_0 = L_2;
|
|
String_t* L_3 = V_0;
|
|
bool L_4;
|
|
L_4 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_3, _stringLiteral2A7F604AA53E605CA5A4D06ADF4F5C4B6FCBD8E8, NULL);
|
|
if (L_4)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_5 = V_0;
|
|
bool L_6;
|
|
L_6 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_5, _stringLiteral65C91159DE73AB664AD579C104F3EE3E6A5B9308, NULL);
|
|
if (L_6)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_7;
|
|
L_7 = X509Certificate2_get_Impl_m21C56437F9DD096FA112C2DF07F04EB2E381015F(__this, NULL);
|
|
NullCheck(L_7);
|
|
RSA_tDDE9BD4C9806074FA9B1C6A5C93523A97116F21A* L_8;
|
|
L_8 = VirtualFuncInvoker0< RSA_tDDE9BD4C9806074FA9B1C6A5C93523A97116F21A* >::Invoke(18 /* System.Security.Cryptography.RSA System.Security.Cryptography.X509Certificates.X509CertificateImpl::GetRSAPrivateKey() */, L_7);
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___lazyPrivateKey_16 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lazyPrivateKey_16), (void*)L_8);
|
|
goto IL_0072;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_9;
|
|
L_9 = X509Certificate2_get_Impl_m21C56437F9DD096FA112C2DF07F04EB2E381015F(__this, NULL);
|
|
NullCheck(L_9);
|
|
DSA_tB12EE3AEA99FBD41DE318E2A371878CA94653E41* L_10;
|
|
L_10 = VirtualFuncInvoker0< DSA_tB12EE3AEA99FBD41DE318E2A371878CA94653E41* >::Invoke(19 /* System.Security.Cryptography.DSA System.Security.Cryptography.X509Certificates.X509CertificateImpl::GetDSAPrivateKey() */, L_9);
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___lazyPrivateKey_16 = L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lazyPrivateKey_16), (void*)L_10);
|
|
goto IL_0072;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_11 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_11);
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral699840986535E61CF74482083469DA67A731CB19)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509Certificate2_get_PrivateKey_mB2D1370AFF6F005B4A18A2223363C353B8D24A4A_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8* L_12 = __this->___lazyPrivateKey_16;
|
|
il2cpp_codegen_memory_barrier();
|
|
return L_12;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.X509Certificates.X500DistinguishedName System.Security.Cryptography.X509Certificates.X509Certificate2::get_IssuerName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* X509Certificate2_get_IssuerName_m47CB829F5388F2E68A20D473F586FA847739B83D (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* V_0 = NULL;
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* V_1 = NULL;
|
|
{
|
|
X509Certificate_ThrowIfInvalid_mCD48C7FC4B19DD27885F410FA3F5744F1D6AEB4F(__this, NULL);
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_0 = __this->___lazyIssuerName_14;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_2;
|
|
L_2 = X509Certificate2_get_Impl_m21C56437F9DD096FA112C2DF07F04EB2E381015F(__this, NULL);
|
|
NullCheck(L_2);
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_3;
|
|
L_3 = VirtualFuncInvoker0< X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* >::Invoke(23 /* System.Security.Cryptography.X509Certificates.X500DistinguishedName System.Security.Cryptography.X509Certificates.X509Certificate2Impl::get_IssuerName() */, L_2);
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_4 = L_3;
|
|
V_1 = L_4;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___lazyIssuerName_14 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lazyIssuerName_14), (void*)L_4);
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_5 = V_1;
|
|
V_0 = L_5;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.DateTime System.Security.Cryptography.X509Certificates.X509Certificate2::get_NotAfter()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D X509Certificate2_get_NotAfter_m925CA3901B7856D0692C6DED4F6428A40A726787 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0;
|
|
L_0 = X509Certificate_GetNotAfter_mBED8ACE5BCA21D51715AFD8E568E46989E47DF02(__this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.DateTime System.Security.Cryptography.X509Certificates.X509Certificate2::get_NotBefore()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D X509Certificate2_get_NotBefore_m656CC9913A0E6F6F0C06185F3B63F3A2EDCEB801 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0;
|
|
L_0 = X509Certificate_GetNotBefore_m1E3FA4967825483593325CC5ACB72713631AEEDD(__this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.X509Certificates.PublicKey System.Security.Cryptography.X509Certificates.X509Certificate2::get_PublicKey()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* X509Certificate2_get_PublicKey_mF1813BEE1EE04C593FBAA44590E2AEBC23A72304 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* V_0 = NULL;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_2 = NULL;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* V_3 = NULL;
|
|
PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* V_4 = NULL;
|
|
{
|
|
X509Certificate_ThrowIfInvalid_mCD48C7FC4B19DD27885F410FA3F5744F1D6AEB4F(__this, NULL);
|
|
PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* L_0 = __this->___lazyPublicKey_15;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(14 /* System.String System.Security.Cryptography.X509Certificates.X509Certificate::GetKeyAlgorithm() */, __this);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3;
|
|
L_3 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(15 /* System.Byte[] System.Security.Cryptography.X509Certificates.X509Certificate::GetKeyAlgorithmParameters() */, __this);
|
|
V_1 = L_3;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4;
|
|
L_4 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(16 /* System.Byte[] System.Security.Cryptography.X509Certificates.X509Certificate::GetPublicKey() */, __this);
|
|
V_2 = L_4;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_5 = (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287*)il2cpp_codegen_object_new(Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287_il2cpp_TypeInfo_var);
|
|
NullCheck(L_5);
|
|
Oid__ctor_m4AF81B9D51BED48AE505251E0874EC654BA07B72(L_5, L_2, NULL);
|
|
V_3 = L_5;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_6 = V_3;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_7 = V_3;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = V_1;
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_9 = (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)il2cpp_codegen_object_new(AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8_il2cpp_TypeInfo_var);
|
|
NullCheck(L_9);
|
|
AsnEncodedData__ctor_m3E8C1D1E0CE464176742B847DC99BF8EAABF15E6(L_9, L_7, L_8, NULL);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_10 = V_3;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = V_2;
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_12 = (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8*)il2cpp_codegen_object_new(AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8_il2cpp_TypeInfo_var);
|
|
NullCheck(L_12);
|
|
AsnEncodedData__ctor_m3E8C1D1E0CE464176742B847DC99BF8EAABF15E6(L_12, L_10, L_11, NULL);
|
|
PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* L_13 = (PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405*)il2cpp_codegen_object_new(PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405_il2cpp_TypeInfo_var);
|
|
NullCheck(L_13);
|
|
PublicKey__ctor_m810A1EF4D8A0BAE8A3CB36EB8CC0BBA99D799782(L_13, L_6, L_9, L_12, NULL);
|
|
PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* L_14 = L_13;
|
|
V_4 = L_14;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___lazyPublicKey_15 = L_14;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lazyPublicKey_15), (void*)L_14);
|
|
PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* L_15 = V_4;
|
|
V_0 = L_15;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* L_16 = V_0;
|
|
return L_16;
|
|
}
|
|
}
|
|
// System.Byte[] System.Security.Cryptography.X509Certificates.X509Certificate2::get_RawData()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* X509Certificate2_get_RawData_m34518B0CB70515321029A2265AA89EFEB50177C6 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
|
|
{
|
|
X509Certificate_ThrowIfInvalid_mCD48C7FC4B19DD27885F410FA3F5744F1D6AEB4F(__this, NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___lazyRawData_10;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_2;
|
|
L_2 = X509Certificate2_get_Impl_m21C56437F9DD096FA112C2DF07F04EB2E381015F(__this, NULL);
|
|
NullCheck(L_2);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3;
|
|
L_3 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(9 /* System.Byte[] System.Security.Cryptography.X509Certificates.X509CertificateImpl::get_RawData() */, L_2);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = L_3;
|
|
V_1 = L_4;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___lazyRawData_10 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lazyRawData_10), (void*)L_4);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = V_1;
|
|
V_0 = L_5;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = V_0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7;
|
|
L_7 = Helpers_CloneByteArray_m20B98BC0D8B620EF6A0DCD5F392F39A635DD0973(L_6, NULL);
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.X509Certificates.X509Certificate2::get_SerialNumber()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Certificate2_get_SerialNumber_m12F610EEBE485A29FD49A06E8A33BB690476309B (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0;
|
|
L_0 = VirtualFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Security.Cryptography.X509Certificates.X509Certificate::GetSerialNumberString() */, __this);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.Oid System.Security.Cryptography.X509Certificates.X509Certificate2::get_SignatureAlgorithm()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* X509Certificate2_get_SignatureAlgorithm_mF3FE8751A82E00E38E315EA893575D125F4F7354 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* V_0 = NULL;
|
|
String_t* V_1 = NULL;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* V_2 = NULL;
|
|
{
|
|
X509Certificate_ThrowIfInvalid_mCD48C7FC4B19DD27885F410FA3F5744F1D6AEB4F(__this, NULL);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_0 = __this->___lazySignatureAlgorithm_11;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_2;
|
|
L_2 = X509Certificate2_get_Impl_m21C56437F9DD096FA112C2DF07F04EB2E381015F(__this, NULL);
|
|
NullCheck(L_2);
|
|
String_t* L_3;
|
|
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Security.Cryptography.X509Certificates.X509Certificate2Impl::get_SignatureAlgorithm() */, L_2);
|
|
V_1 = L_3;
|
|
String_t* L_4 = V_1;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_5;
|
|
L_5 = Oid_FromOidValue_m44CB94625A6CFB2780CA8E50CF845801A1A6E18C(L_4, 4, NULL);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_6 = L_5;
|
|
V_2 = L_6;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___lazySignatureAlgorithm_11 = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lazySignatureAlgorithm_11), (void*)L_6);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_7 = V_2;
|
|
V_0 = L_7;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_8 = V_0;
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.X509Certificates.X500DistinguishedName System.Security.Cryptography.X509Certificates.X509Certificate2::get_SubjectName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* X509Certificate2_get_SubjectName_m0A767E93883BD9D984903B6753819CB7E02D90BC (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* V_0 = NULL;
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* V_1 = NULL;
|
|
{
|
|
X509Certificate_ThrowIfInvalid_mCD48C7FC4B19DD27885F410FA3F5744F1D6AEB4F(__this, NULL);
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_0 = __this->___lazySubjectName_13;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_2;
|
|
L_2 = X509Certificate2_get_Impl_m21C56437F9DD096FA112C2DF07F04EB2E381015F(__this, NULL);
|
|
NullCheck(L_2);
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_3;
|
|
L_3 = VirtualFuncInvoker0< X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* >::Invoke(27 /* System.Security.Cryptography.X509Certificates.X500DistinguishedName System.Security.Cryptography.X509Certificates.X509Certificate2Impl::get_SubjectName() */, L_2);
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_4 = L_3;
|
|
V_1 = L_4;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___lazySubjectName_13 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lazySubjectName_13), (void*)L_4);
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_5 = V_1;
|
|
V_0 = L_5;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.X509Certificates.X509Certificate2::get_Thumbprint()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Certificate2_get_Thumbprint_m0A33F62238AF002C1B93A0F93A361B890E61DE8C (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0;
|
|
L_0 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(11 /* System.Byte[] System.Security.Cryptography.X509Certificates.X509Certificate::GetCertHash() */, __this);
|
|
String_t* L_1;
|
|
L_1 = Helpers_ToHexStringUpper_m92299BB66BAF001988190B5FB46E655EA2F239DD(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509Certificate2::get_Version()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509Certificate2_get_Version_m6A4FB2125DA64437D184A64E731F2B58738F0B09 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
X509Certificate_ThrowIfInvalid_mCD48C7FC4B19DD27885F410FA3F5744F1D6AEB4F(__this, NULL);
|
|
int32_t L_0 = __this->___lazyVersion_12;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_2;
|
|
L_2 = X509Certificate2_get_Impl_m21C56437F9DD096FA112C2DF07F04EB2E381015F(__this, NULL);
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(28 /* System.Int32 System.Security.Cryptography.X509Certificates.X509Certificate2Impl::get_Version() */, L_2);
|
|
int32_t L_4 = L_3;
|
|
V_1 = L_4;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->___lazyVersion_12 = L_4;
|
|
int32_t L_5 = V_1;
|
|
V_0 = L_5;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
int32_t L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.X509Certificates.X509ContentType System.Security.Cryptography.X509Certificates.X509Certificate2::GetCertContentType(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509Certificate2_GetCertContentType_m8D232C26231C35597793EB5DE62EC7916417F652 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_rawData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_rawData;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_rawData;
|
|
NullCheck(L_1);
|
|
if ((((RuntimeArray*)L_1)->max_length))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral132FFD890F85A22361F8F5452AD7C9BFC9252A00)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2F395A8D1CC82D12EB0DFF52CAD1AD2C5FEFABF5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509Certificate2_GetCertContentType_m8D232C26231C35597793EB5DE62EC7916417F652_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* L_3;
|
|
L_3 = X509Pal_get_Instance_m2387001973EBEDE812568E43F8664427710BCE34(NULL);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_rawData;
|
|
NullCheck(L_3);
|
|
int32_t L_5;
|
|
L_5 = X509PalImpl_GetCertContentType_m41DC755893135DB1ACF78832BDAB201C46AC6F99(L_3, L_4, NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.X509Certificates.X509Certificate2::GetNameInfo(System.Security.Cryptography.X509Certificates.X509NameType,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Certificate2_GetNameInfo_mDFE32FF38933F2B9F652B27B1EA857AD463222DE (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, int32_t ___0_nameType, bool ___1_forIssuer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_0;
|
|
L_0 = X509Certificate2_get_Impl_m21C56437F9DD096FA112C2DF07F04EB2E381015F(__this, NULL);
|
|
int32_t L_1 = ___0_nameType;
|
|
bool L_2 = ___1_forIssuer;
|
|
NullCheck(L_0);
|
|
String_t* L_3;
|
|
L_3 = VirtualFuncInvoker2< String_t*, int32_t, bool >::Invoke(30 /* System.String System.Security.Cryptography.X509Certificates.X509Certificate2Impl::GetNameInfo(System.Security.Cryptography.X509Certificates.X509NameType,System.Boolean) */, L_0, L_1, L_2);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.X509Certificates.X509Certificate2::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Certificate2_ToString_mAC732FED5427D5551E2CC9B06C145128E7F6563B (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0;
|
|
L_0 = X509Certificate_ToString_mFD8466D64C9E560D070BD3F18B5AB90CDC03B0C2(__this, (bool)1, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.X509Certificates.X509Certificate2::ToString(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Certificate2_ToString_mA115124642674F646AF34E6B8E2FB54870026342 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, bool ___0_verbose, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0C101850CB061E1BB6D94F77CD3F8DA82C75EC81);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral15FB8A04339464F72B79BAF171F17EF1E153CA52);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24EB898A42E42969344D705A31CCD358E65A7EEE);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2FC0EF613300907019607E2257A0D3F14F991A88);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral448549AC92DB848819FB391C4948736870D5C8B9);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral471A0421D568E4DD8CD03A0D6C9C07E049A0F28D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral534B2C50A4C32C805A7518E7EF55CE34FA3B7206);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral629418F349D82DE758E15A5E414EB8B6D7D0EA82);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6397B9AB1173E22C838830BBE223E86651EC5616);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral67FFBCF3FB1E06FD45D5DC481186BD271AC07876);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral76434DD00817AB453961ACEB4690349A84112CAC);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral80CB653CFCFC0749586A32A97BFFFDC763490C7F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8B3D6A8E6A6FB71BEEDD3F405822DDA7F7242752);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA297A7AA79A55438F0CC01B72FE4690857AAE5A9);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBDCF9CD49677327D57173A9B2E45D69BC18739C4);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC441262836EA54C41EE2EB5378401CCBCB76078A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCB83235A9C2DA3EFD4C6485B1E23D07E614A03D9);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD1142A2FD7F69A4EF18F40F7D0E98508303A5407);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE11B99358771892EAF14FC34EE29DA70DA9B7FAB);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF1D283CB0FE48D03E5AE150ACBB742D2BBB0228D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFE9F7FDD06F90D487E6AA771E0B487139056D1DE);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringBuilder_t* V_0 = NULL;
|
|
String_t* V_1 = NULL;
|
|
String_t* V_2 = NULL;
|
|
String_t* V_3 = NULL;
|
|
String_t* V_4 = NULL;
|
|
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* V_5 = NULL;
|
|
PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* V_6 = NULL;
|
|
RSA_tDDE9BD4C9806074FA9B1C6A5C93523A97116F21A* V_7 = NULL;
|
|
X509ExtensionEnumerator_t7C4F4F5D65C7023FA1BEE3F6522B066A6CECCFF6* V_8 = NULL;
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* V_9 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 2> __active_exceptions;
|
|
{
|
|
bool L_0 = ___0_verbose;
|
|
if (!L_0)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
bool L_1;
|
|
L_1 = X509Certificate_get_IsValid_m7C4179F6E70ECAB514BF38417619C517AA3A8439(__this, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, __this);
|
|
return L_2;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
StringBuilder_t* L_3 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_3, NULL);
|
|
V_0 = L_3;
|
|
StringBuilder_t* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
StringBuilder_t* L_5;
|
|
L_5 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_4, _stringLiteral448549AC92DB848819FB391C4948736870D5C8B9, NULL);
|
|
StringBuilder_t* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
StringBuilder_t* L_7;
|
|
L_7 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_6, _stringLiteral471A0421D568E4DD8CD03A0D6C9C07E049A0F28D, NULL);
|
|
StringBuilder_t* L_8 = V_0;
|
|
int32_t L_9;
|
|
L_9 = X509Certificate2_get_Version_m6A4FB2125DA64437D184A64E731F2B58738F0B09(__this, NULL);
|
|
NullCheck(L_8);
|
|
StringBuilder_t* L_10;
|
|
L_10 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_8, L_9, NULL);
|
|
StringBuilder_t* L_11 = V_0;
|
|
NullCheck(L_11);
|
|
StringBuilder_t* L_12;
|
|
L_12 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_11, NULL);
|
|
StringBuilder_t* L_13 = V_0;
|
|
NullCheck(L_13);
|
|
StringBuilder_t* L_14;
|
|
L_14 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_13, NULL);
|
|
StringBuilder_t* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
StringBuilder_t* L_16;
|
|
L_16 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_15, _stringLiteralBDCF9CD49677327D57173A9B2E45D69BC18739C4, NULL);
|
|
StringBuilder_t* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
StringBuilder_t* L_18;
|
|
L_18 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_17, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_19 = V_0;
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_20;
|
|
L_20 = X509Certificate2_get_SubjectName_m0A767E93883BD9D984903B6753819CB7E02D90BC(__this, NULL);
|
|
NullCheck(L_20);
|
|
String_t* L_21;
|
|
L_21 = X500DistinguishedName_get_Name_m57B2708AAA2B4E15AB6F6B513D88C4468898B5A9_inline(L_20, NULL);
|
|
NullCheck(L_19);
|
|
StringBuilder_t* L_22;
|
|
L_22 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_19, L_21, NULL);
|
|
String_t* L_23;
|
|
L_23 = X509Certificate2_GetNameInfo_mDFE32FF38933F2B9F652B27B1EA857AD463222DE(__this, 0, (bool)0, NULL);
|
|
V_1 = L_23;
|
|
String_t* L_24 = V_1;
|
|
NullCheck(L_24);
|
|
int32_t L_25;
|
|
L_25 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_24, NULL);
|
|
if ((((int32_t)L_25) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00ae;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_26 = V_0;
|
|
NullCheck(L_26);
|
|
StringBuilder_t* L_27;
|
|
L_27 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_26, NULL);
|
|
StringBuilder_t* L_28 = V_0;
|
|
NullCheck(L_28);
|
|
StringBuilder_t* L_29;
|
|
L_29 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_28, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_30 = V_0;
|
|
NullCheck(L_30);
|
|
StringBuilder_t* L_31;
|
|
L_31 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_30, _stringLiteral24EB898A42E42969344D705A31CCD358E65A7EEE, NULL);
|
|
StringBuilder_t* L_32 = V_0;
|
|
String_t* L_33 = V_1;
|
|
NullCheck(L_32);
|
|
StringBuilder_t* L_34;
|
|
L_34 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_32, L_33, NULL);
|
|
}
|
|
|
|
IL_00ae:
|
|
{
|
|
String_t* L_35;
|
|
L_35 = X509Certificate2_GetNameInfo_mDFE32FF38933F2B9F652B27B1EA857AD463222DE(__this, 1, (bool)0, NULL);
|
|
V_2 = L_35;
|
|
String_t* L_36 = V_2;
|
|
NullCheck(L_36);
|
|
int32_t L_37;
|
|
L_37 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_36, NULL);
|
|
if ((((int32_t)L_37) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00e7;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_38 = V_0;
|
|
NullCheck(L_38);
|
|
StringBuilder_t* L_39;
|
|
L_39 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_38, NULL);
|
|
StringBuilder_t* L_40 = V_0;
|
|
NullCheck(L_40);
|
|
StringBuilder_t* L_41;
|
|
L_41 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_40, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_42 = V_0;
|
|
NullCheck(L_42);
|
|
StringBuilder_t* L_43;
|
|
L_43 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_42, _stringLiteral629418F349D82DE758E15A5E414EB8B6D7D0EA82, NULL);
|
|
StringBuilder_t* L_44 = V_0;
|
|
String_t* L_45 = V_2;
|
|
NullCheck(L_44);
|
|
StringBuilder_t* L_46;
|
|
L_46 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_44, L_45, NULL);
|
|
}
|
|
|
|
IL_00e7:
|
|
{
|
|
String_t* L_47;
|
|
L_47 = X509Certificate2_GetNameInfo_mDFE32FF38933F2B9F652B27B1EA857AD463222DE(__this, 2, (bool)0, NULL);
|
|
V_3 = L_47;
|
|
String_t* L_48 = V_3;
|
|
NullCheck(L_48);
|
|
int32_t L_49;
|
|
L_49 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_48, NULL);
|
|
if ((((int32_t)L_49) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0120;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_50 = V_0;
|
|
NullCheck(L_50);
|
|
StringBuilder_t* L_51;
|
|
L_51 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_50, NULL);
|
|
StringBuilder_t* L_52 = V_0;
|
|
NullCheck(L_52);
|
|
StringBuilder_t* L_53;
|
|
L_53 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_52, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_54 = V_0;
|
|
NullCheck(L_54);
|
|
StringBuilder_t* L_55;
|
|
L_55 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_54, _stringLiteral534B2C50A4C32C805A7518E7EF55CE34FA3B7206, NULL);
|
|
StringBuilder_t* L_56 = V_0;
|
|
String_t* L_57 = V_3;
|
|
NullCheck(L_56);
|
|
StringBuilder_t* L_58;
|
|
L_58 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_56, L_57, NULL);
|
|
}
|
|
|
|
IL_0120:
|
|
{
|
|
String_t* L_59;
|
|
L_59 = X509Certificate2_GetNameInfo_mDFE32FF38933F2B9F652B27B1EA857AD463222DE(__this, 3, (bool)0, NULL);
|
|
V_4 = L_59;
|
|
String_t* L_60 = V_4;
|
|
NullCheck(L_60);
|
|
int32_t L_61;
|
|
L_61 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_60, NULL);
|
|
if ((((int32_t)L_61) <= ((int32_t)0)))
|
|
{
|
|
goto IL_015c;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_62 = V_0;
|
|
NullCheck(L_62);
|
|
StringBuilder_t* L_63;
|
|
L_63 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_62, NULL);
|
|
StringBuilder_t* L_64 = V_0;
|
|
NullCheck(L_64);
|
|
StringBuilder_t* L_65;
|
|
L_65 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_64, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_66 = V_0;
|
|
NullCheck(L_66);
|
|
StringBuilder_t* L_67;
|
|
L_67 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_66, _stringLiteralF1D283CB0FE48D03E5AE150ACBB742D2BBB0228D, NULL);
|
|
StringBuilder_t* L_68 = V_0;
|
|
String_t* L_69 = V_4;
|
|
NullCheck(L_68);
|
|
StringBuilder_t* L_70;
|
|
L_70 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_68, L_69, NULL);
|
|
}
|
|
|
|
IL_015c:
|
|
{
|
|
StringBuilder_t* L_71 = V_0;
|
|
NullCheck(L_71);
|
|
StringBuilder_t* L_72;
|
|
L_72 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_71, NULL);
|
|
StringBuilder_t* L_73 = V_0;
|
|
NullCheck(L_73);
|
|
StringBuilder_t* L_74;
|
|
L_74 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_73, NULL);
|
|
StringBuilder_t* L_75 = V_0;
|
|
NullCheck(L_75);
|
|
StringBuilder_t* L_76;
|
|
L_76 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_75, _stringLiteralE11B99358771892EAF14FC34EE29DA70DA9B7FAB, NULL);
|
|
StringBuilder_t* L_77 = V_0;
|
|
NullCheck(L_77);
|
|
StringBuilder_t* L_78;
|
|
L_78 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_77, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_79 = V_0;
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_80;
|
|
L_80 = X509Certificate2_get_IssuerName_m47CB829F5388F2E68A20D473F586FA847739B83D(__this, NULL);
|
|
NullCheck(L_80);
|
|
String_t* L_81;
|
|
L_81 = X500DistinguishedName_get_Name_m57B2708AAA2B4E15AB6F6B513D88C4468898B5A9_inline(L_80, NULL);
|
|
NullCheck(L_79);
|
|
StringBuilder_t* L_82;
|
|
L_82 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_79, L_81, NULL);
|
|
String_t* L_83;
|
|
L_83 = X509Certificate2_GetNameInfo_mDFE32FF38933F2B9F652B27B1EA857AD463222DE(__this, 0, (bool)1, NULL);
|
|
V_1 = L_83;
|
|
String_t* L_84 = V_1;
|
|
NullCheck(L_84);
|
|
int32_t L_85;
|
|
L_85 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_84, NULL);
|
|
if ((((int32_t)L_85) <= ((int32_t)0)))
|
|
{
|
|
goto IL_01cd;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_86 = V_0;
|
|
NullCheck(L_86);
|
|
StringBuilder_t* L_87;
|
|
L_87 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_86, NULL);
|
|
StringBuilder_t* L_88 = V_0;
|
|
NullCheck(L_88);
|
|
StringBuilder_t* L_89;
|
|
L_89 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_88, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_90 = V_0;
|
|
NullCheck(L_90);
|
|
StringBuilder_t* L_91;
|
|
L_91 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_90, _stringLiteral24EB898A42E42969344D705A31CCD358E65A7EEE, NULL);
|
|
StringBuilder_t* L_92 = V_0;
|
|
String_t* L_93 = V_1;
|
|
NullCheck(L_92);
|
|
StringBuilder_t* L_94;
|
|
L_94 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_92, L_93, NULL);
|
|
}
|
|
|
|
IL_01cd:
|
|
{
|
|
String_t* L_95;
|
|
L_95 = X509Certificate2_GetNameInfo_mDFE32FF38933F2B9F652B27B1EA857AD463222DE(__this, 1, (bool)1, NULL);
|
|
V_2 = L_95;
|
|
String_t* L_96 = V_2;
|
|
NullCheck(L_96);
|
|
int32_t L_97;
|
|
L_97 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_96, NULL);
|
|
if ((((int32_t)L_97) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0206;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_98 = V_0;
|
|
NullCheck(L_98);
|
|
StringBuilder_t* L_99;
|
|
L_99 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_98, NULL);
|
|
StringBuilder_t* L_100 = V_0;
|
|
NullCheck(L_100);
|
|
StringBuilder_t* L_101;
|
|
L_101 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_100, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_102 = V_0;
|
|
NullCheck(L_102);
|
|
StringBuilder_t* L_103;
|
|
L_103 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_102, _stringLiteral629418F349D82DE758E15A5E414EB8B6D7D0EA82, NULL);
|
|
StringBuilder_t* L_104 = V_0;
|
|
String_t* L_105 = V_2;
|
|
NullCheck(L_104);
|
|
StringBuilder_t* L_106;
|
|
L_106 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_104, L_105, NULL);
|
|
}
|
|
|
|
IL_0206:
|
|
{
|
|
String_t* L_107;
|
|
L_107 = X509Certificate2_GetNameInfo_mDFE32FF38933F2B9F652B27B1EA857AD463222DE(__this, 2, (bool)1, NULL);
|
|
V_3 = L_107;
|
|
String_t* L_108 = V_3;
|
|
NullCheck(L_108);
|
|
int32_t L_109;
|
|
L_109 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_108, NULL);
|
|
if ((((int32_t)L_109) <= ((int32_t)0)))
|
|
{
|
|
goto IL_023f;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_110 = V_0;
|
|
NullCheck(L_110);
|
|
StringBuilder_t* L_111;
|
|
L_111 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_110, NULL);
|
|
StringBuilder_t* L_112 = V_0;
|
|
NullCheck(L_112);
|
|
StringBuilder_t* L_113;
|
|
L_113 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_112, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_114 = V_0;
|
|
NullCheck(L_114);
|
|
StringBuilder_t* L_115;
|
|
L_115 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_114, _stringLiteral534B2C50A4C32C805A7518E7EF55CE34FA3B7206, NULL);
|
|
StringBuilder_t* L_116 = V_0;
|
|
String_t* L_117 = V_3;
|
|
NullCheck(L_116);
|
|
StringBuilder_t* L_118;
|
|
L_118 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_116, L_117, NULL);
|
|
}
|
|
|
|
IL_023f:
|
|
{
|
|
String_t* L_119;
|
|
L_119 = X509Certificate2_GetNameInfo_mDFE32FF38933F2B9F652B27B1EA857AD463222DE(__this, 3, (bool)1, NULL);
|
|
V_4 = L_119;
|
|
String_t* L_120 = V_4;
|
|
NullCheck(L_120);
|
|
int32_t L_121;
|
|
L_121 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_120, NULL);
|
|
if ((((int32_t)L_121) <= ((int32_t)0)))
|
|
{
|
|
goto IL_027b;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_122 = V_0;
|
|
NullCheck(L_122);
|
|
StringBuilder_t* L_123;
|
|
L_123 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_122, NULL);
|
|
StringBuilder_t* L_124 = V_0;
|
|
NullCheck(L_124);
|
|
StringBuilder_t* L_125;
|
|
L_125 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_124, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_126 = V_0;
|
|
NullCheck(L_126);
|
|
StringBuilder_t* L_127;
|
|
L_127 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_126, _stringLiteralF1D283CB0FE48D03E5AE150ACBB742D2BBB0228D, NULL);
|
|
StringBuilder_t* L_128 = V_0;
|
|
String_t* L_129 = V_4;
|
|
NullCheck(L_128);
|
|
StringBuilder_t* L_130;
|
|
L_130 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_128, L_129, NULL);
|
|
}
|
|
|
|
IL_027b:
|
|
{
|
|
StringBuilder_t* L_131 = V_0;
|
|
NullCheck(L_131);
|
|
StringBuilder_t* L_132;
|
|
L_132 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_131, NULL);
|
|
StringBuilder_t* L_133 = V_0;
|
|
NullCheck(L_133);
|
|
StringBuilder_t* L_134;
|
|
L_134 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_133, NULL);
|
|
StringBuilder_t* L_135 = V_0;
|
|
NullCheck(L_135);
|
|
StringBuilder_t* L_136;
|
|
L_136 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_135, _stringLiteralC441262836EA54C41EE2EB5378401CCBCB76078A, NULL);
|
|
StringBuilder_t* L_137 = V_0;
|
|
NullCheck(L_137);
|
|
StringBuilder_t* L_138;
|
|
L_138 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_137, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_139 = V_0;
|
|
String_t* L_140;
|
|
L_140 = X509Certificate2_get_SerialNumber_m12F610EEBE485A29FD49A06E8A33BB690476309B(__this, NULL);
|
|
NullCheck(L_139);
|
|
StringBuilder_t* L_141;
|
|
L_141 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_139, L_140, NULL);
|
|
StringBuilder_t* L_142 = V_0;
|
|
NullCheck(L_142);
|
|
StringBuilder_t* L_143;
|
|
L_143 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_142, NULL);
|
|
StringBuilder_t* L_144 = V_0;
|
|
NullCheck(L_144);
|
|
StringBuilder_t* L_145;
|
|
L_145 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_144, _stringLiteralFE9F7FDD06F90D487E6AA771E0B487139056D1DE, NULL);
|
|
StringBuilder_t* L_146 = V_0;
|
|
NullCheck(L_146);
|
|
StringBuilder_t* L_147;
|
|
L_147 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_146, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_148 = V_0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_149;
|
|
L_149 = X509Certificate2_get_NotBefore_m656CC9913A0E6F6F0C06185F3B63F3A2EDCEB801(__this, NULL);
|
|
String_t* L_150;
|
|
L_150 = X509Certificate_FormatDate_m92BA85C1E5BDA937F6CD97E84B224F16AD9EAA8F(L_149, NULL);
|
|
NullCheck(L_148);
|
|
StringBuilder_t* L_151;
|
|
L_151 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_148, L_150, NULL);
|
|
StringBuilder_t* L_152 = V_0;
|
|
NullCheck(L_152);
|
|
StringBuilder_t* L_153;
|
|
L_153 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_152, NULL);
|
|
StringBuilder_t* L_154 = V_0;
|
|
NullCheck(L_154);
|
|
StringBuilder_t* L_155;
|
|
L_155 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_154, _stringLiteralD1142A2FD7F69A4EF18F40F7D0E98508303A5407, NULL);
|
|
StringBuilder_t* L_156 = V_0;
|
|
NullCheck(L_156);
|
|
StringBuilder_t* L_157;
|
|
L_157 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_156, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_158 = V_0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_159;
|
|
L_159 = X509Certificate2_get_NotAfter_m925CA3901B7856D0692C6DED4F6428A40A726787(__this, NULL);
|
|
String_t* L_160;
|
|
L_160 = X509Certificate_FormatDate_m92BA85C1E5BDA937F6CD97E84B224F16AD9EAA8F(L_159, NULL);
|
|
NullCheck(L_158);
|
|
StringBuilder_t* L_161;
|
|
L_161 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_158, L_160, NULL);
|
|
StringBuilder_t* L_162 = V_0;
|
|
NullCheck(L_162);
|
|
StringBuilder_t* L_163;
|
|
L_163 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_162, NULL);
|
|
StringBuilder_t* L_164 = V_0;
|
|
NullCheck(L_164);
|
|
StringBuilder_t* L_165;
|
|
L_165 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_164, _stringLiteralA297A7AA79A55438F0CC01B72FE4690857AAE5A9, NULL);
|
|
StringBuilder_t* L_166 = V_0;
|
|
NullCheck(L_166);
|
|
StringBuilder_t* L_167;
|
|
L_167 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_166, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_168 = V_0;
|
|
String_t* L_169;
|
|
L_169 = X509Certificate2_get_Thumbprint_m0A33F62238AF002C1B93A0F93A361B890E61DE8C(__this, NULL);
|
|
NullCheck(L_168);
|
|
StringBuilder_t* L_170;
|
|
L_170 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_168, L_169, NULL);
|
|
StringBuilder_t* L_171 = V_0;
|
|
NullCheck(L_171);
|
|
StringBuilder_t* L_172;
|
|
L_172 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_171, NULL);
|
|
StringBuilder_t* L_173 = V_0;
|
|
NullCheck(L_173);
|
|
StringBuilder_t* L_174;
|
|
L_174 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_173, _stringLiteral76434DD00817AB453961ACEB4690349A84112CAC, NULL);
|
|
StringBuilder_t* L_175 = V_0;
|
|
NullCheck(L_175);
|
|
StringBuilder_t* L_176;
|
|
L_176 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_175, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_177 = V_0;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_178;
|
|
L_178 = X509Certificate2_get_SignatureAlgorithm_mF3FE8751A82E00E38E315EA893575D125F4F7354(__this, NULL);
|
|
NullCheck(L_178);
|
|
String_t* L_179;
|
|
L_179 = Oid_get_FriendlyName_m1B7B5D80B6B533A33DAB2B28DCD0B53927D1BD17(L_178, NULL);
|
|
NullCheck(L_177);
|
|
StringBuilder_t* L_180;
|
|
L_180 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_177, L_179, NULL);
|
|
StringBuilder_t* L_181 = V_0;
|
|
NullCheck(L_181);
|
|
StringBuilder_t* L_182;
|
|
L_182 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_181, ((int32_t)40), NULL);
|
|
StringBuilder_t* L_183 = V_0;
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_184;
|
|
L_184 = X509Certificate2_get_SignatureAlgorithm_mF3FE8751A82E00E38E315EA893575D125F4F7354(__this, NULL);
|
|
NullCheck(L_184);
|
|
String_t* L_185;
|
|
L_185 = Oid_get_Value_m59D678A83ED4DE7D87FB7450C8CF4084DB506FD3_inline(L_184, NULL);
|
|
NullCheck(L_183);
|
|
StringBuilder_t* L_186;
|
|
L_186 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_183, L_185, NULL);
|
|
StringBuilder_t* L_187 = V_0;
|
|
NullCheck(L_187);
|
|
StringBuilder_t* L_188;
|
|
L_188 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_187, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D, NULL);
|
|
StringBuilder_t* L_189 = V_0;
|
|
NullCheck(L_189);
|
|
StringBuilder_t* L_190;
|
|
L_190 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_189, NULL);
|
|
StringBuilder_t* L_191 = V_0;
|
|
NullCheck(L_191);
|
|
StringBuilder_t* L_192;
|
|
L_192 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_191, _stringLiteral8B3D6A8E6A6FB71BEEDD3F405822DDA7F7242752, NULL);
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* L_193;
|
|
L_193 = X509Certificate2_get_PublicKey_mF1813BEE1EE04C593FBAA44590E2AEBC23A72304(__this, NULL);
|
|
V_6 = L_193;
|
|
StringBuilder_t* L_194 = V_0;
|
|
NullCheck(L_194);
|
|
StringBuilder_t* L_195;
|
|
L_195 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_194, NULL);
|
|
StringBuilder_t* L_196 = V_0;
|
|
NullCheck(L_196);
|
|
StringBuilder_t* L_197;
|
|
L_197 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_196, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_198 = V_0;
|
|
NullCheck(L_198);
|
|
StringBuilder_t* L_199;
|
|
L_199 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_198, _stringLiteral0C101850CB061E1BB6D94F77CD3F8DA82C75EC81, NULL);
|
|
StringBuilder_t* L_200 = V_0;
|
|
PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* L_201 = V_6;
|
|
NullCheck(L_201);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_202;
|
|
L_202 = PublicKey_get_Oid_mB5796F569C136759CB740F747C6A3B6F8976401A_inline(L_201, NULL);
|
|
NullCheck(L_202);
|
|
String_t* L_203;
|
|
L_203 = Oid_get_FriendlyName_m1B7B5D80B6B533A33DAB2B28DCD0B53927D1BD17(L_202, NULL);
|
|
NullCheck(L_200);
|
|
StringBuilder_t* L_204;
|
|
L_204 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_200, L_203, NULL);
|
|
}
|
|
try
|
|
{// begin try (depth: 2)
|
|
{
|
|
StringBuilder_t* L_205 = V_0;
|
|
NullCheck(L_205);
|
|
StringBuilder_t* L_206;
|
|
L_206 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_205, NULL);
|
|
StringBuilder_t* L_207 = V_0;
|
|
NullCheck(L_207);
|
|
StringBuilder_t* L_208;
|
|
L_208 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_207, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_209 = V_0;
|
|
NullCheck(L_209);
|
|
StringBuilder_t* L_210;
|
|
L_210 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_209, _stringLiteral6397B9AB1173E22C838830BBE223E86651EC5616, NULL);
|
|
RSA_tDDE9BD4C9806074FA9B1C6A5C93523A97116F21A* L_211;
|
|
L_211 = RSACertificateExtensions_GetRSAPublicKey_m8DDF940D409724E136FD6E36146F4E481DC07B54(__this, NULL);
|
|
V_7 = L_211;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_041c_2:
|
|
{// begin finally (depth: 3)
|
|
{
|
|
RSA_tDDE9BD4C9806074FA9B1C6A5C93523A97116F21A* L_212 = V_7;
|
|
if (!L_212)
|
|
{
|
|
goto IL_0427_2;
|
|
}
|
|
}
|
|
{
|
|
RSA_tDDE9BD4C9806074FA9B1C6A5C93523A97116F21A* L_213 = V_7;
|
|
NullCheck(L_213);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_213);
|
|
}
|
|
|
|
IL_0427_2:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 3)
|
|
});
|
|
try
|
|
{// begin try (depth: 3)
|
|
{
|
|
RSA_tDDE9BD4C9806074FA9B1C6A5C93523A97116F21A* L_214 = V_7;
|
|
if (!L_214)
|
|
{
|
|
goto IL_041a_3;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_215 = V_0;
|
|
RSA_tDDE9BD4C9806074FA9B1C6A5C93523A97116F21A* L_216 = V_7;
|
|
NullCheck(L_216);
|
|
int32_t L_217;
|
|
L_217 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Security.Cryptography.AsymmetricAlgorithm::get_KeySize() */, L_216);
|
|
NullCheck(L_215);
|
|
StringBuilder_t* L_218;
|
|
L_218 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_215, L_217, NULL);
|
|
}
|
|
|
|
IL_041a_3:
|
|
{
|
|
goto IL_0428_2;
|
|
}
|
|
}// end try (depth: 3)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0428_2:
|
|
{
|
|
goto IL_042d_1;
|
|
}
|
|
}// end try (depth: 2)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_042a_1;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_042a_1:
|
|
{// begin catch(System.NotSupportedException)
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_219 = ((NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)IL2CPP_GET_ACTIVE_EXCEPTION(NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*));;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_042d_1;
|
|
}// end catch (depth: 2)
|
|
|
|
IL_042d_1:
|
|
{
|
|
StringBuilder_t* L_220 = V_0;
|
|
NullCheck(L_220);
|
|
StringBuilder_t* L_221;
|
|
L_221 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_220, NULL);
|
|
StringBuilder_t* L_222 = V_0;
|
|
NullCheck(L_222);
|
|
StringBuilder_t* L_223;
|
|
L_223 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_222, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_224 = V_0;
|
|
NullCheck(L_224);
|
|
StringBuilder_t* L_225;
|
|
L_225 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_224, _stringLiteral67FFBCF3FB1E06FD45D5DC481186BD271AC07876, NULL);
|
|
StringBuilder_t* L_226 = V_0;
|
|
PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* L_227 = V_6;
|
|
NullCheck(L_227);
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_228;
|
|
L_228 = PublicKey_get_EncodedKeyValue_m153EF781728D471C55002A40BBDA435F1B3A1213_inline(L_227, NULL);
|
|
NullCheck(L_228);
|
|
String_t* L_229;
|
|
L_229 = VirtualFuncInvoker1< String_t*, bool >::Invoke(5 /* System.String System.Security.Cryptography.AsnEncodedData::Format(System.Boolean) */, L_228, (bool)1);
|
|
NullCheck(L_226);
|
|
StringBuilder_t* L_230;
|
|
L_230 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_226, L_229, NULL);
|
|
StringBuilder_t* L_231 = V_0;
|
|
NullCheck(L_231);
|
|
StringBuilder_t* L_232;
|
|
L_232 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_231, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_233 = V_0;
|
|
NullCheck(L_233);
|
|
StringBuilder_t* L_234;
|
|
L_234 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_233, _stringLiteral80CB653CFCFC0749586A32A97BFFFDC763490C7F, NULL);
|
|
StringBuilder_t* L_235 = V_0;
|
|
PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* L_236 = V_6;
|
|
NullCheck(L_236);
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_237;
|
|
L_237 = PublicKey_get_EncodedParameters_mE338A4A69A15907E38A644D624A07DDD55C521E0_inline(L_236, NULL);
|
|
NullCheck(L_237);
|
|
String_t* L_238;
|
|
L_238 = VirtualFuncInvoker1< String_t*, bool >::Invoke(5 /* System.String System.Security.Cryptography.AsnEncodedData::Format(System.Boolean) */, L_237, (bool)1);
|
|
NullCheck(L_235);
|
|
StringBuilder_t* L_239;
|
|
L_239 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_235, L_238, NULL);
|
|
goto IL_0491;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_048e;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_048e:
|
|
{// begin catch(System.Security.Cryptography.CryptographicException)
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_240 = ((CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)IL2CPP_GET_ACTIVE_EXCEPTION(CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*));;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0491;
|
|
}// end catch (depth: 1)
|
|
|
|
IL_0491:
|
|
{
|
|
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_241;
|
|
L_241 = X509Certificate2_get_Impl_m21C56437F9DD096FA112C2DF07F04EB2E381015F(__this, NULL);
|
|
StringBuilder_t* L_242 = V_0;
|
|
NullCheck(L_241);
|
|
VirtualActionInvoker1< StringBuilder_t* >::Invoke(32 /* System.Void System.Security.Cryptography.X509Certificates.X509Certificate2Impl::AppendPrivateKeyInfo(System.Text.StringBuilder) */, L_241, L_242);
|
|
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* L_243;
|
|
L_243 = X509Certificate2_get_Extensions_m3746E7EB004789DF5AF56AD36209676860901579(__this, NULL);
|
|
V_5 = L_243;
|
|
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* L_244 = V_5;
|
|
NullCheck(L_244);
|
|
int32_t L_245;
|
|
L_245 = X509ExtensionCollection_get_Count_m2708E6751246E4E5E64BAE8A99FEC79CFD61E9A1(L_244, NULL);
|
|
if ((((int32_t)L_245) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0561;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_246 = V_0;
|
|
NullCheck(L_246);
|
|
StringBuilder_t* L_247;
|
|
L_247 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_246, NULL);
|
|
StringBuilder_t* L_248 = V_0;
|
|
NullCheck(L_248);
|
|
StringBuilder_t* L_249;
|
|
L_249 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_248, NULL);
|
|
StringBuilder_t* L_250 = V_0;
|
|
NullCheck(L_250);
|
|
StringBuilder_t* L_251;
|
|
L_251 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_250, _stringLiteralCB83235A9C2DA3EFD4C6485B1E23D07E614A03D9, NULL);
|
|
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* L_252 = V_5;
|
|
NullCheck(L_252);
|
|
X509ExtensionEnumerator_t7C4F4F5D65C7023FA1BEE3F6522B066A6CECCFF6* L_253;
|
|
L_253 = X509ExtensionCollection_GetEnumerator_m7F4BDDDF50FD335D3F6A2AB490221D27524BD0BF(L_252, NULL);
|
|
V_8 = L_253;
|
|
goto IL_0555;
|
|
}
|
|
|
|
IL_04d7:
|
|
{
|
|
X509ExtensionEnumerator_t7C4F4F5D65C7023FA1BEE3F6522B066A6CECCFF6* L_254 = V_8;
|
|
NullCheck(L_254);
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_255;
|
|
L_255 = X509ExtensionEnumerator_get_Current_m6057D68B2D7750669A51630A1561FCE7F597E232(L_254, NULL);
|
|
V_9 = L_255;
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
StringBuilder_t* L_256 = V_0;
|
|
NullCheck(L_256);
|
|
StringBuilder_t* L_257;
|
|
L_257 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_256, NULL);
|
|
StringBuilder_t* L_258 = V_0;
|
|
NullCheck(L_258);
|
|
StringBuilder_t* L_259;
|
|
L_259 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_258, _stringLiteral15FB8A04339464F72B79BAF171F17EF1E153CA52, NULL);
|
|
StringBuilder_t* L_260 = V_0;
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_261 = V_9;
|
|
NullCheck(L_261);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_262;
|
|
L_262 = AsnEncodedData_get_Oid_mBDB4803B2ADEE3BD40596E82FF738C2DC339BC28_inline(L_261, NULL);
|
|
NullCheck(L_262);
|
|
String_t* L_263;
|
|
L_263 = Oid_get_FriendlyName_m1B7B5D80B6B533A33DAB2B28DCD0B53927D1BD17(L_262, NULL);
|
|
NullCheck(L_260);
|
|
StringBuilder_t* L_264;
|
|
L_264 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_260, L_263, NULL);
|
|
StringBuilder_t* L_265 = V_0;
|
|
NullCheck(L_265);
|
|
StringBuilder_t* L_266;
|
|
L_266 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_265, ((int32_t)40), NULL);
|
|
StringBuilder_t* L_267 = V_0;
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_268 = V_9;
|
|
NullCheck(L_268);
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_269;
|
|
L_269 = AsnEncodedData_get_Oid_mBDB4803B2ADEE3BD40596E82FF738C2DC339BC28_inline(L_268, NULL);
|
|
NullCheck(L_269);
|
|
String_t* L_270;
|
|
L_270 = Oid_get_Value_m59D678A83ED4DE7D87FB7450C8CF4084DB506FD3_inline(L_269, NULL);
|
|
NullCheck(L_267);
|
|
StringBuilder_t* L_271;
|
|
L_271 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_267, L_270, NULL);
|
|
StringBuilder_t* L_272 = V_0;
|
|
NullCheck(L_272);
|
|
StringBuilder_t* L_273;
|
|
L_273 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_272, _stringLiteral2FC0EF613300907019607E2257A0D3F14F991A88, NULL);
|
|
StringBuilder_t* L_274 = V_0;
|
|
NullCheck(L_274);
|
|
StringBuilder_t* L_275;
|
|
L_275 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_274, NULL);
|
|
StringBuilder_t* L_276 = V_0;
|
|
NullCheck(L_276);
|
|
StringBuilder_t* L_277;
|
|
L_277 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_276, _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA, NULL);
|
|
StringBuilder_t* L_278 = V_0;
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_279 = V_9;
|
|
NullCheck(L_279);
|
|
String_t* L_280;
|
|
L_280 = VirtualFuncInvoker1< String_t*, bool >::Invoke(5 /* System.String System.Security.Cryptography.AsnEncodedData::Format(System.Boolean) */, L_279, (bool)1);
|
|
NullCheck(L_278);
|
|
StringBuilder_t* L_281;
|
|
L_281 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_278, L_280, NULL);
|
|
goto IL_0555;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0552;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0552:
|
|
{// begin catch(System.Security.Cryptography.CryptographicException)
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_282 = ((CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)IL2CPP_GET_ACTIVE_EXCEPTION(CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*));;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0555;
|
|
}// end catch (depth: 1)
|
|
|
|
IL_0555:
|
|
{
|
|
X509ExtensionEnumerator_t7C4F4F5D65C7023FA1BEE3F6522B066A6CECCFF6* L_283 = V_8;
|
|
NullCheck(L_283);
|
|
bool L_284;
|
|
L_284 = X509ExtensionEnumerator_MoveNext_mDCF343DCC4699DFB3D6E72D84AF8A6C11AB247C3(L_283, NULL);
|
|
if (L_284)
|
|
{
|
|
goto IL_04d7;
|
|
}
|
|
}
|
|
|
|
IL_0561:
|
|
{
|
|
StringBuilder_t* L_285 = V_0;
|
|
NullCheck(L_285);
|
|
StringBuilder_t* L_286;
|
|
L_286 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_285, NULL);
|
|
StringBuilder_t* L_287 = V_0;
|
|
NullCheck(L_287);
|
|
String_t* L_288;
|
|
L_288 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_287);
|
|
return L_288;
|
|
}
|
|
}
|
|
// System.Boolean System.Security.Cryptography.X509Certificates.X509Certificate2::Verify()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509Certificate2_Verify_m5BDB9791EDBA2F518184D4AFC2FD1B656F4C4591 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_0;
|
|
L_0 = X509Certificate2_get_Impl_m21C56437F9DD096FA112C2DF07F04EB2E381015F(__this, NULL);
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = VirtualFuncInvoker1< bool, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* >::Invoke(31 /* System.Boolean System.Security.Cryptography.X509Certificates.X509Certificate2Impl::Verify(System.Security.Cryptography.X509Certificates.X509Certificate2) */, L_0, __this);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.X509Certificates.X509Extension System.Security.Cryptography.X509Certificates.X509Certificate2::CreateCustomExtensionIfAny(System.Security.Cryptography.Oid)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* X509Certificate2_CreateCustomExtensionIfAny_m2E709C9C8557610C4D8E5DDC182639669BA54A67 (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* ___0_oid, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509EnhancedKeyUsageExtension_t237A41510BAC916B5FFC67B464E1D38980D70BFF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5EDC47BC71D706BB11343CC890323569C143CD50);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral679FCCE821810305888489853F35D2FC75A8AE7A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral830B64B4254C502C612E53C83DBEE6238E710499);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDEB31152738116748FADCEF38CE0C9964DACCF2F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_0 = ___0_oid;
|
|
NullCheck(L_0);
|
|
String_t* L_1;
|
|
L_1 = Oid_get_Value_m59D678A83ED4DE7D87FB7450C8CF4084DB506FD3_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
String_t* L_2 = V_0;
|
|
bool L_3;
|
|
L_3 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_2, _stringLiteral679FCCE821810305888489853F35D2FC75A8AE7A, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_4 = V_0;
|
|
bool L_5;
|
|
L_5 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_4, _stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA, NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_6 = V_0;
|
|
bool L_7;
|
|
L_7 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_6, _stringLiteralDEB31152738116748FADCEF38CE0C9964DACCF2F, NULL);
|
|
if (L_7)
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_8 = V_0;
|
|
bool L_9;
|
|
L_9 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_8, _stringLiteral5EDC47BC71D706BB11343CC890323569C143CD50, NULL);
|
|
if (L_9)
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_10 = V_0;
|
|
bool L_11;
|
|
L_11 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_10, _stringLiteral830B64B4254C502C612E53C83DBEE6238E710499, NULL);
|
|
if (L_11)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0076;
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* L_12;
|
|
L_12 = X509Pal_get_Instance_m2387001973EBEDE812568E43F8664427710BCE34(NULL);
|
|
NullCheck(L_12);
|
|
bool L_13;
|
|
L_13 = X509PalImpl_get_SupportsLegacyBasicConstraintsExtension_mA7FF5FA4ABFF9B8A028FD3937636C6E4D7AE2F38(L_12, NULL);
|
|
if (L_13)
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
return (X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5*)NULL;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35* L_14 = (X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35*)il2cpp_codegen_object_new(X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35_il2cpp_TypeInfo_var);
|
|
NullCheck(L_14);
|
|
X509BasicConstraintsExtension__ctor_m672BE9B41107A8C30454BF4CAC120D70512BA89A(L_14, NULL);
|
|
return L_14;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35* L_15 = (X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35*)il2cpp_codegen_object_new(X509BasicConstraintsExtension_t8CC04BD96EBD61494CC89A3272DDBB5F0B3B8A35_il2cpp_TypeInfo_var);
|
|
NullCheck(L_15);
|
|
X509BasicConstraintsExtension__ctor_m672BE9B41107A8C30454BF4CAC120D70512BA89A(L_15, NULL);
|
|
return L_15;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B* L_16 = (X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B*)il2cpp_codegen_object_new(X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_16);
|
|
X509KeyUsageExtension__ctor_mE0EE68497EDEDD78213EEDC931D68DD35DF6340C(L_16, NULL);
|
|
return L_16;
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
X509EnhancedKeyUsageExtension_t237A41510BAC916B5FFC67B464E1D38980D70BFF* L_17 = (X509EnhancedKeyUsageExtension_t237A41510BAC916B5FFC67B464E1D38980D70BFF*)il2cpp_codegen_object_new(X509EnhancedKeyUsageExtension_t237A41510BAC916B5FFC67B464E1D38980D70BFF_il2cpp_TypeInfo_var);
|
|
NullCheck(L_17);
|
|
X509EnhancedKeyUsageExtension__ctor_m7ECF7F6EEB96855182FD5466A04B4712B3F4C746(L_17, NULL);
|
|
return L_17;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5* L_18 = (X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5*)il2cpp_codegen_object_new(X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5_il2cpp_TypeInfo_var);
|
|
NullCheck(L_18);
|
|
X509SubjectKeyIdentifierExtension__ctor_mFC2A19B1301ABBA5F6C5CE407ABC4F4CA1EB49B1(L_18, NULL);
|
|
return L_18;
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
return (X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5*)NULL;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl System.Security.Cryptography.X509Certificates.X509Certificate2::get_Impl()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* X509Certificate2_get_Impl_m21C56437F9DD096FA112C2DF07F04EB2E381015F (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* L_0;
|
|
L_0 = X509Certificate_get_Impl_m567BEB584A388821259EB9BBBB5B90B6182CC99D_inline(__this, NULL);
|
|
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_1 = ((X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25*)IsInstClass((RuntimeObject*)L_0, X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25_il2cpp_TypeInfo_var));
|
|
X509Helper_ThrowIfContextInvalid_m925EF739507BA9738AFE65C6382DF6D832C30588(L_1, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2Collection::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2Collection__ctor_mC7A17C695E7DB906D549A0BF60943D2490F4C2B9 (X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
X509CertificateCollection__ctor_m237A27DC157785FBC50EBAF3562AAF0907BF97EB(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2Collection::.ctor(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2Collection__ctor_mD3765F49CF526B51256B004DDA856A291EFEF74C (X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* __this, X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* ___0_certificates, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
X509CertificateCollection__ctor_m237A27DC157785FBC50EBAF3562AAF0907BF97EB(__this, NULL);
|
|
X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* L_0 = ___0_certificates;
|
|
X509Certificate2Collection_AddRange_m764C331A677795DCA45A496DF9752B58F2FDA2A8(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2 System.Security.Cryptography.X509Certificates.X509Certificate2Collection::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* X509Certificate2Collection_get_Item_m46D8DA4B824642F03A2E448CB52AB591850DE9C4 (X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC6F79988FD2BDBA6A0518B070DC366C3276EDD71)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509Certificate2Collection_get_Item_m46D8DA4B824642F03A2E448CB52AB591850DE9C4_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = ___0_index;
|
|
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3;
|
|
L_3 = CollectionBase_get_InnerList_mD37144662A9045A5CA82681C265719733934DEAB_inline(__this, NULL);
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_3);
|
|
if ((((int32_t)L_2) < ((int32_t)L_4)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_5);
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0E35CEDB261B03F58C24890C7C57413AD1203C92)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509Certificate2Collection_get_Item_m46D8DA4B824642F03A2E448CB52AB591850DE9C4_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_6;
|
|
L_6 = CollectionBase_get_InnerList_mD37144662A9045A5CA82681C265719733934DEAB_inline(__this, NULL);
|
|
int32_t L_7 = ___0_index;
|
|
NullCheck(L_6);
|
|
RuntimeObject* L_8;
|
|
L_8 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_6, L_7);
|
|
return ((X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D*)CastclassClass((RuntimeObject*)L_8, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D_il2cpp_TypeInfo_var));
|
|
}
|
|
}
|
|
// System.Int32 System.Security.Cryptography.X509Certificates.X509Certificate2Collection::Add(System.Security.Cryptography.X509Certificates.X509Certificate2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509Certificate2Collection_Add_m6C2C142C7BF143E83388F8793A64890F44996ABB (X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* __this, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* ___0_certificate, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_0 = ___0_certificate;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral166FD5D9AC48273934F85807614240038752C109)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509Certificate2Collection_Add_m6C2C142C7BF143E83388F8793A64890F44996ABB_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_2;
|
|
L_2 = CollectionBase_get_InnerList_mD37144662A9045A5CA82681C265719733934DEAB_inline(__this, NULL);
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_3 = ___0_certificate;
|
|
NullCheck(L_2);
|
|
int32_t L_4;
|
|
L_4 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2Collection::AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2Collection_AddRange_m764C331A677795DCA45A496DF9752B58F2FDA2A8 (X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* __this, X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* ___0_certificates, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* L_0 = ___0_certificates;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB764975C73BFA882AF2146869B213BBDDF06F6E4)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509Certificate2Collection_AddRange_m764C331A677795DCA45A496DF9752B58F2FDA2A8_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_2;
|
|
L_2 = CollectionBase_get_InnerList_mD37144662A9045A5CA82681C265719733934DEAB_inline(__this, NULL);
|
|
X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* L_3 = ___0_certificates;
|
|
NullCheck(L_2);
|
|
VirtualActionInvoker1< RuntimeObject* >::Invoke(30 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_2, L_3);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.Security.Cryptography.X509Certificates.X509Certificate2Collection::Contains(System.Security.Cryptography.X509Certificates.X509Certificate2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509Certificate2Collection_Contains_m71ADE296B2581756ED2484BC42CB4D51A9172688 (X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* __this, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* ___0_certificate, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
RuntimeObject* V_2 = NULL;
|
|
{
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_0 = ___0_certificate;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral166FD5D9AC48273934F85807614240038752C109)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509Certificate2Collection_Contains_m71ADE296B2581756ED2484BC42CB4D51A9172688_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_2;
|
|
L_2 = CollectionBase_get_InnerList_mD37144662A9045A5CA82681C265719733934DEAB_inline(__this, NULL);
|
|
NullCheck(L_2);
|
|
RuntimeObject* L_3;
|
|
L_3 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_2);
|
|
V_0 = L_3;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003d:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_6 = V_2;
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6);
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_0033_1;
|
|
}
|
|
|
|
IL_001c_1:
|
|
{
|
|
RuntimeObject* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
RuntimeObject* L_8;
|
|
L_8 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_7);
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_9 = ___0_certificate;
|
|
NullCheck(((X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D*)CastclassClass((RuntimeObject*)L_8, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D_il2cpp_TypeInfo_var)));
|
|
bool L_10;
|
|
L_10 = VirtualFuncInvoker1< bool, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* >::Invoke(9 /* System.Boolean System.Security.Cryptography.X509Certificates.X509Certificate::Equals(System.Security.Cryptography.X509Certificates.X509Certificate) */, ((X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D*)CastclassClass((RuntimeObject*)L_8, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D_il2cpp_TypeInfo_var)), L_9);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0033_1;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)1;
|
|
goto IL_0050;
|
|
}
|
|
|
|
IL_0033_1:
|
|
{
|
|
RuntimeObject* L_11 = V_0;
|
|
NullCheck(L_11);
|
|
bool L_12;
|
|
L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_11);
|
|
if (L_12)
|
|
{
|
|
goto IL_001c_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
bool L_13 = V_1;
|
|
return L_13;
|
|
}
|
|
}
|
|
// System.String System.Security.Cryptography.X509Certificates.X509Certificate2Collection::GetKeyIdentifier(System.Security.Cryptography.X509Certificates.X509Certificate2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Certificate2Collection_GetKeyIdentifier_mA7189361FD18F2665E09354BA391E96B189B44EA (X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* __this, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* ___0_x, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral830B64B4254C502C612E53C83DBEE6238E710499);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5* V_0 = NULL;
|
|
{
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_0 = ___0_x;
|
|
NullCheck(L_0);
|
|
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* L_1;
|
|
L_1 = X509Certificate2_get_Extensions_m3746E7EB004789DF5AF56AD36209676860901579(L_0, NULL);
|
|
NullCheck(L_1);
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_2;
|
|
L_2 = X509ExtensionCollection_get_Item_m411222FFB9DF3584180BA8A09ED061CFD5774F9D(L_1, _stringLiteral830B64B4254C502C612E53C83DBEE6238E710499, NULL);
|
|
V_0 = ((X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5*)IsInstSealed((RuntimeObject*)L_2, X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5_il2cpp_TypeInfo_var));
|
|
X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5* L_3 = V_0;
|
|
if (L_3)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_4 = ___0_x;
|
|
NullCheck(L_4);
|
|
PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* L_5;
|
|
L_5 = X509Certificate2_get_PublicKey_mF1813BEE1EE04C593FBAA44590E2AEBC23A72304(L_4, NULL);
|
|
X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5* L_6 = (X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5*)il2cpp_codegen_object_new(X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5_il2cpp_TypeInfo_var);
|
|
NullCheck(L_6);
|
|
X509SubjectKeyIdentifierExtension__ctor_m1858C1B050FAF65946B790737652E874781B4B56(L_6, L_5, 2, (bool)0, NULL);
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
X509SubjectKeyIdentifierExtension_tBF27F0FD0209C19D9AE4A9B04AB313DC48200CE5* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
String_t* L_8;
|
|
L_8 = X509SubjectKeyIdentifierExtension_get_SubjectKeyIdentifier_mFF2A155072C67F430E7F4B178733A80388943CBA(L_7, NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2Collection System.Security.Cryptography.X509Certificates.X509Certificate2Collection::Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* X509Certificate2Collection_Find_mA13F604A4AAF8C5EFFA436EFA7785B7E27C0471C (X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* __this, int32_t ___0_findType, RuntimeObject* ___1_findValue, bool ___2_validOnly, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CryptoConfig_t66E67DD67B2C3224C72C0CBD80A144E29EE016A5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509KeyUsageFlags_tA8507F67CB3F1DF68E2126C9D40A62CCF27065BA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDEB31152738116748FADCEF38CE0C9964DACCF2F);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
String_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* V_4 = NULL;
|
|
X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* V_5 = NULL;
|
|
Exception_t* V_6 = NULL;
|
|
Exception_t* V_7 = NULL;
|
|
String_t* V_8 = NULL;
|
|
Exception_t* V_9 = NULL;
|
|
Exception_t* V_10 = NULL;
|
|
RuntimeObject* V_11 = NULL;
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* V_12 = NULL;
|
|
bool V_13 = false;
|
|
X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B* V_14 = NULL;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_15 = NULL;
|
|
int32_t V_16 = 0;
|
|
int32_t V_17 = 0;
|
|
RuntimeObject* V_18 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
int32_t G_B27_0 = 0;
|
|
int32_t G_B46_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___1_findValue;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral368DE055AFD9CBFD208ACAC88D69A0565CF00F90)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509Certificate2Collection_Find_mA13F604A4AAF8C5EFFA436EFA7785B7E27C0471C_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
V_0 = L_2;
|
|
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
V_1 = L_3;
|
|
V_2 = 0;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32;
|
|
V_3 = L_4;
|
|
int32_t L_5 = ___0_findType;
|
|
switch (L_5)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_013c;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_013c;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_013c;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_00a1;
|
|
}
|
|
case 11:
|
|
{
|
|
goto IL_00a1;
|
|
}
|
|
case 12:
|
|
{
|
|
goto IL_00a1;
|
|
}
|
|
case 13:
|
|
{
|
|
goto IL_0107;
|
|
}
|
|
case 14:
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0171;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
RuntimeObject* L_6 = ___1_findValue;
|
|
V_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var));
|
|
goto IL_0190;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0076;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0076:
|
|
{// begin catch(System.Exception)
|
|
Exception_t* L_7 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
V_6 = L_7;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = L_8;
|
|
RuntimeObject* L_10 = ___1_findValue;
|
|
NullCheck(L_10);
|
|
Type_t* L_11;
|
|
L_11 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_10, NULL);
|
|
NullCheck(L_9);
|
|
ArrayElementTypeCheck (L_9, L_11);
|
|
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_11);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = L_9;
|
|
NullCheck(L_12);
|
|
ArrayElementTypeCheck (L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2F1705A1AA8BA6FCE863E7F2CBA4BC28458C77AE)));
|
|
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2F1705A1AA8BA6FCE863E7F2CBA4BC28458C77AE)));
|
|
String_t* L_13;
|
|
L_13 = Locale_GetText_m42E1EB13401D44A17A435110DDBE57AD042267A5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6CC08B400DBC60C54903DEE7D1AED84FA8B50740)), L_12, NULL);
|
|
Exception_t* L_14 = V_6;
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_15 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_15);
|
|
CryptographicException__ctor_m5DDF42BBD1BBB5006C6E912240CAE64C8B14FA9C(L_15, L_13, L_14, NULL);
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509Certificate2Collection_Find_mA13F604A4AAF8C5EFFA436EFA7785B7E27C0471C_RuntimeMethod_var)));
|
|
}// end catch (depth: 1)
|
|
|
|
IL_00a1:
|
|
{
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
RuntimeObject* L_16 = ___1_findValue;
|
|
V_1 = ((String_t*)CastclassSealed((RuntimeObject*)L_16, String_t_il2cpp_TypeInfo_var));
|
|
goto IL_00d6;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_00ab;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00ab:
|
|
{// begin catch(System.Exception)
|
|
Exception_t* L_17 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
V_7 = L_17;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_18 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_19 = L_18;
|
|
RuntimeObject* L_20 = ___1_findValue;
|
|
NullCheck(L_20);
|
|
Type_t* L_21;
|
|
L_21 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_20, NULL);
|
|
NullCheck(L_19);
|
|
ArrayElementTypeCheck (L_19, L_21);
|
|
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_21);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_22 = L_19;
|
|
NullCheck(L_22);
|
|
ArrayElementTypeCheck (L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3D455D711419C562E457AD829783961AA5206934)));
|
|
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3D455D711419C562E457AD829783961AA5206934)));
|
|
String_t* L_23;
|
|
L_23 = Locale_GetText_m42E1EB13401D44A17A435110DDBE57AD042267A5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6CC08B400DBC60C54903DEE7D1AED84FA8B50740)), L_22, NULL);
|
|
Exception_t* L_24 = V_7;
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_25 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_25);
|
|
CryptographicException__ctor_m5DDF42BBD1BBB5006C6E912240CAE64C8B14FA9C(L_25, L_23, L_24, NULL);
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509Certificate2Collection_Find_mA13F604A4AAF8C5EFFA436EFA7785B7E27C0471C_RuntimeMethod_var)));
|
|
}// end catch (depth: 1)
|
|
|
|
IL_00d6:
|
|
{
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
String_t* L_26 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(CryptoConfig_t66E67DD67B2C3224C72C0CBD80A144E29EE016A5_il2cpp_TypeInfo_var);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_27;
|
|
L_27 = CryptoConfig_EncodeOID_mFC779B3B35D074F2804F36F36D9DB4A8E2070CDD(L_26, NULL);
|
|
goto IL_0190;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicUnexpectedOperationException_t095FC6568619B47AC96204DE0D6C774B4EB7F810_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_00e3;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00e3:
|
|
{// begin catch(System.Security.Cryptography.CryptographicUnexpectedOperationException)
|
|
CryptographicUnexpectedOperationException_t095FC6568619B47AC96204DE0D6C774B4EB7F810* L_28 = ((CryptographicUnexpectedOperationException_t095FC6568619B47AC96204DE0D6C774B4EB7F810*)IL2CPP_GET_ACTIVE_EXCEPTION(CryptographicUnexpectedOperationException_t095FC6568619B47AC96204DE0D6C774B4EB7F810*));;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_29 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_30 = L_29;
|
|
String_t* L_31 = V_1;
|
|
NullCheck(L_30);
|
|
ArrayElementTypeCheck (L_30, L_31);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_31);
|
|
String_t* L_32;
|
|
L_32 = Locale_GetText_m42E1EB13401D44A17A435110DDBE57AD042267A5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6D6766B9E7197A415706D781453E6BE8DBC7F6CB)), L_30, NULL);
|
|
V_8 = L_32;
|
|
String_t* L_33 = V_8;
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_34 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_34);
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_34, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral368DE055AFD9CBFD208ACAC88D69A0565CF00F90)), L_33, NULL);
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509Certificate2Collection_Find_mA13F604A4AAF8C5EFFA436EFA7785B7E27C0471C_RuntimeMethod_var)));
|
|
}// end catch (depth: 1)
|
|
|
|
IL_0107:
|
|
{
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
RuntimeObject* L_35 = ___1_findValue;
|
|
V_2 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_35, X509KeyUsageFlags_tA8507F67CB3F1DF68E2126C9D40A62CCF27065BA_il2cpp_TypeInfo_var))));
|
|
goto IL_0190;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0111;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0111:
|
|
{// begin catch(System.Exception)
|
|
Exception_t* L_36 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
V_9 = L_36;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_37 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_38 = L_37;
|
|
RuntimeObject* L_39 = ___1_findValue;
|
|
NullCheck(L_39);
|
|
Type_t* L_40;
|
|
L_40 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_39, NULL);
|
|
NullCheck(L_38);
|
|
ArrayElementTypeCheck (L_38, L_40);
|
|
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_40);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_41 = L_38;
|
|
NullCheck(L_41);
|
|
ArrayElementTypeCheck (L_41, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3D455D711419C562E457AD829783961AA5206934)));
|
|
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3D455D711419C562E457AD829783961AA5206934)));
|
|
String_t* L_42;
|
|
L_42 = Locale_GetText_m42E1EB13401D44A17A435110DDBE57AD042267A5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6CC08B400DBC60C54903DEE7D1AED84FA8B50740)), L_41, NULL);
|
|
Exception_t* L_43 = V_9;
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_44 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_44);
|
|
CryptographicException__ctor_m5DDF42BBD1BBB5006C6E912240CAE64C8B14FA9C(L_44, L_42, L_43, NULL);
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509Certificate2Collection_Find_mA13F604A4AAF8C5EFFA436EFA7785B7E27C0471C_RuntimeMethod_var)));
|
|
}// end catch (depth: 1)
|
|
|
|
IL_013c:
|
|
{
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
RuntimeObject* L_45 = ___1_findValue;
|
|
V_3 = ((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_45, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))));
|
|
goto IL_0190;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0146;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0146:
|
|
{// begin catch(System.Exception)
|
|
Exception_t* L_46 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
V_10 = L_46;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_47 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_48 = L_47;
|
|
RuntimeObject* L_49 = ___1_findValue;
|
|
NullCheck(L_49);
|
|
Type_t* L_50;
|
|
L_50 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_49, NULL);
|
|
NullCheck(L_48);
|
|
ArrayElementTypeCheck (L_48, L_50);
|
|
(L_48)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_50);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_51 = L_48;
|
|
NullCheck(L_51);
|
|
ArrayElementTypeCheck (L_51, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8507E60E4E5CFFDF387FFDF366103BDBF5C5C38C)));
|
|
(L_51)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8507E60E4E5CFFDF387FFDF366103BDBF5C5C38C)));
|
|
String_t* L_52;
|
|
L_52 = Locale_GetText_m42E1EB13401D44A17A435110DDBE57AD042267A5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6CC08B400DBC60C54903DEE7D1AED84FA8B50740)), L_51, NULL);
|
|
Exception_t* L_53 = V_10;
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_54 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_54);
|
|
CryptographicException__ctor_m5DDF42BBD1BBB5006C6E912240CAE64C8B14FA9C(L_54, L_52, L_53, NULL);
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_54, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509Certificate2Collection_Find_mA13F604A4AAF8C5EFFA436EFA7785B7E27C0471C_RuntimeMethod_var)));
|
|
}// end catch (depth: 1)
|
|
|
|
IL_0171:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_55 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_56 = L_55;
|
|
int32_t L_57 = ___0_findType;
|
|
int32_t L_58 = L_57;
|
|
RuntimeObject* L_59 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509FindType_t498D1CC078663253211BEC2E671771106253C482_il2cpp_TypeInfo_var)), &L_58);
|
|
NullCheck(L_56);
|
|
ArrayElementTypeCheck (L_56, L_59);
|
|
(L_56)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_59);
|
|
String_t* L_60;
|
|
L_60 = Locale_GetText_m42E1EB13401D44A17A435110DDBE57AD042267A5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8E6998DB1786F24C1BB96FE967251C5140E7B5FA)), L_56, NULL);
|
|
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_61 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_61);
|
|
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_61, L_60, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_61, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509Certificate2Collection_Find_mA13F604A4AAF8C5EFFA436EFA7785B7E27C0471C_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0190:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_62;
|
|
L_62 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
V_4 = L_62;
|
|
X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* L_63 = (X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB*)il2cpp_codegen_object_new(X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB_il2cpp_TypeInfo_var);
|
|
NullCheck(L_63);
|
|
X509Certificate2Collection__ctor_mC7A17C695E7DB906D549A0BF60943D2490F4C2B9(L_63, NULL);
|
|
V_5 = L_63;
|
|
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_64;
|
|
L_64 = CollectionBase_get_InnerList_mD37144662A9045A5CA82681C265719733934DEAB_inline(__this, NULL);
|
|
NullCheck(L_64);
|
|
RuntimeObject* L_65;
|
|
L_65 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_64);
|
|
V_11 = L_65;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_03eb:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_66 = V_11;
|
|
V_18 = ((RuntimeObject*)IsInst((RuntimeObject*)L_66, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_67 = V_18;
|
|
if (!L_67)
|
|
{
|
|
goto IL_03ff;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_68 = V_18;
|
|
NullCheck(L_68);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_68);
|
|
}
|
|
|
|
IL_03ff:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_03dd_1;
|
|
}
|
|
|
|
IL_01b0_1:
|
|
{
|
|
RuntimeObject* L_69 = V_11;
|
|
NullCheck(L_69);
|
|
RuntimeObject* L_70;
|
|
L_70 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_69);
|
|
V_12 = ((X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D*)CastclassClass((RuntimeObject*)L_70, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D_il2cpp_TypeInfo_var));
|
|
V_13 = (bool)0;
|
|
int32_t L_71 = ___0_findType;
|
|
switch (L_71)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0208_1;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0237_1;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0290_1;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_02aa_1;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_02c7_1;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_02e1_1;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0371_1;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_0394_1;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_03a5_1;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_03b4_1;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_0316_1;
|
|
}
|
|
case 11:
|
|
{
|
|
goto IL_03b4_1;
|
|
}
|
|
case 12:
|
|
{
|
|
goto IL_032c_1;
|
|
}
|
|
case 13:
|
|
{
|
|
goto IL_0340_1;
|
|
}
|
|
case 14:
|
|
{
|
|
goto IL_02fb_1;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_03b4_1;
|
|
}
|
|
|
|
IL_0208_1:
|
|
{
|
|
String_t* L_72 = V_0;
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_73 = V_12;
|
|
NullCheck(L_73);
|
|
String_t* L_74;
|
|
L_74 = X509Certificate2_get_Thumbprint_m0A33F62238AF002C1B93A0F93A361B890E61DE8C(L_73, NULL);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_75 = V_4;
|
|
int32_t L_76;
|
|
L_76 = String_Compare_mBD9ED6B35314B34F51A9985E350D33F6F56F85A9(L_72, L_74, (bool)1, L_75, NULL);
|
|
if (!L_76)
|
|
{
|
|
goto IL_022f_1;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_77 = V_0;
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_78 = V_12;
|
|
NullCheck(L_78);
|
|
String_t* L_79;
|
|
L_79 = VirtualFuncInvoker0< String_t* >::Invoke(12 /* System.String System.Security.Cryptography.X509Certificates.X509Certificate::GetCertHashString() */, L_78);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_80 = V_4;
|
|
int32_t L_81;
|
|
L_81 = String_Compare_mBD9ED6B35314B34F51A9985E350D33F6F56F85A9(L_77, L_79, (bool)1, L_80, NULL);
|
|
G_B27_0 = ((((int32_t)L_81) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0230_1;
|
|
}
|
|
|
|
IL_022f_1:
|
|
{
|
|
G_B27_0 = 1;
|
|
}
|
|
|
|
IL_0230_1:
|
|
{
|
|
V_13 = (bool)G_B27_0;
|
|
goto IL_03b4_1;
|
|
}
|
|
|
|
IL_0237_1:
|
|
{
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_82 = V_12;
|
|
NullCheck(L_82);
|
|
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_83;
|
|
L_83 = X509Certificate2_get_SubjectName_m0A767E93883BD9D984903B6753819CB7E02D90BC(L_82, NULL);
|
|
NullCheck(L_83);
|
|
String_t* L_84;
|
|
L_84 = VirtualFuncInvoker1< String_t*, bool >::Invoke(5 /* System.String System.Security.Cryptography.AsnEncodedData::Format(System.Boolean) */, L_83, (bool)1);
|
|
il2cpp_codegen_runtime_class_init_inline(X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB_il2cpp_TypeInfo_var);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_85 = ((X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB_StaticFields*)il2cpp_codegen_static_fields_for(X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB_il2cpp_TypeInfo_var))->___newline_split_1;
|
|
NullCheck(L_84);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_86;
|
|
L_86 = String_Split_m03F46561E2DF46D1E3AE749A77706EFC2F6488F4(L_84, L_85, 1, NULL);
|
|
V_15 = L_86;
|
|
V_16 = 0;
|
|
goto IL_0283_1;
|
|
}
|
|
|
|
IL_0256_1:
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_87 = V_15;
|
|
int32_t L_88 = V_16;
|
|
NullCheck(L_87);
|
|
int32_t L_89 = L_88;
|
|
String_t* L_90 = (L_87)->GetAt(static_cast<il2cpp_array_size_t>(L_89));
|
|
String_t* L_91 = L_90;
|
|
NullCheck(L_91);
|
|
int32_t L_92;
|
|
L_92 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_91, ((int32_t)61), NULL);
|
|
V_17 = L_92;
|
|
String_t* L_93 = V_0;
|
|
int32_t L_94 = V_17;
|
|
NullCheck(L_91);
|
|
int32_t L_95;
|
|
L_95 = String_IndexOf_m2DFDE7BD37585BDBCD6F688B4E4A93304235A0B8(L_91, L_93, L_94, 3, NULL);
|
|
V_13 = (bool)((((int32_t)((((int32_t)L_95) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_96 = V_13;
|
|
if (L_96)
|
|
{
|
|
goto IL_03b4_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_97 = V_16;
|
|
V_16 = ((int32_t)il2cpp_codegen_add(L_97, 1));
|
|
}
|
|
|
|
IL_0283_1:
|
|
{
|
|
int32_t L_98 = V_16;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_99 = V_15;
|
|
NullCheck(L_99);
|
|
if ((((int32_t)L_98) < ((int32_t)((int32_t)(((RuntimeArray*)L_99)->max_length)))))
|
|
{
|
|
goto IL_0256_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_03b4_1;
|
|
}
|
|
|
|
IL_0290_1:
|
|
{
|
|
String_t* L_100 = V_0;
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_101 = V_12;
|
|
NullCheck(L_101);
|
|
String_t* L_102;
|
|
L_102 = X509Certificate_get_Subject_m2568DA6469339937B44FCD5C7C69FF02934D075C(L_101, NULL);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_103 = V_4;
|
|
int32_t L_104;
|
|
L_104 = String_Compare_mBD9ED6B35314B34F51A9985E350D33F6F56F85A9(L_100, L_102, (bool)1, L_103, NULL);
|
|
V_13 = (bool)((((int32_t)L_104) == ((int32_t)0))? 1 : 0);
|
|
goto IL_03b4_1;
|
|
}
|
|
|
|
IL_02aa_1:
|
|
{
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_105 = V_12;
|
|
NullCheck(L_105);
|
|
String_t* L_106;
|
|
L_106 = X509Certificate2_GetNameInfo_mDFE32FF38933F2B9F652B27B1EA857AD463222DE(L_105, 0, (bool)1, NULL);
|
|
String_t* L_107 = V_0;
|
|
NullCheck(L_106);
|
|
int32_t L_108;
|
|
L_108 = String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55(L_106, L_107, 3, NULL);
|
|
V_13 = (bool)((((int32_t)((((int32_t)L_108) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_03b4_1;
|
|
}
|
|
|
|
IL_02c7_1:
|
|
{
|
|
String_t* L_109 = V_0;
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_110 = V_12;
|
|
NullCheck(L_110);
|
|
String_t* L_111;
|
|
L_111 = X509Certificate_get_Issuer_m1922DC6FA16712898394AF2377B6D089BA2D169E(L_110, NULL);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_112 = V_4;
|
|
int32_t L_113;
|
|
L_113 = String_Compare_mBD9ED6B35314B34F51A9985E350D33F6F56F85A9(L_109, L_111, (bool)1, L_112, NULL);
|
|
V_13 = (bool)((((int32_t)L_113) == ((int32_t)0))? 1 : 0);
|
|
goto IL_03b4_1;
|
|
}
|
|
|
|
IL_02e1_1:
|
|
{
|
|
String_t* L_114 = V_0;
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_115 = V_12;
|
|
NullCheck(L_115);
|
|
String_t* L_116;
|
|
L_116 = X509Certificate2_get_SerialNumber_m12F610EEBE485A29FD49A06E8A33BB690476309B(L_115, NULL);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_117 = V_4;
|
|
int32_t L_118;
|
|
L_118 = String_Compare_mBD9ED6B35314B34F51A9985E350D33F6F56F85A9(L_114, L_116, (bool)1, L_117, NULL);
|
|
V_13 = (bool)((((int32_t)L_118) == ((int32_t)0))? 1 : 0);
|
|
goto IL_03b4_1;
|
|
}
|
|
|
|
IL_02fb_1:
|
|
{
|
|
String_t* L_119 = V_0;
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_120 = V_12;
|
|
String_t* L_121;
|
|
L_121 = X509Certificate2Collection_GetKeyIdentifier_mA7189361FD18F2665E09354BA391E96B189B44EA(__this, L_120, NULL);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_122 = V_4;
|
|
int32_t L_123;
|
|
L_123 = String_Compare_mBD9ED6B35314B34F51A9985E350D33F6F56F85A9(L_119, L_121, (bool)1, L_122, NULL);
|
|
V_13 = (bool)((((int32_t)L_123) == ((int32_t)0))? 1 : 0);
|
|
goto IL_03b4_1;
|
|
}
|
|
|
|
IL_0316_1:
|
|
{
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_124 = V_12;
|
|
NullCheck(L_124);
|
|
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* L_125;
|
|
L_125 = X509Certificate2_get_Extensions_m3746E7EB004789DF5AF56AD36209676860901579(L_124, NULL);
|
|
NullCheck(L_125);
|
|
int32_t L_126;
|
|
L_126 = X509ExtensionCollection_get_Count_m2708E6751246E4E5E64BAE8A99FEC79CFD61E9A1(L_125, NULL);
|
|
V_13 = (bool)((((int32_t)L_126) == ((int32_t)0))? 1 : 0);
|
|
goto IL_03b4_1;
|
|
}
|
|
|
|
IL_032c_1:
|
|
{
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_127 = V_12;
|
|
NullCheck(L_127);
|
|
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* L_128;
|
|
L_128 = X509Certificate2_get_Extensions_m3746E7EB004789DF5AF56AD36209676860901579(L_127, NULL);
|
|
String_t* L_129 = V_1;
|
|
NullCheck(L_128);
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_130;
|
|
L_130 = X509ExtensionCollection_get_Item_m411222FFB9DF3584180BA8A09ED061CFD5774F9D(L_128, L_129, NULL);
|
|
V_13 = (bool)((!(((RuntimeObject*)(X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5*)L_130) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_03b4_1;
|
|
}
|
|
|
|
IL_0340_1:
|
|
{
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_131 = V_12;
|
|
NullCheck(L_131);
|
|
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* L_132;
|
|
L_132 = X509Certificate2_get_Extensions_m3746E7EB004789DF5AF56AD36209676860901579(L_131, NULL);
|
|
NullCheck(L_132);
|
|
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_133;
|
|
L_133 = X509ExtensionCollection_get_Item_m411222FFB9DF3584180BA8A09ED061CFD5774F9D(L_132, _stringLiteralDEB31152738116748FADCEF38CE0C9964DACCF2F, NULL);
|
|
V_14 = ((X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B*)IsInstSealed((RuntimeObject*)L_133, X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B_il2cpp_TypeInfo_var));
|
|
X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B* L_134 = V_14;
|
|
if (L_134)
|
|
{
|
|
goto IL_0361_1;
|
|
}
|
|
}
|
|
{
|
|
V_13 = (bool)1;
|
|
goto IL_03b4_1;
|
|
}
|
|
|
|
IL_0361_1:
|
|
{
|
|
X509KeyUsageExtension_t8AD500911A72309DBA02AF6C8461FA465CC56F1B* L_135 = V_14;
|
|
NullCheck(L_135);
|
|
int32_t L_136;
|
|
L_136 = X509KeyUsageExtension_get_KeyUsages_m1BD6C5BC6E3E380982C135B2E81731435345144F(L_135, NULL);
|
|
int32_t L_137 = V_2;
|
|
int32_t L_138 = V_2;
|
|
V_13 = (bool)((((int32_t)((int32_t)((int32_t)L_136&(int32_t)L_137))) == ((int32_t)L_138))? 1 : 0);
|
|
goto IL_03b4_1;
|
|
}
|
|
|
|
IL_0371_1:
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_139 = V_3;
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_140 = V_12;
|
|
NullCheck(L_140);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_141;
|
|
L_141 = X509Certificate2_get_NotBefore_m656CC9913A0E6F6F0C06185F3B63F3A2EDCEB801(L_140, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
bool L_142;
|
|
L_142 = DateTime_op_GreaterThanOrEqual_m3B83DFFCC29B04E344ECBD436FA71606FDE710BD(L_139, L_141, NULL);
|
|
if (!L_142)
|
|
{
|
|
goto IL_038f_1;
|
|
}
|
|
}
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_143 = V_3;
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_144 = V_12;
|
|
NullCheck(L_144);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_145;
|
|
L_145 = X509Certificate2_get_NotAfter_m925CA3901B7856D0692C6DED4F6428A40A726787(L_144, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
bool L_146;
|
|
L_146 = DateTime_op_LessThanOrEqual_mC22EB236042D9E1C17C64393FB429E58B8F952F8(L_143, L_145, NULL);
|
|
G_B46_0 = ((int32_t)(L_146));
|
|
goto IL_0390_1;
|
|
}
|
|
|
|
IL_038f_1:
|
|
{
|
|
G_B46_0 = 0;
|
|
}
|
|
|
|
IL_0390_1:
|
|
{
|
|
V_13 = (bool)G_B46_0;
|
|
goto IL_03b4_1;
|
|
}
|
|
|
|
IL_0394_1:
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_147 = V_3;
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_148 = V_12;
|
|
NullCheck(L_148);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_149;
|
|
L_149 = X509Certificate2_get_NotBefore_m656CC9913A0E6F6F0C06185F3B63F3A2EDCEB801(L_148, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
bool L_150;
|
|
L_150 = DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17(L_147, L_149, NULL);
|
|
V_13 = L_150;
|
|
goto IL_03b4_1;
|
|
}
|
|
|
|
IL_03a5_1:
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_151 = V_3;
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_152 = V_12;
|
|
NullCheck(L_152);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_153;
|
|
L_153 = X509Certificate2_get_NotAfter_m925CA3901B7856D0692C6DED4F6428A40A726787(L_152, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
bool L_154;
|
|
L_154 = DateTime_op_GreaterThan_m8F1FA3C039A0148FC1500E790A77CB44F025EA9F(L_151, L_153, NULL);
|
|
V_13 = L_154;
|
|
}
|
|
|
|
IL_03b4_1:
|
|
{
|
|
bool L_155 = V_13;
|
|
if (!L_155)
|
|
{
|
|
goto IL_03dd_1;
|
|
}
|
|
}
|
|
{
|
|
bool L_156 = ___2_validOnly;
|
|
if (!L_156)
|
|
{
|
|
goto IL_03d3_1;
|
|
}
|
|
}
|
|
try
|
|
{// begin try (depth: 2)
|
|
{
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_157 = V_12;
|
|
NullCheck(L_157);
|
|
bool L_158;
|
|
L_158 = X509Certificate2_Verify_m5BDB9791EDBA2F518184D4AFC2FD1B656F4C4591(L_157, NULL);
|
|
if (!L_158)
|
|
{
|
|
goto IL_03ce_2;
|
|
}
|
|
}
|
|
{
|
|
X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* L_159 = V_5;
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_160 = V_12;
|
|
NullCheck(L_159);
|
|
int32_t L_161;
|
|
L_161 = X509Certificate2Collection_Add_m6C2C142C7BF143E83388F8793A64890F44996ABB(L_159, L_160, NULL);
|
|
}
|
|
|
|
IL_03ce_2:
|
|
{
|
|
goto IL_03dd_1;
|
|
}
|
|
}// end try (depth: 2)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_03d0_1;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_03d0_1:
|
|
{// begin catch(System.Object)
|
|
RuntimeObject* L_162 = ((RuntimeObject*)IL2CPP_GET_ACTIVE_EXCEPTION(RuntimeObject*));;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_03dd_1;
|
|
}// end catch (depth: 2)
|
|
|
|
IL_03d3_1:
|
|
{
|
|
X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* L_163 = V_5;
|
|
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_164 = V_12;
|
|
NullCheck(L_163);
|
|
int32_t L_165;
|
|
L_165 = X509Certificate2Collection_Add_m6C2C142C7BF143E83388F8793A64890F44996ABB(L_163, L_164, NULL);
|
|
}
|
|
|
|
IL_03dd_1:
|
|
{
|
|
RuntimeObject* L_166 = V_11;
|
|
NullCheck(L_166);
|
|
bool L_167;
|
|
L_167 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_166);
|
|
if (L_167)
|
|
{
|
|
goto IL_01b0_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0400;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0400:
|
|
{
|
|
X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* L_168 = V_5;
|
|
return L_168;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator System.Security.Cryptography.X509Certificates.X509Certificate2Collection::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate2Enumerator_t22D702E84069BAFE855F2A160A391D77A05090EC* X509Certificate2Collection_GetEnumerator_m2D2A261B2F68A857C3C8B0037C5E05F10A6761FC (X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate2Enumerator_t22D702E84069BAFE855F2A160A391D77A05090EC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
X509Certificate2Enumerator_t22D702E84069BAFE855F2A160A391D77A05090EC* L_0 = (X509Certificate2Enumerator_t22D702E84069BAFE855F2A160A391D77A05090EC*)il2cpp_codegen_object_new(X509Certificate2Enumerator_t22D702E84069BAFE855F2A160A391D77A05090EC_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
X509Certificate2Enumerator__ctor_mBF306968F1D046A5084D7E70CE7A7A3E0412357B(L_0, __this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2Collection::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2Collection__cctor_mA00FF6D99552680982B6FF926E0F075949CF8DC7 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = L_0;
|
|
String_t* L_2;
|
|
L_2 = Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF(NULL);
|
|
NullCheck(L_1);
|
|
ArrayElementTypeCheck (L_1, L_2);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_2);
|
|
((X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB_StaticFields*)il2cpp_codegen_static_fields_for(X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB_il2cpp_TypeInfo_var))->___newline_split_1 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB_StaticFields*)il2cpp_codegen_static_fields_for(X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB_il2cpp_TypeInfo_var))->___newline_split_1), (void*)L_1);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator::.ctor(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2Enumerator__ctor_mBF306968F1D046A5084D7E70CE7A7A3E0412357B (X509Certificate2Enumerator_t22D702E84069BAFE855F2A160A391D77A05090EC* __this, X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* L_0 = ___0_collection;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_0);
|
|
__this->___enumerator_0 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_0), (void*)L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Security.Cryptography.X509Certificates.X509Certificate2 System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator::get_Current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* X509Certificate2Enumerator_get_Current_m7D19172490F76C81A7E7DB5AF8D172400BC95B53 (X509Certificate2Enumerator_t22D702E84069BAFE855F2A160A391D77A05090EC* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = __this->___enumerator_0;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_0);
|
|
return ((X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D*)CastclassClass((RuntimeObject*)L_1, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D_il2cpp_TypeInfo_var));
|
|
}
|
|
}
|
|
// System.Boolean System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator::MoveNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509Certificate2Enumerator_MoveNext_m824241D32F6E1B3FF4CAE0E2B370BB5E32238F19 (X509Certificate2Enumerator_t22D702E84069BAFE855F2A160A391D77A05090EC* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = __this->___enumerator_0;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Object System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator::System.Collections.IEnumerator.get_Current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X509Certificate2Enumerator_System_Collections_IEnumerator_get_Current_m11E9442F6F2EB7E5829832ABAD721E4B7E4A1CC5 (X509Certificate2Enumerator_t22D702E84069BAFE855F2A160A391D77A05090EC* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = __this->___enumerator_0;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator::System.Collections.IEnumerator.MoveNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509Certificate2Enumerator_System_Collections_IEnumerator_MoveNext_m28901EEB56D14B1402463992A26EE714EA1B2B85 (X509Certificate2Enumerator_t22D702E84069BAFE855F2A160A391D77A05090EC* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = __this->___enumerator_0;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator::System.Collections.IEnumerator.Reset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2Enumerator_System_Collections_IEnumerator_Reset_m84371FC9208871CE46B7D09A77AF055C52938FC6 (X509Certificate2Enumerator_t22D702E84069BAFE855F2A160A391D77A05090EC* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = __this->___enumerator_0;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker0::Invoke(2 /* System.Void System.Collections.IEnumerator::Reset() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88_inline (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____currentPos_6;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* RegexParser_Unit_m6C984A797C4A92AB0A9985E5A8207DB9CA9AE87F_inline (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_0 = __this->____unit_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexParser_AddUnitNode_mE8DC7CD039C933AE881097E041BA620AA325FDE8_inline (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* ___0_node, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* L_0 = ___0_node;
|
|
__this->____unit_4 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____unit_4), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexParser_Textto_mA45B325CA6CCBC0012F1CBB0282AE114B34AEBE2_inline (RegexParser_t511FBEC07266DEFE94FD30A5A82B3CE76E5B1C40* __this, int32_t ___0_pos, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_pos;
|
|
__this->____currentPos_6 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexCharClass_set_Negate_m8EA71CB8F671E99EF0B388CB520F44B8B6653A6B_inline (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->____negate_17 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexCharClass_AddSubtraction_m4EF34AFB93C001C6A4521E1F1C5F4B54833E8A12_inline (RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* __this, RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* ___0_sub, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RegexCharClass_t5B8A0FD2CE74C0EFA88C3AD0C31A3238F75AB13C* L_0 = ___0_sub;
|
|
__this->____subtractor_18 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____subtractor_18), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____stringLength_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexNode_Type_mDE9685FD99646016D0D6038C4509C6392B10F019_inline (RegexNode_tF9909B4015A9F5644B5772AB476ABCF721593360* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___NType_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RegexPrefix_get_CaseInsensitive_m4DAE2D9E91916BFFAB928F7DCAA20A5ABD4560E6_inline (RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CCaseInsensitiveU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* RegexPrefix_get_Prefix_m844D02262C0720B0DC488AD1541713AD37BC518E_inline (RegexPrefix_tA54724081F84969072F7826C9CFA861073AD0044* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->___U3CPrefixU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* RegexReplacement_get_Pattern_m146EA30FB574587E88DD056AC22F79375C3F55E6_inline (RegexReplacement_tCB8C00C0D40A46E57A81962B0F4A3C9081B79A3E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->___U3CPatternU3Ek__BackingField_7;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Capture_get_Text_mDD394681E5FC39FFDCCD9552C0BF09DF8A7054ED_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->___U3CTextU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CIndexU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92_inline (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CLengthU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* Match_get_Empty_m50E10899C5A892532ED484CDA11DE27CC6A7B546_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var);
|
|
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_0 = ((Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_StaticFields*)il2cpp_codegen_static_fields_for(Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_il2cpp_TypeInfo_var))->___U3CEmptyU3Ek__BackingField_17;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DerSequenceReader_set_ContentLength_mA2B091D517ABF0AFDF9C54477720668E09F47BCA_inline (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CContentLengthU3Ek__BackingField_6 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* DateTimeFormatInfo_get_Calendar_m1280AC2F196ECBE7B664394CC3821062015DEF99_inline (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_0 = __this->___calendar_17;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Oid_set_Value_m122282994E6EE138CE4284B052EF8BE2086CA72F_inline (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
__this->____value_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____value_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Oid_get_Value_m59D678A83ED4DE7D87FB7450C8CF4084DB506FD3_inline (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->____value_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint8_t L_0 = __this->___m_nTag_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->____raw_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void X509Extension_set_Critical_m19FBE6E0C8B9069E5A2C232DAAE06046AF18EFEF_inline (X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->____critical_2 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool X509Extension_get_Critical_mEF827F09D95784210C2F8D5FD7BE27BB54803E35_inline (X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->____critical_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* AsnEncodedData_get_Oid_mBDB4803B2ADEE3BD40596E82FF738C2DC339BC28_inline (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_0 = __this->____oid_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* X500DistinguishedName_get_Name_m57B2708AAA2B4E15AB6F6B513D88C4468898B5A9_inline (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->___name_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* PublicKey_get_Oid_mB5796F569C136759CB740F747C6A3B6F8976401A_inline (PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_0 = __this->____oid_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* PublicKey_get_EncodedKeyValue_m153EF781728D471C55002A40BBDA435F1B3A1213_inline (PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_0 = __this->____keyValue_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* PublicKey_get_EncodedParameters_mE338A4A69A15907E38A644D624A07DDD55C521E0_inline (PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* L_0 = __this->____params_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* X509Certificate_get_Impl_m567BEB584A388821259EB9BBBB5B90B6182CC99D_inline (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* L_0 = __this->___impl_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* CollectionBase_get_InnerList_mD37144662A9045A5CA82681C265719733934DEAB_inline (CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method)
|
|
{
|
|
// sizeof(T)
|
|
const uint32_t SizeOf_T_t664E2061A913AF1FEE499655BC64F0FDE10D2A5E = il2cpp_codegen_sizeof(il2cpp_rgctx_data(method->klass->rgctx_data, 9));
|
|
// T
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T_t664E2061A913AF1FEE499655BC64F0FDE10D2A5E);
|
|
const Il2CppFullySharedGenericAny L_9 = L_8;
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version_3;
|
|
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_1 = __this->____items_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size_2;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data(method->klass->rgctx_data, 9)) ? ___0_item : &___0_item), SizeOf_T_t664E2061A913AF1FEE499655BC64F0FDE10D2A5E);
|
|
NullCheck(L_6);
|
|
il2cpp_codegen_memcpy((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)), L_8, SizeOf_T_t664E2061A913AF1FEE499655BC64F0FDE10D2A5E);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->klass->rgctx_data, 9), (void**)(L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)), (void*)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data(method->klass->rgctx_data, 9)) ? ___0_item : &___0_item), SizeOf_T_t664E2061A913AF1FEE499655BC64F0FDE10D2A5E);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 14)), il2cpp_rgctx_method(method->klass->rgctx_data, 14), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data(method->klass->rgctx_data, 9)) ? L_9: *(void**)L_9));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m5599DAEC88C08C9797F461E977BF22E14E3C3008_gshared_inline (Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0;
|
|
L_0 = il2cpp_codegen_is_reference_or_contains_references(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
if (!L_0)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 10)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
ThrowHelper_ThrowInvalidTypeWithPointersNotSupported_m5707DE408588F6EAC3FC7D10F9520308CF8C8CCF(L_2, NULL);
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
int32_t L_3 = ___1_length;
|
|
if ((((int32_t)L_3) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
void* L_4 = ___0_pointer;
|
|
Il2CppFullySharedGenericAny* L_5;
|
|
L_5 = InvokerFuncInvoker1< Il2CppFullySharedGenericAny*, uint8_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4)), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4), NULL, (uint8_t*)L_4);
|
|
ByReference_1_t607C1F3BC28B0E21B969461CDB0720FB01A82141 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_6), L_5);
|
|
__this->____pointer_0 = L_6;
|
|
int32_t L_7 = ___1_length;
|
|
__this->____length_1 = L_7;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueListBuilder_1_Dispose_m95D1F578E53DD38ABC79F6837BE0D50A1512F6B2_gshared_inline (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_0 = __this->____arrayFromPool_1;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 14));
|
|
ArrayPool_1_t1CA8B86A43623D11BDEC111B774FC11399E41774* L_1;
|
|
L_1 = InvokerFuncInvoker0< ArrayPool_1_t1CA8B86A43623D11BDEC111B774FC11399E41774* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13)), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 13), NULL);
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_2 = __this->____arrayFromPool_1;
|
|
NullCheck(L_1);
|
|
VirtualActionInvoker2Invoker< __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, bool >::Invoke(5 /* System.Void System.Buffers.ArrayPool`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Return(T[],System.Boolean) */, L_1, L_2, (bool)0);
|
|
__this->____arrayFromPool_1 = (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)NULL;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueListBuilder_1_Append_m8E0893D16DEF47E8D8F9689662927E8C34597BFE_gshared_inline (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method)
|
|
{
|
|
// sizeof(T)
|
|
const uint32_t SizeOf_T_t1A62CE1E223DA0C2F58D33DE37B955BF8862482B = il2cpp_codegen_sizeof(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
// T
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T_t1A62CE1E223DA0C2F58D33DE37B955BF8862482B);
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->____pos_2;
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54* L_2 = (Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54*)(&__this->____span_0);
|
|
int32_t L_3;
|
|
L_3 = InvokerFuncInvoker0< int32_t >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 6)), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 6), L_2);
|
|
if ((((int32_t)L_1) < ((int32_t)L_3)))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
InvokerActionInvoker0::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7)), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7), __this);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54* L_4 = (Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54*)(&__this->____span_0);
|
|
int32_t L_5 = V_0;
|
|
Il2CppFullySharedGenericAny* L_6;
|
|
L_6 = InvokerFuncInvoker1< Il2CppFullySharedGenericAny*, int32_t >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3)), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3), L_4, L_5);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 9)) ? ___0_item : &___0_item), SizeOf_T_t1A62CE1E223DA0C2F58D33DE37B955BF8862482B);
|
|
il2cpp_codegen_memcpy((Il2CppFullySharedGenericAny*)L_6, L_7, SizeOf_T_t1A62CE1E223DA0C2F58D33DE37B955BF8862482B);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 9), (void**)(Il2CppFullySharedGenericAny*)L_6, (void*)L_7);
|
|
int32_t L_8 = V_0;
|
|
__this->____pos_2 = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ValueListBuilder_1_get_Length_mF8F23A327A1B4D211BFE3D5A78A31D5861B36BCF_gshared_inline (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____pos_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueListBuilder_1_Pop_mB67E702E623E6BACDF0BEB363EB6D323901B33FE_gshared_inline (ValueListBuilder_1_tF012774EB012F116BFCADB31CDCBAD34D4ECAC26* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
// sizeof(T)
|
|
const uint32_t SizeOf_T_t1A62CE1E223DA0C2F58D33DE37B955BF8862482B = il2cpp_codegen_sizeof(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
// T
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T_t1A62CE1E223DA0C2F58D33DE37B955BF8862482B);
|
|
{
|
|
int32_t L_0 = __this->____pos_2;
|
|
__this->____pos_2 = ((int32_t)il2cpp_codegen_subtract(L_0, 1));
|
|
Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54* L_1 = (Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54*)(&__this->____span_0);
|
|
int32_t L_2 = __this->____pos_2;
|
|
Il2CppFullySharedGenericAny* L_3;
|
|
L_3 = InvokerFuncInvoker1< Il2CppFullySharedGenericAny*, int32_t >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3)), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3), L_1, L_2);
|
|
il2cpp_codegen_memcpy(L_4, L_3, SizeOf_T_t1A62CE1E223DA0C2F58D33DE37B955BF8862482B);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_4, SizeOf_T_t1A62CE1E223DA0C2F58D33DE37B955BF8862482B);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version_3;
|
|
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
bool L_1;
|
|
L_1 = il2cpp_codegen_is_reference_or_contains_references(il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
if (!L_1)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = __this->____size_2;
|
|
V_0 = L_2;
|
|
__this->____size_2 = 0;
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_3) <= ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_4 = __this->____items_1;
|
|
int32_t L_5 = V_0;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_4, 0, L_5, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
__this->____size_2 = 0;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|