blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2 values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260 values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17 values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80 values | src_encoding stringclasses 28 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 8 9.86M | extension stringclasses 52 values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
af0aa1140a9b0c8a2aa1899890c056d0eb602ead | 4ed21bf833f81c2d4489b6b9d4b13c5feed34b39 | /contest/a.cpp | 41d6f6bd13ee45ad1b8088e8becd47f3ea9d7f9e | [] | no_license | hitrzajc/contest-template | 9e3af074e8d69e782ad1d781b896a52b86d4a7c8 | 8d73b2204c5cb7996cf16fb4474ebae196f9102c | refs/heads/main | 2023-05-21T09:34:00.916640 | 2021-06-15T21:37:32 | 2021-06-15T21:37:32 | 310,367,726 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,265 | cpp | #include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
#define ll long long
#define endl "\n"
#define IOS cin.tie(0);cout.tie(0);ios::sync_with_stdio(0);
#define X first
#define Y second
using namespace std;
using namespace __gnu_pbds;
typedef tree<int,null_type,less<int>,rb_tree_tag,tree_order_statistics_node_update> indexed_set; //insert *find_by_order order_of_key
typedef pair<int,int> par;
const int mod = 1e9+7;
int MSB(unsigned x){ //most significant bit-read IEEE 754
union { double a; int64_t b; };
a = x;
return (b >> 20) - 1023;
}
struct custom_hash {
static uint64_t splitmix64(uint64_t x) {
// http://xorshift.di.unimi.it/splitmix64.c
x += 0x9e3779b97f4a7c15;
x = (x ^ (x >> 30)) * 0xbf58476d1ce4e5b9;
x = (x ^ (x >> 27)) * 0x94d049bb133111eb;
return x ^ (x >> 31);
}
size_t operator()(uint64_t x) const {
static const uint64_t FIXED_RANDOM = chrono::steady_clock::now().time_since_epoch().count();
return splitmix64(x + FIXED_RANDOM);
}
};
ll bpow(ll a,ll b){ll s=1;while(b){if(b&1)s*=a;a*=a;b>>=1;}return s;}
ll bmpow(ll a,ll b){ll s=1;while(b){if(b&1)s*=a,s%=mod;a*=a;a%=mod;b>>=1;}return s;}
int main(){
IOS;
}
| [
"tomazic.tadej@gmail.com"
] | tomazic.tadej@gmail.com |
c169c0d4f23e213c10f85e91e9d2319dc4027526 | 479bb4756db1b29d745246c121f1a88d34990c20 | /svm_multiple_sonne/src/ofApp.h | adef9bde7f677f561c4565c69d2d80e7a46c8f1e | [] | no_license | AndreasRef/chartCloudFace | 8dbe08a6df374cab3b207cc4b2590ce4cf0a0dcc | 28dd8a4bf06cf0b7b7e29c064552726450882a4d | refs/heads/master | 2020-03-23T05:26:38.221002 | 2018-12-19T05:13:42 | 2018-12-19T05:13:42 | 141,143,590 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,369 | h | #pragma once
//#define DEFAULT_OSC_DESTINATION "localhost"
//#define DEFAULT_OSC_ADDRESS "/wek/outputs"
//#define DEFAULT_OSC_PORT 12000
//#define DEFAULT_DEVICE_ID 0
#include "ofMain.h"
#include "HighScore.h"
#include "ofxFaceTracker2.h"
#include "ofxBiquadFilter.h"
#include "ofxGui.h"
#include "ofxOsc.h"
typedef dlib::matrix<double,40,1> sample_type;
typedef dlib::radial_basis_kernel<sample_type> kernel_type;
typedef dlib::decision_function<kernel_type> dec_funct_type;
typedef dlib::normalized_function<dec_funct_type> funct_type;
typedef dlib::probabilistic_decision_function<kernel_type> probabilistic_funct_type;
typedef dlib::normalized_function<probabilistic_funct_type> pfunct_type;
class ofApp : public ofBaseApp {
public:
void setup();
void update();
void draw();
void trackingResolutionChanged(bool & trackingResolution);
void eChangeCamera();
void mousePressed(int x, int y, int button);
ofxFaceTracker2 tracker;
ofVideoGrabber grabber;
//CLAHE local constrast algorithm
//int clipLimit = 1;
cv::Mat greyImg, labImg, claheImg, tmpImg;
ofImage outputImage;
//Static image + video
ofImage img;
ofVideoPlayer video;
//SmileSVM
sample_type makeSampleID(int id);
vector<pfunct_type> learned_functions;
vector<ofxBiquadFilter1f> smallSmileValues;
vector<ofxBiquadFilter1f> bigSmileValues;
vector<ofxBiquadFilter1f> eyeBrows;
//Gestures for eyes + eyeBrows
enum Gesture {
LEFT_EYEBROW_HEIGHT, RIGHT_EYEBROW_HEIGHT,
LEFT_EYE_OPENNESS, RIGHT_EYE_OPENNESS
};
float getGesture (Gesture gesture, int id);
//ofxGui
ofxToggle claheFilter;
ofxIntSlider clipLimit;
ofxPanel gui;
ofParameter<string>gDeviceId;
ofxButton bCameraSettings;
ofxToggle trackingResolution;
//Moods
vector<float> moods;
//Calculate stuff for music demo
float avgMood;
float varMood;
// osc
ofxOscSender sender;
string oscDestination, oscAddress;
int oscPort;
vector<ofImage> faceImgs;
vector<ofImage> storedFaces;
//OOP
HighScore myHighScore;
vector <HighScore> highScores;
int faceScaler;
};
static bool my_compare(HighScore &a, HighScore &b);
| [
"andreasrefsgaard@hotmail.com"
] | andreasrefsgaard@hotmail.com |
157ea7971a1965e4b53496c3c9186b8c50b03814 | aba3271b9025b06eb33d7591b4f51c0aa30453bb | /C++/knn.cpp | 94202b9be42c058c9563bfa6064dc17899a9e771 | [] | no_license | hagemon/StatLearning | b47b231dfd836e2bd0c438a8625c8fa82ec73a57 | e57ffcfbc438f2a08d44beb74b8a6325464cdad4 | refs/heads/master | 2022-01-23T17:28:45.714920 | 2019-08-12T07:31:56 | 2019-08-12T07:31:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,178 | cpp | //
// knn.cpp
// StatLearning
//
// Created by 一折 on 2019/7/27.
// Copyright © 2019 一折. All rights reserved.
//
#include "knn.hpp"
#include <iostream>
#include <algorithm>
#include "math.h"
#define INF 99999;
struct heap_greater {
bool operator()(const val_dist_pair& a, const val_dist_pair& b) {
return a.dist < b.dist;
}
};
KDTree::KDTree(std::vector<std::vector<int>> d) {
data.insert(data.begin(), d.begin(), d.end());
n_ft = int(d[0].size());
min_dist = INF;
root = build_tree(data, 0);
}
KDNode* KDTree::create_node(std::vector<int> d, int dim, KDNode* lnode, KDNode* rnode, bool leaf){
KDNode *node = new KDNode;
node->value = d;
node->dim = dim;
node->left = lnode;
node->right = rnode;
node->is_leaf = leaf;
return node;
}
KDNode* KDTree::build_tree(std::vector<std::vector<int>> d, int dim) {
if (d.size() == 0) {
return nullptr;
}
else if (d.size() == 1) {
return create_node(d[0], dim+1, nullptr, nullptr, true);
}
div(d, dim);
int next_dim = (dim + 1) % n_ft;
int k = int(d.size()) / 2;
std::vector<int> median = d[k];
std::vector<std::vector<int>> left_data = slice(d, 0, k);
std::vector<std::vector<int>> right_data = slice(d, k+1, int(d.size()));
KDNode* node = create_node(median, dim, build_tree(left_data, next_dim), build_tree(right_data, next_dim), false);
return node;
}
std::vector<std::vector<int>> KDTree::div(std::vector<std::vector<int>> &v, int dim) {
int k = int(v.size() / 2);
find_k(v, k, dim, 0, int(v.size())-1);
return v;
}
std::vector<std::vector<int>> KDTree::slice(std::vector<std::vector<int>> &v, int start, int end) {
int new_len = end-start;
std::vector<std::vector<int>> nv(new_len);
for (int i=0; i<new_len; i++) {
nv[i] = v[start+i];
}
return nv;
}
void KDTree::find_k(std::vector<std::vector<int>> &v, int k, int dim, int start, int end) {
std::vector<int> guard = v[start];
int left = start + 1;
int right = end;
while (left <= right) {
while (left <= right && v[left][dim] <= guard[dim]) {
left++;
}
while (left <= right && v[right][dim] >= guard[dim]) {
right--;
}
if (left < right){
swap(v[left], v[right]);
}
}
swap(v[start], v[right]);
if (k > right) {
find_k(v, k, dim, right+1, end);
} else if (k < right) {
find_k(v, k, dim, start, right-1);
}
}
void KDTree::pre(KDNode* node) {
for (auto val: node->value) {
std::cout << val << " ";
}
std::cout<< std::endl;
if (node->left != nullptr) {
pre(node->left);
}
if (node->right != nullptr) {
pre(node->right);
}
}
void KDTree::search(std::vector<val_dist_pair>& heap, std::vector<int> target, int k, KDNode* node) {
if (node == nullptr) {
return;
}
if (node->is_leaf) {
int d = dist(node->value, target);
if (d < min_dist) {
val_dist_pair pair = {.val = node->value, .dist = d};
if (heap.size() < k) {
heap.push_back(pair);
std::push_heap(heap.begin(), heap.end(), heap_greater());
if (heap.size() == k) min_dist = heap.front().dist;
} else {
std::pop_heap(heap.begin(), heap.end(), heap_greater());
heap.pop_back();
heap.push_back(pair);
std::push_heap(heap.begin(), heap.end(), heap_greater());
min_dist = heap.front().dist;
}
}
} else {
int dim = node->dim;
if (target[dim] <= node->value[dim]) {
search(heap, target, k, node->left);
if(node->value[dim] - target[dim] <= min_dist) {
search(heap, target, k, node->right);
}
} else {
search(heap, target, k, node->right);
if(target[dim] - node->value[dim] <= min_dist) {
search(heap, target, k, node->left);
}
}
int d = dist(node->value, target);
val_dist_pair pair = {.val = node->value, .dist = d};
if(heap.size() < k) {
heap.push_back(pair);
std::push_heap(heap.begin(), heap.end(), heap_greater());
if (heap.size() == k) min_dist = heap.front().dist;
} else if (d < min_dist) {
std::pop_heap(heap.begin(), heap.end(), heap_greater());
heap.pop_back();
heap.push_back(pair);
std::push_heap(heap.begin(), heap.end(), heap_greater());
min_dist = heap.front().dist;
}
}
}
std::vector<std::vector<int>> KDTree::search_knn(std::vector<int> target, int k) {
std::vector<val_dist_pair> heap;
search(heap, target, k, root);
std::vector<std::vector<int>> result(k);
for(int i=0; i < k; i++) {
result[i] = heap[i].val;
}
return result;
}
int KDTree::dist(std::vector<int> a, std::vector<int> b) {
int d = 0;
for (int i=0; i < a.size(); i++) {
d += pow(a[i]-b[i], 2);
}
return d;
}
| [
"ooonefolder@gmail.com"
] | ooonefolder@gmail.com |
9f194a3048809e0e50f1e74b6493945adee158b7 | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/windows/advcore/ctf/sapilayr/lmobj.h | 7930edea06103267fe4025624c90896aefada179 | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,334 | h | //
// lmobj.h
//
// LMOBJ class definition
#ifndef LMOBJ_H
#define LMOBJ_H
#include "private.h"
#include "sapilayr.h"
#include "candlist.h"
#include "ptrary.h"
#include "initguid.h"
//#include "msime.h"
#include "fnrecon.h"
#if 0
class CSapiAlternativeList;
class CLMObject
{
public:
CLMObject() { m_pFELang = 0; }
~CLMObject();
HRESULT InitLM();
HRESULT AddHomonymsToAlternates(CSapiAlternativeList *pAlternates);
#ifdef LATER
HRESULT FilterAlternates(CSapiAlternativeList *pAlternates);
#endif
BOOL InitOK (void) { return m_fInitOK; }
private:
IFELanguage *m_pFELang;
BOOL m_fInitOK;
};
#endif // if 0
//
// LMAlternates
//
// right now this is nothing more than a wrapper object of
// a single unicode string, but this may need to accomodate
// SRPHRASE objects in the future.
//
class CLMAlternates
{
public:
~CLMAlternates()
{
if (m_szAlternates)
{
delete[] m_szAlternates;
}
}
HRESULT SetString(WCHAR *psz, int cch)
{
if (psz)
{
if (m_szAlternates)
{
delete[] m_szAlternates;
}
m_szAlternates = new WCHAR[cch+1];
if (m_szAlternates)
{
wcsncpy(m_szAlternates, psz, cch);
m_szAlternates[cch] = L'\0';
m_cch = min(cch, (int)wcslen(m_szAlternates));
return S_OK;
}
}
return E_INVALIDARG;
}
HRESULT GetString(WCHAR *psz, int cch)
{
if (m_szAlternates && psz)
{
wcsncpy(psz, m_szAlternates, cch);
return S_OK;
}
return E_FAIL;
}
int GetLen() {return m_cch;}
private:
WCHAR *m_szAlternates;
int m_cch;
};
class CSapiIMX;
class CMasterLMWrap
{
public:
CMasterLMWrap(CSapiIMX *psi)
{
m_langidMasterLM = (LANGID)-1;
m_fLMInited = FALSE;
m_psi = psi;
}
void _EnsureMasterLM(LANGID langidRequested);
protected:
LANGID m_langidMasterLM;
CComPtr<ITfFnLMProcessor> m_cpMasterLM;
BOOL m_fLMInited;
CSapiIMX *m_psi;
};
#endif // LMOBJ_H
| [
"support@cryptoalgo.cf"
] | support@cryptoalgo.cf |
b9f88f6162861a4fe59efae16bdd70671935099a | d99e3a8b8a442062df49c031b13c900fc14aed2b | /11sourcebk/bsadmin/unitinorderfenfa.cpp | 1baba6aea0f93f915e519661acdbd1cdacf82124 | [] | no_license | pengge/jiaocai_new | 1ce79aaded807285c61625e590777bfdb5ce208b | 982bcc7ee55cc1fc3860ced9305271e9fb9571d6 | refs/heads/master | 2022-01-31T03:53:58.434184 | 2016-11-12T12:02:03 | 2016-11-12T12:02:03 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 7,666 | cpp | //---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "unitinorderfenfa.h"
#include "UnitDiaobo.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma link "RzPanel"
#pragma link "RzButton"
#pragma resource "*.dfm"
Tfrmunitinorder *frmunitinorder;
//---------------------------------------------------------------------------
__fastcall Tfrmunitinorder::Tfrmunitinorder(TComponent* Owner,TADOConnection *con,int headerid,AnsiString catalogidlist)
: TForm(Owner)
{
dtp1->Date = Date();
dtp2->Date = Date();
fcon = con;
hdid = headerid;
DBGrid1->OnDrawColumnCell=DBGrid1DrawColumnCell;
}
//---------------------------------------------------------------------------
void __fastcall Tfrmunitinorder::DBGrid1DrawColumnCell(TObject *Sender, const TRect &Rect,
int DataCol, TColumn *Column, Grids::TGridDrawState State)
{
if (DBGrid1->DataSource->DataSet->FieldByName("xuhao")->AsInteger%2 == 0) {
//DBGrid1->Canvas->Brush->Color = clBtnFace;
DBGrid1->Canvas->FillRect(Rect);
DBGrid1->Canvas->Font->Color = clBlue ;
//DBGrid1->Canvas->Font->Style = TFontStyles()<<fsBold;
DBGrid1->DefaultDrawColumnCell(Rect,DataCol,Column,State);
}
if (DBGrid1->DataSource->DataSet->FieldByName("xuhao")->AsInteger%2 == 1 ) {
//DBGrid1->Canvas->Brush->Color = clBtnFace;
DBGrid1->Canvas->FillRect(Rect);
DBGrid1->Canvas->Font->Color = clBlack ;
//DBGrid1->Canvas->Font->Style = TFontStyles()<<fsBold;
DBGrid1->DefaultDrawColumnCell(Rect,DataCol,Column,State);
}
}
//---------------------------------------------------------------------------
void __fastcall Tfrmunitinorder::BtnLastRecordClick(TObject *Sender)
{
cmdAddNote->Parameters->ParamByName("@stghdid")->Value = hdid;
cmdAddNote->Parameters->ParamByName("@StgID")->Value = stgid;
cmdAddNote->Parameters->ParamByName("@user")->Value = userid;
cmdAddNote->Execute();
returncode = cmdAddNote->Parameters->ParamByName("@ReturnCode")->Value ;
sgfirsthid = cmdAddNote->Parameters->ParamByName("@Returnint")->Value ;
AnsiString returncode1 = "已生成配送单:\n" + returncode + "\n是否查看?";
if (MessageBoxA(0,returncode1.c_str(),"询问",MB_ICONQUESTION|MB_OKCANCEL)==1 )
{
//转配送查询
AnsiString sql = "select * from BS_ZN_DiaoNoteHeader where ZNDiaoNtCode in (" + returncode + ")";
Tfrmdiaobo * frm = new Tfrmdiaobo(Application,fcon,stgid,userid,1);
frm->aqhd->Close();
frm->aqhd->SQL->Clear();
frm->aqhd->SQL->Add(sql);
frm->aqhd->Open();
frm->QryNtHeader(sgfirsthid);
frm->cbinstorage->Enabled = false;
frm->BtnSaveAll->Enabled = false;
frm->membk->Enabled = false;
frm->DBNavigator1->Enabled = true;
}
Close();
}
//---------------------------------------------------------------------------
void __fastcall Tfrmunitinorder::BtnExportClick(TObject *Sender)
{
if (query->IsEmpty() ) {
return;
}
DbgridToExcel(DBGrid1);
}
//---------------------------------------------------------------------------
//Excel导出函数
bool Tfrmunitinorder::DbgridToExcel(TDBGrid* dbg)
{
AnsiString temptext,path ;
savedlg->FileName = rkcode + "内部订单";
if (savedlg->Execute())
{
String DBPath,Name;
DBPath = Sysutils::ExtractFilePath(savedlg->FileName .c_str() );
Name = Sysutils::ExtractFileName(savedlg->FileName .c_str() );
DBPath = DBPath + Name + ".xls";
path = DBPath;
}
else
{
return false;
}
if(FileExists(path))
try {
DeleteFileA(path);
} catch (...) {
return false;
}
int n;
Variant v,vSheet,R,xWorkbook;
v =Variant::CreateObject("Excel.Application");
v.OlePropertySet("Visible",true);
v.OlePropertyGet("WorkBooks").OleFunction("Add");
xWorkbook = v.OlePropertyGet("ActiveWorkBook");
vSheet = xWorkbook.OlePropertyGet("ActiveSheet");
n = 0;
int t1= 0;
temptext = "\n";
for(int q=0;q<dbg->FieldCount ;++q)
{
if (dbg->Columns->Items[q]->Visible == true) {
t1++;
temptext = "'"+ dbg->Columns ->Items [q]->Title ->Caption;
v.OlePropertyGet("Cells",1+n,(t1)).OlePropertySet("Value",temptext .c_str() );
}
}
int t2 = dbg->DataSource ->DataSet ->RecordCount ;
dbg->DataSource ->DataSet ->First();
dbg->DataSource ->DataSet->DisableControls();
for(int i=2+n;i<=t2+1+n ;i++)
{
t1=0;
temptext = "\n";
for(int j=1;j<dbg->Columns ->Count+1 ;j++)
{
if (dbg->Columns->Items[j-1]->Visible == true) {
if (dbg->Columns ->Items [j-1]->FieldName == "isbn") {
t1++;
temptext = "'"+ dbg->DataSource ->DataSet ->FieldByName(dbg->Columns ->Items [j-1]->FieldName )->AsAnsiString;
v.OlePropertyGet("Cells",i,t1).OlePropertySet("Value",temptext .c_str() );
}
else if (dbg->Columns ->Items [j-1]->FieldName == "id" || dbg->Columns ->Items [j-1]->FieldName == "backdot"){
}
else
{
t1++;
temptext = dbg->DataSource ->DataSet ->FieldByName(dbg->Columns ->Items [j-1]->FieldName )->AsAnsiString;
v.OlePropertyGet("Cells",i,t1).OlePropertySet("Value",temptext .c_str() ); // AsString .c_str()
}
}
}
dbg->DataSource ->DataSet ->Next() ;
}
R = vSheet.OlePropertyGet("Range",vSheet.OlePropertyGet("Cells",n+1,1),vSheet.OlePropertyGet("Cells",t2+n+1,t1)); //取得合并的区域
R.OlePropertyGet("Borders",2).OlePropertySet("linestyle",1);
R.OlePropertyGet("Borders",4).OlePropertySet("linestyle",1);
dbg->DataSource ->DataSet->EnableControls();
try {
xWorkbook.OleFunction("SaveAs",path.c_str());
} catch (Exception &E) {
}
return false;
}
//---------------------------------------------------------------------------
void __fastcall Tfrmunitinorder::BtnViewClick(TObject *Sender)
{
cmdAddNote->Connection = fcon;
AnsiString sql;
sql = "select distinct DENSE_RANK() over (order by BS_BookCatalog.id) as xuhao,BS_OrderNote.id,BS_BookCatalog.isbn,BS_BookCatalog.name,BS_BookCatalog.price,BS_BookCatalog.author,BS_BookCatalog.presscount,BS_OrderNoteHeader.HdTime,BS_StorageNote.amount as stgamount,"
" BS_PressInfo.AbbreviatedName,dbo.UF_BS_GetClientName(BS_OrderNoteHeader.VendorID) as clientname,BS_OrderNote.Amount,BS_OrderNote.SendAmount,BS_OrderNote.UnsendAmount,order_lock.stkamount,BS_OrderNote.localnum,order_lock.usableamount,sys_user.name as opname "
" from BS_StorageNote left join STK_BookInfo on BS_StorageNote.BkInfoID = STK_BookInfo.id "
" join BS_OrderNote on STK_BookInfo.BkcatalogID = BS_OrderNote.BkcatalogID "
" left join BS_OrderNoteHeader on BS_OrderNote.OrderNtHeaderID = BS_OrderNoteHeader.id "
" left join BS_BookCatalog on BS_OrderNote.BkcatalogID = BS_BookCatalog.id "
" left join BS_PressInfo on BS_BookCatalog.pressid = BS_PressInfo.id "
" left join order_lock on BS_BookCatalog.id = order_lock.bkcatalogid and order_lock.stgid = STK_BookInfo.stgid "
" left join BS_ProcureNote on cast(BS_OrderNote.id as nvarchar(15)) = BS_ProcureNote.orderid "
" left join BS_ProcureNoteHeader on BS_ProcureNoteHeader.ID = BS_ProcureNote.ProcureNtHeaderID "
" left join sys_user on sys_user.id = BS_ProcureNoteHeader.OperatorID "
" where BS_OrderNote.state = 0 and BS_OrderNote.UnsendAmount > 0 and BS_OrderNoteHeader.type = 1 and BS_StorageNote.StgNtHeaderID = " + IntToStr(hdid);
if (ch1->Checked ) {
sql = sql + " and datediff(day,'" +DateToStr(dtp1->Date) + "',BS_OrderNoteHeader.HdTime) >= 0";
}
if (ch2->Checked ) {
sql = sql + " and datediff(day,'" +DateToStr(dtp2->Date) + "',BS_OrderNoteHeader.HdTime) <= 0";
}
query->Connection = fcon;
query->Close();
query->SQL->Clear();
query->SQL->Add(sql);
query->Open();
}
//---------------------------------------------------------------------------
| [
"legendbin@gmail.com"
] | legendbin@gmail.com |
4cc9d88baf11263b7fec3a5e721e5133e1862ab8 | b9404a88c13d723be44f7c247e1417689ce7981a | /include/External/stlib/packages/numerical/specialFunctions/LogarithmOfFactorial.h | bf6f93213edde32cec798d8d30e1b7589208f952 | [
"BSD-2-Clause"
] | permissive | bxl295/m4extreme | c3d0607711e268d22d054a8c3d9e6d123bbf7d78 | 2a4a20ebb5b4e971698f7c981de140d31a5e550c | refs/heads/master | 2022-12-06T19:34:30.460935 | 2020-08-29T20:06:40 | 2020-08-29T20:06:40 | 291,333,994 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,957 | h | // -*- C++ -*-
/*!
\file numerical/specialFunctions/LogarithmOfFactorial.h
\brief The logarithm of the factorial function.
*/
#if !defined(__numerical_LogarithmOfFactorial_h__)
#define __numerical_LogarithmOfFactorial_h__
#include <functional>
#include <cassert>
#include <cmath>
namespace numerical {
//-----------------------------------------------------------------------------
//! \defgroup numerical_specialFunctions_LogarithmOfFactorial The factorial function.
//@{
//! Return log(n!).
/*!
\c T is the number type. Note that you must specify the type explicitly
as a template parameter. It cannot be deduced.
*/
template<typename T>
T
computeLogarithmOfFactorial(int n);
//! The factorial functor.
/*!
\c T is the number type. By default it is double.
*/
template < typename T = double >
class LogarithmOfFactorial :
public std::unary_function<int, T> {
private:
//
// Private types.
//
typedef std::unary_function<int, T> Base;
public:
//
//Public types.
//
//! The argument type.
typedef typename Base::argument_type argument_type;
//! The result type.
typedef typename Base::result_type result_type;
// The default constructor, copy, assignment, and destructor are fine.
//
// Functor.
//
//! Return n!.
result_type
operator()(const argument_type n) const {
return computeLogarithmOfFactorial<result_type>(n);
}
};
//! Convenience function for constructing a \c LogarithmOfFactorial.
/*!
\relates LogarithmOfFactorial
*/
template<typename T>
inline
LogarithmOfFactorial<T>
constructLogarithmOfFactorial() {
return LogarithmOfFactorial<T>();
}
//@}
} // namespace numerical
#define __numerical_specialFunctions_LogarithmOfFactorial_ipp__
#include "LogarithmOfFactorial.ipp"
#undef __numerical_specialFunctions_LogarithmOfFactorial_ipp__
#endif
| [
"xctech@escaas.com"
] | xctech@escaas.com |
6ac56403bfcb466f736a3c05c772c88faf47bed7 | 5aba5f5ffeb95b8954004d2feb9b6f5a686e7db1 | /RSA/Crypt.h | f8ceacb14652da173f080a2018ae7369b0ee0331 | [] | no_license | jiahy0825/RSA | 7e28555a084c1096bc4879d0094b01b1ae4e6ba4 | bdd21ba4bb5d02358a4418af2b4a31d46f220246 | refs/heads/master | 2022-12-29T19:26:41.285187 | 2022-12-09T09:58:58 | 2022-12-09T09:58:58 | 218,510,186 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 512 | h | #ifndef _CRYPT_H
#define _CRYPT_H
#include "Generator.h"
#include "LargeInt.h"
#include "gmp.h"
class Crypt{
private:
LargeInt n;
LargeInt phi;
LargeInt d;
int bits;
public:
LargeInt p;
LargeInt q;
LargeInt e;
// 根据位数生成p q n phi
void generateKey(int bits);
void generateED(LargeInt& tmp);
LargeInt e_gcd(LargeInt e, LargeInt phi);
string encode(string& str);
string decode(string& str);
// 测试密钥生成接口
void setpqe(int p, int q, int e);
void output();
};
#endif | [
"632239375@qq.com"
] | 632239375@qq.com |
27325d34b1c739bed88fb1ea27b7004c09d6c34f | 88e537b9b61a28ea6131631fbd4f876dbef861bc | /src/gsoap/stdsoap2.cpp | 4c4aef2ed02fa57701ac532038ec5c64be80e214 | [] | no_license | JyothishM/EBMS_development | f74ba8b69ea89e7dad78928c54f7043dddb787d1 | 597b1d7d79d46e90e88486fd8894ef3777940327 | refs/heads/master | 2021-01-01T19:55:43.685838 | 2013-01-22T09:09:53 | 2013-01-22T09:09:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 483,916 | cpp | /*
stdsoap2.c[pp] 2.8.12
gSOAP runtime engine
gSOAP XML Web services tools
Copyright (C) 2000-2012, Robert van Engelen, Genivia Inc., All Rights Reserved.
This part of the software is released under ONE of the following licenses:
GPL, or the gSOAP public license, or Genivia's license for commercial use.
--------------------------------------------------------------------------------
Contributors:
Wind River Systems Inc., for the following additions under gSOAP public license:
- vxWorks compatible options
--------------------------------------------------------------------------------
gSOAP public license.
The contents of this file are subject to the gSOAP Public License Version 1.3
(the "License"); you may not use this file except in compliance with the
License. You may obtain a copy of the License at
http://www.cs.fsu.edu/~engelen/soaplicense.html
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the License.
The Initial Developer of the Original Code is Robert A. van Engelen.
Copyright (C) 2000-2012, Robert van Engelen, Genivia Inc., All Rights Reserved.
--------------------------------------------------------------------------------
GPL license.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place, Suite 330, Boston, MA 02111-1307 USA
Author contact information:
engelen@genivia.com / engelen@acm.org
This program is released under the GPL with the additional exemption that
compiling, linking, and/or using OpenSSL is allowed.
--------------------------------------------------------------------------------
A commercial use license is available from Genivia, Inc., contact@genivia.com
--------------------------------------------------------------------------------
*/
#define GSOAP_LIB_VERSION 20812
#ifdef AS400
# pragma convert(819) /* EBCDIC to ASCII */
#endif
#include "stdsoap2.h"
#if GSOAP_VERSION != GSOAP_LIB_VERSION
# error "GSOAP VERSION MISMATCH IN LIBRARY: PLEASE REINSTALL PACKAGE"
#endif
#ifdef __BORLANDC__
# pragma warn -8060
#else
# ifdef WIN32
# ifdef UNDER_CE
# pragma comment(lib, "ws2.lib") /* WinCE */
# else
# pragma comment(lib, "ws2_32.lib")
# endif
# pragma warning(disable : 4996) /* disable deprecation warnings */
# endif
#endif
#ifdef __cplusplus
SOAP_SOURCE_STAMP("@(#) stdsoap2.cpp ver 2.8.12 2012-12-08 00:00:00 GMT")
extern "C" {
#else
SOAP_SOURCE_STAMP("@(#) stdsoap2.c ver 2.8.12 2012-12-08 00:00:00 GMT")
#endif
/* 8bit character representing unknown/nonrepresentable character data (e.g. not supported by current locale with multibyte support enabled) */
#ifndef SOAP_UNKNOWN_CHAR
#define SOAP_UNKNOWN_CHAR (127)
#endif
/* EOF=-1 */
#define SOAP_LT (soap_wchar)(-2) /* XML-specific '<' */
#define SOAP_TT (soap_wchar)(-3) /* XML-specific '</' */
#define SOAP_GT (soap_wchar)(-4) /* XML-specific '>' */
#define SOAP_QT (soap_wchar)(-5) /* XML-specific '"' */
#define SOAP_AP (soap_wchar)(-6) /* XML-specific ''' */
#define soap_blank(c) ((c)+1 > 0 && (c) <= 32)
#define soap_notblank(c) ((c) > 32)
#if defined(WIN32) && !defined(UNDER_CE)
#define soap_hash_ptr(p) ((PtrToUlong(p) >> 3) & (SOAP_PTRHASH - 1))
#else
#define soap_hash_ptr(p) ((size_t)(((unsigned long)(p) >> 3) & (SOAP_PTRHASH-1)))
#endif
#if !defined(WITH_LEAN) || defined(SOAP_DEBUG)
static void soap_init_logs(struct soap*);
#endif
#ifdef SOAP_DEBUG
static void soap_close_logfile(struct soap*, int);
static void soap_set_logfile(struct soap*, int, const char*);
#endif
#ifdef SOAP_MEM_DEBUG
static void soap_init_mht(struct soap*);
static void soap_free_mht(struct soap*);
static void soap_track_unlink(struct soap*, const void*);
#endif
#ifndef PALM_2
static int soap_set_error(struct soap*, const char*, const char*, const char*, const char*, int);
static int soap_copy_fault(struct soap*, const char*, const char*, const char*, const char*);
static int soap_getattrval(struct soap*, char*, size_t, soap_wchar);
#endif
#ifndef PALM_1
static void soap_free_ns(struct soap *soap);
static soap_wchar soap_char(struct soap*);
static soap_wchar soap_get_pi(struct soap*);
static int soap_isxdigit(int);
static void *fplugin(struct soap*, const char*);
static size_t soap_count_attachments(struct soap *soap);
static int soap_try_connect_command(struct soap*, int http_command, const char *endpoint, const char *action);
#ifdef WITH_NTLM
static int soap_ntlm_handshake(struct soap *soap, int command, const char *endpoint, const char *host, int port);
#endif
#ifndef WITH_NOIDREF
static int soap_has_copies(struct soap*, const char*, const char*);
static void soap_init_iht(struct soap*);
static void soap_free_iht(struct soap*);
static void soap_init_pht(struct soap*);
static void soap_free_pht(struct soap*);
#endif
#endif
#ifndef WITH_LEAN
static const char *soap_set_validation_fault(struct soap*, const char*, const char*);
static int soap_isnumeric(struct soap*, const char*);
static struct soap_nlist *soap_push_ns(struct soap *soap, const char *id, const char *ns, short utilized);
static void soap_utilize_ns(struct soap *soap, const char *tag);
#endif
#ifndef WITH_LEANER
#ifndef PALM_1
static struct soap_multipart *soap_new_multipart(struct soap*, struct soap_multipart**, struct soap_multipart**, char*, size_t);
static int soap_putdimefield(struct soap*, const char*, size_t);
static char *soap_getdimefield(struct soap*, size_t);
static void soap_select_mime_boundary(struct soap*);
static int soap_valid_mime_boundary(struct soap*);
static void soap_resolve_attachment(struct soap*, struct soap_multipart*);
#endif
#endif
#ifdef WITH_GZIP
static int soap_getgziphdr(struct soap*);
#endif
#ifdef WITH_OPENSSL
# ifndef SOAP_SSL_RSA_BITS
# define SOAP_SSL_RSA_BITS 2048
# endif
static int soap_ssl_init_done = 0;
static int ssl_auth_init(struct soap*);
static int ssl_verify_callback(int, X509_STORE_CTX*);
static int ssl_verify_callback_allow_expired_certificate(int, X509_STORE_CTX*);
static int ssl_password(char*, int, int, void *);
#endif
#ifdef WITH_GNUTLS
# ifndef SOAP_SSL_RSA_BITS
# define SOAP_SSL_RSA_BITS 2048
# endif
static int soap_ssl_init_done = 0;
static const char *ssl_verify(struct soap *soap, const char *host);
# if defined(HAVE_PTHREAD_H)
# include <pthread.h>
/* make GNUTLS thread safe with pthreads */
GCRY_THREAD_OPTION_PTHREAD_IMPL;
# elif defined(HAVE_PTH_H)
#include <pth.h>
/* make GNUTLS thread safe with PTH */
GCRY_THREAD_OPTION_PTH_IMPL;
# endif
#endif
#if !defined(WITH_NOHTTP) || !defined(WITH_LEANER)
#ifndef PALM_1
static const char *soap_decode(char*, size_t, const char*, const char*);
#endif
#endif
#ifndef WITH_NOHTTP
#ifndef PALM_1
static soap_wchar soap_getchunkchar(struct soap*);
static const char *http_error(struct soap*, int);
static int http_get(struct soap*);
static int http_405(struct soap*);
static int http_200(struct soap*);
static int http_post(struct soap*, const char*, const char*, int, const char*, const char*, size_t);
static int http_send_header(struct soap*, const char*);
static int http_post_header(struct soap*, const char*, const char*);
static int http_response(struct soap*, int, size_t);
static int http_parse(struct soap*);
static int http_parse_header(struct soap*, const char*, const char*);
#endif
#endif
#ifndef WITH_NOIO
#ifndef PALM_1
static int fsend(struct soap*, const char*, size_t);
static size_t frecv(struct soap*, char*, size_t);
static int tcp_init(struct soap*);
static const char *tcp_error(struct soap*);
#ifndef WITH_IPV6
static int tcp_gethost(struct soap*, const char *addr, struct in_addr *inaddr);
#endif
static SOAP_SOCKET tcp_connect(struct soap*, const char *endpoint, const char *host, int port);
static SOAP_SOCKET tcp_accept(struct soap*, SOAP_SOCKET, struct sockaddr*, int*);
static int tcp_select(struct soap*, SOAP_SOCKET, int, int);
static int tcp_disconnect(struct soap*);
static int tcp_closesocket(struct soap*, SOAP_SOCKET);
static int tcp_shutdownsocket(struct soap*, SOAP_SOCKET, int);
static const char *soap_strerror(struct soap*);
#endif
#define SOAP_TCP_SELECT_RCV 0x1
#define SOAP_TCP_SELECT_SND 0x2
#define SOAP_TCP_SELECT_ERR 0x4
#define SOAP_TCP_SELECT_ALL 0x7
#if defined(WIN32)
#define SOAP_SOCKBLOCK(fd) \
{ u_long blocking = 0; \
ioctlsocket(fd, FIONBIO, &blocking); \
}
#define SOAP_SOCKNONBLOCK(fd) \
{ u_long nonblocking = 1; \
ioctlsocket(fd, FIONBIO, &nonblocking); \
}
#elif defined(VXWORKS)
#define SOAP_SOCKBLOCK(fd) \
{ u_long blocking = 0; \
ioctl(fd, FIONBIO, (int)(&blocking)); \
}
#define SOAP_SOCKNONBLOCK(fd) \
{ u_long nonblocking = 1; \
ioctl(fd, FIONBIO, (int)(&nonblocking)); \
}
#elif defined(__VMS)
#define SOAP_SOCKBLOCK(fd) \
{ int blocking = 0; \
ioctl(fd, FIONBIO, &blocking); \
}
#define SOAP_SOCKNONBLOCK(fd) \
{ int nonblocking = 1; \
ioctl(fd, FIONBIO, &nonblocking); \
}
#elif defined(PALM)
#define SOAP_SOCKBLOCK(fd) fcntl(fd, F_SETFL, fcntl(fd, F_GETFL, 0)&~O_NONBLOCK);
#define SOAP_SOCKNONBLOCK(fd) fcntl(fd, F_SETFL, fcntl(fd, F_GETFL, 0)|O_NONBLOCK);
#elif defined(SYMBIAN)
#define SOAP_SOCKBLOCK(fd) \
{ long blocking = 0; \
ioctl(fd, 0/*FIONBIO*/, &blocking); \
}
#define SOAP_SOCKNONBLOCK(fd) \
{ long nonblocking = 1; \
ioctl(fd, 0/*FIONBIO*/, &nonblocking); \
}
#else
#define SOAP_SOCKBLOCK(fd) fcntl(fd, F_SETFL, fcntl(fd, F_GETFL)&~O_NONBLOCK);
#define SOAP_SOCKNONBLOCK(fd) fcntl(fd, F_SETFL, fcntl(fd, F_GETFL)|O_NONBLOCK);
#endif
#endif
#if defined(PALM) && !defined(PALM_2)
unsigned short errno;
#endif
#ifndef PALM_1
static const char soap_env1[42] = "http://schemas.xmlsoap.org/soap/envelope/";
static const char soap_enc1[42] = "http://schemas.xmlsoap.org/soap/encoding/";
static const char soap_env2[40] = "http://www.w3.org/2003/05/soap-envelope";
static const char soap_enc2[40] = "http://www.w3.org/2003/05/soap-encoding";
static const char soap_rpc[35] = "http://www.w3.org/2003/05/soap-rpc";
#endif
#ifndef PALM_1
const union soap_double_nan soap_double_nan = {{0xFFFFFFFF, 0xFFFFFFFF}};
const char soap_base64o[65] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
const char soap_base64i[81] = "\76XXX\77\64\65\66\67\70\71\72\73\74\75XXXXXXX\00\01\02\03\04\05\06\07\10\11\12\13\14\15\16\17\20\21\22\23\24\25\26\27\30\31XXXXXX\32\33\34\35\36\37\40\41\42\43\44\45\46\47\50\51\52\53\54\55\56\57\60\61\62\63";
#endif
#ifndef WITH_LEAN
static const char soap_indent[11] = "\n\t\t\t\t\t\t\t\t\t";
/* Alternative indentation form for SOAP_XML_INDENT:
static const char soap_indent[21] = "\n ";
*/
#endif
#ifndef SOAP_CANARY
# define SOAP_CANARY (0xC0DE)
#endif
static const char soap_padding[4] = "\0\0\0";
#define SOAP_STR_PADDING (soap_padding)
#define SOAP_STR_EOS (soap_padding)
#define SOAP_NON_NULL (soap_padding)
#ifndef WITH_LEAN
static const struct soap_code_map html_entity_codes[] = /* entities for XHTML parsing */
{ { 160, "nbsp" },
{ 161, "iexcl" },
{ 162, "cent" },
{ 163, "pound" },
{ 164, "curren" },
{ 165, "yen" },
{ 166, "brvbar" },
{ 167, "sect" },
{ 168, "uml" },
{ 169, "copy" },
{ 170, "ordf" },
{ 171, "laquo" },
{ 172, "not" },
{ 173, "shy" },
{ 174, "reg" },
{ 175, "macr" },
{ 176, "deg" },
{ 177, "plusmn" },
{ 178, "sup2" },
{ 179, "sup3" },
{ 180, "acute" },
{ 181, "micro" },
{ 182, "para" },
{ 183, "middot" },
{ 184, "cedil" },
{ 185, "sup1" },
{ 186, "ordm" },
{ 187, "raquo" },
{ 188, "frac14" },
{ 189, "frac12" },
{ 190, "frac34" },
{ 191, "iquest" },
{ 192, "Agrave" },
{ 193, "Aacute" },
{ 194, "Acirc" },
{ 195, "Atilde" },
{ 196, "Auml" },
{ 197, "Aring" },
{ 198, "AElig" },
{ 199, "Ccedil" },
{ 200, "Egrave" },
{ 201, "Eacute" },
{ 202, "Ecirc" },
{ 203, "Euml" },
{ 204, "Igrave" },
{ 205, "Iacute" },
{ 206, "Icirc" },
{ 207, "Iuml" },
{ 208, "ETH" },
{ 209, "Ntilde" },
{ 210, "Ograve" },
{ 211, "Oacute" },
{ 212, "Ocirc" },
{ 213, "Otilde" },
{ 214, "Ouml" },
{ 215, "times" },
{ 216, "Oslash" },
{ 217, "Ugrave" },
{ 218, "Uacute" },
{ 219, "Ucirc" },
{ 220, "Uuml" },
{ 221, "Yacute" },
{ 222, "THORN" },
{ 223, "szlig" },
{ 224, "agrave" },
{ 225, "aacute" },
{ 226, "acirc" },
{ 227, "atilde" },
{ 228, "auml" },
{ 229, "aring" },
{ 230, "aelig" },
{ 231, "ccedil" },
{ 232, "egrave" },
{ 233, "eacute" },
{ 234, "ecirc" },
{ 235, "euml" },
{ 236, "igrave" },
{ 237, "iacute" },
{ 238, "icirc" },
{ 239, "iuml" },
{ 240, "eth" },
{ 241, "ntilde" },
{ 242, "ograve" },
{ 243, "oacute" },
{ 244, "ocirc" },
{ 245, "otilde" },
{ 246, "ouml" },
{ 247, "divide" },
{ 248, "oslash" },
{ 249, "ugrave" },
{ 250, "uacute" },
{ 251, "ucirc" },
{ 252, "uuml" },
{ 253, "yacute" },
{ 254, "thorn" },
{ 255, "yuml" },
{ 0, NULL }
};
#endif
#ifndef WITH_NOIO
#ifndef WITH_LEAN
static const struct soap_code_map h_error_codes[] =
{
#ifdef HOST_NOT_FOUND
{ HOST_NOT_FOUND, "Host not found" },
#endif
#ifdef TRY_AGAIN
{ TRY_AGAIN, "Try Again" },
#endif
#ifdef NO_RECOVERY
{ NO_RECOVERY, "No Recovery" },
#endif
#ifdef NO_DATA
{ NO_DATA, "No Data" },
#endif
#ifdef NO_ADDRESS
{ NO_ADDRESS, "No Address" },
#endif
{ 0, NULL }
};
#endif
#endif
#ifndef WITH_NOHTTP
#ifndef WITH_LEAN
static const struct soap_code_map h_http_error_codes[] =
{ { 200, "OK" },
{ 201, "Created" },
{ 202, "Accepted" },
{ 203, "Non-Authoritative Information" },
{ 204, "No Content" },
{ 205, "Reset Content" },
{ 206, "Partial Content" },
{ 300, "Multiple Choices" },
{ 301, "Moved Permanently" },
{ 302, "Found" },
{ 303, "See Other" },
{ 304, "Not Modified" },
{ 305, "Use Proxy" },
{ 307, "Temporary Redirect" },
{ 400, "Bad Request" },
{ 401, "Unauthorized" },
{ 402, "Payment Required" },
{ 403, "Forbidden" },
{ 404, "Not Found" },
{ 405, "Method Not Allowed" },
{ 406, "Not Acceptable" },
{ 407, "Proxy Authentication Required" },
{ 408, "Request Time-out" },
{ 409, "Conflict" },
{ 410, "Gone" },
{ 411, "Length Required" },
{ 412, "Precondition Failed" },
{ 413, "Request Entity Too Large" },
{ 414, "Request-URI Too Large" },
{ 415, "Unsupported Media Type" },
{ 416, "Requested range not satisfiable" },
{ 417, "Expectation Failed" },
{ 500, "Internal Server Error" },
{ 501, "Not Implemented" },
{ 502, "Bad Gateway" },
{ 503, "Service Unavailable" },
{ 504, "Gateway Time-out" },
{ 505, "HTTP Version not supported" },
{ 0, NULL }
};
#endif
#endif
#ifdef WITH_OPENSSL
static const struct soap_code_map h_ssl_error_codes[] =
{
#define _SSL_ERROR(e) { e, #e }
_SSL_ERROR(SSL_ERROR_SSL),
_SSL_ERROR(SSL_ERROR_ZERO_RETURN),
_SSL_ERROR(SSL_ERROR_WANT_READ),
_SSL_ERROR(SSL_ERROR_WANT_WRITE),
_SSL_ERROR(SSL_ERROR_WANT_CONNECT),
_SSL_ERROR(SSL_ERROR_WANT_X509_LOOKUP),
_SSL_ERROR(SSL_ERROR_SYSCALL),
{ 0, NULL }
};
#endif
#ifndef WITH_LEANER
static const struct soap_code_map mime_codes[] =
{ { SOAP_MIME_7BIT, "7bit" },
{ SOAP_MIME_8BIT, "8bit" },
{ SOAP_MIME_BINARY, "binary" },
{ SOAP_MIME_QUOTED_PRINTABLE, "quoted-printable" },
{ SOAP_MIME_BASE64, "base64" },
{ SOAP_MIME_IETF_TOKEN, "ietf-token" },
{ SOAP_MIME_X_TOKEN, "x-token" },
{ 0, NULL }
};
#endif
#ifdef WIN32
static int tcp_done = 0;
#endif
#if defined(HP_UX) && defined(HAVE_GETHOSTBYNAME_R)
extern int h_errno;
#endif
/******************************************************************************/
#ifndef WITH_NOIO
#ifndef PALM_1
static int
fsend(struct soap *soap, const char *s, size_t n)
{ register int nwritten, err;
SOAP_SOCKET sk;
#if defined(__cplusplus) && !defined(WITH_LEAN) && !defined(WITH_COMPAT)
if (soap->os)
{ soap->os->write(s, (std::streamsize)n);
if (soap->os->good())
return SOAP_OK;
soap->errnum = 0;
return SOAP_EOF;
}
#endif
sk = soap->sendsk;
if (!soap_valid_socket(sk))
sk = soap->socket;
while (n)
{ if (soap_valid_socket(sk))
{
if (soap->send_timeout)
{ for (;;)
{ register int r;
#ifdef WITH_OPENSSL
if (soap->ssl)
r = tcp_select(soap, sk, SOAP_TCP_SELECT_ALL, soap->send_timeout);
else
#endif
#ifdef WITH_GNUTLS
if (soap->session)
r = tcp_select(soap, sk, SOAP_TCP_SELECT_ALL, soap->send_timeout);
else
#endif
r = tcp_select(soap, sk, SOAP_TCP_SELECT_SND | SOAP_TCP_SELECT_ERR, soap->send_timeout);
if (r > 0)
break;
if (!r)
return SOAP_EOF;
err = soap->errnum;
if (!err)
return soap->error;
if (err != SOAP_EINTR && err != SOAP_EAGAIN && err != SOAP_EWOULDBLOCK)
return SOAP_EOF;
}
}
#ifdef WITH_OPENSSL
if (soap->ssl)
nwritten = SSL_write(soap->ssl, s, (int)n);
else if (soap->bio)
nwritten = BIO_write(soap->bio, s, (int)n);
else
#endif
#ifdef WITH_GNUTLS
if (soap->session)
nwritten = gnutls_record_send(soap->session, s, n);
else
#endif
#ifndef WITH_LEAN
if ((soap->omode & SOAP_IO_UDP))
{ if (soap->peerlen)
nwritten = sendto(sk, (char*)s, (SOAP_WINSOCKINT)n, soap->socket_flags, (struct sockaddr*)&soap->peer, (SOAP_WINSOCKINT)soap->peerlen);
else
nwritten = send(sk, s, (SOAP_WINSOCKINT)n, soap->socket_flags);
/* retry and back-off algorithm */
/* TODO: this is not very clear from specs so verify and limit conditions under which we should loop (e.g. ENOBUFS) */
if (nwritten < 0)
{ int udp_repeat;
int udp_delay;
if ((soap->connect_flags & SO_BROADCAST))
udp_repeat = 2; /* SOAP-over-UDP MULTICAST_UDP_REPEAT - 1 */
else
udp_repeat = 1; /* SOAP-over-UDP UNICAST_UDP_REPEAT - 1 */
udp_delay = ((unsigned int)soap_random % 201) + 50; /* UDP_MIN_DELAY .. UDP_MAX_DELAY */
do
{ tcp_select(soap, sk, SOAP_TCP_SELECT_ERR, -1000 * udp_delay);
if (soap->peerlen)
nwritten = sendto(sk, (char*)s, (SOAP_WINSOCKINT)n, soap->socket_flags, (struct sockaddr*)&soap->peer, (SOAP_WINSOCKINT)soap->peerlen);
else
nwritten = send(sk, s, (SOAP_WINSOCKINT)n, soap->socket_flags);
udp_delay <<= 1;
if (udp_delay > 500) /* UDP_UPPER_DELAY */
udp_delay = 500;
}
while (nwritten < 0 && --udp_repeat > 0);
}
if (nwritten < 0)
{ err = soap_socket_errno(sk);
if (err && err != SOAP_EINTR)
{ soap->errnum = err;
return SOAP_EOF;
}
nwritten = 0; /* and call write() again */
}
}
else
#endif
#if !defined(PALM) && !defined(AS400)
nwritten = send(sk, s, (int)n, soap->socket_flags);
#else
nwritten = send(sk, (void*)s, n, soap->socket_flags);
#endif
if (nwritten <= 0)
{
register int r = 0;
err = soap_socket_errno(sk);
#ifdef WITH_OPENSSL
if (soap->ssl && (r = SSL_get_error(soap->ssl, nwritten)) != SSL_ERROR_NONE && r != SSL_ERROR_WANT_READ && r != SSL_ERROR_WANT_WRITE)
{ soap->errnum = err;
return SOAP_EOF;
}
#endif
#ifdef WITH_GNUTLS
if (soap->session)
{ if (nwritten == GNUTLS_E_INTERRUPTED)
err = SOAP_EINTR;
else if (nwritten == GNUTLS_E_AGAIN)
err = SOAP_EAGAIN;
}
#endif
if (err == SOAP_EWOULDBLOCK || err == SOAP_EAGAIN)
{
#if defined(WITH_OPENSSL)
if (soap->ssl && r == SSL_ERROR_WANT_READ)
r = tcp_select(soap, sk, SOAP_TCP_SELECT_RCV | SOAP_TCP_SELECT_ERR, soap->send_timeout ? soap->send_timeout : -10000);
else
#elif defined(WITH_GNUTLS)
if (soap->session && !gnutls_record_get_direction(soap->session))
r = tcp_select(soap, sk, SOAP_TCP_SELECT_RCV | SOAP_TCP_SELECT_ERR, soap->send_timeout ? soap->send_timeout : -10000);
else
#endif
r = tcp_select(soap, sk, SOAP_TCP_SELECT_SND | SOAP_TCP_SELECT_ERR, soap->send_timeout ? soap->send_timeout : -10000);
if (!r && soap->send_timeout)
return SOAP_EOF;
if (r < 0 && soap->errnum != SOAP_EINTR)
return SOAP_EOF;
}
else if (err && err != SOAP_EINTR)
{ soap->errnum = err;
return SOAP_EOF;
}
nwritten = 0; /* and call write() again */
}
}
else
{
#ifdef WITH_FASTCGI
nwritten = fwrite((void*)s, 1, n, stdout);
fflush(stdout);
#else
#ifdef UNDER_CE
nwritten = fwrite(s, 1, n, soap->sendfd);
#else
#ifdef VXWORKS
#ifdef WMW_RPM_IO
if (soap->rpmreqid)
nwritten = (httpBlockPut(soap->rpmreqid, (char*)s, n) == 0) ? n : -1;
else
#endif
nwritten = fwrite(s, sizeof(char), n, fdopen(soap->sendfd, "w"));
#else
#ifdef WIN32
nwritten = _write(soap->sendfd, s, (unsigned int)n);
#else
nwritten = write(soap->sendfd, s, (unsigned int)n);
#endif
#endif
#endif
#endif
if (nwritten <= 0)
{
#ifndef WITH_FASTCGI
err = soap_errno;
#else
err = EOF;
#endif
if (err && err != SOAP_EINTR && err != SOAP_EWOULDBLOCK && err != SOAP_EAGAIN)
{ soap->errnum = err;
return SOAP_EOF;
}
nwritten = 0; /* and call write() again */
}
}
n -= nwritten;
s += nwritten;
}
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_send_raw(struct soap *soap, const char *s, size_t n)
{ if (!n)
return SOAP_OK;
#ifndef WITH_LEANER
if (soap->fpreparesend && (soap->mode & SOAP_IO) != SOAP_IO_STORE && (soap->mode & SOAP_IO_LENGTH) && (soap->error = soap->fpreparesend(soap, s, n)))
return soap->error;
if (soap->ffiltersend && (soap->error = soap->ffiltersend(soap, &s, &n)))
return soap->error;
#endif
if (soap->mode & SOAP_IO_LENGTH)
soap->count += n;
else if (soap->mode & SOAP_IO)
{ register size_t i = SOAP_BUFLEN - soap->bufidx;
while (n >= i)
{ memcpy(soap->buf + soap->bufidx, s, i);
soap->bufidx = SOAP_BUFLEN;
if (soap_flush(soap))
return soap->error;
s += i;
n -= i;
i = SOAP_BUFLEN;
}
memcpy(soap->buf + soap->bufidx, s, n);
soap->bufidx += n;
}
else
return soap_flush_raw(soap, s, n);
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_flush(struct soap *soap)
{ register size_t n = soap->bufidx;
if (n)
{
#ifndef WITH_LEANER
if ((soap->mode & SOAP_IO) == SOAP_IO_STORE)
{ register int r;
if (soap->fpreparesend && (r = soap->fpreparesend(soap, soap->buf, n)))
return soap->error = r;
}
#endif
soap->bufidx = 0;
#ifdef WITH_ZLIB
if (soap->mode & SOAP_ENC_ZLIB)
{ soap->d_stream->next_in = (Byte*)soap->buf;
soap->d_stream->avail_in = (unsigned int)n;
#ifdef WITH_GZIP
soap->z_crc = crc32(soap->z_crc, (Byte*)soap->buf, (unsigned int)n);
#endif
do
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Deflating %u bytes\n", soap->d_stream->avail_in));
if (deflate(soap->d_stream, Z_NO_FLUSH) != Z_OK)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Unable to deflate: %s\n", soap->d_stream->msg ? soap->d_stream->msg : SOAP_STR_EOS));
return soap->error = SOAP_ZLIB_ERROR;
}
if (!soap->d_stream->avail_out)
{ if (soap_flush_raw(soap, soap->z_buf, SOAP_BUFLEN))
return soap->error;
soap->d_stream->next_out = (Byte*)soap->z_buf;
soap->d_stream->avail_out = SOAP_BUFLEN;
}
} while (soap->d_stream->avail_in);
}
else
#endif
return soap_flush_raw(soap, soap->buf, n);
}
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_flush_raw(struct soap *soap, const char *s, size_t n)
{ if ((soap->mode & SOAP_IO) == SOAP_IO_STORE)
{ register char *t;
if (!(t = (char*)soap_push_block(soap, NULL, n)))
return soap->error = SOAP_EOM;
memcpy(t, s, n);
return SOAP_OK;
}
#ifndef WITH_LEANER
if ((soap->mode & SOAP_IO) == SOAP_IO_CHUNK)
{ char t[16];
sprintf(t, &"\r\n%lX\r\n"[soap->chunksize ? 0 : 2], (unsigned long)n);
DBGMSG(SENT, t, strlen(t));
if ((soap->error = soap->fsend(soap, t, strlen(t))))
return soap->error;
soap->chunksize += n;
}
DBGMSG(SENT, s, n);
#endif
return soap->error = soap->fsend(soap, s, n);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_send(struct soap *soap, const char *s)
{ if (s)
return soap_send_raw(soap, s, strlen(s));
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_send2(struct soap *soap, const char *s1, const char *s2)
{ if (soap_send(soap, s1))
return soap->error;
return soap_send(soap, s2);
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_send3(struct soap *soap, const char *s1, const char *s2, const char *s3)
{ if (soap_send(soap, s1)
|| soap_send(soap, s2))
return soap->error;
return soap_send(soap, s3);
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIO
#ifndef PALM_1
static size_t
frecv(struct soap *soap, char *s, size_t n)
{ register int r;
register int retries = 100; /* max 100 retries with non-blocking sockets */
SOAP_SOCKET sk;
soap->errnum = 0;
#if defined(__cplusplus) && !defined(WITH_LEAN) && !defined(WITH_COMPAT)
if (soap->is)
{ if (soap->is->good())
return soap->is->read(s, (std::streamsize)n).gcount();
return 0;
}
#endif
sk = soap->recvsk;
if (!soap_valid_socket(sk))
sk = soap->socket;
if (soap_valid_socket(sk))
{ for (;;)
{
#ifdef WITH_OPENSSL
register int err = 0;
#endif
#ifdef WITH_OPENSSL
if (soap->recv_timeout && !soap->ssl) /* SSL: sockets are nonblocking */
#else
if (soap->recv_timeout)
#endif
{ for (;;)
{ r = tcp_select(soap, sk, SOAP_TCP_SELECT_RCV | SOAP_TCP_SELECT_ERR, soap->recv_timeout);
if (r > 0)
break;
if (!r)
return 0;
r = soap->errnum;
if (r != SOAP_EINTR && r != SOAP_EAGAIN && r != SOAP_EWOULDBLOCK)
return 0;
}
}
#ifdef WITH_OPENSSL
if (soap->ssl)
{ r = SSL_read(soap->ssl, s, (int)n);
if (r > 0)
return (size_t)r;
err = SSL_get_error(soap->ssl, r);
if (err != SSL_ERROR_NONE && err != SSL_ERROR_WANT_READ && err != SSL_ERROR_WANT_WRITE)
return 0;
}
else if (soap->bio)
{ r = BIO_read(soap->bio, s, (int)n);
if (r > 0)
return (size_t)r;
return 0;
}
else
#endif
#ifdef WITH_GNUTLS
if (soap->session)
{ r = (int)gnutls_record_recv(soap->session, s, n);
if (r >= 0)
return (size_t)r;
}
else
#endif
{
#ifndef WITH_LEAN
if ((soap->omode & SOAP_IO_UDP))
{ SOAP_SOCKLEN_T k = (SOAP_SOCKLEN_T)sizeof(soap->peer);
memset((void*)&soap->peer, 0, sizeof(soap->peer));
r = recvfrom(sk, s, (SOAP_WINSOCKINT)n, soap->socket_flags, (struct sockaddr*)&soap->peer, &k); /* portability note: see SOAP_SOCKLEN_T definition in stdsoap2.h */
soap->peerlen = (size_t)k;
#ifndef WITH_IPV6
soap->ip = ntohl(soap->peer.sin_addr.s_addr);
#endif
}
else
#endif
r = recv(sk, s, (int)n, soap->socket_flags);
#ifdef PALM
/* CycleSyncDisplay(curStatusMsg); */
#endif
if (r >= 0)
return (size_t)r;
r = soap_socket_errno(sk);
if (r != SOAP_EINTR && r != SOAP_EAGAIN && r != SOAP_EWOULDBLOCK)
{ soap->errnum = r;
return 0;
}
}
#if defined(WITH_OPENSSL)
if (soap->ssl && err == SSL_ERROR_WANT_WRITE)
r = tcp_select(soap, sk, SOAP_TCP_SELECT_SND | SOAP_TCP_SELECT_ERR, soap->recv_timeout ? soap->recv_timeout : 5);
else
#elif defined(WITH_GNUTLS)
if (soap->session && gnutls_record_get_direction(soap->session))
r = tcp_select(soap, sk, SOAP_TCP_SELECT_SND | SOAP_TCP_SELECT_ERR, soap->recv_timeout ? soap->recv_timeout : 5);
else
#endif
r = tcp_select(soap, sk, SOAP_TCP_SELECT_RCV | SOAP_TCP_SELECT_ERR, soap->recv_timeout ? soap->recv_timeout : 5);
if (!r && soap->recv_timeout)
return 0;
if (r < 0)
{ r = soap->errnum;
if (r != SOAP_EINTR && r != SOAP_EAGAIN && r != SOAP_EWOULDBLOCK)
return 0;
}
if (retries-- <= 0)
return 0;
#ifdef PALM
r = soap_socket_errno(sk);
if (r != SOAP_EINTR && retries-- <= 0)
{ soap->errnum = r;
return 0;
}
#endif
}
}
#ifdef WITH_FASTCGI
return fread(s, 1, n, stdin);
#else
#ifdef UNDER_CE
return fread(s, 1, n, soap->recvfd);
#else
#ifdef WMW_RPM_IO
if (soap->rpmreqid)
r = httpBlockRead(soap->rpmreqid, s, n);
else
#endif
#ifdef WIN32
r = _read(soap->recvfd, s, (unsigned int)n);
#else
r = read(soap->recvfd, s, (unsigned int)n);
#endif
if (r >= 0)
return (size_t)r;
soap->errnum = soap_errno;
return 0;
#endif
#endif
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOHTTP
#ifndef PALM_1
static soap_wchar
soap_getchunkchar(struct soap *soap)
{ if (soap->bufidx < soap->buflen)
return soap->buf[soap->bufidx++];
soap->bufidx = 0;
soap->buflen = soap->chunkbuflen = soap->frecv(soap, soap->buf, SOAP_BUFLEN);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Read %u bytes from socket=%d/fd=%d\n", (unsigned int)soap->buflen, soap->socket, soap->recvfd));
DBGMSG(RECV, soap->buf, soap->buflen);
if (soap->buflen)
return soap->buf[soap->bufidx++];
return EOF;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_1
static int
soap_isxdigit(int c)
{ return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f');
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_recv_raw(struct soap *soap)
{ register size_t ret;
#if !defined(WITH_LEANER) || defined(WITH_ZLIB)
register int r;
#endif
#ifdef WITH_ZLIB
if (soap->mode & SOAP_ENC_ZLIB)
{ if (soap->d_stream->next_out == Z_NULL)
{ soap->bufidx = soap->buflen = 0;
return EOF;
}
if (soap->d_stream->avail_in || !soap->d_stream->avail_out)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Inflating\n"));
soap->d_stream->next_out = (Byte*)soap->buf;
soap->d_stream->avail_out = SOAP_BUFLEN;
r = inflate(soap->d_stream, Z_NO_FLUSH);
if (r == Z_NEED_DICT && soap->z_dict)
r = inflateSetDictionary(soap->d_stream, (const Bytef*)soap->z_dict, soap->z_dict_len);
if (r == Z_OK || r == Z_STREAM_END)
{ soap->bufidx = 0;
ret = soap->buflen = SOAP_BUFLEN - soap->d_stream->avail_out;
if (soap->zlib_in == SOAP_ZLIB_GZIP)
soap->z_crc = crc32(soap->z_crc, (Byte*)soap->buf, (unsigned int)ret);
if (r == Z_STREAM_END)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Inflated %lu->%lu bytes\n", soap->d_stream->total_in, soap->d_stream->total_out));
soap->z_ratio_in = (float)soap->d_stream->total_in / (float)soap->d_stream->total_out;
soap->d_stream->next_out = Z_NULL;
}
if (ret)
{ soap->count += ret;
DBGLOG(RECV, SOAP_MESSAGE(fdebug, "\n---- decompressed ----\n"));
DBGMSG(RECV, soap->buf, ret);
DBGLOG(RECV, SOAP_MESSAGE(fdebug, "\n----\n"));
#ifndef WITH_LEANER
if (soap->fpreparerecv && (r = soap->fpreparerecv(soap, soap->buf, ret)))
return soap->error = r;
#endif
return SOAP_OK;
}
}
else if (r != Z_BUF_ERROR)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Inflate error: %s\n", soap->d_stream->msg ? soap->d_stream->msg : SOAP_STR_EOS));
soap->d_stream->next_out = Z_NULL;
return soap->error = SOAP_ZLIB_ERROR;
}
}
zlib_again:
if ((soap->mode & SOAP_IO) == SOAP_IO_CHUNK && !soap->chunksize)
{ memcpy(soap->buf, soap->z_buf, SOAP_BUFLEN);
soap->buflen = soap->z_buflen;
}
DBGLOG(RECV, SOAP_MESSAGE(fdebug, "\n---- compressed ----\n"));
}
#endif
#ifndef WITH_NOHTTP
if ((soap->mode & SOAP_IO) == SOAP_IO_CHUNK) /* read HTTP chunked transfer */
{ for (;;)
{ register soap_wchar c;
char *t, tmp[17];
if (soap->chunksize)
{ soap->buflen = ret = soap->frecv(soap, soap->buf, soap->chunksize > SOAP_BUFLEN ? SOAP_BUFLEN : soap->chunksize);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Getting chunk: read %u bytes\n", (unsigned int)ret));
DBGMSG(RECV, soap->buf, ret);
soap->bufidx = 0;
soap->chunksize -= ret;
break;
}
t = tmp;
if (!soap->chunkbuflen)
{ soap->chunkbuflen = ret = soap->frecv(soap, soap->buf, SOAP_BUFLEN);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Read %u bytes (chunked) from socket %d\n", (unsigned int)ret, soap->socket));
DBGMSG(RECV, soap->buf, ret);
soap->bufidx = 0;
if (!ret)
{ soap->ahead = EOF;
return EOF;
}
}
else
soap->bufidx = soap->buflen;
soap->buflen = soap->chunkbuflen;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Getting chunk size (idx=%u len=%u)\n", (unsigned int)soap->bufidx, (unsigned int)soap->buflen));
while (!soap_isxdigit((int)(c = soap_getchunkchar(soap))))
{ if ((int)c == EOF)
{ soap->ahead = EOF;
return EOF;
}
}
do
*t++ = (char)c;
while (soap_isxdigit((int)(c = soap_getchunkchar(soap))) && (size_t)(t - tmp) < sizeof(tmp)-1);
while ((int)c != EOF && c != '\n')
c = soap_getchunkchar(soap);
if ((int)c == EOF)
{ soap->ahead = EOF;
return EOF;
}
*t = '\0';
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Chunk size = %s (hex)\n", tmp));
soap->chunksize = (size_t)soap_strtoul(tmp, &t, 16);
if (!soap->chunksize)
{ soap->bufidx = soap->buflen = soap->chunkbuflen = 0;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "End of chunked message\n"));
while ((int)c != EOF && c != '\n')
c = soap_getchunkchar(soap);
ret = 0;
soap->ahead = EOF;
break;
}
soap->buflen = soap->bufidx + soap->chunksize;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Moving buf len to idx=%u len=%u (%s)\n", (unsigned int)soap->bufidx, (unsigned int)soap->buflen, tmp));
if (soap->buflen > soap->chunkbuflen)
{ soap->buflen = soap->chunkbuflen;
soap->chunksize -= soap->buflen - soap->bufidx;
soap->chunkbuflen = 0;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Passed end of buffer for chunked HTTP (%u bytes left)\n", (unsigned int)(soap->buflen - soap->bufidx)));
}
else if (soap->chunkbuflen)
soap->chunksize = 0;
ret = soap->buflen - soap->bufidx;
if (ret)
break;
}
}
else
#endif
{ soap->bufidx = 0;
soap->buflen = ret = soap->frecv(soap, soap->buf, SOAP_BUFLEN);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Read %u bytes from socket=%d/fd=%d\n", (unsigned int)ret, soap->socket, soap->recvfd));
DBGMSG(RECV, soap->buf, ret);
}
#ifdef WITH_ZLIB
if (soap->mode & SOAP_ENC_ZLIB)
{ memcpy(soap->z_buf, soap->buf, SOAP_BUFLEN);
soap->d_stream->next_in = (Byte*)(soap->z_buf + soap->bufidx);
soap->d_stream->avail_in = (unsigned int)ret;
soap->d_stream->next_out = (Byte*)soap->buf;
soap->d_stream->avail_out = SOAP_BUFLEN;
r = inflate(soap->d_stream, Z_NO_FLUSH);
if (r == Z_NEED_DICT && soap->z_dict)
r = inflateSetDictionary(soap->d_stream, (const Bytef*)soap->z_dict, soap->z_dict_len);
if (r == Z_OK || r == Z_STREAM_END)
{ soap->bufidx = 0;
soap->z_buflen = soap->buflen;
soap->buflen = SOAP_BUFLEN - soap->d_stream->avail_out;
if (soap->zlib_in == SOAP_ZLIB_GZIP)
soap->z_crc = crc32(soap->z_crc, (Byte*)soap->buf, (unsigned int)soap->buflen);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Inflated %u bytes\n", (unsigned int)soap->buflen));
if (ret && !soap->buflen && r != Z_STREAM_END)
goto zlib_again;
ret = soap->buflen;
if (r == Z_STREAM_END)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Inflated total %lu->%lu bytes\n", soap->d_stream->total_in, soap->d_stream->total_out));
soap->z_ratio_in = (float)soap->d_stream->total_in / (float)soap->d_stream->total_out;
soap->d_stream->next_out = Z_NULL;
}
DBGLOG(RECV, SOAP_MESSAGE(fdebug, "\n---- decompressed ----\n"));
DBGMSG(RECV, soap->buf, ret);
#ifndef WITH_LEANER
if (soap->fpreparerecv && (r = soap->fpreparerecv(soap, soap->buf, ret)))
return soap->error = r;
#endif
}
else
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Unable to inflate: (%d) %s\n", r, soap->d_stream->msg ? soap->d_stream->msg : SOAP_STR_EOS));
soap->d_stream->next_out = Z_NULL;
return soap->error = SOAP_ZLIB_ERROR;
}
}
#endif
#ifndef WITH_LEANER
if (soap->fpreparerecv
#ifdef WITH_ZLIB
&& soap->zlib_in == SOAP_ZLIB_NONE
#endif
&& (r = soap->fpreparerecv(soap, soap->buf + soap->bufidx, ret)))
return soap->error = r;
#endif
soap->count += ret;
return !ret;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_recv(struct soap *soap)
{
#ifndef WITH_LEANER
if (soap->mode & SOAP_ENC_DIME)
{ if (soap->dime.buflen)
{ char *s;
int i;
unsigned char tmp[12];
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "DIME hdr for chunked DIME is in buffer\n"));
soap->count += soap->dime.buflen - soap->buflen;
soap->buflen = soap->dime.buflen;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Skip padding (%ld bytes)\n", -(long)soap->dime.size&3));
for (i = -(long)soap->dime.size&3; i > 0; i--)
{ soap->bufidx++;
if (soap->bufidx >= soap->buflen)
if (soap_recv_raw(soap))
return EOF;
}
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Get DIME hdr for next chunk\n"));
s = (char*)tmp;
for (i = 12; i > 0; i--)
{ *s++ = soap->buf[soap->bufidx++];
if (soap->bufidx >= soap->buflen)
if (soap_recv_raw(soap))
return EOF;
}
soap->dime.flags = tmp[0] & 0x7;
soap->dime.size = ((size_t)tmp[8] << 24) | ((size_t)tmp[9] << 16) | ((size_t)tmp[10] << 8) | ((size_t)tmp[11]);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Get DIME chunk (%u bytes)\n", (unsigned int)soap->dime.size));
if (soap->dime.flags & SOAP_DIME_CF)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "More chunking\n"));
soap->dime.chunksize = soap->dime.size;
if (soap->buflen - soap->bufidx >= soap->dime.size)
{ soap->dime.buflen = soap->buflen;
soap->buflen = soap->bufidx + soap->dime.chunksize;
}
else
soap->dime.chunksize -= soap->buflen - soap->bufidx;
}
else
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Last chunk\n"));
soap->dime.buflen = 0;
soap->dime.chunksize = 0;
}
soap->count = soap->buflen - soap->bufidx;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "%u bytes remaining\n", (unsigned int)soap->count));
return SOAP_OK;
}
if (soap->dime.chunksize)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Get next DIME hdr for chunked DIME (%u bytes chunk)\n", (unsigned int)soap->dime.chunksize));
if (soap_recv_raw(soap))
return EOF;
if (soap->buflen - soap->bufidx >= soap->dime.chunksize)
{ soap->dime.buflen = soap->buflen;
soap->count -= soap->buflen - soap->bufidx - soap->dime.chunksize;
soap->buflen = soap->bufidx + soap->dime.chunksize;
}
else
soap->dime.chunksize -= soap->buflen - soap->bufidx;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "%lu bytes remaining, count=%lu\n", (unsigned long)(soap->buflen-soap->bufidx), (unsigned long)soap->count));
return SOAP_OK;
}
}
while (soap->ffilterrecv)
{ int err, last = soap->filterstop;
if (last)
soap->bufidx = soap->buflen = 0;
if ((err = soap->ffilterrecv(soap, soap->buf, &soap->buflen, sizeof(soap->buf))))
return soap->error = err;
if (soap->buflen)
{ soap->bufidx = 0;
soap->filterstop = last;
return SOAP_OK;
}
if (last)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Returning postponed error %d\n", last));
soap->filterstop = SOAP_OK;
return last;
}
soap->filterstop = soap_recv_raw(soap); /* do not call again after EOF */
}
#endif
return soap_recv_raw(soap);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
soap_wchar
SOAP_FMAC2
soap_getchar(struct soap *soap)
{ register soap_wchar c;
c = soap->ahead;
if (c)
{ if (c != EOF)
soap->ahead = 0;
return c;
}
return soap_get1(soap);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
const struct soap_code_map*
SOAP_FMAC2
soap_code(const struct soap_code_map *code_map, const char *str)
{ if (code_map && str)
{ while (code_map->string)
{ if (!strcmp(str, code_map->string)) /* case sensitive */
return code_map;
code_map++;
}
}
return NULL;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
long
SOAP_FMAC2
soap_code_int(const struct soap_code_map *code_map, const char *str, long other)
{ if (code_map)
{ while (code_map->string)
{ if (!soap_tag_cmp(str, code_map->string)) /* case insensitive */
return code_map->code;
code_map++;
}
}
return other;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_code_str(const struct soap_code_map *code_map, long code)
{ if (!code_map)
return NULL;
while (code_map->code != code && code_map->string)
code_map++;
return code_map->string;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
long
SOAP_FMAC2
soap_code_bits(const struct soap_code_map *code_map, const char *str)
{ register long bits = 0;
if (code_map)
{ while (str && *str)
{ const struct soap_code_map *p;
for (p = code_map; p->string; p++)
{ register size_t n = strlen(p->string);
if (!strncmp(p->string, str, n) && soap_blank((soap_wchar)str[n]))
{ bits |= p->code;
str += n;
while (*str > 0 && *str <= 32)
str++;
break;
}
}
if (!p->string)
return 0;
}
}
return bits;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_code_list(struct soap *soap, const struct soap_code_map *code_map, long code)
{ register char *t = soap->tmpbuf;
if (code_map)
{ while (code_map->string)
{ if (code_map->code & code)
{ register const char *s = code_map->string;
if (t != soap->tmpbuf)
*t++ = ' ';
while (*s && t < soap->tmpbuf + sizeof(soap->tmpbuf) - 1)
*t++ = *s++;
if (t == soap->tmpbuf + sizeof(soap->tmpbuf) - 1)
break;
}
code_map++;
}
}
*t = '\0';
return soap->tmpbuf;
}
#endif
/******************************************************************************/
#ifndef PALM_1
static soap_wchar
soap_char(struct soap *soap)
{ char tmp[8];
register int i;
register soap_wchar c;
register char *s = tmp;
for (i = 0; i < 7; i++)
{ c = soap_get1(soap);
if (c == ';' || (int)c == EOF)
break;
*s++ = (char)c;
}
*s = '\0';
if (*tmp == '#')
{ if (tmp[1] == 'x' || tmp[1] == 'X')
return (soap_wchar)soap_strtol(tmp + 2, NULL, 16);
return (soap_wchar)soap_strtol(tmp + 1, NULL, 10);
}
if (!strcmp(tmp, "lt"))
return '<';
if (!strcmp(tmp, "gt"))
return '>';
if (!strcmp(tmp, "amp"))
return '&';
if (!strcmp(tmp, "quot"))
return '"';
if (!strcmp(tmp, "apos"))
return '\'';
#ifndef WITH_LEAN
return (soap_wchar)soap_code_int(html_entity_codes, tmp, SOAP_UNKNOWN_CHAR);
#else
return SOAP_UNKNOWN_CHAR; /* use this to represent unknown code */
#endif
}
#endif
/******************************************************************************/
#ifdef WITH_LEAN
#ifndef PALM_1
soap_wchar
soap_get0(struct soap *soap)
{ if (soap->bufidx >= soap->buflen && soap_recv(soap))
return EOF;
return (unsigned char)soap->buf[soap->bufidx];
}
#endif
#endif
/******************************************************************************/
#ifdef WITH_LEAN
#ifndef PALM_1
soap_wchar
soap_get1(struct soap *soap)
{ if (soap->bufidx >= soap->buflen && soap_recv(soap))
return EOF;
return (unsigned char)soap->buf[soap->bufidx++];
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
soap_wchar
SOAP_FMAC2
soap_get(struct soap *soap)
{ register soap_wchar c;
c = soap->ahead;
if (c)
{ if ((int)c != EOF)
soap->ahead = 0;
}
else
c = soap_get1(soap);
while ((int)c != EOF)
{ if (soap->cdata)
{ if (c == ']')
{ c = soap_get1(soap);
if (c == ']')
{ c = soap_get0(soap);
if (c == '>')
{ soap->cdata = 0;
c = soap_get1(soap);
c = soap_get1(soap);
}
else
{ soap_unget(soap, ']');
return ']';
}
}
else
{ soap_revget1(soap);
return ']';
}
}
else
return c;
}
switch (c)
{ case '<':
do c = soap_get1(soap);
while (soap_blank(c));
if (c == '!' || c == '?' || c == '%')
{ register int k = 1;
if (c == '!')
{ c = soap_get1(soap);
if (c == '[')
{ do c = soap_get1(soap);
while ((int)c != EOF && c != '[');
if ((int)c == EOF)
break;
soap->cdata = 1;
c = soap_get1(soap);
continue;
}
if (c == '-' && (c = soap_get1(soap)) == '-')
{ do
{ c = soap_get1(soap);
if (c == '-' && (c = soap_get1(soap)) == '-')
break;
} while ((int)c != EOF);
}
}
else if (c == '?')
c = soap_get_pi(soap);
while ((int)c != EOF)
{ if (c == '<')
k++;
else if (c == '>')
{ if (--k <= 0)
break;
}
c = soap_get1(soap);
}
if ((int)c == EOF)
break;
c = soap_get1(soap);
continue;
}
if (c == '/')
return SOAP_TT;
soap_revget1(soap);
return SOAP_LT;
case '>':
return SOAP_GT;
case '"':
return SOAP_QT;
case '\'':
return SOAP_AP;
case '&':
return soap_char(soap) | 0x80000000;
}
break;
}
return c;
}
#endif
/******************************************************************************/
#ifndef PALM_1
static soap_wchar
soap_get_pi(struct soap *soap)
{ char buf[64];
register char *s = buf;
register int i = sizeof(buf);
register soap_wchar c = soap_getchar(soap);
/* This is a quick way to parse XML PI and we could use a callback instead to
* enable applications to intercept processing instructions */
while ((int)c != EOF && c != '?')
{ if (--i > 0)
{ if (soap_blank(c))
c = ' ';
*s++ = (char)c;
}
c = soap_getchar(soap);
}
*s = '\0';
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "XML PI <?%s?>\n", buf));
if (!strncmp(buf, "xml ", 4))
{ s = strstr(buf, " encoding=");
if (s && s[10])
{ if (!soap_tag_cmp(s + 11, "iso-8859-1*")
|| !soap_tag_cmp(s + 11, "latin1*"))
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Switching to latin1 encoding\n"));
soap->mode |= SOAP_ENC_LATIN;
}
else if (!soap_tag_cmp(s + 11, "utf-8*"))
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Switching to utf-8 encoding\n"));
soap->mode &= ~SOAP_ENC_LATIN;
}
}
}
if ((int)c != EOF)
c = soap_getchar(soap);
return c;
}
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_move(struct soap *soap, long n)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Moving %ld bytes forward\n", (long)n));
for (; n > 0; n--)
if ((int)soap_getchar(soap) == EOF)
return SOAP_EOF;
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
size_t
SOAP_FMAC2
soap_tell(struct soap *soap)
{ return soap->count - soap->buflen + soap->bufidx - (soap->ahead != 0);
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_pututf8(struct soap *soap, register unsigned long c)
{ char tmp[16];
if (c < 0x80 && c > 0)
{ *tmp = (char)c;
return soap_send_raw(soap, tmp, 1);
}
#ifndef WITH_LEAN
if (c >= 0x80)
{ register char *t = tmp;
if (c < 0x0800)
*t++ = (char)(0xC0 | ((c >> 6) & 0x1F));
else
{ if (c < 0x010000)
*t++ = (char)(0xE0 | ((c >> 12) & 0x0F));
else
{ if (c < 0x200000)
*t++ = (char)(0xF0 | ((c >> 18) & 0x07));
else
{ if (c < 0x04000000)
*t++ = (char)(0xF8 | ((c >> 24) & 0x03));
else
{ *t++ = (char)(0xFC | ((c >> 30) & 0x01));
*t++ = (char)(0x80 | ((c >> 24) & 0x3F));
}
*t++ = (char)(0x80 | ((c >> 18) & 0x3F));
}
*t++ = (char)(0x80 | ((c >> 12) & 0x3F));
}
*t++ = (char)(0x80 | ((c >> 6) & 0x3F));
}
*t++ = (char)(0x80 | (c & 0x3F));
*t = '\0';
}
else
#endif
sprintf(tmp, "&#%lu;", c);
return soap_send(soap, tmp);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
soap_wchar
SOAP_FMAC2
soap_getutf8(struct soap *soap)
{ register soap_wchar c, c1, c2, c3, c4;
c = soap->ahead;
if (c)
soap->ahead = 0;
else
c = soap_get(soap);
if (c < 0x80 || c > 0xFF || (soap->mode & SOAP_ENC_LATIN))
return c;
c1 = soap_get1(soap);
if (c1 < 0x80)
{ soap_revget1(soap); /* doesn't look like this is UTF8 */
return c;
}
c1 &= 0x3F;
if (c < 0xE0)
return ((soap_wchar)(c & 0x1F) << 6) | c1;
c2 = (soap_wchar)soap_get1(soap) & 0x3F;
if (c < 0xF0)
return ((soap_wchar)(c & 0x0F) << 12) | (c1 << 6) | c2;
c3 = (soap_wchar)soap_get1(soap) & 0x3F;
if (c < 0xF8)
return ((soap_wchar)(c & 0x07) << 18) | (c1 << 12) | (c2 << 6) | c3;
c4 = (soap_wchar)soap_get1(soap) & 0x3F;
if (c < 0xFC)
return ((soap_wchar)(c & 0x03) << 24) | (c1 << 18) | (c2 << 12) | (c3 << 6) | c4;
return ((soap_wchar)(c & 0x01) << 30) | (c1 << 24) | (c2 << 18) | (c3 << 12) | (c4 << 6) | (soap_wchar)(soap_get1(soap) & 0x3F);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_puthex(struct soap *soap, const unsigned char *s, int n)
{ char d[2];
register int i;
#ifdef WITH_DOM
if ((soap->mode & SOAP_XML_DOM) && soap->dom)
{ if (!(soap->dom->data = soap_s2hex(soap, s, NULL, n)))
return soap->error;
return SOAP_OK;
}
#endif
for (i = 0; i < n; i++)
{ register int m = *s++;
d[0] = (char)((m >> 4) + (m > 159 ? '7' : '0'));
m &= 0x0F;
d[1] = (char)(m + (m > 9 ? '7' : '0'));
if (soap_send_raw(soap, d, 2))
return soap->error;
}
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
unsigned char*
SOAP_FMAC2
soap_gethex(struct soap *soap, int *n)
{
#ifdef WITH_DOM
if ((soap->mode & SOAP_XML_DOM) && soap->dom)
{ soap->dom->data = soap_string_in(soap, 0, -1, -1);
return (unsigned char*)soap_hex2s(soap, soap->dom->data, NULL, 0, n);
}
#endif
#ifdef WITH_FAST
soap->labidx = 0;
for (;;)
{ register char *s;
register size_t i, k;
if (soap_append_lab(soap, NULL, 0))
return NULL;
s = soap->labbuf + soap->labidx;
k = soap->lablen - soap->labidx;
soap->labidx = soap->lablen;
for (i = 0; i < k; i++)
{ register char d1, d2;
register soap_wchar c;
c = soap_get(soap);
if (soap_isxdigit(c))
{ d1 = (char)c;
c = soap_get(soap);
if (soap_isxdigit(c))
d2 = (char)c;
else
{ soap->error = SOAP_TYPE;
return NULL;
}
}
else
{ unsigned char *p;
soap_unget(soap, c);
if (n)
*n = (int)(soap->lablen + i - k);
p = (unsigned char*)soap_malloc(soap, soap->lablen + i - k);
if (p)
memcpy(p, soap->labbuf, soap->lablen + i - k);
return p;
}
*s++ = (char)(((d1 >= 'A' ? (d1 & 0x7) + 9 : d1 - '0') << 4) + (d2 >= 'A' ? (d2 & 0x7) + 9 : d2 - '0'));
}
}
#else
if (soap_new_block(soap) == NULL)
return NULL;
for (;;)
{ register int i;
register char *s = (char*)soap_push_block(soap, NULL, SOAP_BLKLEN);
if (!s)
{ soap_end_block(soap, NULL);
return NULL;
}
for (i = 0; i < SOAP_BLKLEN; i++)
{ register char d1, d2;
register soap_wchar c = soap_get(soap);
if (soap_isxdigit(c))
{ d1 = (char)c;
c = soap_get(soap);
if (soap_isxdigit(c))
d2 = (char)c;
else
{ soap_end_block(soap, NULL);
soap->error = SOAP_TYPE;
return NULL;
}
}
else
{ unsigned char *p;
soap_unget(soap, c);
if (n)
*n = (int)soap_size_block(soap, NULL, i);
p = (unsigned char*)soap_save_block(soap, NULL, 0);
return p;
}
*s++ = ((d1 >= 'A' ? (d1 & 0x7) + 9 : d1 - '0') << 4) + (d2 >= 'A' ? (d2 & 0x7) + 9 : d2 - '0');
}
}
#endif
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_putbase64(struct soap *soap, const unsigned char *s, int n)
{ register int i;
register unsigned long m;
char d[4];
if (!s)
return SOAP_OK;
#ifdef WITH_DOM
if ((soap->mode & SOAP_XML_DOM) && soap->dom)
{ if (!(soap->dom->data = soap_s2base64(soap, s, NULL, n)))
return soap->error;
return SOAP_OK;
}
#endif
for (; n > 2; n -= 3, s += 3)
{ m = s[0];
m = (m << 8) | s[1];
m = (m << 8) | s[2];
for (i = 4; i > 0; m >>= 6)
d[--i] = soap_base64o[m & 0x3F];
if (soap_send_raw(soap, d, 4))
return soap->error;
}
if (n > 0)
{ m = 0;
for (i = 0; i < n; i++)
m = (m << 8) | *s++;
for (; i < 3; i++)
m <<= 8;
for (i++; i > 0; m >>= 6)
d[--i] = soap_base64o[m & 0x3F];
for (i = 3; i > n; i--)
d[i] = '=';
if (soap_send_raw(soap, d, 4))
return soap->error;
}
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
unsigned char*
SOAP_FMAC2
soap_getbase64(struct soap *soap, int *n, int malloc_flag)
{ (void)malloc_flag;
#ifdef WITH_DOM
if ((soap->mode & SOAP_XML_DOM) && soap->dom)
{ soap->dom->data = soap_string_in(soap, 0, -1, -1);
return (unsigned char*)soap_base642s(soap, soap->dom->data, NULL, 0, n);
}
#endif
#ifdef WITH_FAST
soap->labidx = 0;
for (;;)
{ register size_t i, k;
register char *s;
if (soap_append_lab(soap, NULL, 2))
return NULL;
s = soap->labbuf + soap->labidx;
k = soap->lablen - soap->labidx;
soap->labidx = 3 * (soap->lablen / 3);
if (!s)
return NULL;
if (k > 2)
{ for (i = 0; i < k - 2; i += 3)
{ register unsigned long m = 0;
register int j = 0;
do
{ register soap_wchar c = soap_get(soap);
if (c < SOAP_AP)
c &= 0x7FFFFFFF;
if (c == '=' || c < 0)
{ unsigned char *p;
switch (j)
{ case 2:
*s++ = (char)((m >> 4) & 0xFF);
i++;
break;
case 3:
*s++ = (char)((m >> 10) & 0xFF);
*s++ = (char)((m >> 2) & 0xFF);
i += 2;
}
if (n)
*n = (int)(soap->lablen + i - k);
p = (unsigned char*)soap_malloc(soap, soap->lablen + i - k);
if (p)
memcpy(p, soap->labbuf, soap->lablen + i - k);
if (c >= 0)
{ while ((int)((c = soap_get(soap)) != EOF) && c != SOAP_LT && c != SOAP_TT)
;
}
soap_unget(soap, c);
return p;
}
c -= '+';
if (c >= 0 && c <= 79)
{ register int b = soap_base64i[c];
if (b >= 64)
{ soap->error = SOAP_TYPE;
return NULL;
}
m = (m << 6) + b;
j++;
}
else if (!soap_blank(c + '+'))
{ soap->error = SOAP_TYPE;
return NULL;
}
} while (j < 4);
*s++ = (char)((m >> 16) & 0xFF);
*s++ = (char)((m >> 8) & 0xFF);
*s++ = (char)(m & 0xFF);
}
}
}
#else
if (soap_new_block(soap) == NULL)
return NULL;
for (;;)
{ register int i;
register char *s = (char*)soap_push_block(soap, NULL, 3 * SOAP_BLKLEN); /* must be multiple of 3 */
if (!s)
{ soap_end_block(soap, NULL);
return NULL;
}
for (i = 0; i < SOAP_BLKLEN; i++)
{ register unsigned long m = 0;
register int j = 0;
do
{ register soap_wchar c = soap_get(soap);
if (c == '=' || c < 0)
{ unsigned char *p;
i *= 3;
switch (j)
{ case 2:
*s++ = (char)((m >> 4) & 0xFF);
i++;
break;
case 3:
*s++ = (char)((m >> 10) & 0xFF);
*s++ = (char)((m >> 2) & 0xFF);
i += 2;
}
if (n)
*n = (int)soap_size_block(soap, NULL, i);
p = (unsigned char*)soap_save_block(soap, NULL, 0);
if (c >= 0)
{ while ((int)((c = soap_get(soap)) != EOF) && c != SOAP_LT && c != SOAP_TT)
;
}
soap_unget(soap, c);
return p;
}
c -= '+';
if (c >= 0 && c <= 79)
{ int b = soap_base64i[c];
if (b >= 64)
{ soap->error = SOAP_TYPE;
return NULL;
}
m = (m << 6) + b;
j++;
}
else if (!soap_blank(c))
{ soap->error = SOAP_TYPE;
return NULL;
}
} while (j < 4);
*s++ = (char)((m >> 16) & 0xFF);
*s++ = (char)((m >> 8) & 0xFF);
*s++ = (char)(m & 0xFF);
}
}
#endif
}
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_xop_forward(struct soap *soap, unsigned char **ptr, int *size, char **id, char **type, char **options)
{ /* Check MTOM xop:Include element (within hex/base64Binary) */
/* TODO: this code to be obsoleted with new import/xop.h conventions */
short body = soap->body; /* should save type too? */
if (!soap_peek_element(soap))
{ if (!soap_element_begin_in(soap, "xop:Include", 0, NULL))
{ if (soap_dime_forward(soap, ptr, size, id, type, options)
|| (soap->body && soap_element_end_in(soap, "xop:Include")))
return soap->error;
}
}
soap->body = body;
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_dime_forward(struct soap *soap, unsigned char **ptr, int *size, char **id, char **type, char **options)
{ struct soap_xlist *xp;
*ptr = NULL;
*size = 0;
*id = NULL;
*type = NULL;
*options = NULL;
if (!*soap->href)
return SOAP_OK;
*id = soap_strdup(soap, soap->href);
xp = (struct soap_xlist*)SOAP_MALLOC(soap, sizeof(struct soap_xlist));
if (!xp)
return soap->error = SOAP_EOM;
xp->next = soap->xlist;
xp->ptr = ptr;
xp->size = size;
xp->id = *id;
xp->type = type;
xp->options = options;
soap->xlist = xp;
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
char *
SOAP_FMAC2
soap_strdup(struct soap *soap, const char *s)
{ char *t = NULL;
if (s && (t = (char*)soap_malloc(soap, strlen(s) + 1)))
strcpy(t, s);
return t;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
wchar_t *
SOAP_FMAC2
soap_wstrdup(struct soap *soap, const wchar_t *s)
{ wchar_t *t = NULL;
if (s)
{ size_t n = 0;
while (s[n])
n++;
if ((t = (wchar_t*)soap_malloc(soap, sizeof(wchar_t)*(n+1))))
memcpy(t, s, sizeof(wchar_t)*(n+1));
}
return t;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
struct soap_blist*
SOAP_FMAC2
soap_new_block(struct soap *soap)
{ struct soap_blist *p;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "New block sequence (prev=%p)\n", soap->blist));
if (!(p = (struct soap_blist*)SOAP_MALLOC(soap, sizeof(struct soap_blist))))
{ soap->error = SOAP_EOM;
return NULL;
}
p->next = soap->blist;
p->ptr = NULL;
p->size = 0;
soap->blist = p;
return p;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
void*
SOAP_FMAC2
soap_push_block(struct soap *soap, struct soap_blist *b, size_t n)
{ char *p;
if (!b)
b = soap->blist;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Push block of %u bytes (%u bytes total)\n", (unsigned int)n, (unsigned int)b->size + (unsigned int)n));
if (!(p = (char*)SOAP_MALLOC(soap, n + sizeof(char*) + sizeof(size_t))))
{ soap->error = SOAP_EOM;
return NULL;
}
*(char**)p = b->ptr;
*(size_t*)(p + sizeof(char*)) = n;
b->ptr = p;
b->size += n;
return p + sizeof(char*) + sizeof(size_t);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_pop_block(struct soap *soap, struct soap_blist *b)
{ char *p;
if (!b)
b = soap->blist;
if (!b->ptr)
return;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Pop block\n"));
p = b->ptr;
b->size -= *(size_t*)(p + sizeof(char*));
b->ptr = *(char**)p;
SOAP_FREE(soap, p);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_update_pointers(struct soap *soap, char *start, char *end, char *p1, char *p2)
{
#ifndef WITH_NOIDREF
int i;
register struct soap_ilist *ip = NULL;
register struct soap_flist *fp = NULL;
#ifndef WITH_LEANER
register struct soap_xlist *xp = NULL;
#endif
register void *p, **q;
for (i = 0; i < SOAP_IDHASH; i++)
{ for (ip = soap->iht[i]; ip; ip = ip->next)
{ if (ip->ptr && (char*)ip->ptr >= start && (char*)ip->ptr < end)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Update id='%s' %p -> %p\n", ip->id, ip->ptr, (char*)ip->ptr + (p1-p2)));
ip->ptr = (char*)ip->ptr + (p1-p2);
}
for (q = &ip->link; q; q = (void**)p)
{ p = *q;
if (p && (char*)p >= start && (char*)p < end)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Link update id='%s' %p\n", ip->id, p));
*q = (char*)p + (p1-p2);
}
}
for (q = &ip->copy; q; q = (void**)p)
{ p = *q;
if (p && (char*)p >= start && (char*)p < end)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy chain update id='%s' %p\n", ip->id, p));
*q = (char*)p + (p1-p2);
}
}
for (fp = ip->flist; fp; fp = fp->next)
{ if ((char*)fp->ptr >= start && (char*)fp->ptr < end)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy list update id='%s' %p\n", ip->id, fp));
fp->ptr = (char*)fp->ptr + (p1-p2);
}
}
}
}
#ifndef WITH_LEANER
for (xp = soap->xlist; xp; xp = xp->next)
{ if (xp->ptr && (char*)xp->ptr >= start && (char*)xp->ptr < end)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Update id='%s' %p -> %p\n", xp->id ? xp->id : SOAP_STR_EOS, xp->ptr, (char*)xp->ptr + (p1-p2)));
xp->ptr = (unsigned char**)((char*)xp->ptr + (p1-p2));
xp->size = (int*)((char*)xp->size + (p1-p2));
xp->type = (char**)((char*)xp->type + (p1-p2));
xp->options = (char**)((char*)xp->options + (p1-p2));
}
}
#endif
#else
(void)soap; (void)start; (void)end; (void)p1; (void)p2;
#endif
}
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_1
static int
soap_has_copies(struct soap *soap, register const char *start, register const char *end)
{ register int i;
register struct soap_ilist *ip = NULL;
register struct soap_flist *fp = NULL;
register const char *p;
for (i = 0; i < SOAP_IDHASH; i++)
{ for (ip = soap->iht[i]; ip; ip = ip->next)
{ for (p = (const char*)ip->copy; p; p = *(const char**)p)
if (p >= start && p < end)
return SOAP_ERR;
for (fp = ip->flist; fp; fp = fp->next)
if ((const char*)fp->ptr >= start && (const char*)fp->ptr < end)
return SOAP_ERR;
}
}
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_resolve(struct soap *soap)
{ register int i;
register struct soap_ilist *ip = NULL;
register struct soap_flist *fp = NULL;
short flag;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Resolving forwarded data\n"));
for (i = 0; i < SOAP_IDHASH; i++)
{ for (ip = soap->iht[i]; ip; ip = ip->next)
{ if (ip->ptr)
{ register void *p, **q, *r;
q = (void**)ip->link;
ip->link = NULL;
r = ip->ptr;
DBGLOG(TEST, if (q) SOAP_MESSAGE(fdebug, "Traversing link chain to resolve id='%s'\n", ip->id));
while (q)
{ p = *q;
*q = r;
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "... link %p -> %p\n", q, r));
q = (void**)p;
}
}
else if (*ip->id == '#')
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Missing data for id='%s'\n", ip->id));
strcpy(soap->id, ip->id + 1);
return soap->error = SOAP_MISSING_ID;
}
}
}
do
{ flag = 0;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Resolution phase\n"));
for (i = 0; i < SOAP_IDHASH; i++)
{ for (ip = soap->iht[i]; ip; ip = ip->next)
{ if (ip->ptr && !soap_has_copies(soap, (const char*)ip->ptr, (const char*)ip->ptr + ip->size))
{ if (ip->copy)
{ register void *p, **q = (void**)ip->copy;
DBGLOG(TEST, if (q) SOAP_MESSAGE(fdebug, "Traversing copy chain to resolve id='%s'\n", ip->id));
ip->copy = NULL;
do
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "... copy %p -> %p (%u bytes)\n", ip->ptr, q, (unsigned int)ip->size));
p = *q;
memcpy(q, ip->ptr, ip->size);
q = (void**)p;
} while (q);
flag = 1;
}
for (fp = ip->flist; fp; fp = ip->flist)
{ register unsigned int k = fp->level;
register void *p = ip->ptr;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Resolving forwarded data type=%d location=%p level=%u,%u id='%s'\n", ip->type, p, ip->level, fp->level, ip->id));
while (ip->level < k)
{ register void **q = (void**)soap_malloc(soap, sizeof(void*));
if (!q)
return soap->error;
*q = p;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Descending one level, new location=%p holds=%p...\n", q, *q));
p = (void*)q;
k--;
}
if (fp->fcopy)
fp->fcopy(soap, ip->type, fp->type, fp->ptr, fp->len, p, ip->size);
else
soap_fcopy(soap, ip->type, fp->type, fp->ptr, fp->len, p, ip->size);
ip->flist = fp->next;
SOAP_FREE(soap, fp);
flag = 1;
}
}
}
}
} while (flag);
#ifdef SOAP_DEBUG
for (i = 0; i < SOAP_IDHASH; i++)
{ for (ip = soap->iht[i]; ip; ip = ip->next)
{ if (ip->copy || ip->flist)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Resolution error: forwarded data for id='%s' could not be propagated, please report this problem to the developers\n", ip->id));
}
}
}
#endif
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Resolution done\n"));
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
size_t
SOAP_FMAC2
soap_size_block(struct soap *soap, struct soap_blist *b, size_t n)
{ if (!b)
b = soap->blist;
if (b->ptr)
{ b->size -= *(size_t*)(b->ptr + sizeof(char*)) - n;
*(size_t*)(b->ptr + sizeof(char*)) = n;
}
return b->size;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
char*
SOAP_FMAC2
soap_first_block(struct soap *soap, struct soap_blist *b)
{ char *p, *q, *r;
if (!b)
b = soap->blist;
p = b->ptr;
if (!p)
return NULL;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "First block\n"));
r = NULL;
do
{ q = *(char**)p;
*(char**)p = r;
r = p;
p = q;
} while (p);
b->ptr = r;
return r + sizeof(char*) + sizeof(size_t);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
char*
SOAP_FMAC2
soap_next_block(struct soap *soap, struct soap_blist *b)
{ char *p;
if (!b)
b = soap->blist;
p = b->ptr;
if (p)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Next block\n"));
b->ptr = *(char**)p;
SOAP_FREE(soap, p);
if (b->ptr)
return b->ptr + sizeof(char*) + sizeof(size_t);
}
return NULL;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
size_t
SOAP_FMAC2
soap_block_size(struct soap *soap, struct soap_blist *b)
{ if (!b)
b = soap->blist;
return *(size_t*)(b->ptr + sizeof(char*));
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_end_block(struct soap *soap, struct soap_blist *b)
{ char *p, *q;
if (!b)
b = soap->blist;
if (b)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "End of block sequence, free all remaining blocks\n"));
for (p = b->ptr; p; p = q)
{ q = *(char**)p;
SOAP_FREE(soap, p);
}
if (soap->blist == b)
soap->blist = b->next;
else
{ struct soap_blist *bp;
for (bp = soap->blist; bp; bp = bp->next)
{ if (bp->next == b)
{ bp->next = b->next;
break;
}
}
}
SOAP_FREE(soap, b);
}
DBGLOG(TEST, if (soap->blist) SOAP_MESSAGE(fdebug, "Restore previous block sequence\n"));
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
char*
SOAP_FMAC2
soap_save_block(struct soap *soap, struct soap_blist *b, char *p, int flag)
{ register size_t n;
register char *q, *s;
if (!b)
b = soap->blist;
if (b->size)
{ if (!p)
p = (char*)soap_malloc(soap, b->size);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Save all blocks in contiguous memory space of %u bytes (%p->%p)\n", (unsigned int)b->size, b->ptr, p));
if (p)
{ for (s = p, q = soap_first_block(soap, b); q; q = soap_next_block(soap, b))
{ n = soap_block_size(soap, b);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy %u bytes from %p to %p\n", (unsigned int)n, q, s));
#ifndef WITH_NOIDREF
if (flag)
soap_update_pointers(soap, q, q + n, s, q);
#endif
memcpy(s, q, n);
s += n;
}
}
else
soap->error = SOAP_EOM;
}
soap_end_block(soap, b);
return p;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
char *
SOAP_FMAC2
soap_putsize(struct soap *soap, const char *type, int size)
{ return soap_putsizes(soap, type, &size, 1);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
char *
SOAP_FMAC2
soap_putsizes(struct soap *soap, const char *type, const int *size, int dim)
{ return soap_putsizesoffsets(soap, type, size, NULL, dim);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
char *
SOAP_FMAC2
soap_putsizesoffsets(struct soap *soap, const char *type, const int *size, const int *offset, int dim)
{ int i;
if (!type)
return NULL;
if (soap->version == 2)
{ sprintf(soap->type, "%s[%d", type, size[0]);
for (i = 1; i < dim; i++)
sprintf(soap->type + strlen(soap->type), " %d", size[i]);
}
else
{ if (offset)
{ sprintf(soap->type, "%s[%d", type, size[0] + offset[0]);
for (i = 1; i < dim; i++)
sprintf(soap->type + strlen(soap->type), ",%d", size[i] + offset[i]);
}
else
{ sprintf(soap->type, "%s[%d", type, size[0]);
for (i = 1; i < dim; i++)
sprintf(soap->type + strlen(soap->type), ",%d", size[i]);
}
strcat(soap->type, "]");
}
return soap->type;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
char *
SOAP_FMAC2
soap_putoffset(struct soap *soap, int offset)
{ return soap_putoffsets(soap, &offset, 1);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
char *
SOAP_FMAC2
soap_putoffsets(struct soap *soap, const int *offset, int dim)
{ register int i;
sprintf(soap->arrayOffset, "[%d", offset[0]);
for (i = 1; i < dim; i++)
sprintf(soap->arrayOffset + strlen(soap->arrayOffset), ",%d", offset[i]);
strcat(soap->arrayOffset, "]");
return soap->arrayOffset;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_size(const int *size, int dim)
{ register int i, n = size[0];
for (i = 1; i < dim; i++)
n *= size[i];
return n;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_getoffsets(const char *attr, const int *size, int *offset, int dim)
{ register int i, j = 0;
if (offset)
for (i = 0; i < dim && attr && *attr; i++)
{ attr++;
j *= size[i];
j += offset[i] = (int)soap_strtol(attr, NULL, 10);
attr = strchr(attr, ',');
}
else
for (i = 0; i < dim && attr && *attr; i++)
{ attr++;
j *= size[i];
j += (int)soap_strtol(attr, NULL, 10);
attr = strchr(attr, ',');
}
return j;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_getsize(const char *attr1, const char *attr2, int *j)
{ register int n, k;
char *s;
*j = 0;
if (!*attr1)
return -1;
if (*attr1 == '[')
attr1++;
n = 1;
for (;;)
{ k = (int)soap_strtol(attr1, &s, 10);
n *= k;
if (k < 0 || n > SOAP_MAXARRAYSIZE || s == attr1)
return -1;
attr1 = strchr(s, ',');
if (!attr1)
attr1 = strchr(s, ' ');
if (attr2 && *attr2)
{ attr2++;
*j *= k;
k = (int)soap_strtol(attr2, &s, 10);
*j += k;
if (k < 0)
return -1;
attr2 = s;
}
if (!attr1)
break;
attr1++;
}
return n - *j;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_getsizes(const char *attr, int *size, int dim)
{ register int i, k, n;
if (!*attr)
return -1;
i = (int)strlen(attr);
n = 1;
do
{ for (i = i-1; i >= 0; i--)
if (attr[i] == '[' || attr[i] == ',' || attr[i] == ' ')
break;
k = (int)soap_strtol(attr + i + 1, NULL, 10);
n *= size[--dim] = k;
if (k < 0 || n > SOAP_MAXARRAYSIZE)
return -1;
} while (i >= 0 && attr[i] != '[');
return n;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_getposition(const char *attr, int *pos)
{ register int i, n;
if (!*attr)
return -1;
n = 0;
i = 1;
do
{ pos[n++] = (int)soap_strtol(attr + i, NULL, 10);
while (attr[i] && attr[i] != ',' && attr[i] != ']')
i++;
if (attr[i] == ',')
i++;
} while (n < SOAP_MAXDIMS && attr[i] && attr[i] != ']');
return n;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
struct soap_nlist *
SOAP_FMAC2
soap_push_namespace(struct soap *soap, const char *id, const char *ns)
{ register struct soap_nlist *np;
register struct Namespace *p;
register short i = -1;
register size_t n, k;
n = strlen(id);
k = strlen(ns) + 1;
p = soap->local_namespaces;
if (p)
{ for (i = 0; p->id; p++, i++)
{ if (p->ns && !strcmp(ns, p->ns))
break;
if (p->out)
{ if (!strcmp(ns, p->out))
break;
}
else if (p->in)
{ if (!soap_tag_cmp(ns, p->in))
{ if ((p->out = (char*)SOAP_MALLOC(soap, k)))
strcpy(p->out, ns);
break;
}
}
}
if (!p || !p->id)
i = -1;
}
if (i >= 0)
k = 0;
np = (struct soap_nlist*)SOAP_MALLOC(soap, sizeof(struct soap_nlist) + n + k);
if (!np)
{ soap->error = SOAP_EOM;
return NULL;
}
np->next = soap->nlist;
soap->nlist = np;
np->level = soap->level;
np->index = i;
strcpy((char*)np->id, id);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Push namespace binding (level=%u) '%s' '%s'\n", soap->level, id, ns));
if (i < 0)
{ np->ns = strcpy((char*)np->id + n + 1, ns);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Push NOT OK: no match found for '%s' in namespace mapping table (added to stack anyway)\n", ns));
}
else
{ np->ns = NULL;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Push OK ('%s' matches '%s' in namespace table)\n", id, p->id));
}
return np;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
void
SOAP_FMAC2
soap_pop_namespace(struct soap *soap)
{ register struct soap_nlist *np, *nq;
for (np = soap->nlist; np && np->level >= soap->level; np = nq)
{ nq = np->next;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Pop namespace binding (level=%u) '%s'\n", soap->level, np->id));
SOAP_FREE(soap, np);
}
soap->nlist = np;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_match_namespace(struct soap *soap, const char *id1, const char *id2, size_t n1, size_t n2)
{ register struct soap_nlist *np = soap->nlist;
const char *s;
while (np && (strncmp(np->id, id1, n1) || np->id[n1]))
np = np->next;
if (np)
{ if (!(soap->mode & SOAP_XML_IGNORENS))
if (np->index < 0
|| ((s = soap->local_namespaces[np->index].id) && (strncmp(s, id2, n2) || (s[n2] && s[n2] != '_'))))
return SOAP_NAMESPACE;
return SOAP_OK;
}
if (n1 == 0)
return (soap->mode & SOAP_XML_IGNORENS) ? SOAP_OK : SOAP_NAMESPACE;
if ((n1 == 3 && n1 == n2 && !strncmp(id1, "xml", 3) && !strncmp(id1, id2, 3))
|| (soap->mode & SOAP_XML_IGNORENS))
return SOAP_OK;
return soap->error = SOAP_SYNTAX_ERROR;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_current_namespace(struct soap *soap, const char *tag)
{ register struct soap_nlist *np;
register const char *s;
if (!tag || !strncmp(tag, "xml", 3))
return NULL;
np = soap->nlist;
if (!(s = strchr(tag, ':')))
{ while (np && *np->id) /* find default namespace, if present */
np = np->next;
}
else
{ while (np && (strncmp(np->id, tag, s - tag) || np->id[s - tag]))
np = np->next;
if (!np)
soap->error = SOAP_NAMESPACE;
}
if (np)
{ if (np->index >= 0)
return soap->namespaces[np->index].ns;
if (np->ns)
return soap_strdup(soap, np->ns);
}
return NULL;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_tag_cmp(const char *s, const char *t)
{ for (;;)
{ register int c1 = *s;
register int c2 = *t;
if (!c1 || c1 == '"')
break;
if (c2 != '-')
{ if (c1 != c2)
{ if (c1 >= 'A' && c1 <= 'Z')
c1 += 'a' - 'A';
if (c2 >= 'A' && c2 <= 'Z')
c2 += 'a' - 'A';
}
if (c1 != c2)
{ if (c2 != '*')
return 1;
c2 = *++t;
if (!c2)
return 0;
if (c2 >= 'A' && c2 <= 'Z')
c2 += 'a' - 'A';
for (;;)
{ c1 = *s;
if (!c1 || c1 == '"')
break;
if (c1 >= 'A' && c1 <= 'Z')
c1 += 'a' - 'A';
if (c1 == c2 && !soap_tag_cmp(s + 1, t + 1))
return 0;
s++;
}
break;
}
}
s++;
t++;
}
if (*t == '*' && !t[1])
return 0;
return *t;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_match_tag(struct soap *soap, const char *tag1, const char *tag2)
{ register const char *s, *t;
register int err;
if (!tag1 || !tag2 || !*tag2)
return SOAP_OK;
s = strchr(tag1, ':');
t = strchr(tag2, ':');
if (t)
{ if (s)
{ if (t[1] && SOAP_STRCMP(s + 1, t + 1))
return SOAP_TAG_MISMATCH;
if (t != tag2 && (err = soap_match_namespace(soap, tag1, tag2, s - tag1, t - tag2)))
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Tags '%s' and '%s' match but namespaces differ\n", tag1, tag2));
if (err == SOAP_NAMESPACE)
return SOAP_TAG_MISMATCH;
return err;
}
}
else if (!t[1])
{ err = soap_match_namespace(soap, tag1, tag2, 0, t - tag2);
if (err == SOAP_NAMESPACE)
return SOAP_TAG_MISMATCH;
}
else if (SOAP_STRCMP(tag1, t + 1))
{ return SOAP_TAG_MISMATCH;
}
else if (t != tag2 && (err = soap_match_namespace(soap, tag1, tag2, 0, t - tag2)))
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Tags '%s' and '%s' match but namespaces differ\n", tag1, tag2));
if (err == SOAP_NAMESPACE)
return SOAP_TAG_MISMATCH;
return err;
}
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Tags and (default) namespaces match: '%s' '%s'\n", tag1, tag2));
return SOAP_OK;
}
if (s)
{ if (SOAP_STRCMP(s + 1, tag2))
return SOAP_TAG_MISMATCH;
}
else if (SOAP_STRCMP(tag1, tag2))
return SOAP_TAG_MISMATCH;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Tags match: '%s' '%s'\n", tag1, tag2));
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_match_array(struct soap *soap, const char *type)
{ if (*soap->arrayType)
if (soap_match_tag(soap, soap->arrayType, type)
&& soap_match_tag(soap, soap->arrayType, "xsd:anyType")
&& soap_match_tag(soap, soap->arrayType, "xsd:ur-type")
)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Array type mismatch: '%s' '%s'\n", soap->arrayType, type));
return SOAP_TAG_MISMATCH;
}
return SOAP_OK;
}
#endif
/******************************************************************************\
*
* SSL/TLS
*
\******************************************************************************/
/******************************************************************************/
#ifdef WITH_OPENSSL
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_rand()
{ unsigned char buf[4];
if (!soap_ssl_init_done)
soap_ssl_init();
RAND_pseudo_bytes(buf, 4);
return *(int*)buf;
}
#endif
#endif
/******************************************************************************/
#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS)
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_ssl_server_context(struct soap *soap, unsigned short flags, const char *keyfile, const char *password, const char *cafile, const char *capath, const char *dhfile, const char *randfile, const char *sid)
{ int err;
soap->keyfile = keyfile;
soap->password = password;
soap->cafile = cafile;
soap->capath = capath;
soap->crlfile = NULL;
#ifdef WITH_OPENSSL
soap->dhfile = dhfile;
soap->randfile = randfile;
#endif
soap->ssl_flags = flags | (dhfile == NULL ? SOAP_SSL_RSA : 0);
#ifdef WITH_GNUTLS
if (dhfile)
{ char *s;
int n = (int)soap_strtoul(dhfile, &s, 10);
if (!soap->dh_params)
gnutls_dh_params_init(&soap->dh_params);
/* if dhfile is numeric, treat it as a key length to generate DH params which can take a while */
if (n >= 512 && s && *s == '\0')
gnutls_dh_params_generate2(soap->dh_params, (unsigned int)n);
else
{ unsigned int dparams_len;
unsigned char dparams_buf[1024];
FILE *fd = fopen(dhfile, "r");
if (!fd)
return soap_set_receiver_error(soap, "SSL/TLS error", "Invalid DH file", SOAP_SSL_ERROR);
dparams_len = (unsigned int)fread(dparams_buf, 1, sizeof(dparams_buf), fd);
fclose(fd);
gnutls_datum_t dparams = { dparams_buf, dparams_len };
if (gnutls_dh_params_import_pkcs3(soap->dh_params, &dparams, GNUTLS_X509_FMT_PEM))
return soap_set_receiver_error(soap, "SSL/TLS error", "Invalid DH file", SOAP_SSL_ERROR);
}
}
else
{ if (!soap->rsa_params)
gnutls_rsa_params_init(&soap->rsa_params);
gnutls_rsa_params_generate2(soap->rsa_params, SOAP_SSL_RSA_BITS);
}
if (soap->session)
{ gnutls_deinit(soap->session);
soap->session = NULL;
}
if (soap->xcred)
{ gnutls_certificate_free_credentials(soap->xcred);
soap->xcred = NULL;
}
#endif
err = soap->fsslauth(soap);
#ifdef WITH_OPENSSL
if (!err)
{ if (sid)
SSL_CTX_set_session_id_context(soap->ctx, (unsigned char*)sid, (unsigned int)strlen(sid));
else
SSL_CTX_set_session_cache_mode(soap->ctx, SSL_SESS_CACHE_OFF);
}
#endif
return err;
}
#endif
#endif
/******************************************************************************/
#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS)
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_ssl_client_context(struct soap *soap, unsigned short flags, const char *keyfile, const char *password, const char *cafile, const char *capath, const char *randfile)
{ soap->keyfile = keyfile;
soap->password = password;
soap->cafile = cafile;
soap->capath = capath;
soap->ssl_flags = SOAP_SSL_CLIENT | flags;
#ifdef WITH_OPENSSL
soap->dhfile = NULL;
soap->randfile = randfile;
soap->fsslverify = (flags & SOAP_SSL_ALLOW_EXPIRED_CERTIFICATE) == 0 ? ssl_verify_callback : ssl_verify_callback_allow_expired_certificate;
#endif
#ifdef WITH_GNUTLS
if (soap->session)
{ gnutls_deinit(soap->session);
soap->session = NULL;
}
if (soap->xcred)
{ gnutls_certificate_free_credentials(soap->xcred);
soap->xcred = NULL;
}
#endif
return soap->fsslauth(soap);
}
#endif
#endif
/******************************************************************************/
#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS)
#ifndef PALM_2
SOAP_FMAC1
void
SOAP_FMAC2
soap_ssl_init()
{ /* Note: for MT systems, the main program MUST call soap_ssl_init() before any threads are started */
if (!soap_ssl_init_done)
{ soap_ssl_init_done = 1;
#ifdef WITH_OPENSSL
SSL_library_init();
OpenSSL_add_all_algorithms(); /* 2.8.1 change (wsseapi.c) */
OpenSSL_add_all_digests();
#ifndef WITH_LEAN
SSL_load_error_strings();
#endif
if (!RAND_load_file("/dev/urandom", 1024))
{ char buf[1024];
RAND_seed(buf, sizeof(buf));
while (!RAND_status())
{ int r = rand();
RAND_seed(&r, sizeof(int));
}
}
#endif
#ifdef WITH_GNUTLS
# if defined(HAVE_PTHREAD_H)
gcry_control(GCRYCTL_SET_THREAD_CBS, &gcry_threads_pthread);
# elif defined(HAVE_PTH_H)
gcry_control(GCRYCTL_SET_THREAD_CBS, &gcry_threads_pth);
# endif
gcry_control(GCRYCTL_ENABLE_QUICK_RANDOM, 0);
gcry_control(GCRYCTL_DISABLE_SECMEM, 0);
gcry_control(GCRYCTL_INITIALIZATION_FINISHED, 0); /* libgcrypt init done */
gnutls_global_init();
#endif
}
}
#endif
#endif
/******************************************************************************/
#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS)
#ifndef PALM_1
SOAP_FMAC1
const char *
SOAP_FMAC2
soap_ssl_error(struct soap *soap, int ret)
{
#ifdef WITH_OPENSSL
int err = SSL_get_error(soap->ssl, ret);
const char *msg = soap_code_str(h_ssl_error_codes, err);
if (msg)
strcpy(soap->msgbuf, msg);
else
return ERR_error_string(err, soap->msgbuf);
if (ERR_peek_error())
{ unsigned long r;
strcat(soap->msgbuf, "\n");
while ((r = ERR_get_error()))
ERR_error_string_n(r, soap->msgbuf + strlen(soap->msgbuf), sizeof(soap->msgbuf) - strlen(soap->msgbuf));
}
else
{ switch (ret)
{ case 0:
strcpy(soap->msgbuf, "EOF was observed that violates the protocol. The client probably provided invalid authentication information.");
break;
case -1:
#ifdef HAVE_SNPRINTF
soap_snprintf(soap->msgbuf, sizeof(soap->msgbuf), "Error observed by underlying BIO: %s", strerror(errno));
#else
sprintf(soap->msgbuf, "Error observed by underlying BIO: %s", strerror(errno));
#endif
break;
}
}
return soap->msgbuf;
#endif
#ifdef WITH_GNUTLS
return gnutls_strerror(ret);
#endif
}
#endif
#endif
/******************************************************************************/
#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS)
#ifndef PALM_1
static int
ssl_auth_init(struct soap *soap)
{
#ifdef WITH_OPENSSL
long flags;
int mode;
if (!soap_ssl_init_done)
soap_ssl_init();
ERR_clear_error();
if (!soap->ctx)
{ if (!(soap->ctx = SSL_CTX_new(SSLv23_method())))
return soap_set_receiver_error(soap, "SSL/TLS error", "Can't setup context", SOAP_SSL_ERROR);
/* The following alters the behavior of SSL read/write: */
#if 0
SSL_CTX_set_mode(soap->ctx, SSL_MODE_ENABLE_PARTIAL_WRITE | SSL_MODE_AUTO_RETRY);
#endif
}
if (soap->randfile)
{ if (!RAND_load_file(soap->randfile, -1))
return soap_set_receiver_error(soap, "SSL/TLS error", "Can't load randomness", SOAP_SSL_ERROR);
}
if (soap->cafile || soap->capath)
{ if (!SSL_CTX_load_verify_locations(soap->ctx, soap->cafile, soap->capath))
return soap_set_receiver_error(soap, "SSL/TLS error", "Can't read CA file", SOAP_SSL_ERROR);
if (soap->cafile && (soap->ssl_flags & SOAP_SSL_REQUIRE_CLIENT_AUTHENTICATION))
SSL_CTX_set_client_CA_list(soap->ctx, SSL_load_client_CA_file(soap->cafile));
}
if (!(soap->ssl_flags & SOAP_SSL_NO_DEFAULT_CA_PATH))
{ if (!SSL_CTX_set_default_verify_paths(soap->ctx))
return soap_set_receiver_error(soap, "SSL/TLS error", "Can't read default CA file and/or directory", SOAP_SSL_ERROR);
}
/* This code assumes a typical scenario, see alternative code below */
if (soap->keyfile)
{ if (!SSL_CTX_use_certificate_chain_file(soap->ctx, soap->keyfile))
return soap_set_receiver_error(soap, "SSL/TLS error", "Can't read certificate key file", SOAP_SSL_ERROR);
if (soap->password)
{ SSL_CTX_set_default_passwd_cb_userdata(soap->ctx, (void*)soap->password);
SSL_CTX_set_default_passwd_cb(soap->ctx, ssl_password);
}
if (!SSL_CTX_use_PrivateKey_file(soap->ctx, soap->keyfile, SSL_FILETYPE_PEM))
return soap_set_receiver_error(soap, "SSL/TLS error", "Can't read key file", SOAP_SSL_ERROR);
}
/* Suggested alternative approach to check the key file for certs (cafile=NULL):*/
#if 0
if (soap->password)
{ SSL_CTX_set_default_passwd_cb_userdata(soap->ctx, (void*)soap->password);
SSL_CTX_set_default_passwd_cb(soap->ctx, ssl_password);
}
if (!soap->cafile || !SSL_CTX_use_certificate_chain_file(soap->ctx, soap->cafile))
{ if (soap->keyfile)
{ if (!SSL_CTX_use_certificate_chain_file(soap->ctx, soap->keyfile))
return soap_set_receiver_error(soap, "SSL/TLS error", "Can't read certificate or key file", SOAP_SSL_ERROR);
if (!SSL_CTX_use_PrivateKey_file(soap->ctx, soap->keyfile, SSL_FILETYPE_PEM))
return soap_set_receiver_error(soap, "SSL/TLS error", "Can't read key file", SOAP_SSL_ERROR);
}
}
#endif
if ((soap->ssl_flags & SOAP_SSL_RSA))
{ RSA *rsa = RSA_generate_key(SOAP_SSL_RSA_BITS, RSA_F4, NULL, NULL);
if (!SSL_CTX_set_tmp_rsa(soap->ctx, rsa))
{ if (rsa)
RSA_free(rsa);
return soap_set_receiver_error(soap, "SSL/TLS error", "Can't set RSA key", SOAP_SSL_ERROR);
}
RSA_free(rsa);
}
else if (soap->dhfile)
{ DH *dh = 0;
char *s;
int n = (int)soap_strtoul(soap->dhfile, &s, 10);
/* if dhfile is numeric, treat it as a key length to generate DH params which can take a while */
if (n >= 512 && s && *s == '\0')
dh = DH_generate_parameters(n, 2/*or 5*/, NULL, NULL);
else
{ BIO *bio;
bio = BIO_new_file(soap->dhfile, "r");
if (!bio)
return soap_set_receiver_error(soap, "SSL/TLS error", "Can't read DH file", SOAP_SSL_ERROR);
dh = PEM_read_bio_DHparams(bio, NULL, NULL, NULL);
BIO_free(bio);
}
if (!dh || DH_check(dh, &n) != 1 || SSL_CTX_set_tmp_dh(soap->ctx, dh) < 0)
{ if (dh)
DH_free(dh);
return soap_set_receiver_error(soap, "SSL/TLS error", "Can't set DH parameters", SOAP_SSL_ERROR);
}
DH_free(dh);
}
flags = (SSL_OP_ALL | SSL_OP_NO_SSLv2); /* disable SSL v2 */
if ((soap->ssl_flags & SOAP_SSLv3))
flags |= SSL_OP_NO_TLSv1;
if ((soap->ssl_flags & SOAP_TLSv1))
flags |= SSL_OP_NO_SSLv3;
#ifdef SSL_OP_NO_TICKET
/* TLS extension is enabled by default in OPENSSL v0.9.8k
Disable it by adding SSL_OP_NO_TICKET */
flags |= SSL_OP_NO_TICKET;
#endif
SSL_CTX_set_options(soap->ctx, flags);
if ((soap->ssl_flags & SOAP_SSL_REQUIRE_CLIENT_AUTHENTICATION))
mode = (SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT);
else if ((soap->ssl_flags & SOAP_SSL_REQUIRE_SERVER_AUTHENTICATION))
mode = SSL_VERIFY_PEER;
else
mode = SSL_VERIFY_NONE;
SSL_CTX_set_verify(soap->ctx, mode, soap->fsslverify);
#if (OPENSSL_VERSION_NUMBER < 0x00905100L)
SSL_CTX_set_verify_depth(soap->ctx, 1);
#else
SSL_CTX_set_verify_depth(soap->ctx, 9);
#endif
#endif
#ifdef WITH_GNUTLS
int ret;
if (!soap_ssl_init_done)
soap_ssl_init();
if (!soap->xcred)
{ gnutls_certificate_allocate_credentials(&soap->xcred);
if (soap->cafile)
{ if (gnutls_certificate_set_x509_trust_file(soap->xcred, soap->cafile, GNUTLS_X509_FMT_PEM) < 0)
return soap_set_receiver_error(soap, "SSL/TLS error", "Can't read CA file", SOAP_SSL_ERROR);
}
if (soap->crlfile)
{ if (gnutls_certificate_set_x509_crl_file(soap->xcred, soap->crlfile, GNUTLS_X509_FMT_PEM) < 0)
return soap_set_receiver_error(soap, "SSL/TLS error", "Can't read CRL file", SOAP_SSL_ERROR);
}
if (soap->keyfile)
{ if (gnutls_certificate_set_x509_key_file(soap->xcred, soap->keyfile, soap->keyfile, GNUTLS_X509_FMT_PEM) < 0) /* TODO: GNUTLS need to concat cert and key in single key file */
return soap_set_receiver_error(soap, "SSL/TLS error", "Can't read key file", SOAP_SSL_ERROR);
}
}
if ((soap->ssl_flags & SOAP_SSL_CLIENT))
{ gnutls_init(&soap->session, GNUTLS_CLIENT);
if (soap->cafile || soap->crlfile || soap->keyfile)
{ ret = gnutls_priority_set_direct(soap->session, "PERFORMANCE", NULL);
if (ret < 0)
return soap_set_receiver_error(soap, soap_ssl_error(soap, ret), "SSL/TLS set priority error", SOAP_SSL_ERROR);
gnutls_credentials_set(soap->session, GNUTLS_CRD_CERTIFICATE, soap->xcred);
}
else
{ if (!soap->acred)
gnutls_anon_allocate_client_credentials(&soap->acred);
gnutls_init(&soap->session, GNUTLS_CLIENT);
gnutls_priority_set_direct(soap->session, "PERFORMANCE:+ANON-DH:!ARCFOUR-128", NULL);
gnutls_credentials_set(soap->session, GNUTLS_CRD_ANON, soap->acred);
}
}
else
{ if (!soap->keyfile)
return soap_set_receiver_error(soap, "SSL/TLS error", "No key file: anonymous server authentication not supported in this release", SOAP_SSL_ERROR);
if ((soap->ssl_flags & SOAP_SSL_RSA) && soap->rsa_params)
gnutls_certificate_set_rsa_export_params(soap->xcred, soap->rsa_params);
else if (soap->dh_params)
gnutls_certificate_set_dh_params(soap->xcred, soap->dh_params);
if (!soap->cache)
gnutls_priority_init(&soap->cache, "NORMAL", NULL);
gnutls_init(&soap->session, GNUTLS_SERVER);
gnutls_priority_set(soap->session, soap->cache);
gnutls_credentials_set(soap->session, GNUTLS_CRD_CERTIFICATE, soap->xcred);
if ((soap->ssl_flags & SOAP_SSL_REQUIRE_CLIENT_AUTHENTICATION))
gnutls_certificate_server_set_request(soap->session, GNUTLS_CERT_REQUEST);
gnutls_session_enable_compatibility_mode(soap->session);
if ((soap->ssl_flags & SOAP_TLSv1))
{ int protocol_priority[] = { GNUTLS_TLS1_0, 0 };
if (gnutls_protocol_set_priority(soap->session, protocol_priority) != GNUTLS_E_SUCCESS)
return soap_set_receiver_error(soap, "SSL/TLS error", "Can't set TLS v1.0 protocol", SOAP_SSL_ERROR);
}
}
#endif
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifdef WITH_OPENSSL
#ifndef PALM_1
static int
ssl_password(char *buf, int num, int rwflag, void *userdata)
{ if (num < (int)strlen((char*)userdata) + 1)
return 0;
return (int)strlen(strcpy(buf, (char*)userdata));
}
#endif
#endif
/******************************************************************************/
#ifdef WITH_OPENSSL
#ifndef PALM_1
static int
ssl_verify_callback(int ok, X509_STORE_CTX *store)
{
#ifdef SOAP_DEBUG
if (!ok)
{ char buf[1024];
int err = X509_STORE_CTX_get_error(store);
X509 *cert = X509_STORE_CTX_get_current_cert(store);
fprintf(stderr, "SSL verify error or warning with certificate at depth %d: %s\n", X509_STORE_CTX_get_error_depth(store), X509_verify_cert_error_string(err));
X509_NAME_oneline(X509_get_issuer_name(cert), buf, sizeof(buf));
fprintf(stderr, "certificate issuer %s\n", buf);
X509_NAME_oneline(X509_get_subject_name(cert), buf, sizeof(buf));
fprintf(stderr, "certificate subject %s\n", buf);
/* accept self signed certificates and certificates out of date */
switch (err)
{ case X509_V_ERR_CERT_NOT_YET_VALID:
case X509_V_ERR_CERT_HAS_EXPIRED:
case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
case X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN:
X509_STORE_CTX_set_error(store, X509_V_OK);
ok = 1;
}
}
#endif
/* Note: return 1 to continue, but unsafe progress will be terminated by OpenSSL */
return ok;
}
#endif
#endif
/******************************************************************************/
#ifdef WITH_OPENSSL
#ifndef PALM_1
static int
ssl_verify_callback_allow_expired_certificate(int ok, X509_STORE_CTX *store)
{ ok = ssl_verify_callback(ok, store);
if (!ok)
{ /* accept self signed certificates and certificates out of date */
switch (X509_STORE_CTX_get_error(store))
{ case X509_V_ERR_CERT_NOT_YET_VALID:
case X509_V_ERR_CERT_HAS_EXPIRED:
case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
case X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN:
X509_STORE_CTX_set_error(store, X509_V_OK);
ok = 1;
}
}
/* Note: return 1 to continue, but unsafe progress will be terminated by SSL */
return ok;
}
#endif
#endif
/******************************************************************************/
#ifdef WITH_GNUTLS
static const char *
ssl_verify(struct soap *soap, const char *host)
{ unsigned int status;
const char *err = NULL;
int r = gnutls_certificate_verify_peers2(soap->session, &status);
if (r < 0)
err = "Certificate verify error";
else if ((status & GNUTLS_CERT_INVALID))
err = "The certificate is not trusted";
else if ((status & GNUTLS_CERT_SIGNER_NOT_FOUND))
err = "The certificate hasn't got a known issuer";
else if ((status & GNUTLS_CERT_REVOKED))
err = "The certificate has been revoked";
else if (gnutls_certificate_type_get(soap->session) == GNUTLS_CRT_X509)
{ gnutls_x509_crt_t cert;
const gnutls_datum_t *cert_list;
unsigned int cert_list_size;
if (gnutls_x509_crt_init(&cert) < 0)
err = "Could not get X509 certificates";
else if ((cert_list = gnutls_certificate_get_peers(soap->session, &cert_list_size)) == NULL)
err = "Could not get X509 certificates";
else if (gnutls_x509_crt_import(cert, &cert_list[0], GNUTLS_X509_FMT_DER) < 0)
err = "Error parsing X509 certificate";
else if (!(soap->ssl_flags & SOAP_SSL_ALLOW_EXPIRED_CERTIFICATE) && gnutls_x509_crt_get_expiration_time(cert) < time(NULL))
err = "The certificate has expired";
else if (!(soap->ssl_flags & SOAP_SSL_ALLOW_EXPIRED_CERTIFICATE) && gnutls_x509_crt_get_activation_time(cert) > time(NULL))
err = "The certificate is not yet activated";
else if (host && !(soap->ssl_flags & SOAP_SSL_SKIP_HOST_CHECK))
{ if (!gnutls_x509_crt_check_hostname(cert, host))
err = "Certificate host name mismatch";
}
gnutls_x509_crt_deinit(cert);
}
return err;
}
#endif
/******************************************************************************/
#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS)
#ifndef WITH_NOIO
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_ssl_accept(struct soap *soap)
{ SOAP_SOCKET sk = soap->socket;
#ifdef WITH_OPENSSL
BIO *bio;
int retries, r, s;
if (!soap_valid_socket(sk))
return soap_set_receiver_error(soap, "SSL/TLS error", "No socket in soap_ssl_accept()", SOAP_SSL_ERROR);
soap->ssl_flags &= ~SOAP_SSL_CLIENT;
if (!soap->ctx && (soap->error = soap->fsslauth(soap)))
return soap->error;
if (!soap->ssl)
{ soap->ssl = SSL_new(soap->ctx);
if (!soap->ssl)
return soap_set_receiver_error(soap, "SSL/TLS error", "SSL_new() failed in soap_ssl_accept()", SOAP_SSL_ERROR);
}
else
SSL_clear(soap->ssl);
bio = BIO_new_socket((int)sk, BIO_NOCLOSE);
SSL_set_bio(soap->ssl, bio, bio);
/* Set SSL sockets to non-blocking */
retries = 0;
if (soap->accept_timeout)
{ SOAP_SOCKNONBLOCK(sk)
retries = 10*soap->accept_timeout;
}
if (retries <= 0)
retries = 100; /* timeout: 10 sec retries, 100 times 0.1 sec */
while ((r = SSL_accept(soap->ssl)) <= 0)
{ int err;
if (retries-- <= 0)
break;
err = SSL_get_error(soap->ssl, r);
if (err == SSL_ERROR_WANT_ACCEPT || err == SSL_ERROR_WANT_READ || err == SSL_ERROR_WANT_WRITE)
{ if (err == SSL_ERROR_WANT_READ)
s = tcp_select(soap, sk, SOAP_TCP_SELECT_RCV | SOAP_TCP_SELECT_ERR, -100000);
else
s = tcp_select(soap, sk, SOAP_TCP_SELECT_SND | SOAP_TCP_SELECT_ERR, -100000);
if (s < 0 && soap->errnum != SOAP_EINTR)
break;
}
else
{ soap->errnum = soap_socket_errno(sk);
break;
}
}
if (r <= 0)
{ soap_set_receiver_error(soap, soap_ssl_error(soap, r), "SSL_accept() failed in soap_ssl_accept()", SOAP_SSL_ERROR);
soap_closesock(soap);
return SOAP_SSL_ERROR;
}
if ((soap->ssl_flags & SOAP_SSL_REQUIRE_CLIENT_AUTHENTICATION))
{ X509 *peer;
int err;
if ((err = SSL_get_verify_result(soap->ssl)) != X509_V_OK)
{ soap_closesock(soap);
return soap_set_sender_error(soap, X509_verify_cert_error_string(err), "SSL certificate presented by peer cannot be verified in soap_ssl_accept()", SOAP_SSL_ERROR);
}
peer = SSL_get_peer_certificate(soap->ssl);
if (!peer)
{ soap_closesock(soap);
return soap_set_sender_error(soap, "SSL/TLS error", "No SSL certificate was presented by the peer in soap_ssl_accept()", SOAP_SSL_ERROR);
}
X509_free(peer);
}
#endif
#ifdef WITH_GNUTLS
int retries = 0, r;
if (!soap_valid_socket(sk))
return soap_set_receiver_error(soap, "SSL/TLS error", "No socket in soap_ssl_accept()", SOAP_SSL_ERROR);
soap->ssl_flags &= ~SOAP_SSL_CLIENT;
if (!soap->session && (soap->error = soap->fsslauth(soap)))
{ soap_closesock(soap);
return soap->error;
}
gnutls_transport_set_ptr(soap->session, (gnutls_transport_ptr_t)(long)sk);
/* Set SSL sockets to non-blocking */
if (soap->accept_timeout)
{ SOAP_SOCKNONBLOCK(sk)
retries = 10*soap->accept_timeout;
}
if (retries <= 0)
retries = 100; /* timeout: 10 sec retries, 100 times 0.1 sec */
while ((r = gnutls_handshake(soap->session)))
{ int s;
/* GNUTLS repeat handhake when GNUTLS_E_AGAIN */
if (retries-- <= 0)
break;
if (r == GNUTLS_E_AGAIN || r == GNUTLS_E_INTERRUPTED)
{ if (!gnutls_record_get_direction(soap->session))
s = tcp_select(soap, sk, SOAP_TCP_SELECT_RCV | SOAP_TCP_SELECT_ERR, -100000);
else
s = tcp_select(soap, sk, SOAP_TCP_SELECT_SND | SOAP_TCP_SELECT_ERR, -100000);
if (s < 0 && soap->errnum != SOAP_EINTR)
break;
}
else
{ soap->errnum = soap_socket_errno(sk);
break;
}
}
if (r)
{ soap_closesock(soap);
return soap_set_receiver_error(soap, soap_ssl_error(soap, r), "SSL/TLS handshake failed", SOAP_SSL_ERROR);
}
if ((soap->ssl_flags & SOAP_SSL_REQUIRE_CLIENT_AUTHENTICATION))
{ const char *err = ssl_verify(soap, NULL);
if (err)
{ soap_closesock(soap);
return soap_set_receiver_error(soap, "SSL/TLS error", err, SOAP_SSL_ERROR);
}
}
#endif
if (soap->recv_timeout || soap->send_timeout)
SOAP_SOCKNONBLOCK(sk)
else
SOAP_SOCKBLOCK(sk)
soap->imode |= SOAP_ENC_SSL;
soap->omode |= SOAP_ENC_SSL;
return SOAP_OK;
}
#endif
#endif
#endif
/******************************************************************************\
*
* TCP/UDP [SSL/TLS] IPv4 and IPv6
*
\******************************************************************************/
/******************************************************************************/
#ifndef WITH_NOIO
#ifndef PALM_1
static int
tcp_init(struct soap *soap)
{ soap->errmode = 1;
#ifdef WIN32
if (tcp_done)
return 0;
else
{ WSADATA w;
if (WSAStartup(MAKEWORD(1, 1), &w))
return -1;
tcp_done = 1;
}
#endif
return 0;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIO
#ifndef PALM_1
static const char*
tcp_error(struct soap *soap)
{ register const char *msg = NULL;
switch (soap->errmode)
{ case 0:
msg = soap_strerror(soap);
break;
case 1:
msg = "WSAStartup failed";
break;
case 2:
{
#ifndef WITH_LEAN
msg = soap_code_str(h_error_codes, soap->errnum);
if (!msg)
#endif
{ sprintf(soap->msgbuf, "TCP/UDP IP error %d", soap->errnum);
msg = soap->msgbuf;
}
}
}
return msg;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_IPV6
#ifndef WITH_NOIO
#ifndef PALM_1
static int
tcp_gethost(struct soap *soap, const char *addr, struct in_addr *inaddr)
{ soap_int32 iadd = -1;
struct hostent hostent, *host = &hostent;
#ifdef VXWORKS
int hostint;
/* inet_addr(), and hostGetByName() expect "char *"; addr is a "const char *". */
iadd = inet_addr((char*)addr);
#else
#if defined(_AIX43) || ((defined(TRU64) || defined(HP_UX)) && defined(HAVE_GETHOSTBYNAME_R))
struct hostent_data ht_data;
#endif
#ifdef AS400
iadd = inet_addr((void*)addr);
#else
iadd = inet_addr(addr);
#endif
#endif
if (iadd != -1)
{ memcpy(inaddr, &iadd, sizeof(iadd));
return SOAP_OK;
}
#if defined(__GLIBC__) || (defined(HAVE_GETHOSTBYNAME_R) && (defined(FREEBSD) || defined(__FreeBSD__)))
if (gethostbyname_r(addr, &hostent, soap->buf, SOAP_BUFLEN, &host, &soap->errnum) < 0)
host = NULL;
#elif defined(_AIX43) || ((defined(TRU64) || defined(HP_UX)) && defined(HAVE_GETHOSTBYNAME_R))
memset((void*)&ht_data, 0, sizeof(ht_data));
if (gethostbyname_r(addr, &hostent, &ht_data) < 0)
{ host = NULL;
soap->errnum = h_errno;
}
#elif defined(HAVE_GETHOSTBYNAME_R)
host = gethostbyname_r(addr, &hostent, soap->buf, SOAP_BUFLEN, &soap->errnum);
#elif defined(VXWORKS)
/* If the DNS resolver library resolvLib has been configured in the vxWorks
* image, a query for the host IP address is sent to the DNS server, if the
* name was not found in the local host table. */
hostint = hostGetByName((char*)addr);
if (hostint == ERROR)
{ host = NULL;
soap->errnum = soap_errno;
}
#else
#ifdef AS400
if (!(host = gethostbyname((void*)addr)))
soap->errnum = h_errno;
#else
if (!(host = gethostbyname(addr)))
soap->errnum = h_errno;
#endif
#endif
if (!host)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Host name not found\n"));
return SOAP_ERR;
}
#ifdef VXWORKS
inaddr->s_addr = hostint;
#else
memcpy(inaddr, host->h_addr, host->h_length);
#endif
return SOAP_OK;
}
#endif
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIO
#ifndef PALM_1
static SOAP_SOCKET
tcp_connect(struct soap *soap, const char *endpoint, const char *host, int port)
{
#ifdef WITH_IPV6
struct addrinfo hints, *res, *ressave;
#endif
SOAP_SOCKET sk;
int err = 0;
#ifndef WITH_LEAN
#ifndef WIN32
int len = SOAP_BUFLEN;
#else
int len = SOAP_BUFLEN + 1; /* speeds up windows xfer */
#endif
int set = 1;
#endif
#if !defined(WITH_LEAN) || defined(WITH_OPENSSL) || defined(WITH_GNUTLS)
int retries;
#endif
if (soap_valid_socket(soap->socket))
soap->fclosesocket(soap, soap->socket);
soap->socket = SOAP_INVALID_SOCKET;
if (tcp_init(soap))
{ soap->errnum = 0;
soap_set_sender_error(soap, tcp_error(soap), "TCP init failed in tcp_connect()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
soap->errmode = 0;
#ifdef WITH_IPV6
memset((void*)&hints, 0, sizeof(hints));
hints.ai_family = PF_UNSPEC;
#ifndef WITH_LEAN
if ((soap->omode & SOAP_IO_UDP))
hints.ai_socktype = SOCK_DGRAM;
else
#endif
hints.ai_socktype = SOCK_STREAM;
soap->errmode = 2;
if (soap->proxy_host)
err = getaddrinfo(soap->proxy_host, soap_int2s(soap, soap->proxy_port), &hints, &res);
else
err = getaddrinfo(host, soap_int2s(soap, port), &hints, &res);
if (err)
{ soap_set_sender_error(soap, SOAP_GAI_STRERROR(err), "getaddrinfo failed in tcp_connect()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
ressave = res;
again:
sk = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
soap->errmode = 0;
#else
#ifndef WITH_LEAN
again:
#endif
#ifndef WITH_LEAN
if ((soap->omode & SOAP_IO_UDP))
sk = socket(AF_INET, SOCK_DGRAM, 0);
else
#endif
sk = socket(AF_INET, SOCK_STREAM, 0);
#endif
if (!soap_valid_socket(sk))
{
#ifdef WITH_IPV6
if (res->ai_next)
{ res = res->ai_next;
goto again;
}
#endif
soap->errnum = soap_socket_errno(sk);
soap_set_sender_error(soap, tcp_error(soap), "socket failed in tcp_connect()", SOAP_TCP_ERROR);
#ifdef WITH_IPV6
freeaddrinfo(ressave);
#endif
return SOAP_INVALID_SOCKET;
}
#ifdef SOCKET_CLOSE_ON_EXEC
#ifdef WIN32
#ifndef UNDER_CE
SetHandleInformation((HANDLE)sk, HANDLE_FLAG_INHERIT, 0);
#endif
#else
fcntl(sk, F_SETFD, 1);
#endif
#endif
#ifndef WITH_LEAN
if (soap->connect_flags == SO_LINGER)
{ struct linger linger;
memset((void*)&linger, 0, sizeof(linger));
linger.l_onoff = 1;
linger.l_linger = soap->linger_time;
if (setsockopt(sk, SOL_SOCKET, SO_LINGER, (char*)&linger, sizeof(struct linger)))
{ soap->errnum = soap_socket_errno(sk);
soap_set_sender_error(soap, tcp_error(soap), "setsockopt SO_LINGER failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, sk);
#ifdef WITH_IPV6
freeaddrinfo(ressave);
#endif
return SOAP_INVALID_SOCKET;
}
}
else if (soap->connect_flags && setsockopt(sk, SOL_SOCKET, soap->connect_flags, (char*)&set, sizeof(int)))
{ soap->errnum = soap_socket_errno(sk);
soap_set_sender_error(soap, tcp_error(soap), "setsockopt failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, sk);
#ifdef WITH_IPV6
freeaddrinfo(ressave);
#endif
return SOAP_INVALID_SOCKET;
}
if ((soap->keep_alive || soap->tcp_keep_alive) && setsockopt(sk, SOL_SOCKET, SO_KEEPALIVE, (char*)&set, sizeof(int)))
{ soap->errnum = soap_socket_errno(sk);
soap_set_sender_error(soap, tcp_error(soap), "setsockopt SO_KEEPALIVE failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, sk);
#ifdef WITH_IPV6
freeaddrinfo(ressave);
#endif
return SOAP_INVALID_SOCKET;
}
if (setsockopt(sk, SOL_SOCKET, SO_SNDBUF, (char*)&len, sizeof(int)))
{ soap->errnum = soap_socket_errno(sk);
soap_set_sender_error(soap, tcp_error(soap), "setsockopt SO_SNDBUF failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, sk);
#ifdef WITH_IPV6
freeaddrinfo(ressave);
#endif
return SOAP_INVALID_SOCKET;
}
if (setsockopt(sk, SOL_SOCKET, SO_RCVBUF, (char*)&len, sizeof(int)))
{ soap->errnum = soap_socket_errno(sk);
soap_set_sender_error(soap, tcp_error(soap), "setsockopt SO_RCVBUF failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, sk);
#ifdef WITH_IPV6
freeaddrinfo(ressave);
#endif
return SOAP_INVALID_SOCKET;
}
#ifdef TCP_KEEPIDLE
if (soap->tcp_keep_idle && setsockopt((SOAP_SOCKET)sk, IPPROTO_TCP, TCP_KEEPIDLE, (char*)&(soap->tcp_keep_idle), sizeof(int)))
{ soap->errnum = soap_socket_errno(sk);
soap_set_sender_error(soap, tcp_error(soap), "setsockopt TCP_KEEPIDLE failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, (SOAP_SOCKET)sk);
#ifdef WITH_IPV6
freeaddrinfo(ressave);
#endif
return SOAP_INVALID_SOCKET;
}
#endif
#ifdef TCP_KEEPINTVL
if (soap->tcp_keep_intvl && setsockopt((SOAP_SOCKET)sk, IPPROTO_TCP, TCP_KEEPINTVL, (char*)&(soap->tcp_keep_intvl), sizeof(int)))
{ soap->errnum = soap_socket_errno(sk);
soap_set_sender_error(soap, tcp_error(soap), "setsockopt TCP_KEEPINTVL failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, (SOAP_SOCKET)sk);
#ifdef WITH_IPV6
freeaddrinfo(ressave);
#endif
return SOAP_INVALID_SOCKET;
}
#endif
#ifdef TCP_KEEPCNT
if (soap->tcp_keep_cnt && setsockopt((SOAP_SOCKET)sk, IPPROTO_TCP, TCP_KEEPCNT, (char*)&(soap->tcp_keep_cnt), sizeof(int)))
{ soap->errnum = soap_socket_errno(sk);
soap_set_sender_error(soap, tcp_error(soap), "setsockopt TCP_KEEPCNT failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, (SOAP_SOCKET)sk);
#ifdef WITH_IPV6
freeaddrinfo(ressave);
#endif
return SOAP_INVALID_SOCKET;
}
#endif
#ifdef TCP_NODELAY
if (!(soap->omode & SOAP_IO_UDP) && setsockopt(sk, IPPROTO_TCP, TCP_NODELAY, (char*)&set, sizeof(int)))
{ soap->errnum = soap_socket_errno(sk);
soap_set_sender_error(soap, tcp_error(soap), "setsockopt TCP_NODELAY failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, sk);
#ifdef WITH_IPV6
freeaddrinfo(ressave);
#endif
return SOAP_INVALID_SOCKET;
}
#endif
#ifdef WITH_IPV6
if ((soap->omode & SOAP_IO_UDP) && soap->ipv6_multicast_if)
{ struct sockaddr_in6 *in6addr = (struct sockaddr_in6*)res->ai_addr;
in6addr->sin6_scope_id = soap->ipv6_multicast_if;
}
#endif
#ifdef IP_MULTICAST_TTL
if ((soap->omode & SOAP_IO_UDP))
{ if (soap->ipv4_multicast_ttl)
{ unsigned char ttl = soap->ipv4_multicast_ttl;
if (setsockopt(sk, IPPROTO_IP, IP_MULTICAST_TTL, (char*)&ttl, sizeof(ttl)))
{ soap->errnum = soap_socket_errno(sk);
soap_set_sender_error(soap, tcp_error(soap), "setsockopt IP_MULTICAST_TTL failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, sk);
return SOAP_INVALID_SOCKET;
}
}
if ((soap->omode & SOAP_IO_UDP) && soap->ipv4_multicast_if && !soap->ipv6_multicast_if)
{ if (setsockopt(sk, IPPROTO_IP, IP_MULTICAST_IF, (char*)soap->ipv4_multicast_if, sizeof(struct in_addr)))
#ifndef WINDOWS
{ soap->errnum = soap_socket_errno(sk);
soap_set_sender_error(soap, tcp_error(soap), "setsockopt IP_MULTICAST_IF failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, sk);
return SOAP_INVALID_SOCKET;
}
#else
#ifndef IP_MULTICAST_IF
#define IP_MULTICAST_IF 2
#endif
if (setsockopt(sk, IPPROTO_IP, IP_MULTICAST_IF, (char*)soap->ipv4_multicast_if, sizeof(struct in_addr)))
{ soap->errnum = soap_socket_errno(sk);
soap_set_sender_error(soap, tcp_error(soap), "setsockopt IP_MULTICAST_IF failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, sk);
return SOAP_INVALID_SOCKET;
}
#endif
}
}
#endif
#endif
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Opening socket %d to host='%s' port=%d\n", sk, host, port));
#ifndef WITH_IPV6
soap->peerlen = sizeof(soap->peer);
memset((void*)&soap->peer, 0, sizeof(soap->peer));
soap->peer.sin_family = AF_INET;
soap->errmode = 2;
if (soap->proxy_host)
{ if (soap->fresolve(soap, soap->proxy_host, &soap->peer.sin_addr))
{ soap_set_sender_error(soap, tcp_error(soap), "get proxy host by name failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, sk);
return SOAP_INVALID_SOCKET;
}
soap->peer.sin_port = htons((short)soap->proxy_port);
}
else
{ if (soap->fresolve(soap, host, &soap->peer.sin_addr))
{ soap_set_sender_error(soap, tcp_error(soap), "get host by name failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, sk);
return SOAP_INVALID_SOCKET;
}
soap->peer.sin_port = htons((short)port);
}
soap->errmode = 0;
#ifndef WITH_LEAN
if ((soap->omode & SOAP_IO_UDP))
return sk;
#endif
#else
if ((soap->omode & SOAP_IO_UDP))
{ memcpy(&soap->peer, res->ai_addr, res->ai_addrlen);
soap->peerlen = res->ai_addrlen;
freeaddrinfo(ressave);
return sk;
}
#endif
#ifndef WITH_LEAN
if (soap->connect_timeout)
SOAP_SOCKNONBLOCK(sk)
else
SOAP_SOCKBLOCK(sk)
retries = 10;
#endif
for (;;)
{
#ifdef WITH_IPV6
if (connect(sk, res->ai_addr, (int)res->ai_addrlen))
#else
if (connect(sk, (struct sockaddr*)&soap->peer, sizeof(soap->peer)))
#endif
{ err = soap_socket_errno(sk);
#ifndef WITH_LEAN
if (err == SOAP_EADDRINUSE)
{ soap->fclosesocket(soap, sk);
if (retries-- > 0)
goto again;
}
else if (soap->connect_timeout && (err == SOAP_EINPROGRESS || err == SOAP_EAGAIN || err == SOAP_EWOULDBLOCK))
{
SOAP_SOCKLEN_T k;
for (;;)
{ register int r;
r = tcp_select(soap, sk, SOAP_TCP_SELECT_SND, soap->connect_timeout);
if (r > 0)
break;
if (!r)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Connect timeout\n"));
soap_set_sender_error(soap, "Timeout", "connect failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, sk);
#ifdef WITH_IPV6
freeaddrinfo(ressave);
#endif
return SOAP_INVALID_SOCKET;
}
r = soap->errnum;
if (r != SOAP_EINTR)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Could not connect to host\n"));
soap_set_sender_error(soap, tcp_error(soap), "connect failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, sk);
#ifdef WITH_IPV6
freeaddrinfo(ressave);
#endif
return SOAP_INVALID_SOCKET;
}
}
k = (SOAP_SOCKLEN_T)sizeof(soap->errnum);
if (!getsockopt(sk, SOL_SOCKET, SO_ERROR, (char*)&soap->errnum, &k) && !soap->errnum) /* portability note: see SOAP_SOCKLEN_T definition in stdsoap2.h */
break;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Could not connect to host\n"));
if (!soap->errnum)
soap->errnum = soap_socket_errno(sk);
soap_set_sender_error(soap, tcp_error(soap), "connect failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, sk);
#ifdef WITH_IPV6
freeaddrinfo(ressave);
#endif
return SOAP_INVALID_SOCKET;
}
#endif
#ifdef WITH_IPV6
if (res->ai_next)
{ res = res->ai_next;
soap->fclosesocket(soap, sk);
goto again;
}
#endif
if (err && err != SOAP_EINTR)
{ soap->errnum = err;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Could not connect to host\n"));
soap_set_sender_error(soap, tcp_error(soap), "connect failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, sk);
#ifdef WITH_IPV6
freeaddrinfo(ressave);
#endif
return SOAP_INVALID_SOCKET;
}
}
else
break;
}
#ifdef WITH_IPV6
soap->peerlen = 0; /* IPv6: already connected so use send() */
freeaddrinfo(ressave);
#endif
soap->socket = sk;
soap->imode &= ~SOAP_ENC_SSL;
soap->omode &= ~SOAP_ENC_SSL;
if (!soap_tag_cmp(endpoint, "https:*"))
{
#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS)
#ifdef WITH_OPENSSL
BIO *bio;
#endif
int r;
if (soap->proxy_host)
{ soap_mode m = soap->mode; /* preserve settings */
soap_mode om = soap->omode; /* make sure we only parse HTTP */
size_t n = soap->count; /* save the content length */
const char *userid, *passwd;
int status = soap->status; /* save the current status/command */
short keep_alive = soap->keep_alive; /* save the KA status */
soap->omode &= ~SOAP_ENC; /* mask IO and ENC */
soap->omode |= SOAP_IO_BUFFER;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Connecting to %s proxy server %s for destination endpoint %s\n", soap->proxy_http_version, soap->proxy_host, endpoint));
#ifdef WITH_NTLM
if (soap->ntlm_challenge)
{ if (soap_ntlm_handshake(soap, SOAP_CONNECT, endpoint, host, port))
return soap->error;
}
#endif
if (soap_begin_send(soap))
{ soap->fclosesocket(soap, sk);
return SOAP_INVALID_SOCKET;
}
soap->status = SOAP_CONNECT;
soap->keep_alive = 1;
if ((soap->error = soap->fpost(soap, endpoint, host, port, NULL, NULL, 0))
|| soap_end_send_flush(soap))
{ soap->fclosesocket(soap, sk);
return SOAP_INVALID_SOCKET;
}
soap->keep_alive = keep_alive;
soap->omode = om;
om = soap->imode;
soap->imode &= ~SOAP_ENC; /* mask IO and ENC */
userid = soap->userid; /* preserve */
passwd = soap->passwd; /* preserve */
if ((soap->error = soap->fparse(soap)))
{ soap->fclosesocket(soap, sk);
return SOAP_INVALID_SOCKET;
}
soap->status = status; /* restore */
soap->userid = userid; /* restore */
soap->passwd = passwd; /* restore */
soap->imode = om; /* restore */
soap->count = n; /* restore */
if (soap_begin_send(soap))
{ soap->fclosesocket(soap, sk);
return SOAP_INVALID_SOCKET;
}
if (endpoint)
strncpy(soap->endpoint, endpoint, sizeof(soap->endpoint)-1); /* restore */
soap->mode = m;
}
#ifdef WITH_OPENSSL
soap->ssl_flags |= SOAP_SSL_CLIENT;
if (!soap->ctx && (soap->error = soap->fsslauth(soap)))
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "SSL required, but no ctx set\n"));
soap->fclosesocket(soap, sk);
soap->error = SOAP_SSL_ERROR;
return SOAP_INVALID_SOCKET;
}
if (!soap->ssl)
{ soap->ssl = SSL_new(soap->ctx);
if (!soap->ssl)
{ soap->fclosesocket(soap, sk);
soap->error = SOAP_SSL_ERROR;
return SOAP_INVALID_SOCKET;
}
}
else
SSL_clear(soap->ssl);
if (soap->session)
{ if (!strcmp(soap->session_host, host) && soap->session_port == port)
SSL_set_session(soap->ssl, soap->session);
SSL_SESSION_free(soap->session);
soap->session = NULL;
}
soap->imode |= SOAP_ENC_SSL;
soap->omode |= SOAP_ENC_SSL;
bio = BIO_new_socket((int)sk, BIO_NOCLOSE);
SSL_set_bio(soap->ssl, bio, bio);
/* Connect timeout: set SSL sockets to non-blocking */
retries = 0;
if (soap->connect_timeout)
{ SOAP_SOCKNONBLOCK(sk)
retries = 10*soap->connect_timeout;
}
else
SOAP_SOCKBLOCK(sk)
if (retries <= 0)
retries = 100; /* timeout: 10 sec retries, 100 times 0.1 sec */
/* Try connecting until success or timeout (when nonblocking) */
do
{ if ((r = SSL_connect(soap->ssl)) <= 0)
{ int err = SSL_get_error(soap->ssl, r);
if (err == SSL_ERROR_WANT_CONNECT || err == SSL_ERROR_WANT_READ || err == SSL_ERROR_WANT_WRITE)
{ register int s;
if (err == SSL_ERROR_WANT_READ)
s = tcp_select(soap, sk, SOAP_TCP_SELECT_RCV | SOAP_TCP_SELECT_ERR, -100000);
else
s = tcp_select(soap, sk, SOAP_TCP_SELECT_SND | SOAP_TCP_SELECT_ERR, -100000);
if (s < 0 && soap->errnum != SOAP_EINTR)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "SSL_connect/select error in tcp_connect\n"));
soap_set_sender_error(soap, soap_ssl_error(soap, r), "SSL_connect failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, sk);
return SOAP_INVALID_SOCKET;
}
if (s == 0 && retries-- <= 0)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "SSL/TLS connect timeout\n"));
soap_set_sender_error(soap, "Timeout", "SSL_connect failed in tcp_connect()", SOAP_TCP_ERROR);
soap->fclosesocket(soap, sk);
return SOAP_INVALID_SOCKET;
}
}
else
{ soap_set_sender_error(soap, soap_ssl_error(soap, r), "SSL_connect error in tcp_connect()", SOAP_SSL_ERROR);
soap->fclosesocket(soap, sk);
return SOAP_INVALID_SOCKET;
}
}
} while (!SSL_is_init_finished(soap->ssl));
/* Set SSL sockets to nonblocking */
SOAP_SOCKNONBLOCK(sk)
/* Check server credentials when required */
if ((soap->ssl_flags & SOAP_SSL_REQUIRE_SERVER_AUTHENTICATION))
{ int err;
if ((err = SSL_get_verify_result(soap->ssl)) != X509_V_OK)
{ soap_set_sender_error(soap, X509_verify_cert_error_string(err), "SSL/TLS certificate presented by peer cannot be verified in tcp_connect()", SOAP_SSL_ERROR);
soap->fclosesocket(soap, sk);
return SOAP_INVALID_SOCKET;
}
if (!(soap->ssl_flags & SOAP_SSL_SKIP_HOST_CHECK))
{ X509_NAME *subj;
STACK_OF(CONF_VALUE) *val = NULL;
#if (OPENSSL_VERSION_NUMBER >= 0x0090800fL)
GENERAL_NAMES *names = NULL;
#else
int ext_count;
#endif
int ok = 0;
X509 *peer = SSL_get_peer_certificate(soap->ssl);
if (!peer)
{ soap_set_sender_error(soap, "SSL/TLS error", "No SSL/TLS certificate was presented by the peer in tcp_connect()", SOAP_SSL_ERROR);
soap->fclosesocket(soap, sk);
return SOAP_INVALID_SOCKET;
}
#if (OPENSSL_VERSION_NUMBER < 0x0090800fL)
ext_count = X509_get_ext_count(peer);
if (ext_count > 0)
{ int i;
for (i = 0; i < ext_count; i++)
{ X509_EXTENSION *ext = X509_get_ext(peer, i);
const char *ext_str = OBJ_nid2sn(OBJ_obj2nid(X509_EXTENSION_get_object(ext)));
if (ext_str && !strcmp(ext_str, "subjectAltName"))
{ X509V3_EXT_METHOD *meth = (X509V3_EXT_METHOD*)X509V3_EXT_get(ext);
unsigned char *data;
if (!meth)
break;
data = ext->value->data;
if (data)
{
#if (OPENSSL_VERSION_NUMBER > 0x00907000L)
void *ext_data;
if (meth->it)
ext_data = ASN1_item_d2i(NULL, &data, ext->value->length, ASN1_ITEM_ptr(meth->it));
else
{ /* OpenSSL is not portable at this point (?):
Some compilers appear to prefer
meth->d2i(NULL, (const unsigned char**)&data, ...
and others prefer
meth->d2i(NULL, &data, ext->value->length);
*/
ext_data = meth->d2i(NULL, &data, ext->value->length);
}
if (ext_data)
val = meth->i2v(meth, ext_data, NULL);
else
val = NULL;
if (meth->it)
ASN1_item_free((ASN1_VALUE*)ext_data, ASN1_ITEM_ptr(meth->it));
else
meth->ext_free(ext_data);
#else
void *ext_data = meth->d2i(NULL, &data, ext->value->length);
if (ext_data)
val = meth->i2v(meth, ext_data, NULL);
meth->ext_free(ext_data);
#endif
if (val)
{ int j;
for (j = 0; j < sk_CONF_VALUE_num(val); j++)
{ CONF_VALUE *nval = sk_CONF_VALUE_value(val, j);
if (nval && !strcmp(nval->name, "DNS") && !strcmp(nval->value, host))
{ ok = 1;
break;
}
}
sk_CONF_VALUE_pop_free(val, X509V3_conf_free);
}
}
}
if (ok)
break;
}
}
#else
names = (GENERAL_NAMES*)X509_get_ext_d2i(peer, NID_subject_alt_name, NULL, NULL);
if (names)
{ i2v_GENERAL_NAMES(NULL, names, val);
sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
}
if (val)
{ int j;
for (j = 0; j < sk_CONF_VALUE_num(val); j++)
{ CONF_VALUE *nval = sk_CONF_VALUE_value(val, j);
if (nval && !strcmp(nval->name, "DNS") && !strcmp(nval->value, host))
{ ok = 1;
break;
}
}
sk_CONF_VALUE_pop_free(val, X509V3_conf_free);
}
#endif
if (!ok && (subj = X509_get_subject_name(peer)))
{ int i = -1;
do
{ ASN1_STRING *name;
i = X509_NAME_get_index_by_NID(subj, NID_commonName, i);
if (i == -1)
break;
name = X509_NAME_ENTRY_get_data(X509_NAME_get_entry(subj, i));
if (name)
{ if (!soap_tag_cmp(host, (const char*)M_ASN1_STRING_data(name)))
ok = 1;
else
{ unsigned char *tmp = NULL;
ASN1_STRING_to_UTF8(&tmp, name);
if (tmp)
{ if (!soap_tag_cmp(host, (const char*)tmp))
ok = 1;
else if (tmp[0] == '*') /* wildcard domain */
{ const char *t = strchr(host, '.');
if (t && !soap_tag_cmp(t, (const char*)tmp+1))
ok = 1;
}
OPENSSL_free(tmp);
}
}
}
} while (!ok);
}
X509_free(peer);
if (!ok)
{ soap_set_sender_error(soap, "SSL/TLS error", "SSL/TLS certificate host name mismatch in tcp_connect()", SOAP_SSL_ERROR);
soap->fclosesocket(soap, sk);
return SOAP_INVALID_SOCKET;
}
}
}
#endif
#ifdef WITH_GNUTLS
soap->ssl_flags |= SOAP_SSL_CLIENT;
if (!soap->session && (soap->error = soap->fsslauth(soap)))
{ soap->fclosesocket(soap, sk);
return SOAP_INVALID_SOCKET;
}
gnutls_transport_set_ptr(soap->session, (gnutls_transport_ptr_t)(long)sk);
/* Set SSL sockets to non-blocking */
if (soap->connect_timeout)
{ SOAP_SOCKNONBLOCK(sk)
retries = 10*soap->connect_timeout;
}
else
SOAP_SOCKBLOCK(sk)
if (retries <= 0)
retries = 100; /* timeout: 10 sec retries, 100 times 0.1 sec */
while ((r = gnutls_handshake(soap->session)))
{ int s;
/* GNUTLS repeat handhake when GNUTLS_E_AGAIN */
if (retries-- <= 0)
break;
if (r == GNUTLS_E_AGAIN || r == GNUTLS_E_INTERRUPTED)
{ if (!gnutls_record_get_direction(soap->session))
s = tcp_select(soap, sk, SOAP_TCP_SELECT_RCV | SOAP_TCP_SELECT_ERR, -100000);
else
s = tcp_select(soap, sk, SOAP_TCP_SELECT_SND | SOAP_TCP_SELECT_ERR, -100000);
if (s < 0 && soap->errnum != SOAP_EINTR)
break;
}
else
{ soap->errnum = soap_socket_errno(sk);
break;
}
}
if (r)
{ soap_set_sender_error(soap, soap_ssl_error(soap, r), "SSL/TLS handshake failed", SOAP_SSL_ERROR);
soap->fclosesocket(soap, sk);
return SOAP_INVALID_SOCKET;
}
if ((soap->ssl_flags & SOAP_SSL_REQUIRE_SERVER_AUTHENTICATION))
{ const char *err = ssl_verify(soap, host);
if (err)
{ soap->fclosesocket(soap, sk);
soap->error = soap_set_sender_error(soap, "SSL/TLS error", err, SOAP_SSL_ERROR);
return SOAP_INVALID_SOCKET;
}
}
#endif
#else
soap->fclosesocket(soap, sk);
soap->error = SOAP_SSL_ERROR;
return SOAP_INVALID_SOCKET;
#endif
}
if (soap->recv_timeout || soap->send_timeout)
SOAP_SOCKNONBLOCK(sk)
else
SOAP_SOCKBLOCK(sk)
return sk;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIO
#ifndef PALM_1
static int
tcp_select(struct soap *soap, SOAP_SOCKET sk, int flags, int timeout)
{ register int r;
struct timeval tv;
fd_set fd[3], *rfd, *sfd, *efd;
soap->errnum = 0;
#ifndef WIN32
#if !defined(FD_SETSIZE) || defined(__QNX__) || defined(QNX)
/* no FD_SETSIZE or select() is not MT safe on some QNX: always poll */
if (1)
#else
/* if fd max set size exceeded, use poll() */
if ((int)sk >= (int)FD_SETSIZE)
#endif
#ifdef HAVE_POLL
{ struct pollfd pollfd;
int retries = 0;
pollfd.fd = (int)sk;
pollfd.events = 0;
if (flags & SOAP_TCP_SELECT_RCV)
pollfd.events |= POLLIN;
if (flags & SOAP_TCP_SELECT_SND)
pollfd.events |= POLLOUT;
if (flags & SOAP_TCP_SELECT_ERR)
pollfd.events |= POLLERR;
if (timeout < 0)
timeout /= -1000; /* -usec -> ms */
else if (timeout <= 1000000) /* avoid overflow */
timeout *= 1000; /* sec -> ms */
else
{ retries = timeout / 1000000;
timeout = 1000000000;
}
do r = poll(&pollfd, 1, timeout);
while (r == 0 && retries--);
if (r > 0)
{ r = 0;
if ((flags & SOAP_TCP_SELECT_RCV) && (pollfd.revents & POLLIN))
r |= SOAP_TCP_SELECT_RCV;
if ((flags & SOAP_TCP_SELECT_SND) && (pollfd.revents & POLLOUT))
r |= SOAP_TCP_SELECT_SND;
if ((flags & SOAP_TCP_SELECT_ERR) && (pollfd.revents & POLLERR))
r |= SOAP_TCP_SELECT_ERR;
}
else if (r < 0)
soap->errnum = soap_socket_errno(s);
return r;
}
#else
{ soap->error = SOAP_FD_EXCEEDED;
return -1;
}
#endif
#endif
rfd = sfd = efd = NULL;
if (flags & SOAP_TCP_SELECT_RCV)
{ rfd = &fd[0];
FD_ZERO(rfd);
FD_SET(sk, rfd);
}
if (flags & SOAP_TCP_SELECT_SND)
{ sfd = &fd[1];
FD_ZERO(sfd);
FD_SET(sk, sfd);
}
if (flags & SOAP_TCP_SELECT_ERR)
{ efd = &fd[2];
FD_ZERO(efd);
FD_SET(sk, efd);
}
if (timeout >= 0)
{ tv.tv_sec = timeout;
tv.tv_usec = 0;
}
else
{ tv.tv_sec = -timeout / 1000000;
tv.tv_usec = -timeout % 1000000;
}
r = select((int)sk + 1, rfd, sfd, efd, &tv);
if (r > 0)
{ r = 0;
if ((flags & SOAP_TCP_SELECT_RCV) && FD_ISSET(sk, rfd))
r |= SOAP_TCP_SELECT_RCV;
if ((flags & SOAP_TCP_SELECT_SND) && FD_ISSET(sk, sfd))
r |= SOAP_TCP_SELECT_SND;
if ((flags & SOAP_TCP_SELECT_ERR) && FD_ISSET(sk, efd))
r |= SOAP_TCP_SELECT_ERR;
}
else if (r < 0)
soap->errnum = soap_socket_errno(s);
return r;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIO
#ifndef PALM_1
static SOAP_SOCKET
tcp_accept(struct soap *soap, SOAP_SOCKET s, struct sockaddr *a, int *n)
{ SOAP_SOCKET sk;
(void)soap;
sk = accept(s, a, (SOAP_SOCKLEN_T*)n); /* portability note: see SOAP_SOCKLEN_T definition in stdsoap2.h */
#ifdef SOCKET_CLOSE_ON_EXEC
#ifdef WIN32
#ifndef UNDER_CE
SetHandleInformation((HANDLE)sk, HANDLE_FLAG_INHERIT, 0);
#endif
#else
fcntl(sk, F_SETFD, FD_CLOEXEC);
#endif
#endif
return sk;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIO
#ifndef PALM_1
static int
tcp_disconnect(struct soap *soap)
{
#ifdef WITH_OPENSSL
if (soap->ssl)
{ int r, s = 0;
if (soap->session)
{ SSL_SESSION_free(soap->session);
soap->session = NULL;
}
if (*soap->host)
{ soap->session = SSL_get1_session(soap->ssl);
if (soap->session)
{ strcpy(soap->session_host, soap->host);
soap->session_port = soap->port;
}
}
r = SSL_shutdown(soap->ssl);
/* SSL shutdown does not work when reads are pending, non-blocking */
if (r == 0)
{ while (SSL_want_read(soap->ssl))
{ if (SSL_read(soap->ssl, NULL, 0)
|| soap_socket_errno(soap->socket) != SOAP_EAGAIN)
{ r = SSL_shutdown(soap->ssl);
break;
}
}
}
if (r == 0)
{ if (soap_valid_socket(soap->socket))
{ if (!soap->fshutdownsocket(soap, soap->socket, SOAP_SHUT_WR))
{
#if !defined(WITH_LEAN) && !defined(WIN32)
/*
wait up to 5 seconds for close_notify to be sent by peer (if peer not
present, this avoids calling SSL_shutdown() which has a lengthy return
timeout)
*/
r = tcp_select(soap, soap->socket, SOAP_TCP_SELECT_RCV | SOAP_TCP_SELECT_ERR, 5);
if (r <= 0 && soap->errnum != SOAP_EINTR)
{ soap->errnum = 0;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Connection lost...\n"));
soap->fclosesocket(soap, soap->socket);
soap->socket = SOAP_INVALID_SOCKET;
ERR_remove_state(0);
SSL_free(soap->ssl);
soap->ssl = NULL;
return SOAP_OK;
}
#else
r = SSL_shutdown(soap->ssl);
#endif
}
}
}
if (r != 1)
{ s = ERR_get_error();
if (s)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Shutdown failed: %d\n", SSL_get_error(soap->ssl, r)));
if (soap_valid_socket(soap->socket) && !(soap->omode & SOAP_IO_UDP))
{ soap->fclosesocket(soap, soap->socket);
soap->socket = SOAP_INVALID_SOCKET;
}
}
}
SSL_free(soap->ssl);
soap->ssl = NULL;
if (s)
return SOAP_SSL_ERROR;
ERR_remove_state(0);
}
#endif
#ifdef WITH_GNUTLS
if (soap->session)
{ gnutls_bye(soap->session, GNUTLS_SHUT_RDWR);
gnutls_deinit(soap->session);
soap->session = NULL;
}
#endif
if (soap_valid_socket(soap->socket) && !(soap->omode & SOAP_IO_UDP))
{ soap->fshutdownsocket(soap, soap->socket, SOAP_SHUT_RDWR);
soap->fclosesocket(soap, soap->socket);
soap->socket = SOAP_INVALID_SOCKET;
}
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIO
#ifndef PALM_1
static int
tcp_closesocket(struct soap *soap, SOAP_SOCKET sk)
{ (void)soap;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Close socket %d\n", (int)sk));
return soap_closesocket(sk);
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIO
#ifndef PALM_1
static int
tcp_shutdownsocket(struct soap *soap, SOAP_SOCKET sk, int how)
{ (void)soap;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Shutdown socket %d how=%d\n", (int)sk, how));
return shutdown(sk, how);
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIO
#ifndef PALM_1
SOAP_FMAC1
SOAP_SOCKET
SOAP_FMAC2
soap_bind(struct soap *soap, const char *host, int port, int backlog)
{
#ifdef WITH_IPV6
struct addrinfo *addrinfo = NULL;
struct addrinfo hints;
struct addrinfo res;
int err;
#ifdef WITH_NO_IPV6_V6ONLY
int unset = 0;
#endif
#endif
#ifndef WITH_LEAN
#ifndef WIN32
int len = SOAP_BUFLEN;
#else
int len = SOAP_BUFLEN + 1; /* speeds up windows xfer */
#endif
int set = 1;
#endif
if (soap_valid_socket(soap->master))
{ soap->fclosesocket(soap, soap->master);
soap->master = SOAP_INVALID_SOCKET;
}
soap->socket = SOAP_INVALID_SOCKET;
soap->errmode = 1;
if (tcp_init(soap))
{ soap_set_receiver_error(soap, tcp_error(soap), "TCP init failed in soap_bind()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
#ifdef WITH_IPV6
memset((void*)&hints, 0, sizeof(hints));
hints.ai_family = PF_UNSPEC;
#ifndef WITH_LEAN
if ((soap->omode & SOAP_IO_UDP))
hints.ai_socktype = SOCK_DGRAM;
else
#endif
hints.ai_socktype = SOCK_STREAM;
hints.ai_flags = AI_PASSIVE;
soap->errmode = 2;
err = getaddrinfo(host, soap_int2s(soap, port), &hints, &addrinfo);
if (err || !addrinfo)
{ soap_set_receiver_error(soap, SOAP_GAI_STRERROR(err), "getaddrinfo failed in soap_bind()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
res = *addrinfo;
memcpy(&soap->peer, addrinfo->ai_addr, addrinfo->ai_addrlen);
soap->peerlen = addrinfo->ai_addrlen;
res.ai_addr = (struct sockaddr*)&soap->peer;
res.ai_addrlen = soap->peerlen;
freeaddrinfo(addrinfo);
soap->master = (int)socket(res.ai_family, res.ai_socktype, res.ai_protocol);
#else
#ifndef WITH_LEAN
if ((soap->omode & SOAP_IO_UDP))
soap->master = (int)socket(AF_INET, SOCK_DGRAM, 0);
else
#endif
soap->master = (int)socket(AF_INET, SOCK_STREAM, 0);
#endif
soap->errmode = 0;
if (!soap_valid_socket(soap->master))
{ soap->errnum = soap_socket_errno(soap->master);
soap_set_receiver_error(soap, tcp_error(soap), "socket failed in soap_bind()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
soap->port = port;
#ifndef WITH_LEAN
if ((soap->omode & SOAP_IO_UDP))
soap->socket = soap->master;
#endif
#ifdef SOCKET_CLOSE_ON_EXEC
#ifdef WIN32
#ifndef UNDER_CE
SetHandleInformation((HANDLE)soap->master, HANDLE_FLAG_INHERIT, 0);
#endif
#else
fcntl(soap->master, F_SETFD, 1);
#endif
#endif
#ifndef WITH_LEAN
if (soap->bind_flags && setsockopt(soap->master, SOL_SOCKET, soap->bind_flags, (char*)&set, sizeof(int)))
{ soap->errnum = soap_socket_errno(soap->master);
soap_set_receiver_error(soap, tcp_error(soap), "setsockopt failed in soap_bind()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
if (((soap->imode | soap->omode) & SOAP_IO_KEEPALIVE) && (!((soap->imode | soap->omode) & SOAP_IO_UDP)) && setsockopt(soap->master, SOL_SOCKET, SO_KEEPALIVE, (char*)&set, sizeof(int)))
{ soap->errnum = soap_socket_errno(soap->master);
soap_set_receiver_error(soap, tcp_error(soap), "setsockopt SO_KEEPALIVE failed in soap_bind()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
if (setsockopt(soap->master, SOL_SOCKET, SO_SNDBUF, (char*)&len, sizeof(int)))
{ soap->errnum = soap_socket_errno(soap->master);
soap_set_receiver_error(soap, tcp_error(soap), "setsockopt SO_SNDBUF failed in soap_bind()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
if (setsockopt(soap->master, SOL_SOCKET, SO_RCVBUF, (char*)&len, sizeof(int)))
{ soap->errnum = soap_socket_errno(soap->master);
soap_set_receiver_error(soap, tcp_error(soap), "setsockopt SO_RCVBUF failed in soap_bind()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
#ifdef TCP_NODELAY
if (!(soap->omode & SOAP_IO_UDP) && setsockopt(soap->master, IPPROTO_TCP, TCP_NODELAY, (char*)&set, sizeof(int)))
{ soap->errnum = soap_socket_errno(soap->master);
soap_set_receiver_error(soap, tcp_error(soap), "setsockopt TCP_NODELAY failed in soap_bind()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
#endif
#endif
#ifdef WITH_IPV6
#ifdef WITH_IPV6_V6ONLY
if (setsockopt(soap->master, IPPROTO_IPV6, IPV6_V6ONLY, (char*)&set, sizeof(int)))
{ soap->errnum = soap_socket_errno(soap->master);
soap_set_receiver_error(soap, tcp_error(soap), "setsockopt set IPV6_V6ONLY failed in soap_bind()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
#endif
#ifdef WITH_NO_IPV6_V6ONLY
if (setsockopt(soap->master, IPPROTO_IPV6, IPV6_V6ONLY, (char*)&unset, sizeof(int)))
{ soap->errnum = soap_socket_errno(soap->master);
soap_set_receiver_error(soap, tcp_error(soap), "setsockopt unset IPV6_V6ONLY failed in soap_bind()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
#endif
soap->errmode = 0;
if (bind(soap->master, res.ai_addr, (int)res.ai_addrlen))
{ soap->errnum = soap_socket_errno(soap->master);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Could not bind to host\n"));
soap_closesock(soap);
soap_set_receiver_error(soap, tcp_error(soap), "bind failed in soap_bind()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
#else
soap->peerlen = sizeof(soap->peer);
memset((void*)&soap->peer, 0, sizeof(soap->peer));
soap->peer.sin_family = AF_INET;
soap->errmode = 2;
if (host)
{ if (soap->fresolve(soap, host, &soap->peer.sin_addr))
{ soap_set_receiver_error(soap, tcp_error(soap), "get host by name failed in soap_bind()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
}
else
soap->peer.sin_addr.s_addr = htonl(INADDR_ANY);
soap->peer.sin_port = htons((short)port);
soap->errmode = 0;
if (bind(soap->master, (struct sockaddr*)&soap->peer, (int)soap->peerlen))
{ soap->errnum = soap_socket_errno(soap->master);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Could not bind to host\n"));
soap_closesock(soap);
soap_set_receiver_error(soap, tcp_error(soap), "bind failed in soap_bind()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
#endif
if (!(soap->omode & SOAP_IO_UDP) && listen(soap->master, backlog))
{ soap->errnum = soap_socket_errno(soap->master);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Could not bind to host\n"));
soap_closesock(soap);
soap_set_receiver_error(soap, tcp_error(soap), "listen failed in soap_bind()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
return soap->master;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIO
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_poll(struct soap *soap)
{
#ifndef WITH_LEAN
register int r;
if (soap_valid_socket(soap->socket))
{ r = tcp_select(soap, soap->socket, SOAP_TCP_SELECT_ALL, 0);
if (r > 0 && (r & SOAP_TCP_SELECT_ERR))
r = -1;
}
else if (soap_valid_socket(soap->master))
r = tcp_select(soap, soap->master, SOAP_TCP_SELECT_SND, 0);
else
return SOAP_OK; /* OK when no socket! */
if (r > 0)
{
#ifdef WITH_OPENSSL
if (soap->imode & SOAP_ENC_SSL)
{
if (soap_valid_socket(soap->socket)
&& (r & SOAP_TCP_SELECT_SND)
&& (!(r & SOAP_TCP_SELECT_RCV)
|| SSL_peek(soap->ssl, soap->tmpbuf, 1) > 0))
return SOAP_OK;
}
else
#endif
if (soap_valid_socket(soap->socket)
&& (r & SOAP_TCP_SELECT_SND)
&& (!(r & SOAP_TCP_SELECT_RCV)
|| recv(soap->socket, soap->tmpbuf, 1, MSG_PEEK) > 0))
return SOAP_OK;
}
else if (r < 0)
{ if ((soap_valid_socket(soap->master) || soap_valid_socket(soap->socket)) && soap_socket_errno(soap->master) != SOAP_EINTR)
{ soap_set_receiver_error(soap, tcp_error(soap), "select failed in soap_poll()", SOAP_TCP_ERROR);
return soap->error = SOAP_TCP_ERROR;
}
}
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Polling: other end down on socket=%d select=%d\n", soap->socket, r));
return SOAP_EOF;
#else
return SOAP_OK;
#endif
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIO
#ifndef PALM_1
SOAP_FMAC1
SOAP_SOCKET
SOAP_FMAC2
soap_accept(struct soap *soap)
{ int n = (int)sizeof(soap->peer);
register int err;
#ifndef WITH_LEAN
#ifndef WIN32
int len = SOAP_BUFLEN;
#else
int len = SOAP_BUFLEN + 1; /* speeds up windows xfer */
#endif
int set = 1;
#endif
soap->error = SOAP_OK;
memset((void*)&soap->peer, 0, sizeof(soap->peer));
soap->socket = SOAP_INVALID_SOCKET;
soap->errmode = 0;
soap->keep_alive = 0;
if (!soap_valid_socket(soap->master))
{ soap->errnum = 0;
soap_set_receiver_error(soap, tcp_error(soap), "no master socket in soap_accept()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
#ifndef WITH_LEAN
if ((soap->omode & SOAP_IO_UDP))
return soap->socket = soap->master;
#endif
for (;;)
{ if (soap->accept_timeout || soap->send_timeout || soap->recv_timeout)
{ for (;;)
{ register int r;
r = tcp_select(soap, soap->master, SOAP_TCP_SELECT_ALL, soap->accept_timeout ? soap->accept_timeout : 60);
if (r > 0)
break;
if (!r && soap->accept_timeout)
{ soap_set_receiver_error(soap, "Timeout", "accept failed in soap_accept()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
if (r < 0)
{ r = soap->errnum;
if (r != SOAP_EINTR)
{ soap_closesock(soap);
soap_set_sender_error(soap, tcp_error(soap), "accept failed in soap_accept()", SOAP_TCP_ERROR);
return SOAP_INVALID_SOCKET;
}
}
}
}
if (soap->accept_timeout)
SOAP_SOCKNONBLOCK(soap->master)
else
SOAP_SOCKBLOCK(soap->master)
soap->socket = soap->faccept(soap, soap->master, (struct sockaddr*)&soap->peer, &n);
soap->peerlen = (size_t)n;
if (soap_valid_socket(soap->socket))
{
#ifdef WITH_IPV6
unsigned int ip1, ip2, ip3, ip4;
char port[16];
getnameinfo((struct sockaddr*)&soap->peer, n, soap->host, sizeof(soap->host), port, 16, NI_NUMERICHOST | NI_NUMERICSERV);
sscanf(soap->host, "%u.%u.%u.%u", &ip1, &ip2, &ip3, &ip4);
soap->ip = (unsigned long)ip1 << 24 | (unsigned long)ip2 << 16 | (unsigned long)ip3 << 8 | (unsigned long)ip4;
soap->port = soap_strtol(port, NULL, 10);
#else
soap->ip = ntohl(soap->peer.sin_addr.s_addr);
sprintf(soap->host, "%u.%u.%u.%u", (int)(soap->ip>>24)&0xFF, (int)(soap->ip>>16)&0xFF, (int)(soap->ip>>8)&0xFF, (int)soap->ip&0xFF);
soap->port = (int)ntohs(soap->peer.sin_port); /* does not return port number on some systems */
#endif
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Accept socket %d at port %d from IP %s\n", soap->socket, soap->port, soap->host));
#ifndef WITH_LEAN
if (soap->accept_flags == SO_LINGER)
{ struct linger linger;
memset((void*)&linger, 0, sizeof(linger));
linger.l_onoff = 1;
linger.l_linger = soap->linger_time;
if (setsockopt(soap->socket, SOL_SOCKET, SO_LINGER, (char*)&linger, sizeof(struct linger)))
{ soap->errnum = soap_socket_errno(soap->socket);
soap_set_receiver_error(soap, tcp_error(soap), "setsockopt SO_LINGER failed in soap_accept()", SOAP_TCP_ERROR);
soap_closesock(soap);
return SOAP_INVALID_SOCKET;
}
}
else if (soap->accept_flags && setsockopt(soap->socket, SOL_SOCKET, soap->accept_flags, (char*)&set, sizeof(int)))
{ soap->errnum = soap_socket_errno(soap->socket);
soap_set_receiver_error(soap, tcp_error(soap), "setsockopt failed in soap_accept()", SOAP_TCP_ERROR);
soap_closesock(soap);
return SOAP_INVALID_SOCKET;
}
if (((soap->imode | soap->omode) & SOAP_IO_KEEPALIVE) && setsockopt(soap->socket, SOL_SOCKET, SO_KEEPALIVE, (char*)&set, sizeof(int)))
{ soap->errnum = soap_socket_errno(soap->socket);
soap_set_receiver_error(soap, tcp_error(soap), "setsockopt SO_KEEPALIVE failed in soap_accept()", SOAP_TCP_ERROR);
soap_closesock(soap);
return SOAP_INVALID_SOCKET;
}
if (setsockopt(soap->socket, SOL_SOCKET, SO_SNDBUF, (char*)&len, sizeof(int)))
{ soap->errnum = soap_socket_errno(soap->socket);
soap_set_receiver_error(soap, tcp_error(soap), "setsockopt SO_SNDBUF failed in soap_accept()", SOAP_TCP_ERROR);
soap_closesock(soap);
return SOAP_INVALID_SOCKET;
}
if (setsockopt(soap->socket, SOL_SOCKET, SO_RCVBUF, (char*)&len, sizeof(int)))
{ soap->errnum = soap_socket_errno(soap->socket);
soap_set_receiver_error(soap, tcp_error(soap), "setsockopt SO_RCVBUF failed in soap_accept()", SOAP_TCP_ERROR);
soap_closesock(soap);
return SOAP_INVALID_SOCKET;
}
#ifdef TCP_NODELAY
if (setsockopt(soap->socket, IPPROTO_TCP, TCP_NODELAY, (char*)&set, sizeof(int)))
{ soap->errnum = soap_socket_errno(soap->socket);
soap_set_receiver_error(soap, tcp_error(soap), "setsockopt TCP_NODELAY failed in soap_accept()", SOAP_TCP_ERROR);
soap_closesock(soap);
return SOAP_INVALID_SOCKET;
}
#endif
#endif
soap->keep_alive = (((soap->imode | soap->omode) & SOAP_IO_KEEPALIVE) != 0);
if (soap->send_timeout || soap->recv_timeout)
SOAP_SOCKNONBLOCK(soap->socket)
else
SOAP_SOCKBLOCK(soap->socket)
return soap->socket;
}
err = soap_socket_errno(soap->socket);
if (err != 0 && err != SOAP_EINTR && err != SOAP_EAGAIN && err != SOAP_EWOULDBLOCK)
{ DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Accept failed from %s\n", soap->host));
soap->errnum = err;
soap_set_receiver_error(soap, tcp_error(soap), "accept failed in soap_accept()", SOAP_TCP_ERROR);
soap_closesock(soap);
return SOAP_INVALID_SOCKET;
}
}
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_closesock(struct soap *soap)
{ register int status = soap->error;
#ifndef WITH_LEANER
if (status) /* close on error: attachment state is not to be trusted */
{ soap->mime.first = NULL;
soap->mime.last = NULL;
soap->dime.first = NULL;
soap->dime.last = NULL;
}
#endif
if (soap->fdisconnect && (soap->error = soap->fdisconnect(soap)))
return soap->error;
if (status == SOAP_EOF || status == SOAP_TCP_ERROR || status == SOAP_SSL_ERROR || !soap->keep_alive)
{ if (soap->fclose && (soap->error = soap->fclose(soap)))
return soap->error;
soap->keep_alive = 0;
}
#ifdef WITH_ZLIB
if (!(soap->mode & SOAP_MIME_POSTCHECK))
{ if (soap->zlib_state == SOAP_ZLIB_DEFLATE)
deflateEnd(soap->d_stream);
else if (soap->zlib_state == SOAP_ZLIB_INFLATE)
inflateEnd(soap->d_stream);
soap->zlib_state = SOAP_ZLIB_NONE;
}
#endif
return soap->error = status;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_force_closesock(struct soap *soap)
{ soap->keep_alive = 0;
if (soap_valid_socket(soap->socket))
return soap_closesocket(soap->socket);
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef WITH_NOIO
#ifndef PALM_2
SOAP_FMAC1
void
SOAP_FMAC2
soap_cleanup(struct soap *soap)
{ soap_done(soap);
#ifdef WIN32
if (!tcp_done)
return;
tcp_done = 0;
WSACleanup();
#endif
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_done(struct soap *soap)
{
#ifdef SOAP_DEBUG
int i;
#endif
if (soap_check_state(soap))
return;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Done with context\n"));
soap_free_temp(soap);
while (soap->clist)
{ struct soap_clist *p = soap->clist->next;
SOAP_FREE(soap, soap->clist);
soap->clist = p;
}
if (soap->state == SOAP_INIT)
soap->omode &= ~SOAP_IO_UDP; /* to force close the socket */
soap->keep_alive = 0; /* to force close the socket */
if (soap->master == soap->socket) /* do not close twice */
soap->master = SOAP_INVALID_SOCKET;
soap_closesock(soap);
#ifdef WITH_COOKIES
soap_free_cookies(soap);
#endif
while (soap->plugins)
{ register struct soap_plugin *p = soap->plugins->next;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Removing plugin '%s'\n", soap->plugins->id));
if (soap->plugins->fcopy || soap->state == SOAP_INIT)
soap->plugins->fdelete(soap, soap->plugins);
SOAP_FREE(soap, soap->plugins);
soap->plugins = p;
}
soap->fplugin = fplugin;
soap->fmalloc = NULL;
#ifndef WITH_NOHTTP
soap->fpost = http_post;
soap->fget = http_get;
soap->fput = http_405;
soap->fdel = http_405;
soap->fopt = http_200;
soap->fhead = http_200;
soap->fform = NULL;
soap->fposthdr = http_post_header;
soap->fresponse = http_response;
soap->fparse = http_parse;
soap->fparsehdr = http_parse_header;
#endif
soap->fheader = NULL;
#ifndef WITH_NOIO
#ifndef WITH_IPV6
soap->fresolve = tcp_gethost;
#else
soap->fresolve = NULL;
#endif
soap->faccept = tcp_accept;
soap->fopen = tcp_connect;
soap->fclose = tcp_disconnect;
soap->fclosesocket = tcp_closesocket;
soap->fshutdownsocket = tcp_shutdownsocket;
soap->fsend = fsend;
soap->frecv = frecv;
soap->fpoll = soap_poll;
#else
soap->fopen = NULL;
soap->fclose = NULL;
soap->fpoll = NULL;
#endif
#ifndef WITH_LEANER
soap->feltbegin = NULL;
soap->feltendin = NULL;
soap->feltbegout = NULL;
soap->feltendout = NULL;
soap->fprepareinitsend = NULL;
soap->fprepareinitrecv = NULL;
soap->fpreparesend = NULL;
soap->fpreparerecv = NULL;
soap->fpreparefinalsend = NULL;
soap->fpreparefinalrecv = NULL;
soap->ffiltersend = NULL;
soap->ffilterrecv = NULL;
#endif
soap->fseterror = NULL;
soap->fignore = NULL;
soap->fserveloop = NULL;
#ifdef WITH_OPENSSL
if (soap->session)
{ SSL_SESSION_free(soap->session);
soap->session = NULL;
}
#endif
if (soap->state == SOAP_INIT)
{ if (soap_valid_socket(soap->master))
{ soap->fclosesocket(soap, soap->master);
soap->master = SOAP_INVALID_SOCKET;
}
}
#ifdef WITH_OPENSSL
if (soap->ssl)
{ SSL_free(soap->ssl);
soap->ssl = NULL;
}
if (soap->state == SOAP_INIT)
{ if (soap->ctx)
{ SSL_CTX_free(soap->ctx);
soap->ctx = NULL;
}
}
ERR_remove_state(0);
#endif
#ifdef WITH_GNUTLS
if (soap->state == SOAP_INIT)
{ if (soap->xcred)
{ gnutls_certificate_free_credentials(soap->xcred);
soap->xcred = NULL;
}
if (soap->acred)
{ gnutls_anon_free_client_credentials(soap->acred);
soap->acred = NULL;
}
if (soap->cache)
{ gnutls_priority_deinit(soap->cache);
soap->cache = NULL;
}
if (soap->dh_params)
{ gnutls_dh_params_deinit(soap->dh_params);
soap->dh_params = NULL;
}
if (soap->rsa_params)
{ gnutls_rsa_params_deinit(soap->rsa_params);
soap->rsa_params = NULL;
}
}
if (soap->session)
{ gnutls_deinit(soap->session);
soap->session = NULL;
}
#endif
#ifdef WITH_C_LOCALE
# ifdef WIN32
_free_locale(soap->c_locale);
# else
freelocale(soap->c_locale);
# endif
#endif
#ifdef WITH_ZLIB
if (soap->d_stream)
{ SOAP_FREE(soap, (void*)soap->d_stream);
soap->d_stream = NULL;
}
if (soap->z_buf)
{ SOAP_FREE(soap, (void*)soap->z_buf);
soap->z_buf = NULL;
}
#endif
#ifdef SOAP_DEBUG
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Free logfiles\n"));
for (i = 0; i < SOAP_MAXLOGS; i++)
{ if (soap->logfile[i])
{ SOAP_FREE(soap, (void*)soap->logfile[i]);
soap->logfile[i] = NULL;
}
soap_close_logfile(soap, i);
}
soap->state = SOAP_NONE;
#endif
#ifdef SOAP_MEM_DEBUG
soap_free_mht(soap);
#endif
}
#endif
/******************************************************************************\
*
* HTTP
*
\******************************************************************************/
/******************************************************************************/
#ifndef WITH_NOHTTP
#ifndef PALM_1
int
http_parse(struct soap *soap)
{ char header[SOAP_HDRLEN], *s;
unsigned short httpcmd = 0;
int status = 0;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Waiting for HTTP request/response...\n"));
*soap->endpoint = '\0';
soap->length = 0;
#ifdef WITH_NTLM
if (!soap->ntlm_challenge)
#endif
{ soap->userid = NULL;
soap->passwd = NULL;
soap->authrealm = NULL;
}
#ifdef WITH_NTLM
soap->ntlm_challenge = NULL;
#endif
soap->proxy_from = NULL;
soap->http_content = NULL;
soap->action = NULL;
soap->status = 0;
soap->body = 1;
do
{ if (soap_getline(soap, soap->msgbuf, sizeof(soap->msgbuf)))
{ if (soap->error == SOAP_EOF)
return SOAP_EOF;
return soap->error = 414;
}
if ((s = strchr(soap->msgbuf, ' ')))
{ soap->status = (unsigned short)soap_strtoul(s, &s, 10);
if (!soap_blank((soap_wchar)*s))
soap->status = 0;
}
else
soap->status = 0;
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "HTTP status: %s\n", soap->msgbuf));
for (;;)
{ if (soap_getline(soap, header, SOAP_HDRLEN))
{ if (soap->error == SOAP_EOF)
{ soap->error = SOAP_OK;
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "EOF in HTTP header, continue anyway\n"));
break;
}
return soap->error;
}
if (!*header)
break;
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "HTTP header: %s\n", header));
s = strchr(header, ':');
if (s)
{ char *t;
*s = '\0';
do s++;
while (*s && *s <= 32);
if (*s == '"')
s++;
t = s + strlen(s) - 1;
while (t > s && *t <= 32)
t--;
if (t >= s && *t == '"')
t--;
t[1] = '\0';
if ((soap->error = soap->fparsehdr(soap, header, s)))
{ if (soap->error < SOAP_STOP)
return soap->error;
status = soap->error;
soap->error = SOAP_OK;
}
}
}
} while (soap->status == 100);
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Finished HTTP header parsing, status = %d\n", soap->status));
s = strstr(soap->msgbuf, "HTTP/");
if (s && s[7] != '1')
{ if (soap->keep_alive == 1)
soap->keep_alive = 0;
if (soap->status == 0 && (soap->omode & SOAP_IO) == SOAP_IO_CHUNK) /* soap->status == 0 for HTTP request */
{ soap->imode |= SOAP_IO_CHUNK;
soap->omode = (soap->omode & ~SOAP_IO) | SOAP_IO_STORE;
}
}
if (soap->keep_alive < 0)
soap->keep_alive = 1;
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Keep alive connection = %d\n", soap->keep_alive));
if (soap->status == 0)
{ size_t l = 0;
if (s)
{ if (!strncmp(soap->msgbuf, "POST ", l = 5))
httpcmd = 1;
else if (!strncmp(soap->msgbuf, "PUT ", l = 4))
httpcmd = 2;
else if (!strncmp(soap->msgbuf, "GET ", l = 4))
httpcmd = 3;
else if (!strncmp(soap->msgbuf, "DELETE ", l = 7))
httpcmd = 4;
else if (!strncmp(soap->msgbuf, "OPTIONS ", l = 8))
httpcmd = 5;
else if (!strncmp(soap->msgbuf, "HEAD ", l = 5))
httpcmd = 6;
}
if (s && httpcmd)
{ size_t m = strlen(soap->endpoint);
size_t n = m + (s - soap->msgbuf) - l - 1;
if (m > n)
m = n;
if (n >= sizeof(soap->endpoint))
n = sizeof(soap->endpoint) - 1;
strncpy(soap->path, soap->msgbuf + l, n - m);
soap->path[n - m] = '\0';
if (*soap->path && *soap->path != '/')
*soap->endpoint = '\0';
strcat(soap->endpoint, soap->path);
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Target endpoint='%s'\n", soap->endpoint));
if (httpcmd > 1)
{ DBGLOG(TEST,SOAP_MESSAGE(fdebug, "HTTP %s handler\n", soap->msgbuf));
switch (httpcmd)
{ case 2: soap->error = soap->fput(soap); break;
case 3: soap->error = soap->fget(soap); break;
case 4: soap->error = soap->fdel(soap); break;
case 5: soap->error = soap->fopt(soap); break;
case 6: soap->error = soap->fhead(soap); break;
default: soap->error = 405; break;
}
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "HTTP handler return = %d\n", soap->error));
if (soap->error == SOAP_OK)
soap->error = SOAP_STOP; /* prevents further processing */
return soap->error;
}
if (status)
return soap->error = status;
}
else if (status)
return soap->error = status;
else if (s)
return soap->error = 405;
return SOAP_OK;
}
#if 0
if (soap->length > 0 || (soap->http_content && (!soap->keep_alive || soap->recv_timeout)) || (soap->imode & SOAP_IO) == SOAP_IO_CHUNK)
#endif
if (soap->body)
{ if ((soap->status >= 200 && soap->status <= 299) /* OK, Accepted, etc */
|| soap->status == 400 /* Bad Request */
|| soap->status == 500) /* Internal Server Error */
return SOAP_OK;
/* force close afterwards in soap_closesock() */
soap->keep_alive = 0;
#ifndef WITH_LEAN
/* read HTTP body for error details */
s = soap_get_http_body(soap);
if (s)
return soap_set_receiver_error(soap, soap->msgbuf, s, soap->status);
#endif
}
else if (soap->status >= 200 && soap->status <= 299)
return soap->error = soap->status;
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "HTTP error %d\n", soap->status));
return soap_set_receiver_error(soap, "HTTP Error", soap->msgbuf, soap->status);
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOHTTP
#ifndef PALM_1
static int
http_parse_header(struct soap *soap, const char *key, const char *val)
{ if (!soap_tag_cmp(key, "Host"))
{
#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS)
if (soap->imode & SOAP_ENC_SSL)
strcpy(soap->endpoint, "https://");
else
#endif
strcpy(soap->endpoint, "http://");
strncat(soap->endpoint, val, sizeof(soap->endpoint) - 8);
soap->endpoint[sizeof(soap->endpoint) - 1] = '\0';
}
#ifndef WITH_LEANER
else if (!soap_tag_cmp(key, "Content-Type"))
{ const char *action;
soap->http_content = soap_strdup(soap, val);
if (soap_get_header_attribute(soap, val, "application/dime"))
soap->imode |= SOAP_ENC_DIME;
else if (soap_get_header_attribute(soap, val, "multipart/related")
|| soap_get_header_attribute(soap, val, "multipart/form-data"))
{ soap->mime.boundary = soap_strdup(soap, soap_get_header_attribute(soap, val, "boundary"));
soap->mime.start = soap_strdup(soap, soap_get_header_attribute(soap, val, "start"));
soap->imode |= SOAP_ENC_MIME;
}
action = soap_get_header_attribute(soap, val, "action");
if (action)
{ if (*action == '"')
{ soap->action = soap_strdup(soap, action + 1);
soap->action[strlen(soap->action) - 1] = '\0';
}
else
soap->action = soap_strdup(soap, action);
}
}
#endif
else if (!soap_tag_cmp(key, "Content-Length"))
{ soap->length = soap_strtoul(val, NULL, 10);
if (!soap->length)
soap->body = 0;
}
else if (!soap_tag_cmp(key, "Content-Encoding"))
{ if (!soap_tag_cmp(val, "deflate"))
#ifdef WITH_ZLIB
soap->zlib_in = SOAP_ZLIB_DEFLATE;
#else
return SOAP_ZLIB_ERROR;
#endif
else if (!soap_tag_cmp(val, "gzip"))
#ifdef WITH_GZIP
soap->zlib_in = SOAP_ZLIB_GZIP;
#else
return SOAP_ZLIB_ERROR;
#endif
}
#ifdef WITH_ZLIB
else if (!soap_tag_cmp(key, "Accept-Encoding"))
{
#ifdef WITH_GZIP
if (strchr(val, '*') || soap_get_header_attribute(soap, val, "gzip"))
soap->zlib_out = SOAP_ZLIB_GZIP;
else
#endif
if (strchr(val, '*') || soap_get_header_attribute(soap, val, "deflate"))
soap->zlib_out = SOAP_ZLIB_DEFLATE;
else
soap->zlib_out = SOAP_ZLIB_NONE;
}
#endif
else if (!soap_tag_cmp(key, "Transfer-Encoding"))
{ soap->imode &= ~SOAP_IO;
if (!soap_tag_cmp(val, "chunked"))
soap->imode |= SOAP_IO_CHUNK;
}
else if (!soap_tag_cmp(key, "Connection"))
{ if (!soap_tag_cmp(val, "keep-alive"))
soap->keep_alive = -soap->keep_alive;
else if (!soap_tag_cmp(val, "close"))
soap->keep_alive = 0;
}
#ifndef WITH_LEAN
else if (!soap_tag_cmp(key, "Authorization"))
{ if (!soap_tag_cmp(val, "Basic *"))
{ int n;
char *s;
soap_base642s(soap, val + 6, soap->tmpbuf, sizeof(soap->tmpbuf) - 1, &n);
soap->tmpbuf[n] = '\0';
if ((s = strchr(soap->tmpbuf, ':')))
{ *s = '\0';
soap->userid = soap_strdup(soap, soap->tmpbuf);
soap->passwd = soap_strdup(soap, s + 1);
}
}
}
else if (!soap_tag_cmp(key, "WWW-Authenticate") || !soap_tag_cmp(key, "Proxy-Authenticate"))
{
#ifdef WITH_NTLM
if (!soap_tag_cmp(val, "NTLM*"))
soap->ntlm_challenge = soap_strdup(soap, val + 4);
else
#endif
soap->authrealm = soap_strdup(soap, soap_get_header_attribute(soap, val + 6, "realm"));
}
else if (!soap_tag_cmp(key, "Expect"))
{ if (!soap_tag_cmp(val, "100-continue"))
{ if ((soap->error = soap->fposthdr(soap, "HTTP/1.1 100 Continue", NULL))
|| (soap->error = soap->fposthdr(soap, NULL, NULL)))
return soap->error;
}
}
#endif
else if (!soap_tag_cmp(key, "SOAPAction"))
{ if (*val == '"')
{ soap->action = soap_strdup(soap, val + 1);
soap->action[strlen(soap->action) - 1] = '\0';
}
else
soap->action = soap_strdup(soap, val);
}
else if (!soap_tag_cmp(key, "Location"))
{ strncpy(soap->endpoint, val, sizeof(soap->endpoint));
soap->endpoint[sizeof(soap->endpoint) - 1] = '\0';
}
else if (!soap_tag_cmp(key, "X-Forwarded-For"))
{ soap->proxy_from = soap_strdup(soap, val);
}
#ifdef WITH_COOKIES
else if (!soap_tag_cmp(key, "Cookie")
|| !soap_tag_cmp(key, "Cookie2")
|| !soap_tag_cmp(key, "Set-Cookie")
|| !soap_tag_cmp(key, "Set-Cookie2"))
{ soap_getcookies(soap, val);
}
#endif
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#if !defined(WITH_NOHTTP) || !defined(WITH_LEANER)
#ifndef PALM_1
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_get_header_attribute(struct soap *soap, const char *line, const char *key)
{ register const char *s = line;
if (s)
{ while (*s)
{ register short flag;
s = soap_decode_key(soap->tmpbuf, sizeof(soap->tmpbuf), s);
flag = soap_tag_cmp(soap->tmpbuf, key);
s = soap_decode_val(soap->tmpbuf, sizeof(soap->tmpbuf), s);
if (!flag)
return soap->tmpbuf;
}
}
return NULL;
}
#endif
#endif
/******************************************************************************/
#if !defined(WITH_NOHTTP) || !defined(WITH_LEANER)
#ifndef PALM_1
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_decode_key(char *buf, size_t len, const char *val)
{ return soap_decode(buf, len, val, "=,;");
}
#endif
#endif
/******************************************************************************/
#if !defined(WITH_NOHTTP) || !defined(WITH_LEANER)
#ifndef PALM_1
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_decode_val(char *buf, size_t len, const char *val)
{ if (*val != '=')
{ *buf = '\0';
return val;
}
return soap_decode(buf, len, val + 1, ",;");
}
#endif
#endif
/******************************************************************************/
#if !defined(WITH_NOHTTP) || !defined(WITH_LEANER)
#ifndef PALM_1
static const char*
soap_decode(char *buf, size_t len, const char *val, const char *sep)
{ const char *s;
char *t = buf;
for (s = val; *s; s++)
if (*s != ' ' && *s != '\t' && !strchr(sep, *s))
break;
if (*s == '"')
{ s++;
while (*s && *s != '"' && --len)
*t++ = *s++;
}
else
{ while (*s && !soap_blank((soap_wchar)*s) && !strchr(sep, *s) && --len)
{ if (*s == '%')
{ *t++ = ((s[1] >= 'A' ? (s[1] & 0x7) + 9 : s[1] - '0') << 4)
+ (s[2] >= 'A' ? (s[2] & 0x7) + 9 : s[2] - '0');
s += 3;
}
else
*t++ = *s++;
}
}
*t = '\0';
while (*s && !strchr(sep, *s))
s++;
return s;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOHTTP
#ifndef PALM_1
static const char*
http_error(struct soap *soap, int status)
{ register const char *msg = SOAP_STR_EOS;
(void)soap;
#ifndef WITH_LEAN
msg = soap_code_str(h_http_error_codes, status);
if (!msg)
msg = SOAP_STR_EOS;
#endif
return msg;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOHTTP
#ifndef PALM_1
static int
http_get(struct soap *soap)
{ (void)soap;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "HTTP GET request\n"));
return SOAP_GET_METHOD;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOHTTP
#ifndef PALM_1
static int
http_405(struct soap *soap)
{ return 405;
(void)soap;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOHTTP
#ifndef PALM_1
static int
http_200(struct soap *soap)
{ return soap_send_empty_response(soap, 200);
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOHTTP
#ifndef PALM_1
static int
http_post(struct soap *soap, const char *endpoint, const char *host, int port, const char *path, const char *action, size_t count)
{ register const char *s;
register int err;
switch (soap->status)
{ case SOAP_GET:
s = "GET";
break;
case SOAP_PUT:
s = "PUT";
break;
case SOAP_DEL:
s = "DELETE";
break;
case SOAP_CONNECT:
s = "CONNECT";
break;
default:
s = "POST";
}
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "HTTP %s to %s\n", s, endpoint ? endpoint : "(null)"));
#ifdef PALM
if (!endpoint || (soap_tag_cmp(endpoint, "http:*") && soap_tag_cmp(endpoint, "https:*") && strncmp(endpoint, "httpg:", 6)) && strncmp(endpoint, "_beam:", 6) && strncmp(endpoint, "_local:", 7) && strncmp(endpoint, "_btobex:", 8))
#else
if (!endpoint || (soap_tag_cmp(endpoint, "http:*") && soap_tag_cmp(endpoint, "https:*") && strncmp(endpoint, "httpg:", 6)))
#endif
return SOAP_OK;
if (strlen(endpoint) + strlen(soap->http_version) > sizeof(soap->tmpbuf) - 80)
return soap->error = SOAP_EOM; /* prevent overrun */
if (soap->status == SOAP_CONNECT)
sprintf(soap->tmpbuf, "%s %s:%d HTTP/%s", s, soap->host, soap->port, soap->http_version);
else if (soap->proxy_host && endpoint)
sprintf(soap->tmpbuf, "%s %s HTTP/%s", s, endpoint, soap->http_version);
else
sprintf(soap->tmpbuf, "%s /%s HTTP/%s", s, (*path == '/' ? path + 1 : path), soap->http_version);
if ((err = soap->fposthdr(soap, soap->tmpbuf, NULL)))
return err;
#ifdef WITH_OPENSSL
if ((soap->ssl && port != 443) || (!soap->ssl && port != 80))
#else
if (port != 80)
#endif
{
#ifdef WITH_IPV6
if (*host != '[' && strchr(host, ':'))
sprintf(soap->tmpbuf, "[%s]:%d", host, port); /* RFC 2732 */
else
#endif
sprintf(soap->tmpbuf, "%s:%d", host, port);
}
else
{
#ifdef WITH_IPV6
if (*host != '[' && strchr(host, ':'))
sprintf(soap->tmpbuf, "[%s]", host); /* RFC 2732 */
else
#endif
strcpy(soap->tmpbuf, host);
}
if ((err = soap->fposthdr(soap, "Host", soap->tmpbuf)))
return err;
if ((err = soap->fposthdr(soap, "User-Agent", "gSOAP/2.8")))
return err;
if ((err = soap_puthttphdr(soap, SOAP_OK, count)))
return err;
#ifdef WITH_ZLIB
#ifdef WITH_GZIP
if ((err = soap->fposthdr(soap, "Accept-Encoding", "gzip, deflate")))
#else
if ((err = soap->fposthdr(soap, "Accept-Encoding", "deflate")))
#endif
return err;
#endif
#ifndef WITH_LEAN
if (soap->userid && soap->passwd && strlen(soap->userid) + strlen(soap->passwd) < 761)
{
#ifdef WITH_NTLM
if (soap->ntlm_challenge && strlen(soap->ntlm_challenge) + 6 < sizeof(soap->tmpbuf))
sprintf(soap->tmpbuf, "NTLM %s", soap->ntlm_challenge);
else
#endif
{ strcpy(soap->tmpbuf, "Basic ");
sprintf(soap->tmpbuf + 262, "%s:%s", soap->userid, soap->passwd);
soap_s2base64(soap, (const unsigned char*)(soap->tmpbuf + 262), soap->tmpbuf + 6, (int)strlen(soap->tmpbuf + 262));
}
if ((err = soap->fposthdr(soap, "Authorization", soap->tmpbuf)))
return err;
}
if (soap->proxy_userid && soap->proxy_passwd && strlen(soap->proxy_userid) + strlen(soap->proxy_passwd) < 761)
{
#ifdef WITH_NTLM
if (soap->ntlm_challenge && strlen(soap->ntlm_challenge) + 6 < sizeof(soap->tmpbuf))
sprintf(soap->tmpbuf, "NTLM %s", soap->ntlm_challenge);
else
#endif
{ strcpy(soap->tmpbuf, "Basic ");
sprintf(soap->tmpbuf + 262, "%s:%s", soap->proxy_userid, soap->proxy_passwd);
soap_s2base64(soap, (const unsigned char*)(soap->tmpbuf + 262), soap->tmpbuf + 6, (int)strlen(soap->tmpbuf + 262));
}
if ((err = soap->fposthdr(soap, "Proxy-Authorization", soap->tmpbuf)))
return err;
}
#endif
#ifdef WITH_COOKIES
#ifdef WITH_OPENSSL
if (soap_putcookies(soap, host, path, soap->ssl != NULL))
return soap->error;
#else
if (soap_putcookies(soap, host, path, 0))
return soap->error;
#endif
#endif
if (action && soap->status != SOAP_GET && soap->status != SOAP_DEL)
{ sprintf(soap->tmpbuf, "\"%s\"", action && strlen(action) < sizeof(soap->tmpbuf) - 3 ? action : SOAP_STR_EOS);
if ((err = soap->fposthdr(soap, "SOAPAction", soap->tmpbuf)))
return err;
}
return soap->fposthdr(soap, NULL, NULL);
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOHTTP
#ifndef PALM_1
static int
http_send_header(struct soap *soap, const char *s)
{ register const char *t;
do
{ t = strchr(s, '\n'); /* disallow \n in HTTP headers */
if (!t)
t = s + strlen(s);
if (soap_send_raw(soap, s, t - s))
return soap->error;
s = t + 1;
} while (*t);
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOHTTP
#ifndef PALM_1
static int
http_post_header(struct soap *soap, const char *key, const char *val)
{ if (key)
{ if (http_send_header(soap, key))
return soap->error;
if (val && (soap_send_raw(soap, ": ", 2) || http_send_header(soap, val)))
return soap->error;
}
return soap_send_raw(soap, "\r\n", 2);
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOHTTP
#ifndef PALM_1
static int
http_response(struct soap *soap, int status, size_t count)
{ register int err;
#ifdef WMW_RPM_IO
if (soap->rpmreqid)
httpOutputEnable(soap->rpmreqid);
#endif
if (strlen(soap->http_version) > 4)
return soap->error = SOAP_EOM;
if (!status || status == SOAP_HTML || status == SOAP_FILE)
{ const char *s;
if (count || ((soap->omode & SOAP_IO) == SOAP_IO_CHUNK))
s = "200 OK";
else
s = "202 Accepted";
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Status = %s\n", s));
#ifdef WMW_RPM_IO
if (soap->rpmreqid || soap_valid_socket(soap->master) || soap_valid_socket(soap->socket)) /* RPM behaves as if standalone */
#else
if (soap_valid_socket(soap->master) || soap_valid_socket(soap->socket)) /* standalone application (socket) or CGI (stdin/out)? */
#endif
{ sprintf(soap->tmpbuf, "HTTP/%s %s", soap->http_version, s);
if ((err = soap->fposthdr(soap, soap->tmpbuf, NULL)))
return err;
}
else if ((err = soap->fposthdr(soap, "Status", s))) /* CGI header */
return err;
}
else if (status >= 200 && status < 600)
{ sprintf(soap->tmpbuf, "HTTP/%s %d %s", soap->http_version, status, http_error(soap, status));
if ((err = soap->fposthdr(soap, soap->tmpbuf, NULL)))
return err;
#ifndef WITH_LEAN
if (status == 401)
{ sprintf(soap->tmpbuf, "Basic realm=\"%s\"", (soap->authrealm && strlen(soap->authrealm) < sizeof(soap->tmpbuf) - 14) ? soap->authrealm : "gSOAP Web Service");
if ((err = soap->fposthdr(soap, "WWW-Authenticate", soap->tmpbuf)))
return err;
}
else if ((status >= 301 && status <= 303) || status == 307)
{ if ((err = soap->fposthdr(soap, "Location", soap->endpoint)))
return err;
}
#endif
}
else
{ const char *s = *soap_faultcode(soap);
if (status >= SOAP_GET_METHOD && status <= SOAP_HTTP_METHOD)
s = "405 Method Not Allowed";
else if (soap->version == 2 && (!s || !strcmp(s, "SOAP-ENV:Sender")))
s = "400 Bad Request";
else
s = "500 Internal Server Error";
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Error %s (status=%d)\n", s, status));
#ifdef WMW_RPM_IO
if (soap->rpmreqid || soap_valid_socket(soap->master) || soap_valid_socket(soap->socket)) /* RPM behaves as if standalone */
#else
if (soap_valid_socket(soap->master) || soap_valid_socket(soap->socket)) /* standalone application */
#endif
{ sprintf(soap->tmpbuf, "HTTP/%s %s", soap->http_version, s);
if ((err = soap->fposthdr(soap, soap->tmpbuf, NULL)))
return err;
}
else if ((err = soap->fposthdr(soap, "Status", s))) /* CGI */
return err;
}
if ((err = soap->fposthdr(soap, "Server", "gSOAP/2.8"))
|| (err = soap_puthttphdr(soap, status, count)))
return err;
#ifdef WITH_COOKIES
if (soap_putsetcookies(soap))
return soap->error;
#endif
return soap->fposthdr(soap, NULL, NULL);
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_response(struct soap *soap, int status)
{ register size_t count;
if (!(soap->omode & (SOAP_ENC_XML | SOAP_IO_STORE /* this tests for chunking too */))
&& (status == SOAP_HTML || status == SOAP_FILE))
soap->omode = (soap->omode & ~SOAP_IO) | SOAP_IO_STORE;
soap->status = status;
count = soap_count_attachments(soap);
if (soap_begin_send(soap))
return soap->error;
#ifndef WITH_NOHTTP
if ((soap->mode & SOAP_IO) != SOAP_IO_STORE && !(soap->mode & SOAP_ENC_XML))
{ register int n = soap->mode;
soap->mode &= ~(SOAP_IO | SOAP_ENC_ZLIB);
if ((n & SOAP_IO) != SOAP_IO_FLUSH)
soap->mode |= SOAP_IO_BUFFER;
if ((soap->error = soap->fresponse(soap, status, count)))
return soap->error;
#ifndef WITH_LEANER
if ((n & SOAP_IO) == SOAP_IO_CHUNK)
{ if (soap_flush(soap))
return soap->error;
}
#endif
soap->mode = n;
}
#endif
return SOAP_OK;
}
#endif
/******************************************************************************\
*
* HTTP Cookies
*
\******************************************************************************/
#ifdef WITH_COOKIES
/******************************************************************************/
SOAP_FMAC1
size_t
SOAP_FMAC2
soap_encode_cookie(const char *s, char *t, size_t len)
{ register int c;
register size_t n = len;
while ((c = *s++) && --n > 0)
{ if (c > ' ' && c < 128 && !strchr("()<>@,;:\\\"/[]?={}#!$&'*+", c))
*t++ = c;
else if (n > 2)
{ *t++ = '%';
*t++ = (c >> 4) + (c > 159 ? '7' : '0');
c &= 0xF;
*t++ = c + (c > 9 ? '7' : '0');
n -= 2;
}
else
break;
}
*t = '\0';
return len - n;
}
/******************************************************************************/
SOAP_FMAC1
struct soap_cookie*
SOAP_FMAC2
soap_cookie(struct soap *soap, const char *name, const char *domain, const char *path)
{ struct soap_cookie *p;
if (!domain)
domain = soap->cookie_domain;
if (!path)
path = soap->cookie_path;
if (!path)
path = SOAP_STR_EOS;
else if (*path == '/')
path++;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Search cookie %s domain=%s path=%s\n", name, domain ? domain : "(null)", path ? path : "(null)"));
for (p = soap->cookies; p; p = p->next)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Cookie in database: %s=%s domain=%s path=%s env=%hd\n", p->name, p->value ? p->value : "(null)", p->domain ? p->domain : "(null)", p->path ? p->path : "(null)", p->env));
if (!strcmp(p->name, name)
&& p->domain
&& p->path
&& !strcmp(p->domain, domain)
&& (!*p->path || !strncmp(p->path, path, strlen(p->path))))
break;
}
return p;
}
/******************************************************************************/
SOAP_FMAC1
struct soap_cookie*
SOAP_FMAC2
soap_set_cookie(struct soap *soap, const char *name, const char *value, const char *domain, const char *path)
{ struct soap_cookie **p, *q;
int n;
if (!domain)
domain = soap->cookie_domain;
if (!path)
path = soap->cookie_path;
if (!path)
path = SOAP_STR_EOS;
else if (*path == '/')
path++;
q = soap_cookie(soap, name, domain, path);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Set %scookie: %s=%s domain=%s path=%s\n", q ? SOAP_STR_EOS : "new ", name, value ? value : "(null)", domain ? domain : "(null)", path ? path : "(null)"));
if (!q)
{ if ((q = (struct soap_cookie*)SOAP_MALLOC(soap, sizeof(struct soap_cookie))))
{ if ((q->name = (char*)SOAP_MALLOC(soap, strlen(name)+1)))
strcpy(q->name, name);
q->value = NULL;
q->domain = NULL;
q->path = NULL;
q->expire = 0;
q->maxage = -1;
q->version = 1;
q->secure = 0;
q->modified = 0;
for (p = &soap->cookies, n = soap->cookie_max; *p && n; p = &(*p)->next, n--)
if (!strcmp((*p)->name, name) && (*p)->path && path && strcmp((*p)->path, path) < 0)
break;
if (n)
{ q->next = *p;
*p = q;
}
else
{ SOAP_FREE(soap, q->name);
SOAP_FREE(soap, q);
q = NULL;
}
}
}
else
q->modified = 1;
if (q)
{ if (q->value)
{ if (!value || strcmp(value, q->value))
{ SOAP_FREE(soap, q->value);
q->value = NULL;
}
}
if (value && *value && !q->value && (q->value = (char*)SOAP_MALLOC(soap, strlen(value)+1)))
strcpy(q->value, value);
if (q->domain)
{ if (!domain || strcmp(domain, q->domain))
{ SOAP_FREE(soap, q->domain);
q->domain = NULL;
}
}
if (domain && !q->domain && (q->domain = (char*)SOAP_MALLOC(soap, strlen(domain)+1)))
strcpy(q->domain, domain);
if (q->path)
{ if (!path || strncmp(path, q->path, strlen(q->path)))
{ SOAP_FREE(soap, q->path);
q->path = NULL;
}
}
if (path && !q->path && (q->path = (char*)SOAP_MALLOC(soap, strlen(path)+1)))
strcpy(q->path, path);
q->session = 1;
q->env = 0;
}
return q;
}
/******************************************************************************/
SOAP_FMAC1
void
SOAP_FMAC2
soap_clr_cookie(struct soap *soap, const char *name, const char *domain, const char *path)
{ struct soap_cookie **p, *q;
if (!domain)
domain = soap->cookie_domain;
if (!domain)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Error in clear cookie %s: cookie domain not set\n", name ? name : "(null)"));
return;
}
if (!path)
path = soap->cookie_path;
if (!path)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Error in clear cookie %s: cookie path not set\n", name ? name : "(null)"));
return;
}
if (*path == '/')
path++;
for (p = &soap->cookies, q = *p; q; q = *p)
{ if (!strcmp(q->name, name) && !strcmp(q->domain, domain) && !strncmp(q->path, path, strlen(q->path)))
{ if (q->value)
SOAP_FREE(soap, q->value);
if (q->domain)
SOAP_FREE(soap, q->domain);
if (q->path)
SOAP_FREE(soap, q->path);
*p = q->next;
SOAP_FREE(soap, q);
}
else
p = &q->next;
}
}
/******************************************************************************/
SOAP_FMAC1
char *
SOAP_FMAC2
soap_cookie_value(struct soap *soap, const char *name, const char *domain, const char *path)
{ struct soap_cookie *p;
if ((p = soap_cookie(soap, name, domain, path)))
return p->value;
return NULL;
}
/******************************************************************************/
SOAP_FMAC1
char *
SOAP_FMAC2
soap_env_cookie_value(struct soap *soap, const char *name, const char *domain, const char *path)
{ struct soap_cookie *p;
if ((p = soap_cookie(soap, name, domain, path)) && p->env)
return p->value;
return NULL;
}
/******************************************************************************/
SOAP_FMAC1
time_t
SOAP_FMAC2
soap_cookie_expire(struct soap *soap, const char *name, const char *domain, const char *path)
{ struct soap_cookie *p;
if ((p = soap_cookie(soap, name, domain, path)))
return p->expire;
return -1;
}
/******************************************************************************/
SOAP_FMAC1
int
SOAP_FMAC2
soap_set_cookie_expire(struct soap *soap, const char *name, long expire, const char *domain, const char *path)
{ struct soap_cookie *p;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Set cookie expiration max-age %ld: %s domain=%s path=%s\n", expire, name, domain ? domain : "(null)", path ? path : "(null)"));
if ((p = soap_cookie(soap, name, domain, path)))
{ p->maxage = expire;
p->modified = 1;
return SOAP_OK;
}
return SOAP_ERR;
}
/******************************************************************************/
SOAP_FMAC1
int
SOAP_FMAC2
soap_set_cookie_session(struct soap *soap, const char *name, const char *domain, const char *path)
{ struct soap_cookie *p;
if ((p = soap_cookie(soap, name, domain, path)))
{ p->session = 1;
p->modified = 1;
return SOAP_OK;
}
return SOAP_ERR;
}
/******************************************************************************/
SOAP_FMAC1
int
SOAP_FMAC2
soap_clr_cookie_session(struct soap *soap, const char *name, const char *domain, const char *path)
{ struct soap_cookie *p;
if ((p = soap_cookie(soap, name, domain, path)))
{ p->session = 0;
p->modified = 1;
return SOAP_OK;
}
return SOAP_ERR;
}
/******************************************************************************/
SOAP_FMAC1
int
SOAP_FMAC2
soap_putsetcookies(struct soap *soap)
{ struct soap_cookie *p;
char *s, tmp[4096];
const char *t;
for (p = soap->cookies; p; p = p->next)
{
if (p->modified
#ifdef WITH_OPENSSL
|| (!p->env && !soap->ssl == !p->secure)
#endif
)
{ s = tmp;
if (p->name)
s += soap_encode_cookie(p->name, s, tmp-s+4064);
if (p->value && *p->value)
{ *s++ = '=';
s += soap_encode_cookie(p->value, s, tmp-s+4064);
}
if (p->domain && (int)strlen(p->domain) < tmp-s+4064)
{ strcpy(s, ";Domain=");
strcat(s, p->domain);
}
else if (soap->cookie_domain && (int)strlen(soap->cookie_domain) < tmp-s+4064)
{ strcpy(s, ";Domain=");
strcat(s, soap->cookie_domain);
}
strcat(s, ";Path=/");
s += strlen(s);
if (p->path)
t = p->path;
else
t = soap->cookie_path;
if (t)
{ if (*t == '/')
t++;
if ((int)strlen(t) < tmp-s+4064)
{ if (strchr(t, '%')) /* already URL encoded? */
{ strcpy(s, t);
s += strlen(s);
}
else
s += soap_encode_cookie(t, s, tmp-s+4064);
}
}
if (p->version > 0 && s-tmp < 4060)
{ sprintf(s, ";Version=%u", p->version);
s += strlen(s);
}
if (p->maxage >= 0 && s-tmp < 4060)
{ sprintf(s, ";Max-Age=%ld", p->maxage);
s += strlen(s);
}
if (s-tmp < 4073
&& (p->secure
#ifdef WITH_OPENSSL
|| soap->ssl
#endif
))
strcpy(s, ";Secure");
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Set-Cookie: %s\n", tmp));
if ((soap->error = soap->fposthdr(soap, "Set-Cookie", tmp)))
return soap->error;
}
}
return SOAP_OK;
}
/******************************************************************************/
SOAP_FMAC1
int
SOAP_FMAC2
soap_putcookies(struct soap *soap, const char *domain, const char *path, int secure)
{ struct soap_cookie **p, *q;
unsigned int version = 0;
time_t now = time(NULL);
char *s, tmp[4096];
if (!domain || !path)
return SOAP_OK;
s = tmp;
p = &soap->cookies;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Sending cookies for domain=%s path=%s\n", domain, path));
if (*path == '/')
path++;
while ((q = *p))
{ if (q->expire && now > q->expire)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Cookie %s expired\n", q->name));
SOAP_FREE(soap, q->name);
if (q->value)
SOAP_FREE(soap, q->value);
if (q->domain)
SOAP_FREE(soap, q->domain);
if (q->path)
SOAP_FREE(soap, q->path);
*p = q->next;
SOAP_FREE(soap, q);
}
else
{ int flag;
char *t = q->domain;
size_t n = 0;
if (!t)
flag = 1;
else
{ const char *r = strchr(t, ':');
if (r)
n = r - t;
else
n = strlen(t);
flag = !strncmp(t, domain, n);
}
/* domain-level cookies, cannot compile when WITH_NOIO set */
#ifndef WITH_NOIO
if (!flag)
{ struct hostent *hostent = gethostbyname((char*)domain);
if (hostent)
{ const char *r = strchr(hostent->h_name, '.');
if (!r)
r = hostent->h_name;
flag = !strncmp(t, r, n);
}
}
#endif
if (flag
&& (!q->path || !strncmp(q->path, path, strlen(q->path)))
&& (!q->secure || secure))
{ size_t n = 12;
if (q->name)
n += 3*strlen(q->name);
if (q->value && *q->value)
n += 3*strlen(q->value) + 1;
if (q->path && *q->path)
n += strlen(q->path) + 9;
if (q->domain)
n += strlen(q->domain) + 11;
if (tmp - s + n > sizeof(tmp))
{ if (s == tmp)
return SOAP_OK; /* HTTP header size overflow */
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Cookie: %s\n", tmp));
if ((soap->error = soap->fposthdr(soap, "Cookie", tmp)))
return soap->error;
s = tmp;
}
else if (s != tmp)
{ strcat(s, " ");
s++;
}
if (q->version != version)
{ sprintf(s, "$Version=%u;", q->version);
version = q->version;
s += strlen(s);
}
if (q->name)
s += soap_encode_cookie(q->name, s, tmp+sizeof(tmp)-s-16);
if (q->value && *q->value)
{ *s++ = '=';
s += soap_encode_cookie(q->value, s, tmp+sizeof(tmp)-s-16);
}
if (q->path)
{ sprintf(s, ";$Path=\"/%s\"", (*q->path == '/' ? q->path + 1 : q->path));
s += strlen(s);
}
if (q->domain)
{ sprintf(s, ";$Domain=\"%s\"", q->domain);
s += strlen(s);
}
}
p = &q->next;
}
}
if (s != tmp)
if ((soap->error = soap->fposthdr(soap, "Cookie", tmp)))
return soap->error;
return SOAP_OK;
}
/******************************************************************************/
SOAP_FMAC1
void
SOAP_FMAC2
soap_getcookies(struct soap *soap, const char *val)
{ struct soap_cookie *p = NULL, *q;
const char *s;
char *t, tmp[4096]; /* cookie size is up to 4096 bytes [RFC2109] */
char *domain = NULL;
char *path = NULL;
unsigned int version = 0;
time_t now = time(NULL);
if (!val)
return;
s = val;
while (*s)
{ s = soap_decode_key(tmp, sizeof(tmp), s);
if (!soap_tag_cmp(tmp, "$Version"))
{ if ((s = soap_decode_val(tmp, sizeof(tmp), s)))
{ if (p)
p->version = (int)soap_strtol(tmp, NULL, 10);
else
version = (int)soap_strtol(tmp, NULL, 10);
}
}
else if (!soap_tag_cmp(tmp, "$Path"))
{ s = soap_decode_val(tmp, sizeof(tmp), s);
if (*tmp)
{ if ((t = (char*)SOAP_MALLOC(soap, strlen(tmp)+1)))
strcpy(t, tmp);
}
else
t = NULL;
if (p)
{ if (p->path)
SOAP_FREE(soap, p->path);
p->path = t;
}
else
{ if (path)
SOAP_FREE(soap, path);
path = t;
}
}
else if (!soap_tag_cmp(tmp, "$Domain"))
{ s = soap_decode_val(tmp, sizeof(tmp), s);
if (*tmp)
{ if ((t = (char*)SOAP_MALLOC(soap, strlen(tmp)+1)))
strcpy(t, tmp);
}
else
t = NULL;
if (p)
{ if (p->domain)
SOAP_FREE(soap, p->domain);
p->domain = t;
}
else
{ if (domain)
SOAP_FREE(soap, domain);
domain = t;
}
}
else if (p && !soap_tag_cmp(tmp, "Path"))
{ if (p->path)
SOAP_FREE(soap, p->path);
s = soap_decode_val(tmp, sizeof(tmp), s);
if (*tmp)
{ if ((p->path = (char*)SOAP_MALLOC(soap, strlen(tmp)+1)))
strcpy(p->path, tmp);
}
else
p->path = NULL;
}
else if (p && !soap_tag_cmp(tmp, "Domain"))
{ if (p->domain)
SOAP_FREE(soap, p->domain);
s = soap_decode_val(tmp, sizeof(tmp), s);
if (*tmp)
{ if ((p->domain = (char*)SOAP_MALLOC(soap, strlen(tmp)+1)))
strcpy(p->domain, tmp);
}
else
p->domain = NULL;
}
else if (p && !soap_tag_cmp(tmp, "Version"))
{ s = soap_decode_val(tmp, sizeof(tmp), s);
p->version = (unsigned int)soap_strtoul(tmp, NULL, 10);
}
else if (p && !soap_tag_cmp(tmp, "Max-Age"))
{ s = soap_decode_val(tmp, sizeof(tmp), s);
p->expire = now + soap_strtol(tmp, NULL, 10);
}
else if (p && !soap_tag_cmp(tmp, "Expires"))
{ struct tm T;
char a[3];
static const char mns[] = "anebarprayunulugepctovec";
s = soap_decode_val(tmp, sizeof(tmp), s);
if (strlen(tmp) > 20)
{ memset((void*)&T, 0, sizeof(T));
a[0] = tmp[4];
a[1] = tmp[5];
a[2] = '\0';
T.tm_mday = (int)soap_strtol(a, NULL, 10);
a[0] = tmp[8];
a[1] = tmp[9];
T.tm_mon = (int)(strstr(mns, a) - mns) / 2;
a[0] = tmp[11];
a[1] = tmp[12];
T.tm_year = 100 + (int)soap_strtol(a, NULL, 10);
a[0] = tmp[13];
a[1] = tmp[14];
T.tm_hour = (int)soap_strtol(a, NULL, 10);
a[0] = tmp[16];
a[1] = tmp[17];
T.tm_min = (int)soap_strtol(a, NULL, 10);
a[0] = tmp[19];
a[1] = tmp[20];
T.tm_sec = (int)soap_strtol(a, NULL, 10);
p->expire = soap_timegm(&T);
}
}
else if (p && !soap_tag_cmp(tmp, "Secure"))
p->secure = 1;
else
{ if (p)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Got environment cookie %s=%s domain=%s path=%s expire=%ld secure=%d\n", p->name, p->value ? p->value : "(null)", p->domain ? p->domain : "(null)", p->path ? p->path : "(null)", p->expire, p->secure));
if ((q = soap_set_cookie(soap, p->name, p->value, p->domain, p->path)))
{ q->version = p->version;
q->expire = p->expire;
q->secure = p->secure;
q->env = 1;
}
if (p->name)
SOAP_FREE(soap, p->name);
if (p->value)
SOAP_FREE(soap, p->value);
if (p->domain)
SOAP_FREE(soap, p->domain);
if (p->path)
SOAP_FREE(soap, p->path);
SOAP_FREE(soap, p);
}
if ((p = (struct soap_cookie*)SOAP_MALLOC(soap, sizeof(struct soap_cookie))))
{ p->name = (char*)SOAP_MALLOC(soap, strlen(tmp)+1);
strcpy(p->name, tmp);
s = soap_decode_val(tmp, sizeof(tmp), s);
if (*tmp)
{ p->value = (char*)SOAP_MALLOC(soap, strlen(tmp)+1);
strcpy(p->value, tmp);
}
else
p->value = NULL;
if (domain)
p->domain = domain;
else if (*soap->host)
{ p->domain = (char*)SOAP_MALLOC(soap, strlen(soap->host)+1);
strcpy(p->domain, soap->host);
}
else
p->domain = NULL;
if (path)
p->path = path;
else if (soap->path && *soap->path)
{ p->path = (char*)SOAP_MALLOC(soap, strlen(soap->path)+1);
strcpy(p->path, soap->path);
}
else
{ p->path = (char*)SOAP_MALLOC(soap, 2);
strcpy(p->path, "/");
}
p->expire = 0;
p->secure = 0;
p->version = version;
}
}
}
if (p)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Got environment cookie %s=%s domain=%s path=%s expire=%ld secure=%d\n", p->name, p->value ? p->value : "(null)", p->domain ? p->domain : "(null)", p->path ? p->path : "(null)", p->expire, p->secure));
if ((q = soap_set_cookie(soap, p->name, p->value, p->domain, p->path)))
{ q->version = p->version;
q->expire = p->expire;
q->secure = p->secure;
q->env = 1;
}
if (p->name)
SOAP_FREE(soap, p->name);
if (p->value)
SOAP_FREE(soap, p->value);
if (p->domain)
SOAP_FREE(soap, p->domain);
if (p->path)
SOAP_FREE(soap, p->path);
SOAP_FREE(soap, p);
}
if (domain)
SOAP_FREE(soap, domain);
if (path)
SOAP_FREE(soap, path);
}
/******************************************************************************/
SOAP_FMAC1
int
SOAP_FMAC2
soap_getenv_cookies(struct soap *soap)
{ struct soap_cookie *p;
const char *s;
char key[4096], val[4096]; /* cookie size is up to 4096 bytes [RFC2109] */
if (!(s = getenv("HTTP_COOKIE")))
return SOAP_ERR;
do
{ s = soap_decode_key(key, sizeof(key), s);
s = soap_decode_val(val, sizeof(val), s);
p = soap_set_cookie(soap, key, val, NULL, NULL);
if (p)
p->env = 1;
} while (*s);
return SOAP_OK;
}
/******************************************************************************/
SOAP_FMAC1
struct soap_cookie*
SOAP_FMAC2
soap_copy_cookies(struct soap *copy, const struct soap *soap)
{ struct soap_cookie *p, **q, *r;
q = &r;
for (p = soap->cookies; p; p = p->next)
{ if (!(*q = (struct soap_cookie*)SOAP_MALLOC(copy, sizeof(struct soap_cookie))))
return r;
**q = *p;
if (p->name)
{ if (((*q)->name = (char*)SOAP_MALLOC(copy, strlen(p->name)+1)))
strcpy((*q)->name, p->name);
}
if (p->value)
{ if (((*q)->value = (char*)SOAP_MALLOC(copy, strlen(p->value)+1)))
strcpy((*q)->value, p->value);
}
if (p->domain)
{ if (((*q)->domain = (char*)SOAP_MALLOC(copy, strlen(p->domain)+1)))
strcpy((*q)->domain, p->domain);
}
if (p->path)
{ if (((*q)->path = (char*)SOAP_MALLOC(copy, strlen(p->path)+1)))
strcpy((*q)->path, p->path);
}
q = &(*q)->next;
}
*q = NULL;
return r;
}
/******************************************************************************/
SOAP_FMAC1
void
SOAP_FMAC2
soap_free_cookies(struct soap *soap)
{ struct soap_cookie *p;
for (p = soap->cookies; p; p = soap->cookies)
{ soap->cookies = p->next;
SOAP_FREE(soap, p->name);
if (p->value)
SOAP_FREE(soap, p->value);
if (p->domain)
SOAP_FREE(soap, p->domain);
if (p->path)
SOAP_FREE(soap, p->path);
SOAP_FREE(soap, p);
}
}
/******************************************************************************/
#endif /* WITH_COOKIES */
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_2
SOAP_FMAC1
size_t
SOAP_FMAC2
soap_hash(register const char *s)
{ register size_t h = 0;
while (*s)
h = 65599*h + *s++;
return h % SOAP_IDHASH;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_1
static void
soap_init_pht(struct soap *soap)
{ register int i;
soap->pblk = NULL;
soap->pidx = 0;
for (i = 0; i < (int)SOAP_PTRHASH; i++)
soap->pht[i] = NULL;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
struct soap*
SOAP_FMAC2
soap_versioning(soap_new)(soap_mode imode, soap_mode omode)
{ struct soap *soap = (struct soap*)malloc(sizeof(struct soap));
if (soap)
soap_versioning(soap_init)(soap, imode, omode);
return soap;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_free(struct soap *soap)
{ soap_done(soap);
free(soap);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_del(struct soap *soap)
{ free(soap);
}
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_1
static void
soap_free_pht(struct soap *soap)
{ register struct soap_pblk *pb, *next;
register int i;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Free pointer hashtable\n"));
for (pb = soap->pblk; pb; pb = next)
{ next = pb->next;
SOAP_FREE(soap, pb);
}
soap->pblk = NULL;
soap->pidx = 0;
for (i = 0; i < (int)SOAP_PTRHASH; i++)
soap->pht[i] = NULL;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_embed(struct soap *soap, const void *p, const struct soap_array *a, int n, const char *tag, int type)
{ register int i;
struct soap_plist *pp;
if (soap->version == 2)
soap->encoding = 1;
if (a)
i = soap_array_pointer_lookup(soap, p, a, n, type, &pp);
else
i = soap_pointer_lookup(soap, p, type, &pp);
if (i)
{ if (soap_is_embedded(soap, pp)
|| soap_is_single(soap, pp))
return 0;
soap_set_embedded(soap, pp);
}
return i;
(void)soap;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_pointer_lookup(struct soap *soap, const void *p, int type, struct soap_plist **ppp)
{ register struct soap_plist *pp;
*ppp = NULL;
if (p)
{ for (pp = soap->pht[soap_hash_ptr(p)]; pp; pp = pp->next)
{ if (pp->ptr == p && pp->type == type)
{ *ppp = pp;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Lookup location=%p type=%d id=%d\n", p, type, pp->id));
return pp->id;
}
}
}
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Lookup location=%p type=%d: not found\n", p, type));
return 0;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_pointer_enter(struct soap *soap, const void *p, const struct soap_array *a, int n, int type, struct soap_plist **ppp)
{ register size_t h;
register struct soap_plist *pp;
if (!soap->pblk || soap->pidx >= SOAP_PTRBLK)
{ register struct soap_pblk *pb = (struct soap_pblk*)SOAP_MALLOC(soap, sizeof(struct soap_pblk));
if (!pb)
{ soap->error = SOAP_EOM;
return 0;
}
pb->next = soap->pblk;
soap->pblk = pb;
soap->pidx = 0;
}
*ppp = pp = &soap->pblk->plist[soap->pidx++];
if (a)
h = soap_hash_ptr(a->__ptr);
else
h = soap_hash_ptr(p);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Pointer enter location=%p array=%p size=%d dim=%d type=%d id=%d\n", p, a ? a->__ptr : NULL, a ? a->__size : 0, n, type, soap->idnum+1));
pp->next = soap->pht[h];
pp->type = type;
pp->mark1 = 0;
pp->mark2 = 0;
pp->ptr = p;
pp->array = a;
soap->pht[h] = pp;
pp->id = ++soap->idnum;
return pp->id;
(void)n;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_array_pointer_lookup(struct soap *soap, const void *p, const struct soap_array *a, int n, int type, struct soap_plist **ppp)
{ register struct soap_plist *pp;
*ppp = NULL;
if (!p || !a->__ptr)
return 0;
for (pp = soap->pht[soap_hash_ptr(a->__ptr)]; pp; pp = pp->next)
{ if (pp->type == type && pp->array && pp->array->__ptr == a->__ptr)
{ register int i;
for (i = 0; i < n; i++)
if (((const int*)&pp->array->__size)[i] != ((const int*)&a->__size)[i])
break;
if (i == n)
{ *ppp = pp;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Array lookup location=%p type=%d id=%d\n", a->__ptr, type, pp->id));
return pp->id;
}
}
}
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Array lookup location=%p type=%d: not found\n", a->__ptr, type));
return 0;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_begin_count(struct soap *soap)
{ soap_free_ns(soap);
#ifndef WITH_LEANER
if ((soap->mode & SOAP_ENC_DIME) || (soap->omode & SOAP_ENC_DIME))
soap->mode = soap->omode | SOAP_IO_LENGTH | SOAP_ENC_DIME;
else
#endif
{ soap->mode = soap->omode;
if ((soap->mode & SOAP_IO_UDP))
soap->mode |= SOAP_ENC_XML;
if ((soap->mode & SOAP_IO) == SOAP_IO_STORE
|| (((soap->mode & SOAP_IO) == SOAP_IO_CHUNK || (soap->mode & SOAP_ENC_XML))
#ifndef WITH_LEANER
&& !soap->fpreparesend
#endif
))
soap->mode &= ~SOAP_IO_LENGTH;
else
soap->mode |= SOAP_IO_LENGTH;
}
#ifdef WITH_ZLIB
if ((soap->mode & SOAP_ENC_ZLIB) && (soap->mode & SOAP_IO) == SOAP_IO_FLUSH)
{ if (!(soap->mode & SOAP_ENC_DIME))
soap->mode &= ~SOAP_IO_LENGTH;
if (soap->mode & SOAP_ENC_XML)
soap->mode |= SOAP_IO_BUFFER;
else
soap->mode |= SOAP_IO_STORE;
}
#endif
if (!soap->encodingStyle && !(soap->mode & SOAP_XML_GRAPH))
soap->mode |= SOAP_XML_TREE;
#ifndef WITH_LEANER
if ((soap->mode & SOAP_ENC_MTOM) && (soap->mode & SOAP_ENC_DIME))
soap->mode |= SOAP_ENC_MIME;
else if (!(soap->mode & SOAP_ENC_MIME))
soap->mode &= ~SOAP_ENC_MTOM;
if (soap->mode & SOAP_ENC_MIME)
soap_select_mime_boundary(soap);
soap->dime.list = soap->dime.last; /* keep track of last DIME attachment */
#endif
soap->count = 0;
soap->ns = 0;
soap->null = 0;
soap->position = 0;
soap->mustUnderstand = 0;
soap->encoding = 0;
soap->part = SOAP_BEGIN;
soap->event = 0;
soap->evlev = 0;
soap->idnum = 0;
soap_clr_attr(soap);
soap_set_local_namespaces(soap);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Begin count phase (socket=%d mode=0x%x count=%lu)\n", soap->socket, (unsigned int)soap->mode, (unsigned long)soap->count));
#ifndef WITH_LEANER
soap->dime.count = 0; /* count # of attachments */
soap->dime.size = 0; /* accumulate total size of attachments */
if (soap->fprepareinitsend && (soap->mode & SOAP_IO) != SOAP_IO_STORE && (soap->error = soap->fprepareinitsend(soap)))
return soap->error;
#endif
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_end_count(struct soap *soap)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "End of count phase\n"));
#ifndef WITH_LEANER
if ((soap->mode & SOAP_IO_LENGTH))
{ if (soap->fpreparefinalsend && (soap->error = soap->fpreparefinalsend(soap)))
return soap->error;
}
#endif
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_begin_send(struct soap *soap)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Initializing for output\n"));
soap_free_ns(soap);
soap->error = SOAP_OK;
soap->mode = soap->omode | (soap->mode & (SOAP_IO_LENGTH | SOAP_ENC_DIME));
#ifdef WITH_ZLIB
if ((soap->mode & SOAP_ENC_ZLIB) && (soap->mode & SOAP_IO) == SOAP_IO_FLUSH)
{ if (soap->mode & SOAP_ENC_XML)
soap->mode |= SOAP_IO_BUFFER;
else
soap->mode |= SOAP_IO_STORE;
}
#endif
#ifndef WITH_LEAN
if ((soap->mode & SOAP_IO_UDP))
{ soap->mode |= SOAP_ENC_XML;
if (soap->count > SOAP_BUFLEN)
return soap->error = SOAP_UDP_ERROR;
}
#endif
if ((soap->mode & SOAP_IO) == SOAP_IO_FLUSH && soap_valid_socket(soap->socket))
{ if (soap->count || (soap->mode & SOAP_IO_LENGTH) || (soap->mode & SOAP_ENC_XML))
soap->mode |= SOAP_IO_BUFFER;
else
soap->mode |= SOAP_IO_STORE;
}
soap->mode &= ~SOAP_IO_LENGTH;
if ((soap->mode & SOAP_IO) == SOAP_IO_STORE)
if (soap_new_block(soap) == NULL)
return soap->error;
if (!(soap->mode & SOAP_IO_KEEPALIVE))
soap->keep_alive = 0;
if (!soap->encodingStyle && !(soap->mode & SOAP_XML_GRAPH))
soap->mode |= SOAP_XML_TREE;
#ifndef WITH_LEANER
if ((soap->mode & SOAP_ENC_MTOM) && (soap->mode & SOAP_ENC_DIME))
{ soap->mode |= SOAP_ENC_MIME;
soap->mode &= ~SOAP_ENC_DIME;
}
else if (!(soap->mode & SOAP_ENC_MIME))
soap->mode &= ~SOAP_ENC_MTOM;
if (soap->mode & SOAP_ENC_MIME)
soap_select_mime_boundary(soap);
#ifdef WIN32
#ifndef UNDER_CE
#ifndef WITH_FASTCGI
if (!soap_valid_socket(soap->socket) && !soap->os) /* Set win32 stdout or soap->sendfd to BINARY, e.g. to support DIME */
#ifdef __BORLANDC__
setmode(soap->sendfd, _O_BINARY);
#else
_setmode(soap->sendfd, _O_BINARY);
#endif
#endif
#endif
#endif
#endif
if (soap->mode & SOAP_IO)
{ soap->bufidx = 0;
soap->buflen = 0;
}
soap->chunksize = 0;
soap->ns = 0;
soap->null = 0;
soap->position = 0;
soap->mustUnderstand = 0;
soap->encoding = 0;
soap->idnum = 0;
soap->level = 0;
soap_clr_attr(soap);
soap_set_local_namespaces(soap);
#ifdef WITH_ZLIB
soap->z_ratio_out = 1.0;
if ((soap->mode & SOAP_ENC_ZLIB) && soap->zlib_state != SOAP_ZLIB_DEFLATE)
{ if (!soap->z_buf)
soap->z_buf = (char*)SOAP_MALLOC(soap, SOAP_BUFLEN);
soap->d_stream->next_out = (Byte*)soap->z_buf;
soap->d_stream->avail_out = SOAP_BUFLEN;
#ifdef WITH_GZIP
if (soap->zlib_out != SOAP_ZLIB_DEFLATE)
{ memcpy(soap->z_buf, "\37\213\10\0\0\0\0\0\0\377", 10);
soap->d_stream->next_out = (Byte*)soap->z_buf + 10;
soap->d_stream->avail_out = SOAP_BUFLEN - 10;
soap->z_crc = crc32(0L, NULL, 0);
soap->zlib_out = SOAP_ZLIB_GZIP;
if (soap->z_dict)
*((Byte*)soap->z_buf + 2) = 0xff;
if (deflateInit2(soap->d_stream, soap->z_level, Z_DEFLATED, -MAX_WBITS, 8, Z_DEFAULT_STRATEGY) != Z_OK)
return soap->error = SOAP_ZLIB_ERROR;
}
else
#endif
if (deflateInit(soap->d_stream, soap->z_level) != Z_OK)
return soap->error = SOAP_ZLIB_ERROR;
if (soap->z_dict)
{ if (deflateSetDictionary(soap->d_stream, (const Bytef*)soap->z_dict, soap->z_dict_len) != Z_OK)
return soap->error = SOAP_ZLIB_ERROR;
}
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Deflate initialized\n"));
soap->zlib_state = SOAP_ZLIB_DEFLATE;
}
#endif
#ifdef WITH_OPENSSL
if (soap->ssl)
ERR_clear_error();
#endif
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Begin send phase (socket=%d mode=0x%x count=%lu)\n", soap->socket, soap->mode, (unsigned long)soap->count));
soap->part = SOAP_BEGIN;
#ifndef WITH_LEANER
if (soap->fprepareinitsend && (soap->mode & SOAP_IO) == SOAP_IO_STORE && (soap->error = soap->fprepareinitsend(soap)))
return soap->error;
#endif
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_2
SOAP_FMAC1
void
SOAP_FMAC2
soap_embedded(struct soap *soap, const void *p, int t)
{ struct soap_plist *pp;
if (soap_pointer_lookup(soap, p, t, &pp))
{ pp->mark1 = 1;
pp->mark2 = 1;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Embedded %p type=%d mark set to 1\n", p, t));
}
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_reference(struct soap *soap, const void *p, int t)
{ struct soap_plist *pp;
if (!p || (soap->mode & SOAP_XML_TREE))
return 1;
if (soap_pointer_lookup(soap, p, t, &pp))
{ if (pp->mark1 == 0)
{ pp->mark1 = 2;
pp->mark2 = 2;
}
}
else if (soap_pointer_enter(soap, p, NULL, 0, t, &pp))
{ pp->mark1 = 0;
pp->mark2 = 0;
}
else
return 1;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Reference %p type=%d (%d %d)\n", p, t, (int)pp->mark1, (int)pp->mark2));
return pp->mark1;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_array_reference(struct soap *soap, const void *p, const struct soap_array *a, int n, int t)
{ register int i;
struct soap_plist *pp;
if (!p || !a->__ptr)
return 1;
i = soap_array_pointer_lookup(soap, p, a, n, t, &pp);
if (i)
{ if (pp->mark1 == 0)
{ pp->mark1 = 2;
pp->mark2 = 2;
}
}
else if (!soap_pointer_enter(soap, p, a, n, t, &pp))
return 1;
else
{ pp->mark1 = 0;
pp->mark2 = 0;
}
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Array reference %p ptr=%p dim=%d type=%d (%d %d)\n", p, a->__ptr, n, t, (int)pp->mark1, (int)pp->mark2));
return pp->mark1;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_embedded_id(struct soap *soap, int id, const void *p, int t)
{ struct soap_plist *pp = NULL;
if (soap->mode & SOAP_XML_TREE)
return id;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Embedded_id %p type=%d id=%d\n", p, t, id));
if (soap->version == 1 && soap->encodingStyle && !(soap->mode & SOAP_XML_GRAPH) && soap->part != SOAP_IN_HEADER)
{ if (id < 0)
{ id = soap_pointer_lookup(soap, p, t, &pp);
if (id)
{ if (soap->mode & SOAP_IO_LENGTH)
pp->mark1 = 2;
else
pp->mark2 = 2;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Embedded_id multiref id=%d %p type=%d = (%d %d)\n", id, p, t, (int)pp->mark1, (int)pp->mark2));
}
return -1;
}
return id;
}
if (id < 0)
id = soap_pointer_lookup(soap, p, t, &pp);
else if (id && !soap_pointer_lookup(soap, p, t, &pp))
return 0;
if (id && pp)
{ if (soap->mode & SOAP_IO_LENGTH)
pp->mark1 = 1;
else
pp->mark2 = 1;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Embedded_id embedded ref id=%d %p type=%d = (%d %d)\n", id, p, t, (int)pp->mark1, (int)pp->mark2));
}
return id;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_is_embedded(struct soap *soap, struct soap_plist *pp)
{ if (!pp)
return 0;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Is embedded? %d %d\n", (int)pp->mark1, (int)pp->mark2));
if (soap->version == 1 && soap->encodingStyle && !(soap->mode & SOAP_XML_GRAPH) && soap->part != SOAP_IN_HEADER)
{ if (soap->mode & SOAP_IO_LENGTH)
return pp->mark1 != 0;
return pp->mark2 != 0;
}
if (soap->mode & SOAP_IO_LENGTH)
return pp->mark1 == 1;
return pp->mark2 == 1;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_is_single(struct soap *soap, struct soap_plist *pp)
{ if (soap->part == SOAP_IN_HEADER)
return 1;
if (!pp)
return 0;
if (soap->mode & SOAP_IO_LENGTH)
return pp->mark1 == 0;
return pp->mark2 == 0;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_2
SOAP_FMAC1
void
SOAP_FMAC2
soap_set_embedded(struct soap *soap, struct soap_plist *pp)
{ if (!pp)
return;
if (soap->mode & SOAP_IO_LENGTH)
pp->mark1 = 1;
else
pp->mark2 = 1;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_attachment(struct soap *soap, const char *tag, int id, const void *p, const struct soap_array *a, const char *aid, const char *atype, const char *aoptions, int n, const char *type, int t)
{
#ifndef WITH_NOIDREF
struct soap_plist *pp;
int i;
if (!p || !a->__ptr || (!aid && !atype))
return soap_element_id(soap, tag, id, p, a, n, type, t);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Attachment tag='%s' id='%s' (%d) type='%s'\n", tag, aid ? aid : SOAP_STR_EOS, id, atype ? atype : SOAP_STR_EOS));
i = soap_array_pointer_lookup(soap, p, a, n, t, &pp);
if (!i)
{ i = soap_pointer_enter(soap, p, a, n, t, &pp);
if (!i)
{ soap->error = SOAP_EOM;
return -1;
}
}
if (id <= 0)
id = i;
if (!aid)
{ sprintf(soap->tmpbuf, soap->dime_id_format, id);
aid = soap_strdup(soap, soap->tmpbuf);
}
/* Add MTOM xop:Include element when necessary */
/* TODO: this code to be obsoleted with new import/xop.h conventions */
if ((soap->mode & SOAP_ENC_MTOM) && strcmp(tag, "xop:Include"))
{ if (soap_element_begin_out(soap, tag, 0, type)
|| soap_element_href(soap, "xop:Include", 0, "xmlns:xop=\"http://www.w3.org/2004/08/xop/include\" href", aid)
|| soap_element_end_out(soap, tag))
return soap->error;
}
else if (soap_element_href(soap, tag, 0, "href", aid))
return soap->error;
if (soap->mode & SOAP_IO_LENGTH)
{ if (pp->mark1 != 3)
{ struct soap_multipart *content;
if (soap->mode & SOAP_ENC_MTOM)
content = soap_new_multipart(soap, &soap->mime.first, &soap->mime.last, (char*)a->__ptr, a->__size);
else
content = soap_new_multipart(soap, &soap->dime.first, &soap->dime.last, (char*)a->__ptr, a->__size);
if (!content)
{ soap->error = SOAP_EOM;
return -1;
}
if (!strncmp(aid, "cid:", 4)) /* RFC 2111 */
{ if (soap->mode & SOAP_ENC_MTOM)
{ char *s = (char*)soap_malloc(soap, strlen(aid) - 1);
if (s)
{ *s = '<';
strcpy(s + 1, aid + 4);
strcat(s, ">");
content->id = s;
}
}
else
content->id = aid + 4;
}
else
content->id = aid;
content->type = atype;
content->options = aoptions;
content->encoding = SOAP_MIME_BINARY;
pp->mark1 = 3;
}
}
else
pp->mark2 = 3;
#endif
return -1;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_1
static void
soap_init_iht(struct soap *soap)
{ register int i;
for (i = 0; i < SOAP_IDHASH; i++)
soap->iht[i] = NULL;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_1
static void
soap_free_iht(struct soap *soap)
{ register int i;
register struct soap_ilist *ip = NULL, *p = NULL;
register struct soap_flist *fp = NULL, *fq = NULL;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Free ID hashtable\n"));
for (i = 0; i < SOAP_IDHASH; i++)
{ for (ip = soap->iht[i]; ip; ip = p)
{ for (fp = ip->flist; fp; fp = fq)
{ fq = fp->next;
SOAP_FREE(soap, fp);
}
p = ip->next;
SOAP_FREE(soap, ip);
}
soap->iht[i] = NULL;
}
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_2
SOAP_FMAC1
struct soap_ilist *
SOAP_FMAC2
soap_lookup(struct soap *soap, const char *id)
{ register struct soap_ilist *ip = NULL;
for (ip = soap->iht[soap_hash(id)]; ip; ip = ip->next)
if (!strcmp(ip->id, id))
return ip;
return NULL;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_2
SOAP_FMAC1
struct soap_ilist *
SOAP_FMAC2
soap_enter(struct soap *soap, const char *id)
{ register size_t h;
register struct soap_ilist *ip;
ip = (struct soap_ilist*)SOAP_MALLOC(soap, sizeof(struct soap_ilist) + strlen(id));
if (ip)
{ h = soap_hash(id);
strcpy((char*)ip->id, id);
ip->next = soap->iht[h];
soap->iht[h] = ip;
}
return ip;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
void*
SOAP_FMAC2
soap_malloc(struct soap *soap, size_t n)
{ register char *p;
if (!n)
return (void*)SOAP_NON_NULL;
if (!soap)
return SOAP_MALLOC(soap, n);
if (soap->fmalloc)
p = (char*)soap->fmalloc(soap, n);
else
{ n += sizeof(short);
n += (-(long)n) & (sizeof(void*)-1); /* align at 4-, 8- or 16-byte boundary */
if (!(p = (char*)SOAP_MALLOC(soap, n + sizeof(void*) + sizeof(size_t))))
{ soap->error = SOAP_EOM;
return NULL;
}
/* set the canary to detect corruption */
*(unsigned short*)(p + n - sizeof(unsigned short)) = (unsigned short)SOAP_CANARY;
/* keep chain of alloced cells for destruction */
*(void**)(p + n) = soap->alist;
*(size_t*)(p + n + sizeof(void*)) = n;
soap->alist = p + n;
}
soap->alloced = 1;
return p;
}
#endif
/******************************************************************************/
#ifdef SOAP_MEM_DEBUG
static void
soap_init_mht(struct soap *soap)
{ register int i;
for (i = 0; i < (int)SOAP_PTRHASH; i++)
soap->mht[i] = NULL;
}
#endif
/******************************************************************************/
#ifdef SOAP_MEM_DEBUG
static void
soap_free_mht(struct soap *soap)
{ register int i;
register struct soap_mlist *mp, *mq;
for (i = 0; i < (int)SOAP_PTRHASH; i++)
{ for (mp = soap->mht[i]; mp; mp = mq)
{ mq = mp->next;
if (mp->live)
fprintf(stderr, "%s(%d): malloc() = %p not freed (memory leak or forgot to call soap_end()?)\n", mp->file, mp->line, mp->ptr);
free(mp);
}
soap->mht[i] = NULL;
}
}
#endif
/******************************************************************************/
#ifdef SOAP_MEM_DEBUG
SOAP_FMAC1
void*
SOAP_FMAC2
soap_track_malloc(struct soap *soap, const char *file, int line, size_t size)
{ register void *p = malloc(size);
if (soap)
{ register size_t h = soap_hash_ptr(p);
register struct soap_mlist *mp = (struct soap_mlist*)malloc(sizeof(struct soap_mlist));
if (soap->fdebug[SOAP_INDEX_TEST])
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "%s(%d): malloc(%lu) = %p\n", file, line, (unsigned long)size, p));
}
mp->next = soap->mht[h];
mp->ptr = p;
mp->file = file;
mp->line = line;
mp->live = 1;
soap->mht[h] = mp;
}
return p;
}
#endif
/******************************************************************************/
#ifdef SOAP_MEM_DEBUG
SOAP_FMAC1
void
SOAP_FMAC2
soap_track_free(struct soap *soap, const char *file, int line, void *p)
{ register size_t h = soap_hash_ptr(p);
register struct soap_mlist *mp;
for (mp = soap->mht[h]; mp; mp = mp->next)
if (mp->ptr == p)
break;
if (mp)
{ if (mp->live)
{ free(p);
if (soap->fdebug[SOAP_INDEX_TEST])
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "%s(%d): free(%p)\n", file, line, p));
}
mp->live = 0;
}
else
fprintf(stderr, "%s(%d): free(%p) double free of pointer malloced at %s(%d)\n", file, line, p, mp->file, mp->line);
}
else
fprintf(stderr, "%s(%d): free(%p) pointer not malloced\n", file, line, p);
}
#endif
/******************************************************************************/
#ifdef SOAP_MEM_DEBUG
static void
soap_track_unlink(struct soap *soap, const void *p)
{ register size_t h = soap_hash_ptr(p);
register struct soap_mlist *mp;
for (mp = soap->mht[h]; mp; mp = mp->next)
if (mp->ptr == p)
break;
if (mp)
mp->live = 0;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
void
SOAP_FMAC2
soap_dealloc(struct soap *soap, void *p)
{ if (soap_check_state(soap))
return;
if (p)
{ register char **q;
for (q = (char**)&soap->alist; *q; q = *(char***)q)
{
if (*(unsigned short*)(char*)(*q - sizeof(unsigned short)) != (unsigned short)SOAP_CANARY)
{
#ifdef SOAP_MEM_DEBUG
fprintf(stderr, "Data corruption in dynamic allocation (see logs)\n");
#endif
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Data corruption:\n"));
DBGHEX(TEST, *q - 200, 200);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "\n"));
soap->error = SOAP_MOE;
return;
}
if (p == (void*)(*q - *(size_t*)(*q + sizeof(void*))))
{ *q = **(char***)q;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Freed data at %p\n", p));
SOAP_FREE(soap, p);
return;
}
}
soap_delete(soap, p);
}
else
{ register char *q;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Free all soap_malloc() data\n"));
while (soap->alist)
{ q = (char*)soap->alist;
if (*(unsigned short*)(char*)(q - sizeof(unsigned short)) != (unsigned short)SOAP_CANARY)
{
#ifdef SOAP_MEM_DEBUG
fprintf(stderr, "Data corruption in dynamic allocation (see logs)\n");
#endif
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Data corruption:\n"));
DBGHEX(TEST, q - 200, 200);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "\n"));
soap->error = SOAP_MOE;
return;
}
soap->alist = *(void**)q;
q -= *(size_t*)(q + sizeof(void*));
SOAP_FREE(soap, q);
}
/* we must assume these were deallocated: */
soap->http_content = NULL;
soap->action = NULL;
soap->fault = NULL;
soap->header = NULL;
soap->userid = NULL;
soap->passwd = NULL;
soap->authrealm = NULL;
#ifdef WITH_NTLM
soap->ntlm_challenge = NULL;
#endif
#ifndef WITH_LEANER
soap_clr_mime(soap);
#endif
}
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
void
SOAP_FMAC2
soap_delete(struct soap *soap, void *p)
{ register struct soap_clist **cp;
if (soap_check_state(soap))
return;
cp = &soap->clist;
if (p)
{ while (*cp)
{ if (p == (*cp)->ptr)
{ register struct soap_clist *q = *cp;
*cp = q->next;
if (q->fdelete(q))
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Could not dealloc data %p: deletion callback failed for object type %d\n", q->ptr, q->type));
#ifdef SOAP_MEM_DEBUG
fprintf(stderr, "new(object type = %d) = %p not freed: deletion callback failed\n", q->type, q->ptr);
#endif
}
SOAP_FREE(soap, q);
return;
}
cp = &(*cp)->next;
}
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Could not dealloc data %p: address not in list\n", p));
}
else
{ while (*cp)
{ register struct soap_clist *q = *cp;
*cp = q->next;
if (q->fdelete(q))
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Could not dealloc data %p: deletion callback failed for object type %d\n", q->ptr, q->type));
#ifdef SOAP_MEM_DEBUG
fprintf(stderr, "new(object type = %d) = %p not freed: deletion callback failed\n", q->type, q->ptr);
#endif
}
SOAP_FREE(soap, q);
}
}
soap->fault = NULL; /* this was possibly deallocated */
soap->header = NULL; /* this was possibly deallocated */
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
void
SOAP_FMAC2
soap_delegate_deletion(struct soap *soap, struct soap *soap_to)
{ register struct soap_clist *cp;
register char **q;
#ifdef SOAP_MEM_DEBUG
register void *p;
register struct soap_mlist **mp, *mq;
size_t h;
#endif
for (q = (char**)&soap->alist; *q; q = *(char***)q)
{
if (*(unsigned short*)(char*)(*q - sizeof(unsigned short)) != (unsigned short)SOAP_CANARY)
{
#ifdef SOAP_MEM_DEBUG
fprintf(stderr, "Data corruption in dynamic allocation (see logs)\n");
#endif
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Data corruption:\n"));
DBGHEX(TEST, *q - 200, 200);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "\n"));
soap->error = SOAP_MOE;
return;
}
#ifdef SOAP_MEM_DEBUG
p = (void*)(*q - *(size_t*)(*q + sizeof(void*)));
h = soap_hash_ptr(p);
for (mp = &soap->mht[h]; *mp; mp = &(*mp)->next)
{ if ((*mp)->ptr == p)
{ mq = *mp;
*mp = mq->next;
mq->next = soap_to->mht[h];
soap_to->mht[h] = mq;
break;
}
}
#endif
}
*q = (char*)soap_to->alist;
soap_to->alist = soap->alist;
soap->alist = NULL;
#ifdef SOAP_MEM_DEBUG
cp = soap->clist;
while (cp)
{ h = soap_hash_ptr(cp);
for (mp = &soap->mht[h]; *mp; mp = &(*mp)->next)
{ if ((*mp)->ptr == cp)
{ mq = *mp;
*mp = mq->next;
mq->next = soap_to->mht[h];
soap_to->mht[h] = mq;
break;
}
}
cp = cp->next;
}
#endif
cp = soap_to->clist;
if (cp)
{ while (cp->next)
cp = cp->next;
cp->next = soap->clist;
}
else
soap_to->clist = soap->clist;
soap->clist = NULL;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
struct soap_clist *
SOAP_FMAC2
soap_link(struct soap *soap, void *p, int t, int n, int (*fdelete)(struct soap_clist*))
{ register struct soap_clist *cp;
if ((cp = (struct soap_clist*)SOAP_MALLOC(soap, sizeof(struct soap_clist))))
{ cp->next = soap->clist;
cp->type = t;
cp->size = n;
cp->ptr = p;
cp->fdelete = fdelete;
soap->clist = cp;
}
return cp;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_unlink(struct soap *soap, const void *p)
{ register char **q;
register struct soap_clist **cp;
if (soap && p)
{ for (q = (char**)&soap->alist; *q; q = *(char***)q)
{ if (p == (void*)(*q - *(size_t*)(*q + sizeof(void*))))
{ *q = **(char***)q;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Unlinked data %p\n", p));
#ifdef SOAP_MEM_DEBUG
soap_track_unlink(soap, p);
#endif
return SOAP_OK; /* found and removed from dealloc chain */
}
}
for (cp = &soap->clist; *cp; cp = &(*cp)->next)
{ if (p == (*cp)->ptr)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Unlinked class instance %p\n", p));
q = (char**)*cp;
*cp = (*cp)->next;
SOAP_FREE(soap, q);
return SOAP_OK; /* found and removed from dealloc chain */
}
}
}
return SOAP_ERR;
}
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_lookup_type(struct soap *soap, const char *id)
{ register struct soap_ilist *ip;
if (id && *id)
{ ip = soap_lookup(soap, id);
if (ip)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Lookup id='%s' type=%d\n", id, ip->type));
return ip->type;
}
}
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "lookup type id='%s' NOT FOUND! Need to get it from xsi:type\n", id));
return 0;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_2
SOAP_FMAC1
void*
SOAP_FMAC2
soap_id_lookup(struct soap *soap, const char *id, void **p, int t, size_t n, unsigned int k)
{ struct soap_ilist *ip;
void **q;
if (!p || !id || !*id)
return p;
ip = soap_lookup(soap, id); /* lookup pointer to hash table entry for string id */
if (!ip)
{ if (!(ip = soap_enter(soap, id))) /* new hash table entry for string id */
return NULL;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Forwarding first href='%s' type=%d %p (%u bytes)\n", id, t, p, (unsigned int)n));
ip->type = t;
ip->size = n;
ip->link = p;
ip->copy = NULL;
ip->flist = NULL;
ip->ptr = NULL;
ip->level = k;
*p = NULL;
}
else if (ip->ptr)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Resolved href='%s' type=%d location=%p (%u bytes)\n", id, t, ip->ptr, (unsigned int)n));
if (ip->type != t)
{ strcpy(soap->id, id);
soap->error = SOAP_HREF;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Type incompatibility: href='%s' id-type=%d href-type=%d\n", id, ip->type, t));
return NULL;
}
while (ip->level < k)
{ q = (void**)soap_malloc(soap, sizeof(void*));
if (!q)
return NULL;
*p = (void*)q;
p = q;
k--;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Descending one level...\n"));
}
*p = ip->ptr;
}
else if (ip->level > k)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Resolving level %u pointers to href='%s'\n", ip->level, id));
while (ip->level > k)
{ void *s, **r = &ip->link;
q = (void**)ip->link;
while (q)
{ *r = (void*)soap_malloc(soap, sizeof(void*));
if (!*r)
return NULL;
s = *q;
*q = *r;
r = (void**)*r;
q = (void**)s;
}
*r = NULL;
ip->size = n;
ip->copy = NULL;
ip->level = ip->level - 1;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Descending one level...\n"));
}
q = (void**)ip->link;
ip->link = p;
*p = (void*)q;
}
else
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Forwarded href='%s' type=%d location=%p (%u bytes)\n", id, t, p, (unsigned int)n));
while (ip->level < k)
{ q = (void**)soap_malloc(soap, sizeof(void*));
if (!q)
return NULL;
*p = q;
p = q;
k--;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Descending one level...\n"));
}
q = (void**)ip->link;
ip->link = p;
*p = (void*)q;
}
return p;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIDREF
#ifndef PALM_2
SOAP_FMAC1
void*
SOAP_FMAC2
soap_id_forward(struct soap *soap, const char *href, void *p, size_t len, int st, int tt, size_t n, unsigned int k, void (*fcopy)(struct soap*, int, int, void*, size_t, const void*, size_t))
{ struct soap_ilist *ip;
if (!p || !href || !*href)
return p;
ip = soap_lookup(soap, href); /* lookup pointer to hash table entry for string id */
if (!ip)
{ if (!(ip = soap_enter(soap, href))) /* new hash table entry for string id */
return NULL;
ip->type = st;
ip->size = n;
ip->link = NULL;
ip->copy = NULL;
ip->ptr = NULL;
ip->level = 0;
ip->flist = NULL;
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "New entry href='%s' type=%d size=%lu level=%d location=%p\n", href, st, (unsigned long)n, k, p));
}
else if (ip->type != st || (ip->level == k && ip->size != n))
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Type incompatibility id='%s' expect type=%d size=%lu level=%u got type=%d size=%lu\n", href, ip->type, (unsigned long)ip->size, k, st, (unsigned long)n));
strcpy(soap->id, href);
soap->error = SOAP_HREF;
return NULL;
}
if (fcopy || n < sizeof(void*) || *href != '#')
{ register struct soap_flist *fp = (struct soap_flist*)SOAP_MALLOC(soap, sizeof(struct soap_flist));
if (!fp)
{ soap->error = SOAP_EOM;
return NULL;
}
fp->next = ip->flist;
fp->type = tt;
fp->ptr = p;
fp->level = k;
fp->len = len;
if (fcopy)
fp->fcopy = fcopy;
else
fp->fcopy = soap_fcopy;
ip->flist = fp;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Forwarding type=%d (target type=%d) size=%lu location=%p level=%u len=%lu href='%s'\n", st, tt, (unsigned long)n, p, k, (unsigned long)len, href));
}
else
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Forwarding copying address %p for type=%d href='%s'\n", p, st, href));
*(void**)p = ip->copy;
ip->copy = p;
}
return p;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
void*
SOAP_FMAC2
soap_id_enter(struct soap *soap, const char *id, void *p, int t, size_t n, unsigned int k, const char *type, const char *arrayType, void *(*finstantiate)(struct soap*, int, const char*, const char*, size_t*))
{
#ifndef WITH_NOIDREF
struct soap_ilist *ip;
#endif
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Enter id='%s' type=%d loc=%p size=%lu level=%u\n", id, t, p, (unsigned long)n, k));
soap->alloced = 0;
if (!p)
{ if (finstantiate)
p = finstantiate(soap, t, type, arrayType, &n);
else
p = soap_malloc(soap, n);
if (p)
soap->alloced = 1;
}
#ifndef WITH_NOIDREF
if (!id || !*id)
#endif
return p;
#ifndef WITH_NOIDREF
ip = soap_lookup(soap, id); /* lookup pointer to hash table entry for string id */
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Lookup entry id='%s for location=%p'\n", id, p));
if (!ip)
{ if (!(ip = soap_enter(soap, id))) /* new hash table entry for string id */
return NULL;
ip->type = t;
ip->link = NULL;
ip->copy = NULL;
ip->flist = NULL;
ip->size = n;
ip->ptr = p;
ip->level = k;
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "New entry id='%s' type=%d size=%lu level=%u location=%p\n", id, t, (unsigned long)n, k, p));
}
else if ((ip->type != t || (ip->level == k && ip->size != n)) && (ip->copy || ip->flist))
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Type incompatibility id='%s' expect type=%d size=%lu level=%u got type=%d size=%lu\n", id, ip->type, (unsigned long)ip->size, k, t, (unsigned long)n));
strcpy(soap->id, id);
soap->error = SOAP_HREF;
return NULL;
}
else if (ip->ptr)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Multiply defined id='%s'\n", id));
strcpy(soap->id, id);
soap->error = SOAP_DUPLICATE_ID;
return NULL;
}
else
{ ip->size = n;
ip->ptr = p;
ip->level = k;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Update entry id='%s' type=%d location=%p size=%lu level=%u\n", id, t, p, (unsigned long)n, k));
}
return ip->ptr;
#endif
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
void
SOAP_FMAC2
soap_fcopy(struct soap *soap, int st, int tt, void *p, size_t len, const void *q, size_t n)
{ DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Copying data type=%d (target type=%d) %p -> %p (%lu bytes)\n", st, tt, q, p, (unsigned long)n));
memcpy(p, q, n);
(void)soap; (void)st; (void)tt; (void)len;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_end_send(struct soap *soap)
{
#ifndef WITH_LEANER
int err;
if (soap->dime.list)
{ /* SOAP body referenced attachments must appear first */
soap->dime.last->next = soap->dime.first;
soap->dime.first = soap->dime.list->next;
soap->dime.list->next = NULL;
soap->dime.last = soap->dime.list;
}
if (!(err = soap_putdime(soap)))
err = soap_putmime(soap);
soap->mime.list = NULL;
soap->mime.first = NULL;
soap->mime.last = NULL;
soap->dime.list = NULL;
soap->dime.first = NULL;
soap->dime.last = NULL;
if (err)
return err;
#endif
return soap_end_send_flush(soap);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_end_send_flush(struct soap *soap)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "End send mode=0x%x\n", soap->mode));
if (soap->mode & SOAP_IO) /* need to flush the remaining data in buffer */
{ if (soap_flush(soap))
#ifdef WITH_ZLIB
{ if (soap->mode & SOAP_ENC_ZLIB && soap->zlib_state == SOAP_ZLIB_DEFLATE)
{ soap->zlib_state = SOAP_ZLIB_NONE;
deflateEnd(soap->d_stream);
}
return soap->error;
}
#else
return soap->error;
#endif
#ifdef WITH_ZLIB
if (soap->mode & SOAP_ENC_ZLIB)
{ int r;
soap->d_stream->avail_in = 0;
do
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Deflating remainder\n"));
r = deflate(soap->d_stream, Z_FINISH);
if (soap->d_stream->avail_out != SOAP_BUFLEN)
{ if (soap_flush_raw(soap, soap->z_buf, SOAP_BUFLEN - soap->d_stream->avail_out))
{ soap->zlib_state = SOAP_ZLIB_NONE;
deflateEnd(soap->d_stream);
return soap->error;
}
soap->d_stream->next_out = (Byte*)soap->z_buf;
soap->d_stream->avail_out = SOAP_BUFLEN;
}
} while (r == Z_OK);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Deflated total %lu->%lu bytes\n", soap->d_stream->total_in, soap->d_stream->total_out));
soap->z_ratio_out = (float)soap->d_stream->total_out / (float)soap->d_stream->total_in;
soap->mode &= ~SOAP_ENC_ZLIB;
soap->zlib_state = SOAP_ZLIB_NONE;
if (deflateEnd(soap->d_stream) != Z_OK || r != Z_STREAM_END)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Unable to end deflate: %s\n", soap->d_stream->msg ? soap->d_stream->msg : SOAP_STR_EOS));
return soap->error = SOAP_ZLIB_ERROR;
}
#ifdef WITH_GZIP
if (soap->zlib_out != SOAP_ZLIB_DEFLATE)
{ soap->z_buf[0] = soap->z_crc & 0xFF;
soap->z_buf[1] = (soap->z_crc >> 8) & 0xFF;
soap->z_buf[2] = (soap->z_crc >> 16) & 0xFF;
soap->z_buf[3] = (soap->z_crc >> 24) & 0xFF;
soap->z_buf[4] = soap->d_stream->total_in & 0xFF;
soap->z_buf[5] = (soap->d_stream->total_in >> 8) & 0xFF;
soap->z_buf[6] = (soap->d_stream->total_in >> 16) & 0xFF;
soap->z_buf[7] = (soap->d_stream->total_in >> 24) & 0xFF;
if (soap_flush_raw(soap, soap->z_buf, 8))
return soap->error;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "gzip crc32=%lu\n", (unsigned long)soap->z_crc));
}
#endif
}
#endif
if ((soap->mode & SOAP_IO) == SOAP_IO_STORE)
{ char *p;
#ifndef WITH_NOHTTP
if (!(soap->mode & SOAP_ENC_XML))
{ soap->mode--;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Sending buffered message of length %u\n", (unsigned int)soap->blist->size));
if (soap->status >= SOAP_POST)
soap->error = soap->fpost(soap, soap->endpoint, soap->host, soap->port, soap->path, soap->action, soap->blist->size);
else if (soap->status != SOAP_STOP)
soap->error = soap->fresponse(soap, soap->status, soap->blist->size);
if (soap->error || soap_flush(soap))
return soap->error;
soap->mode++;
}
#endif
for (p = soap_first_block(soap, NULL); p; p = soap_next_block(soap, NULL))
{ DBGMSG(SENT, p, soap_block_size(soap, NULL));
if ((soap->error = soap->fsend(soap, p, soap_block_size(soap, NULL))))
{ soap_end_block(soap, NULL);
return soap->error;
}
}
soap_end_block(soap, NULL);
}
#ifndef WITH_LEANER
else if ((soap->mode & SOAP_IO) == SOAP_IO_CHUNK)
{ DBGMSG(SENT, "\r\n0\r\n\r\n", 7);
if ((soap->error = soap->fsend(soap, "\r\n0\r\n\r\n", 7)))
return soap->error;
}
#endif
}
#ifdef WITH_TCPFIN
#ifdef WITH_OPENSSL
if (!soap->ssl && soap_valid_socket(soap->socket) && !soap->keep_alive && !(soap->omode & SOAP_IO_UDP))
soap->fshutdownsocket(soap, soap->socket, SOAP_SHUT_WR); /* Send TCP FIN */
#else
if (soap_valid_socket(soap->socket) && !soap->keep_alive && !(soap->omode & SOAP_IO_UDP))
soap->fshutdownsocket(soap, soap->socket, SOAP_SHUT_WR); /* Send TCP FIN */
#endif
#endif
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "End of send phase\n"));
soap->omode &= ~SOAP_SEC_WSUID;
soap->count = 0;
soap->part = SOAP_END;
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_end_recv(struct soap *soap)
{ soap->part = SOAP_END;
#ifndef WITH_LEAN
soap->wsuid = NULL; /* reset before next send */
soap->c14nexclude = NULL; /* reset before next send */
#endif
#ifndef WITH_LEANER
soap->ffilterrecv = NULL;
if ((soap->mode & SOAP_ENC_DIME) && soap_getdime(soap))
{ soap->dime.first = NULL;
soap->dime.last = NULL;
return soap->error;
}
soap->dime.list = soap->dime.first;
soap->dime.first = NULL;
soap->dime.last = NULL;
/* Check if MIME attachments and mime-post-check flag is set, if so call soap_resolve() and return */
if (soap->mode & SOAP_ENC_MIME)
{ if (soap->mode & SOAP_MIME_POSTCHECK)
{ DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Post checking MIME attachments\n"));
if (!soap->keep_alive)
soap->keep_alive = -1;
#ifndef WITH_NOIDREF
soap_resolve(soap);
#endif
return SOAP_OK;
}
if (soap_getmime(soap))
return soap->error;
}
soap->mime.list = soap->mime.first;
soap->mime.first = NULL;
soap->mime.last = NULL;
soap->mime.boundary = NULL;
if (soap->xlist)
{ struct soap_multipart *content;
for (content = soap->mime.list; content; content = content->next)
soap_resolve_attachment(soap, content);
}
#endif
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "End of receive message ok\n"));
#ifdef WITH_ZLIB
if (soap->mode & SOAP_ENC_ZLIB)
{ /* Make sure end of compressed content is reached */
while (soap->d_stream->next_out != Z_NULL)
if ((int)soap_get1(soap) == EOF)
break;
soap->mode &= ~SOAP_ENC_ZLIB;
memcpy(soap->buf, soap->z_buf, SOAP_BUFLEN);
soap->bufidx = (char*)soap->d_stream->next_in - soap->z_buf;
soap->buflen = soap->z_buflen;
soap->zlib_state = SOAP_ZLIB_NONE;
if (inflateEnd(soap->d_stream) != Z_OK)
return soap->error = SOAP_ZLIB_ERROR;
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Inflate end ok\n"));
#ifdef WITH_GZIP
if (soap->zlib_in == SOAP_ZLIB_GZIP)
{ soap_wchar c;
short i;
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Inflate gzip crc check\n"));
for (i = 0; i < 8; i++)
{ if ((int)(c = soap_get1(soap)) == EOF)
{ DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Gzip error: unable to read crc value\n"));
return soap->error = SOAP_ZLIB_ERROR;
}
soap->z_buf[i] = (char)c;
}
if (soap->z_crc != ((uLong)(unsigned char)soap->z_buf[0] | ((uLong)(unsigned char)soap->z_buf[1] << 8) | ((uLong)(unsigned char)soap->z_buf[2] << 16) | ((uLong)(unsigned char)soap->z_buf[3] << 24)))
{ DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Gzip inflate error: crc check failed, message corrupted? (crc32=%lu)\n", (unsigned long)soap->z_crc));
return soap->error = SOAP_ZLIB_ERROR;
}
if (soap->d_stream->total_out != ((uLong)(unsigned char)soap->z_buf[4] | ((uLong)(unsigned char)soap->z_buf[5] << 8) | ((uLong)(unsigned char)soap->z_buf[6] << 16) | ((uLong)(unsigned char)soap->z_buf[7] << 24)))
{ DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Gzip inflate error: incorrect message length\n"));
return soap->error = SOAP_ZLIB_ERROR;
}
}
soap->zlib_in = SOAP_ZLIB_NONE;
#endif
}
#endif
if ((soap->mode & SOAP_IO) == SOAP_IO_CHUNK)
while (soap->ahead != EOF && !soap_recv_raw(soap))
;
#ifndef WITH_NOIDREF
if (soap_resolve(soap))
return soap->error;
#endif
#ifndef WITH_LEANER
if (soap->xlist)
{ if (soap->mode & SOAP_ENC_MTOM)
return soap->error = SOAP_MIME_HREF;
return soap->error = SOAP_DIME_HREF;
}
#endif
soap_free_ns(soap);
#ifndef WITH_LEANER
if (soap->fpreparefinalrecv)
return soap->error = soap->fpreparefinalrecv(soap);
#endif
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_free_temp(struct soap *soap)
{ register struct soap_attribute *tp, *tq;
register struct Namespace *ns;
soap_free_ns(soap);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Free any remaining temp blocks\n"));
while (soap->blist)
soap_end_block(soap, NULL);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Free attribute storage\n"));
for (tp = soap->attributes; tp; tp = tq)
{ tq = tp->next;
if (tp->value)
SOAP_FREE(soap, tp->value);
SOAP_FREE(soap, tp);
}
soap->attributes = NULL;
#ifdef WITH_FAST
if (soap->labbuf)
SOAP_FREE(soap, soap->labbuf);
soap->labbuf = NULL;
soap->lablen = 0;
soap->labidx = 0;
#endif
ns = soap->local_namespaces;
if (ns)
{ for (; ns->id; ns++)
{ if (ns->out)
{ if (soap->encodingStyle == ns->out)
soap->encodingStyle = SOAP_STR_EOS;
SOAP_FREE(soap, ns->out);
ns->out = NULL;
}
if (soap->encodingStyle == ns->ns)
soap->encodingStyle = SOAP_STR_EOS;
}
SOAP_FREE(soap, soap->local_namespaces);
soap->local_namespaces = NULL;
}
#ifndef WITH_LEANER
while (soap->xlist)
{ struct soap_xlist *xp = soap->xlist->next;
SOAP_FREE(soap, soap->xlist);
soap->xlist = xp;
}
#endif
#ifndef WITH_NOIDREF
soap_free_pht(soap);
soap_free_iht(soap);
#endif
}
#endif
/******************************************************************************/
#ifndef PALM_1
static void
soap_free_ns(struct soap *soap)
{ register struct soap_nlist *np, *nq;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Free namespace stack\n"));
for (np = soap->nlist; np; np = nq)
{ nq = np->next;
SOAP_FREE(soap, np);
}
soap->nlist = NULL;
}
#endif
/******************************************************************************/
#ifndef PALM_1
#if !defined(WITH_LEAN) || defined(SOAP_DEBUG)
static void
soap_init_logs(struct soap *soap)
{ int i;
for (i = 0; i < SOAP_MAXLOGS; i++)
{ soap->logfile[i] = NULL;
soap->fdebug[i] = NULL;
}
}
#endif
#endif
/******************************************************************************/
#if !defined(WITH_LEAN) || defined(SOAP_DEBUG)
SOAP_FMAC1
void
SOAP_FMAC2
soap_open_logfile(struct soap *soap, int i)
{ if (soap->logfile[i])
soap->fdebug[i] = fopen(soap->logfile[i], i < 2 ? "ab" : "a");
}
#endif
/******************************************************************************/
#ifdef SOAP_DEBUG
static void
soap_close_logfile(struct soap *soap, int i)
{ if (soap->fdebug[i])
{ fclose(soap->fdebug[i]);
soap->fdebug[i] = NULL;
}
}
#endif
/******************************************************************************/
#ifdef SOAP_DEBUG
SOAP_FMAC1
void
SOAP_FMAC2
soap_close_logfiles(struct soap *soap)
{ int i;
for (i = 0; i < SOAP_MAXLOGS; i++)
soap_close_logfile(soap, i);
}
#endif
/******************************************************************************/
#ifdef SOAP_DEBUG
static void
soap_set_logfile(struct soap *soap, int i, const char *logfile)
{ const char *s;
char *t = NULL;
soap_close_logfile(soap, i);
s = soap->logfile[i];
soap->logfile[i] = logfile;
if (s)
SOAP_FREE(soap, (void*)s);
if (logfile)
if ((t = (char*)SOAP_MALLOC(soap, strlen(logfile) + 1)))
strcpy(t, logfile);
soap->logfile[i] = t;
}
#endif
/******************************************************************************/
#ifdef SOAP_DEBUG
SOAP_FMAC1
void
SOAP_FMAC2
soap_set_recv_logfile(struct soap *soap, const char *logfile)
{ soap_set_logfile(soap, SOAP_INDEX_RECV, logfile);
}
#endif
/******************************************************************************/
#ifdef SOAP_DEBUG
SOAP_FMAC1
void
SOAP_FMAC2
soap_set_sent_logfile(struct soap *soap, const char *logfile)
{ soap_set_logfile(soap, SOAP_INDEX_SENT, logfile);
}
#endif
/******************************************************************************/
#ifdef SOAP_DEBUG
SOAP_FMAC1
void
SOAP_FMAC2
soap_set_test_logfile(struct soap *soap, const char *logfile)
{ soap_set_logfile(soap, SOAP_INDEX_TEST, logfile);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
struct soap*
SOAP_FMAC2
soap_copy(const struct soap *soap)
{ return soap_copy_context((struct soap*)malloc(sizeof(struct soap)), soap);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
struct soap*
SOAP_FMAC2
soap_copy_context(struct soap *copy, const struct soap *soap)
{ if (copy == soap)
return copy;
if (soap_check_state(soap))
return NULL;
if (copy)
{ register struct soap_plugin *p = NULL;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copying context\n"));
#ifdef __cplusplus
*copy = *soap;
#else
memcpy(copy, soap, sizeof(struct soap));
#endif
copy->state = SOAP_COPY;
copy->error = SOAP_OK;
copy->userid = NULL;
copy->passwd = NULL;
#ifdef WITH_NTLM
copy->ntlm_challenge = NULL;
#endif
copy->nlist = NULL;
copy->blist = NULL;
copy->clist = NULL;
copy->alist = NULL;
copy->attributes = NULL;
copy->labbuf = NULL;
copy->lablen = 0;
copy->labidx = 0;
#ifdef SOAP_MEM_DEBUG
soap_init_mht(copy);
#endif
#if !defined(WITH_LEAN) || defined(SOAP_DEBUG)
soap_init_logs(copy);
#endif
#ifdef SOAP_DEBUG
soap_set_test_logfile(copy, soap->logfile[SOAP_INDEX_TEST]);
soap_set_sent_logfile(copy, soap->logfile[SOAP_INDEX_SENT]);
soap_set_recv_logfile(copy, soap->logfile[SOAP_INDEX_RECV]);
#endif
copy->namespaces = soap->local_namespaces;
copy->local_namespaces = NULL;
soap_set_local_namespaces(copy); /* copies soap->local_namespaces */
copy->namespaces = soap->namespaces; /* point to shared namespaces table */
#ifdef WITH_C_LOCALE
# ifdef WIN32
copy->c_locale = _create_locale(LC_ALL, "C");
# else
copy->c_locale = duplocale(soap->c_locale);
# endif
#else
copy->c_locale = NULL;
#endif
#ifdef WITH_OPENSSL
copy->bio = NULL;
copy->ssl = NULL;
copy->session = NULL;
#endif
#ifdef WITH_GNUTLS
copy->session = NULL;
#endif
#ifdef WITH_ZLIB
copy->d_stream = (z_stream*)SOAP_MALLOC(copy, sizeof(z_stream));
copy->d_stream->zalloc = Z_NULL;
copy->d_stream->zfree = Z_NULL;
copy->d_stream->opaque = Z_NULL;
copy->z_buf = NULL;
#endif
#ifndef WITH_NOIDREF
soap_init_iht(copy);
soap_init_pht(copy);
#endif
copy->header = NULL;
copy->fault = NULL;
copy->action = NULL;
#ifndef WITH_LEAN
#ifdef WITH_COOKIES
copy->cookies = soap_copy_cookies(copy, soap);
#else
copy->cookies = NULL;
#endif
#endif
copy->plugins = NULL;
for (p = soap->plugins; p; p = p->next)
{ register struct soap_plugin *q = (struct soap_plugin*)SOAP_MALLOC(copy, sizeof(struct soap_plugin));
if (!q)
return NULL;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copying plugin '%s'\n", p->id));
*q = *p;
if (p->fcopy && p->fcopy(copy, q, p))
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Could not copy plugin '%s'\n", p->id));
SOAP_FREE(copy, q);
return NULL;
}
q->next = copy->plugins;
copy->plugins = q;
}
}
return copy;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_copy_stream(struct soap *copy, struct soap *soap)
{ struct soap_attribute *tp = NULL, *tq;
if (copy == soap)
return;
copy->mode = soap->mode;
copy->imode = soap->imode;
copy->omode = soap->omode;
copy->master = soap->master;
copy->socket = soap->socket;
copy->sendsk = soap->sendsk;
copy->recvsk = soap->recvsk;
copy->recv_timeout = soap->recv_timeout;
copy->send_timeout = soap->send_timeout;
#if defined(__cplusplus) && !defined(WITH_LEAN)
copy->os = soap->os;
copy->is = soap->is;
#endif
copy->sendfd = soap->sendfd;
copy->recvfd = soap->recvfd;
copy->bufidx = soap->bufidx;
copy->buflen = soap->buflen;
copy->ahead = soap->ahead;
copy->cdata = soap->cdata;
copy->chunksize = soap->chunksize;
copy->chunkbuflen = soap->chunkbuflen;
copy->keep_alive = soap->keep_alive;
copy->tcp_keep_alive = soap->tcp_keep_alive;
copy->tcp_keep_idle = soap->tcp_keep_idle;
copy->tcp_keep_intvl = soap->tcp_keep_intvl;
copy->tcp_keep_cnt = soap->tcp_keep_cnt;
copy->max_keep_alive = soap->max_keep_alive;
#ifndef WITH_NOIO
copy->peer = soap->peer;
copy->peerlen = soap->peerlen;
copy->ip = soap->ip;
copy->port = soap->port;
memcpy(copy->host, soap->host, sizeof(soap->host));
memcpy(copy->endpoint, soap->endpoint, sizeof(soap->endpoint));
#endif
#ifdef WITH_OPENSSL
copy->bio = soap->bio;
copy->ctx = soap->ctx;
copy->ssl = soap->ssl;
#endif
#ifdef WITH_GNUTLS
copy->session = soap->session;
#endif
#ifdef WITH_ZLIB
copy->zlib_state = soap->zlib_state;
copy->zlib_in = soap->zlib_in;
copy->zlib_out = soap->zlib_out;
if (!copy->d_stream)
copy->d_stream = (z_stream*)SOAP_MALLOC(copy, sizeof(z_stream));
if (copy->d_stream)
memcpy(copy->d_stream, soap->d_stream, sizeof(z_stream));
copy->z_crc = soap->z_crc;
copy->z_ratio_in = soap->z_ratio_in;
copy->z_ratio_out = soap->z_ratio_out;
copy->z_buf = NULL;
copy->z_buflen = soap->z_buflen;
copy->z_level = soap->z_level;
if (soap->z_buf && soap->zlib_state != SOAP_ZLIB_NONE)
{ copy->z_buf = (char*)SOAP_MALLOC(copy, SOAP_BUFLEN);
if (copy->z_buf)
memcpy(copy->z_buf, soap->z_buf, SOAP_BUFLEN);
}
copy->z_dict = soap->z_dict;
copy->z_dict_len = soap->z_dict_len;
#endif
memcpy(copy->buf, soap->buf, sizeof(soap->buf));
/* copy XML parser state */
soap_free_ns(copy);
soap_set_local_namespaces(copy);
copy->version = soap->version;
if (soap->nlist && soap->local_namespaces)
{ register struct soap_nlist *np = NULL, *nq;
/* copy reversed nlist */
for (nq = soap->nlist; nq; nq = nq->next)
{ register struct soap_nlist *nr = np;
size_t n = sizeof(struct soap_nlist) + strlen(nq->id);
np = (struct soap_nlist*)SOAP_MALLOC(copy, n);
if (!np)
break;
memcpy(np, nq, n);
np->next = nr;
}
while (np)
{ register const char *s = np->ns;
copy->level = np->level; /* preserve element nesting level */
if (!s && np->index >= 0)
{ s = soap->local_namespaces[np->index].out;
if (!s)
s = soap->local_namespaces[np->index].ns;
}
if (s && soap_push_namespace(copy, np->id, s) == NULL)
break;
nq = np;
np = np->next;
SOAP_FREE(copy, nq);
}
}
memcpy(copy->tag, soap->tag, sizeof(copy->tag));
memcpy(copy->id, soap->id, sizeof(copy->id));
memcpy(copy->href, soap->href, sizeof(copy->href));
memcpy(copy->type, soap->type, sizeof(copy->type));
copy->other = soap->other;
copy->root = soap->root;
copy->null = soap->null;
copy->body = soap->body;
copy->part = soap->part;
copy->mustUnderstand = soap->mustUnderstand;
copy->level = soap->level;
copy->peeked = soap->peeked;
/* copy attributes */
for (tq = soap->attributes; tq; tq = tq->next)
{ struct soap_attribute *tr = tp;
size_t n = sizeof(struct soap_attribute) + strlen(tq->name);
tp = (struct soap_attribute*)SOAP_MALLOC(copy, n);
memcpy(tp, tq, n);
if (tp->size)
{ tp->value = (char*)SOAP_MALLOC(copy, tp->size);
if (tp->value)
strcpy(tp->value, tq->value);
}
tp->ns = NULL;
tp->next = tr;
}
copy->attributes = tp;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_free_stream(struct soap *soap)
{ soap->socket = SOAP_INVALID_SOCKET;
soap->sendsk = SOAP_INVALID_SOCKET;
soap->recvsk = SOAP_INVALID_SOCKET;
#ifdef WITH_OPENSSL
soap->bio = NULL;
soap->ctx = NULL;
soap->ssl = NULL;
#endif
#ifdef WITH_GNUTLS
soap->xcred = NULL;
soap->acred = NULL;
soap->cache = NULL;
soap->session = NULL;
soap->dh_params = NULL;
soap->rsa_params = NULL;
#endif
#ifdef WITH_ZLIB
if (soap->z_buf)
SOAP_FREE(soap, soap->z_buf);
soap->z_buf = NULL;
#endif
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_versioning(soap_init)(struct soap *soap, soap_mode imode, soap_mode omode)
{ size_t i;
soap->state = SOAP_INIT;
#ifdef SOAP_MEM_DEBUG
soap_init_mht(soap);
#endif
#if !defined(WITH_LEAN) || defined(SOAP_DEBUG)
soap_init_logs(soap);
#endif
#ifdef SOAP_DEBUG
#ifdef TANDEM_NONSTOP
soap_set_test_logfile(soap, "TESTLOG");
soap_set_sent_logfile(soap, "SENTLOG");
soap_set_recv_logfile(soap, "RECVLOG");
#else
soap_set_test_logfile(soap, "TEST.log");
soap_set_sent_logfile(soap, "SENT.log");
soap_set_recv_logfile(soap, "RECV.log");
#endif
#endif
soap->version = 0;
soap_mode(soap, imode);
soap_imode(soap, imode);
soap_omode(soap, omode);
soap->plugins = NULL;
soap->user = NULL;
for (i = 0; i < sizeof(soap->data)/sizeof(*soap->data); i++)
soap->data[i] = NULL;
soap->userid = NULL;
soap->passwd = NULL;
soap->authrealm = NULL;
#ifdef WITH_NTLM
soap->ntlm_challenge = NULL;
#endif
#ifndef WITH_NOHTTP
soap->fpost = http_post;
soap->fget = http_get;
soap->fput = http_405;
soap->fdel = http_405;
soap->fopt = http_200;
soap->fhead = http_200;
soap->fform = NULL;
soap->fposthdr = http_post_header;
soap->fresponse = http_response;
soap->fparse = http_parse;
soap->fparsehdr = http_parse_header;
#endif
soap->fheader = NULL;
soap->fconnect = NULL;
soap->fdisconnect = NULL;
#ifndef WITH_NOIO
soap->ipv6_multicast_if = 0; /* in_addr_t value */
soap->ipv4_multicast_if = NULL; /* points to struct in_addr or in_addr_t */
soap->ipv4_multicast_ttl = 0; /* 0: use default */
#ifndef WITH_IPV6
soap->fresolve = tcp_gethost;
#else
soap->fresolve = NULL;
#endif
soap->faccept = tcp_accept;
soap->fopen = tcp_connect;
soap->fclose = tcp_disconnect;
soap->fclosesocket = tcp_closesocket;
soap->fshutdownsocket = tcp_shutdownsocket;
soap->fsend = fsend;
soap->frecv = frecv;
soap->fpoll = soap_poll;
#else
soap->fopen = NULL;
soap->fclose = NULL;
soap->fpoll = NULL;
#endif
soap->fseterror = NULL;
soap->fignore = NULL;
soap->fserveloop = NULL;
soap->fplugin = fplugin;
soap->fmalloc = NULL;
#ifndef WITH_LEANER
soap->feltbegin = NULL;
soap->feltendin = NULL;
soap->feltbegout = NULL;
soap->feltendout = NULL;
soap->fprepareinitsend = NULL;
soap->fprepareinitrecv = NULL;
soap->fpreparesend = NULL;
soap->fpreparerecv = NULL;
soap->fpreparefinalsend = NULL;
soap->fpreparefinalrecv = NULL;
soap->ffiltersend = NULL;
soap->ffilterrecv = NULL;
soap->fdimereadopen = NULL;
soap->fdimewriteopen = NULL;
soap->fdimereadclose = NULL;
soap->fdimewriteclose = NULL;
soap->fdimeread = NULL;
soap->fdimewrite = NULL;
soap->fmimereadopen = NULL;
soap->fmimewriteopen = NULL;
soap->fmimereadclose = NULL;
soap->fmimewriteclose = NULL;
soap->fmimeread = NULL;
soap->fmimewrite = NULL;
#endif
soap->float_format = "%.9G"; /* Alternative: use "%G" */
soap->double_format = "%.17lG"; /* Alternative: use "%lG" */
soap->dime_id_format = "cid:id%d"; /* default DIME id format */
soap->http_version = "1.1";
soap->proxy_http_version = "1.0";
soap->http_content = NULL;
soap->actor = NULL;
soap->lang = "en";
soap->keep_alive = 0;
soap->tcp_keep_alive = 0;
soap->tcp_keep_idle = 0;
soap->tcp_keep_intvl = 0;
soap->tcp_keep_cnt = 0;
soap->max_keep_alive = SOAP_MAXKEEPALIVE;
soap->recv_timeout = 0;
soap->send_timeout = 0;
soap->connect_timeout = 0;
soap->accept_timeout = 0;
soap->socket_flags = 0;
soap->connect_flags = 0;
soap->bind_flags = 0;
soap->accept_flags = 0;
soap->linger_time = 0;
soap->ip = 0;
soap->labbuf = NULL;
soap->lablen = 0;
soap->labidx = 0;
soap->encodingStyle = SOAP_STR_EOS;
#ifndef WITH_NONAMESPACES
soap->namespaces = namespaces;
#else
soap->namespaces = NULL;
#endif
soap->local_namespaces = NULL;
soap->nlist = NULL;
soap->blist = NULL;
soap->clist = NULL;
soap->alist = NULL;
soap->attributes = NULL;
soap->header = NULL;
soap->fault = NULL;
soap->master = SOAP_INVALID_SOCKET;
soap->socket = SOAP_INVALID_SOCKET;
soap->sendsk = SOAP_INVALID_SOCKET;
soap->recvsk = SOAP_INVALID_SOCKET;
soap->os = NULL;
soap->is = NULL;
#ifndef WITH_LEANER
soap->dom = NULL;
soap->dime.list = NULL;
soap->dime.first = NULL;
soap->dime.last = NULL;
soap->mime.list = NULL;
soap->mime.first = NULL;
soap->mime.last = NULL;
soap->mime.boundary = NULL;
soap->mime.start = NULL;
soap->xlist = NULL;
#endif
#ifndef UNDER_CE
soap->recvfd = 0;
soap->sendfd = 1;
#else
soap->recvfd = stdin;
soap->sendfd = stdout;
#endif
soap->host[0] = '\0';
soap->port = 0;
soap->action = NULL;
soap->proxy_host = NULL;
soap->proxy_port = 8080;
soap->proxy_userid = NULL;
soap->proxy_passwd = NULL;
soap->prolog = NULL;
#ifdef WITH_ZLIB
soap->zlib_state = SOAP_ZLIB_NONE;
soap->zlib_in = SOAP_ZLIB_NONE;
soap->zlib_out = SOAP_ZLIB_NONE;
soap->d_stream = (z_stream*)SOAP_MALLOC(soap, sizeof(z_stream));
soap->d_stream->zalloc = Z_NULL;
soap->d_stream->zfree = Z_NULL;
soap->d_stream->opaque = Z_NULL;
soap->z_buf = NULL;
soap->z_level = 6;
soap->z_dict = NULL;
soap->z_dict_len = 0;
#endif
#ifndef WITH_LEAN
soap->wsuid = NULL;
soap->c14nexclude = NULL;
soap->cookies = NULL;
soap->cookie_domain = NULL;
soap->cookie_path = NULL;
soap->cookie_max = 32;
#endif
#ifdef WMW_RPM_IO
soap->rpmreqid = NULL;
#endif
#ifdef PALM
palmNetLibOpen();
#endif
#ifndef WITH_NOIDREF
soap_init_iht(soap);
soap_init_pht(soap);
#endif
#ifdef WITH_OPENSSL
if (!soap_ssl_init_done)
soap_ssl_init();
soap->fsslauth = ssl_auth_init;
soap->fsslverify = ssl_verify_callback;
soap->bio = NULL;
soap->ssl = NULL;
soap->ctx = NULL;
soap->session = NULL;
soap->ssl_flags = SOAP_SSL_DEFAULT;
soap->keyfile = NULL;
soap->password = NULL;
soap->cafile = NULL;
soap->capath = NULL;
soap->crlfile = NULL;
soap->dhfile = NULL;
soap->randfile = NULL;
#endif
#ifdef WITH_GNUTLS
if (!soap_ssl_init_done)
soap_ssl_init();
soap->fsslauth = ssl_auth_init;
soap->fsslverify = NULL;
soap->xcred = NULL;
soap->acred = NULL;
soap->cache = NULL;
soap->session = NULL;
soap->ssl_flags = SOAP_SSL_DEFAULT;
soap->keyfile = NULL;
soap->password = NULL;
soap->cafile = NULL;
soap->capath = NULL;
soap->crlfile = NULL;
soap->dh_params = NULL;
soap->rsa_params = NULL;
#endif
#ifdef WITH_C_LOCALE
# ifdef WIN32
soap->c_locale = _create_locale(LC_ALL, "C");
# else
soap->c_locale = newlocale(LC_ALL_MASK, "C", NULL);
# endif
#else
soap->c_locale = NULL;
#endif
soap->buflen = 0;
soap->bufidx = 0;
#ifndef WITH_LEANER
soap->dime.chunksize = 0;
soap->dime.buflen = 0;
#endif
soap->null = 0;
soap->position = 0;
soap->encoding = 0;
soap->mustUnderstand = 0;
soap->ns = 0;
soap->part = SOAP_END;
soap->event = 0;
soap->evlev = 0;
soap->alloced = 0;
soap->count = 0;
soap->length = 0;
soap->cdata = 0;
soap->peeked = 0;
soap->ahead = 0;
soap->idnum = 0;
soap->level = 0;
soap->endpoint[0] = '\0';
soap->error = SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
void
SOAP_FMAC2
soap_begin(struct soap *soap)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Reinitializing context\n"));
if (!soap->keep_alive)
{ soap->buflen = 0;
soap->bufidx = 0;
}
soap->null = 0;
soap->position = 0;
soap->encoding = 0;
soap->mustUnderstand = 0;
soap->mode = 0;
soap->ns = 0;
soap->part = SOAP_END;
soap->event = 0;
soap->evlev = 0;
soap->alloced = 0;
soap->count = 0;
soap->length = 0;
soap->cdata = 0;
soap->error = SOAP_OK;
soap->peeked = 0;
soap->ahead = 0;
soap->idnum = 0;
soap->level = 0;
soap->endpoint[0] = '\0';
#ifndef WITH_LEANER
soap->dime.chunksize = 0;
soap->dime.buflen = 0;
#endif
soap_free_temp(soap);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
void
SOAP_FMAC2
soap_end(struct soap *soap)
{ if (soap_check_state(soap))
return;
soap_free_temp(soap);
soap_dealloc(soap, NULL);
while (soap->clist)
{ register struct soap_clist *cp = soap->clist->next;
SOAP_FREE(soap, soap->clist);
soap->clist = cp;
}
soap_closesock(soap);
#ifdef SOAP_DEBUG
soap_close_logfiles(soap);
#endif
#ifdef PALM
palmNetLibClose();
#endif
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_set_version(struct soap *soap, short version)
{ soap_set_local_namespaces(soap);
if (soap->version != version)
{ if (version == 1)
{ soap->local_namespaces[0].ns = soap_env1;
soap->local_namespaces[1].ns = soap_enc1;
}
else if (version == 2)
{ soap->local_namespaces[0].ns = soap_env2;
soap->local_namespaces[1].ns = soap_enc2;
}
}
soap->version = version;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_set_namespaces(struct soap *soap, const struct Namespace *p)
{ register struct Namespace *ns = soap->local_namespaces;
register struct soap_nlist *np, *nq, *nr;
register unsigned int level = soap->level;
soap->namespaces = p;
soap->local_namespaces = NULL;
soap_set_local_namespaces(soap);
/* reverse the namespace list */
np = soap->nlist;
soap->nlist = NULL;
if (np)
{ nq = np->next;
np->next = NULL;
while (nq)
{ nr = nq->next;
nq->next = np;
np = nq;
nq = nr;
}
}
/* then push on new stack */
while (np)
{ register const char *s;
soap->level = np->level; /* preserve element nesting level */
s = np->ns;
if (!s && np->index >= 0 && ns)
{ s = ns[np->index].out;
if (!s)
s = ns[np->index].ns;
}
if (s && soap_push_namespace(soap, np->id, s) == NULL)
return soap->error;
nq = np;
np = np->next;
SOAP_FREE(soap, nq);
}
if (ns)
{ register int i;
for (i = 0; ns[i].id; i++)
{ if (ns[i].out)
{ SOAP_FREE(soap, ns[i].out);
ns[i].out = NULL;
}
}
SOAP_FREE(soap, ns);
}
soap->level = level; /* restore level */
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_set_local_namespaces(struct soap *soap)
{ if (soap->namespaces && !soap->local_namespaces)
{ register const struct Namespace *ns1;
register struct Namespace *ns2;
register size_t n = 1;
for (ns1 = soap->namespaces; ns1->id; ns1++)
n++;
n *= sizeof(struct Namespace);
ns2 = (struct Namespace*)SOAP_MALLOC(soap, n);
if (ns2)
{ memcpy(ns2, soap->namespaces, n);
if (ns2[0].ns)
{ if (!strcmp(ns2[0].ns, soap_env1))
soap->version = 1;
else if (!strcmp(ns2[0].ns, soap_env2))
soap->version = 2;
}
soap->local_namespaces = ns2;
for (; ns2->id; ns2++)
ns2->out = NULL;
}
}
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
#ifndef PALM_1
SOAP_FMAC1
const char *
SOAP_FMAC2
soap_tagsearch(const char *big, const char *little)
{ if (little)
{ register size_t n = strlen(little);
register const char *s = big;
while (s)
{ register const char *t = s;
register size_t i;
for (i = 0; i < n; i++, t++)
{ if (*t != little[i])
break;
}
if (*t == '\0' || *t == ' ')
{ if (i == n || (i && little[i-1] == ':'))
return s;
}
s = strchr(t, ' ');
if (s)
s++;
}
}
return NULL;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEAN
#ifndef PALM_1
SOAP_FMAC1
struct soap_nlist *
SOAP_FMAC2
soap_lookup_ns(struct soap *soap, const char *tag, size_t n)
{ register struct soap_nlist *np;
for (np = soap->nlist; np; np = np->next)
{ if (!strncmp(np->id, tag, n) && !np->id[n])
return np;
}
return NULL;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEAN
static struct soap_nlist *
soap_push_ns(struct soap *soap, const char *id, const char *ns, short utilized)
{ register struct soap_nlist *np;
size_t n, k;
if (soap_tagsearch(soap->c14nexclude, id))
return NULL;
if (!utilized)
{ for (np = soap->nlist; np; np = np->next)
{ if (!strcmp(np->id, id) && (!np->ns || !strcmp(np->ns, ns)))
break;
}
if (np)
{ if ((np->level < soap->level || !np->ns) && np->index == 1)
utilized = 1;
else
return NULL;
}
}
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Adding namespace binding (level=%u) '%s' '%s' utilized=%d\n", soap->level, id, ns ? ns : "(null)", utilized));
n = strlen(id);
if (ns)
k = strlen(ns);
else
k = 0;
np = (struct soap_nlist*)SOAP_MALLOC(soap, sizeof(struct soap_nlist) + n + k + 1);
if (!np)
{ soap->error = SOAP_EOM;
return NULL;
}
np->next = soap->nlist;
soap->nlist = np;
strcpy((char*)np->id, id);
if (ns)
np->ns = strcpy((char*)np->id + n + 1, ns);
else
np->ns = NULL;
np->level = soap->level;
np->index = utilized;
return np;
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
static void
soap_utilize_ns(struct soap *soap, const char *tag)
{ register struct soap_nlist *np;
size_t n = 0;
const char *t = strchr(tag, ':');
if (t)
n = t - tag;
np = soap_lookup_ns(soap, tag, n);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Utilizing namespace of '%s'\n", tag));
if (np)
{ if (np->index == 0)
soap_push_ns(soap, np->id, np->ns, 1);
}
else if (strncmp(tag, "xml", 3))
{ strncpy(soap->tmpbuf, tag, n);
soap->tmpbuf[n] = '\0';
soap_push_ns(soap, soap->tmpbuf, NULL, 1);
}
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_element(struct soap *soap, const char *tag, int id, const char *type)
{
#ifndef WITH_LEAN
register const char *s;
#endif
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Element begin tag='%s' level='%u' id='%d' type='%s'\n", tag, soap->level, id, type ? type : SOAP_STR_EOS));
soap->level++;
#ifdef WITH_DOM
#ifndef WITH_LEAN
if (soap->wsuid && soap_tagsearch(soap->wsuid, tag))
{ size_t i;
for (s = tag, i = 0; *s && i < sizeof(soap->tag) - 1; s++, i++)
soap->tag[i] = *s == ':' ? '-' : *s;
soap->tag[i] = '\0';
if (soap_set_attr(soap, "wsu:Id", soap->tag, 1))
return soap->error;
}
if ((soap->mode & SOAP_XML_CANONICAL) && !(soap->mode & SOAP_DOM_ASIS))
{ if (soap->evlev >= soap->level)
soap->evlev = 0;
if (soap->event == SOAP_SEC_BEGIN && !soap->evlev)
{ register struct soap_nlist *np;
/* non-nested wsu:Id found: clear xmlns, re-emit them for exc-c14n */
for (np = soap->nlist; np; np = np->next)
{ if (np->index == 2)
{ struct soap_nlist *np1 = soap_push_ns(soap, np->id, np->ns, 1);
if (np1)
np1->index = 0;
}
}
soap->evlev = soap->level;
}
}
#endif
if (soap->mode & SOAP_XML_DOM)
{ register struct soap_dom_element *elt = (struct soap_dom_element*)soap_malloc(soap, sizeof(struct soap_dom_element));
if (!elt)
return soap->error;
elt->soap = soap;
elt->next = NULL;
elt->prnt = soap->dom;
elt->name = soap_strdup(soap, tag);
elt->elts = NULL;
elt->atts = NULL;
elt->nstr = NULL;
elt->data = NULL;
elt->wide = NULL;
elt->node = NULL;
elt->type = 0;
elt->head = NULL;
elt->tail = NULL;
if (soap->dom)
{ struct soap_dom_element *p = soap->dom->elts;
if (p)
{ while (p->next)
p = p->next;
p->next = elt;
}
else
soap->dom->elts = elt;
}
soap->dom = elt;
}
else
{
#endif
#ifndef WITH_LEAN
if (!soap->ns)
{ if (!(soap->mode & SOAP_XML_CANONICAL)
&& soap_send(soap, soap->prolog ? soap->prolog : "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"))
return soap->error;
}
else if (soap->mode & SOAP_XML_INDENT)
{ if (soap->ns == 1 && soap_send_raw(soap, soap_indent, soap->level < sizeof(soap_indent) ? soap->level : sizeof(soap_indent) - 1))
return soap->error;
soap->body = 1;
}
if ((soap->mode & SOAP_XML_DEFAULTNS) && (s = strchr(tag, ':')))
{ struct Namespace *ns = soap->local_namespaces;
size_t n = s - tag;
if (soap_send_raw(soap, "<", 1)
|| soap_send(soap, s + 1))
return soap->error;
if (soap->nlist && !strncmp(soap->nlist->id, tag, n) && !soap->nlist->id[n])
ns = NULL;
for (; ns && ns->id; ns++)
{ if (*ns->id && (ns->out || ns->ns) && !strncmp(ns->id, tag, n) && !ns->id[n])
{ soap_push_ns(soap, ns->id, ns->out ? ns->out : ns->ns, 0);
if (soap_attribute(soap, "xmlns", ns->out ? ns->out : ns->ns))
return soap->error;
break;
}
}
}
else
#endif
if (soap_send_raw(soap, "<", 1)
|| soap_send(soap, tag))
return soap->error;
#ifdef WITH_DOM
}
#endif
if (!soap->ns)
{ struct Namespace *ns = soap->local_namespaces;
int k = -1;
if (ns)
{
#ifndef WITH_LEAN
if ((soap->mode & SOAP_XML_DEFAULTNS))
{ if (soap->version)
k = 4; /* first four required entries */
else if (!(soap->mode & SOAP_XML_NOTYPE) || (soap->mode & SOAP_XML_NIL))
{ ns += 2;
k = 2; /* next two entries */
}
else
k = 0; /* no entries */
}
#endif
while (k-- && ns->id)
{ if (*ns->id && (ns->out || ns->ns))
{ sprintf(soap->tmpbuf, "xmlns:%s", ns->id);
if (soap_attribute(soap, soap->tmpbuf, ns->out ? ns->out : ns->ns))
return soap->error;
}
ns++;
}
}
}
soap->ns = 1; /* namespace table control: ns = 0 or 2 to start, then 1 to stop dumping the table */
#ifndef WITH_LEAN
if (soap->mode & SOAP_XML_CANONICAL)
soap_utilize_ns(soap, tag);
#endif
if (id > 0)
{ sprintf(soap->tmpbuf, "_%d", id);
if (soap_attribute(soap, "id", soap->tmpbuf))
return soap->error;
}
if (type && *type && !(soap->mode & SOAP_XML_NOTYPE) && soap->part != SOAP_IN_HEADER)
{ const char *t = type;
#ifndef WITH_LEAN
if (soap->mode & SOAP_XML_DEFAULTNS)
{ t = strchr(type, ':');
if (t)
t++;
else
t = type;
}
#endif
if (soap->attributes ? soap_set_attr(soap, "xsi:type", t, 1) : soap_attribute(soap, "xsi:type", t))
return soap->error;
#ifndef WITH_LEAN
if (soap->mode & SOAP_XML_CANONICAL)
soap_utilize_ns(soap, type);
#endif
}
if (soap->null && soap->position > 0)
{ register int i;
sprintf(soap->tmpbuf, "[%d", soap->positions[0]);
for (i = 1; i < soap->position; i++)
sprintf(soap->tmpbuf + strlen(soap->tmpbuf), ",%d", soap->positions[i]);
strcat(soap->tmpbuf, "]");
if (soap_attribute(soap, "SOAP-ENC:position", soap->tmpbuf))
return soap->error;
}
if (soap->mustUnderstand)
{ if (soap->actor && *soap->actor)
{ if (soap_attribute(soap, soap->version == 2 ? "SOAP-ENV:role" : "SOAP-ENV:actor", soap->actor))
return soap->error;
}
if (soap_attribute(soap, "SOAP-ENV:mustUnderstand", soap->version == 2 ? "true" : "1"))
return soap->error;
soap->mustUnderstand = 0;
}
if (soap->encoding)
{ if (soap->encodingStyle && soap->local_namespaces)
{ if (!*soap->encodingStyle)
{ if (soap->local_namespaces[1].out)
soap->encodingStyle = soap->local_namespaces[1].out;
else
soap->encodingStyle = soap->local_namespaces[1].ns;
}
if (soap->encodingStyle && soap_attribute(soap, "SOAP-ENV:encodingStyle", soap->encodingStyle))
return soap->error;
}
soap->encoding = 0;
}
soap->null = 0;
soap->position = 0;
if (soap->event == SOAP_SEC_BEGIN)
soap->event = 0;
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_element_begin_out(struct soap *soap, const char *tag, int id, const char *type)
{ if (*tag == '-')
return SOAP_OK;
if (soap_element(soap, tag, id, type))
return soap->error;
#ifdef WITH_DOM
if (soap_element_start_end_out(soap, NULL))
return soap->error;
if (soap->feltbegout)
return soap->error = soap->feltbegout(soap, tag);
return SOAP_OK;
#else
return soap_element_start_end_out(soap, NULL);
#endif
}
#endif
/******************************************************************************/
#ifndef PALM_2
#ifndef HAVE_STRRCHR
SOAP_FMAC1
char*
SOAP_FMAC2
soap_strrchr(const char *s, int t)
{ register char *r = NULL;
while (*s)
if (*s++ == t)
r = (char*)s - 1;
return r;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_2
#ifndef HAVE_STRTOL
SOAP_FMAC1
long
SOAP_FMAC2
soap_strtol(const char *s, char **t, int b)
{ register long n = 0;
register int c;
while (*s > 0 && *s <= 32)
s++;
if (b == 10)
{ short neg = 0;
if (*s == '-')
{ s++;
neg = 1;
}
else if (*s == '+')
s++;
while ((c = *s) && c >= '0' && c <= '9')
{ if (n >= 214748364 && (n > 214748364 || c >= '8'))
break;
n *= 10;
n += c - '0';
s++;
}
if (neg)
n = -n;
}
else /* assume b == 16 and value is always positive */
{ while ((c = *s))
{ if (c >= '0' && c <= '9')
c -= '0';
else if (c >= 'A' && c <= 'F')
c -= 'A' - 10;
else if (c >= 'a' && c <= 'f')
c -= 'a' - 10;
if (n > 0x07FFFFFF)
break;
n <<= 4;
n += c;
s++;
}
}
if (t)
*t = (char*)s;
return n;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_2
#ifndef HAVE_STRTOUL
SOAP_FMAC1
unsigned long
SOAP_FMAC2
soap_strtoul(const char *s, char **t, int b)
{ unsigned long n = 0;
register int c;
while (*s > 0 && *s <= 32)
s++;
if (b == 10)
{ if (*s == '+')
s++;
while ((c = *s) && c >= '0' && c <= '9')
{ if (n >= 429496729 && (n > 429496729 || c >= '6'))
break;
n *= 10;
n += c - '0';
s++;
}
}
else /* b == 16 */
{ while ((c = *s))
{ if (c >= '0' && c <= '9')
c -= '0';
else if (c >= 'A' && c <= 'F')
c -= 'A' - 10;
else if (c >= 'a' && c <= 'f')
c -= 'a' - 10;
if (n > 0x0FFFFFFF)
break;
n <<= 4;
n += c;
s++;
}
}
if (t)
*t = (char*)s;
return n;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_array_begin_out(struct soap *soap, const char *tag, int id, const char *type, const char *offset)
{ if (!type || !*type)
return soap_element_begin_out(soap, tag, id, NULL);
if (soap_element(soap, tag, id, "SOAP-ENC:Array"))
return soap->error;
if (soap->version == 2)
{ const char *s;
s = soap_strrchr(type, '[');
if ((size_t)(s - type) < sizeof(soap->tmpbuf))
{ strncpy(soap->tmpbuf, type, s - type);
soap->tmpbuf[s - type] = '\0';
if (soap_attribute(soap, "SOAP-ENC:itemType", soap->tmpbuf))
return soap->error;
if (s && (soap_attribute(soap, "SOAP-ENC:arraySize", s + 1)))
return soap->error;
}
}
else
{ if (offset && soap_attribute(soap, "SOAP-ENC:offset", offset))
return soap->error;
if (soap_attribute(soap, "SOAP-ENC:arrayType", type))
return soap->error;
}
#ifndef WITH_LEAN
if ((soap->mode & SOAP_XML_CANONICAL))
soap_utilize_ns(soap, type);
#endif
return soap_element_start_end_out(soap, NULL);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_element_start_end_out(struct soap *soap, const char *tag)
{ register struct soap_attribute *tp;
#ifndef WITH_LEAN
if (soap->mode & SOAP_XML_CANONICAL)
{ struct soap_nlist *np;
for (tp = soap->attributes; tp; tp = tp->next)
{ if (tp->visible && tp->name)
soap_utilize_ns(soap, tp->name);
}
for (np = soap->nlist; np; np = np->next)
{ if (np->index == 1 && np->ns)
{ if (*(np->id))
sprintf(soap->tmpbuf, "xmlns:%s", np->id);
else
strcpy(soap->tmpbuf, "xmlns");
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Enabling utilized binding (level=%u) %s='%s'\n", np->level, soap->tmpbuf, np->ns));
soap_set_attr(soap, soap->tmpbuf, np->ns, 1);
np->index = 2;
}
}
}
#endif
#ifdef WITH_DOM
if ((soap->mode & SOAP_XML_DOM) && soap->dom)
{ register struct soap_dom_attribute **att;
att = &soap->dom->atts;
for (tp = soap->attributes; tp; tp = tp->next)
{ if (tp->visible)
{ *att = (struct soap_dom_attribute*)soap_malloc(soap, sizeof(struct soap_dom_attribute));
if (!*att)
return soap->error;
(*att)->next = NULL;
(*att)->nstr = NULL;
(*att)->name = soap_strdup(soap, tp->name);
(*att)->data = soap_strdup(soap, tp->value);
(*att)->wide = NULL;
(*att)->soap = soap;
att = &(*att)->next;
tp->visible = 0;
}
}
return SOAP_OK;
}
#endif
for (tp = soap->attributes; tp; tp = tp->next)
{ if (tp->visible)
{
#ifndef WITH_LEAN
const char *s;
if ((soap->mode & SOAP_XML_DEFAULTNS) && (s = strchr(tp->name, ':')))
{ size_t n = s - tp->name;
if (soap->nlist && !strncmp(soap->nlist->id, tp->name, n) && !soap->nlist->id[n])
s++;
else
s = tp->name;
if (soap_send(soap, " ") || soap_send(soap, s))
return soap->error;
}
else
#endif
if (soap_send(soap, " ") || soap_send(soap, tp->name))
return soap->error;
if (tp->visible == 2 && tp->value)
if (soap_send_raw(soap, "=\"", 2)
|| soap_string_out(soap, tp->value, tp->flag)
|| soap_send_raw(soap, "\"", 1))
return soap->error;
tp->visible = 0;
}
}
if (tag)
{
#ifndef WITH_LEAN
if (soap->mode & SOAP_XML_CANONICAL)
{ if (soap_send_raw(soap, ">", 1)
|| soap_element_end_out(soap, tag))
return soap->error;
return SOAP_OK;
}
#endif
soap->level--; /* decrement level just before /> */
return soap_send_raw(soap, "/>", 2);
}
return soap_send_raw(soap, ">", 1);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_element_end_out(struct soap *soap, const char *tag)
{
#ifndef WITH_LEAN
const char *s;
#endif
if (*tag == '-')
return SOAP_OK;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Element ending tag='%s'\n", tag));
#ifdef WITH_DOM
if (soap->feltendout && (soap->error = soap->feltendout(soap, tag)))
return soap->error;
if ((soap->mode & SOAP_XML_DOM) && soap->dom)
{ if (soap->dom->prnt)
soap->dom = soap->dom->prnt;
return SOAP_OK;
}
#endif
#ifndef WITH_LEAN
if (soap->mode & SOAP_XML_CANONICAL)
soap_pop_namespace(soap);
if (soap->mode & SOAP_XML_INDENT)
{ if (!soap->body)
{ if (soap_send_raw(soap, soap_indent, soap->level < sizeof(soap_indent) ? soap->level : sizeof(soap_indent) - 1))
return soap->error;
}
soap->body = 0;
}
if ((soap->mode & SOAP_XML_DEFAULTNS) && (s = strchr(tag, ':')))
{ soap_pop_namespace(soap);
tag = s + 1;
}
#endif
if (soap_send_raw(soap, "</", 2)
|| soap_send(soap, tag))
return soap->error;
soap->level--; /* decrement level just before > */
return soap_send_raw(soap, ">", 1);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_element_ref(struct soap *soap, const char *tag, int id, int href)
{ register int n = 0;
const char *s = "href";
if (soap->version == 2)
{ s = "SOAP-ENC:ref";
n = 1;
}
sprintf(soap->href, "#_%d", href);
return soap_element_href(soap, tag, id, s, soap->href + n);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_element_href(struct soap *soap, const char *tag, int id, const char *ref, const char *val)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Element '%s' reference %s='%s'\n", tag, ref, val));
if (soap_element(soap, tag, id, NULL)
|| soap_attribute(soap, ref, val)
|| soap_element_start_end_out(soap, tag))
return soap->error;
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_element_null(struct soap *soap, const char *tag, int id, const char *type)
{ struct soap_attribute *tp = NULL;
for (tp = soap->attributes; tp; tp = tp->next)
if (tp->visible)
break;
if (tp || (soap->version == 2 && soap->position > 0) || id > 0 || (soap->mode & SOAP_XML_NIL))
{ if (soap_element(soap, tag, id, type)
|| (!tp && soap_attribute(soap, "xsi:nil", "true")))
return soap->error;
return soap_element_start_end_out(soap, tag);
}
soap->null = 1;
soap->position = 0;
soap->mustUnderstand = 0;
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_element_nil(struct soap *soap, const char *tag)
{ if (soap_element(soap, tag, -1, NULL)
|| ((soap->mode & SOAP_XML_NIL) && soap_attribute(soap, "xsi:nil", "true")))
return soap->error;
return soap_element_start_end_out(soap, tag);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_element_id(struct soap *soap, const char *tag, int id, const void *p, const struct soap_array *a, int n, const char *type, int t)
{ if (!p)
{ soap_element_null(soap, tag, id, type);
return -1;
}
#ifndef WITH_NOIDREF
if (soap->mode & SOAP_XML_TREE)
return 0;
if (id < 0)
{ struct soap_plist *pp;
if (a)
id = soap_array_pointer_lookup(soap, p, a, n, t, &pp);
else
id = soap_pointer_lookup(soap, p, t, &pp);
if (id)
{ if (soap_is_embedded(soap, pp))
{ soap_element_ref(soap, tag, 0, id);
return -1;
}
if (soap_is_single(soap, pp))
return 0;
soap_set_embedded(soap, pp);
}
}
return id;
#else
return 0;
#endif
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_element_result(struct soap *soap, const char *tag)
{ if (soap->version == 2 && soap->encodingStyle)
{ if (soap_element(soap, "SOAP-RPC:result", 0, NULL)
|| soap_attribute(soap, "xmlns:SOAP-RPC", soap_rpc)
|| soap_element_start_end_out(soap, NULL)
|| soap_string_out(soap, tag, 0)
|| soap_element_end_out(soap, "SOAP-RPC:result"))
return soap->error;
}
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_check_result(struct soap *soap, const char *tag)
{ if (soap->version == 2 && soap->encodingStyle)
{ soap_instring(soap, ":result", NULL, NULL, 0, 2, -1, -1);
/* just ignore content for compliance reasons, but should compare tag to element's QName value? */
}
(void)tag;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_attribute(struct soap *soap, const char *name, const char *value)
{
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Attribute '%s'='%s'\n", name, value));
#ifdef WITH_DOM
if ((soap->mode & SOAP_XML_DOM) && !(soap->mode & SOAP_XML_CANONICAL) && soap->dom)
{ register struct soap_dom_attribute *a = (struct soap_dom_attribute*)soap_malloc(soap, sizeof(struct soap_dom_attribute));
if (!a)
return soap->error;
a->next = soap->dom->atts;
a->nstr = NULL;
a->name = soap_strdup(soap, name);
a->data = soap_strdup(soap, value);
a->wide = NULL;
a->soap = soap;
soap->dom->atts = a;
return SOAP_OK;
}
#endif
#ifndef WITH_LEAN
if (soap->mode & SOAP_XML_CANONICAL)
{ /* push namespace */
if (!strncmp(name, "xmlns", 5) && (name[5] == ':' || name[5] == '\0'))
soap_push_ns(soap, name + 5 + (name[5] == ':'), value, 0);
else if (soap_set_attr(soap, name, value, 1))
return soap->error;
}
else
#endif
{ if (soap_send(soap, " ") || soap_send(soap, name))
return soap->error;
if (value)
if (soap_send_raw(soap, "=\"", 2)
|| soap_string_out(soap, value, 1)
|| soap_send_raw(soap, "\"", 1))
return soap->error;
}
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_element_begin_in(struct soap *soap, const char *tag, int nillable, const char *type)
{ if (!soap_peek_element(soap))
{ if (soap->other)
return soap->error = SOAP_TAG_MISMATCH;
if (tag && *tag == '-')
return SOAP_OK;
if (!(soap->error = soap_match_tag(soap, soap->tag, tag)))
{ soap->peeked = 0;
if (type && *soap->type && soap_match_tag(soap, soap->type, type))
return soap->error = SOAP_TYPE;
if (!nillable && soap->null && (soap->mode & SOAP_XML_STRICT))
return soap->error = SOAP_NULL;
if (soap->body)
soap->level++;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Begin element found (level=%u) '%s'='%s'\n", soap->level, soap->tag, tag ? tag : SOAP_STR_EOS ));
soap->error = SOAP_OK;
}
}
else if (soap->error == SOAP_NO_TAG && tag && *tag == '-')
soap->error = SOAP_OK;
return soap->error;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_element_end_in(struct soap *soap, const char *tag)
{ register soap_wchar c;
register char *s;
register int n = 0;
if (tag && *tag == '-')
return SOAP_OK;
if (soap->error == SOAP_NO_TAG)
soap->error = SOAP_OK;
#ifdef WITH_DOM
/* this whitespace or mixed content is significant for DOM */
if ((soap->mode & SOAP_XML_DOM) && soap->dom)
{ if (!soap->peeked && !soap_string_in(soap, 3, -1, -1))
return soap->error;
if (soap->dom->prnt)
soap->dom = soap->dom->prnt;
}
#endif
if (soap->peeked)
{ if (*soap->tag)
n++;
soap->peeked = 0;
}
do
{ while (((c = soap_get(soap)) != SOAP_TT))
{ if ((int)c == EOF)
return soap->error = SOAP_CHK_EOF;
if (c == SOAP_LT)
n++;
else if (c == '/')
{ c = soap_get(soap);
if (c == SOAP_GT)
n--;
else
soap_unget(soap, c);
}
}
} while (n--);
s = soap->tag;
n = sizeof(soap->tag);
while (soap_notblank(c = soap_get(soap)))
{ if (--n > 0)
*s++ = (char)c;
}
*s = '\0';
if ((int)c == EOF)
return soap->error = SOAP_CHK_EOF;
while (soap_blank(c))
c = soap_get(soap);
if (c != SOAP_GT)
return soap->error = SOAP_SYNTAX_ERROR;
#ifndef WITH_LEAN
#ifdef WITH_DOM
if (soap->feltendin)
{ soap->level--;
return soap->error = soap->feltendin(soap, soap->tag, tag);
}
#endif
if (tag && (soap->mode & SOAP_XML_STRICT))
{ soap_pop_namespace(soap);
if (soap_match_tag(soap, soap->tag, tag))
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "End element tag '%s' does not match '%s'\n", soap->tag, tag ? tag : SOAP_STR_EOS));
return soap->error = SOAP_SYNTAX_ERROR;
}
}
#endif
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "End element found (level=%u) '%s'='%s'\n", soap->level, soap->tag, tag ? tag : SOAP_STR_EOS));
soap->level--;
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
const char *
SOAP_FMAC2
soap_attr_value(struct soap *soap, const char *name, int flag)
{ register struct soap_attribute *tp;
if (*name == '-')
return SOAP_STR_EOS;
for (tp = soap->attributes; tp; tp = tp->next)
{ if (tp->visible && !soap_match_tag(soap, tp->name, name))
break;
}
if (tp)
{ if (flag == 2 && (soap->mode & SOAP_XML_STRICT))
soap->error = SOAP_PROHIBITED;
else
return tp->value;
}
else if (flag == 1 && (soap->mode & SOAP_XML_STRICT))
soap->error = SOAP_REQUIRED;
else
soap->error = SOAP_OK;
return NULL;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_set_attr(struct soap *soap, const char *name, const char *value, int flag)
{ register struct soap_attribute *tp;
if (*name == '-')
return SOAP_OK;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Set attribute %s='%s'\n", name, value ? value : SOAP_STR_EOS));
for (tp = soap->attributes; tp; tp = tp->next)
{ if (!strcmp(tp->name, name))
break;
}
if (!tp)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Allocate attribute %s\n", name));
if (!(tp = (struct soap_attribute*)SOAP_MALLOC(soap, sizeof(struct soap_attribute) + strlen(name))))
return soap->error = SOAP_EOM;
tp->ns = NULL;
#ifndef WITH_LEAN
if ((soap->mode & SOAP_XML_CANONICAL))
{ struct soap_attribute **tpp = &soap->attributes;
const char *s = strchr(name, ':');
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Inserting attribute %s for c14n\n", name))
if (!strncmp(name, "xmlns", 5))
{ for (; *tpp; tpp = &(*tpp)->next)
if (strncmp((*tpp)->name, "xmlns", 5) || strcmp((*tpp)->name + 5, name + 5) > 0)
break;
}
else if (!s)
{ for (; *tpp; tpp = &(*tpp)->next)
if (strncmp((*tpp)->name, "xmlns", 5) && ((*tpp)->ns || strcmp((*tpp)->name, name) > 0))
break;
}
else
{ struct soap_nlist *np = soap_lookup_ns(soap, name, s - name);
if (np)
tp->ns = np->ns;
else
{ struct soap_attribute *tq;
for (tq = soap->attributes; tq; tq = tq->next)
{ if (!strncmp(tq->name, "xmlns:", 6) && !strncmp(tq->name + 6, name, s - name) && !tq->name[6 + s - name])
{ tp->ns = tq->ns;
break;
}
}
}
for (; *tpp; tpp = &(*tpp)->next)
{ int k;
if (strncmp((*tpp)->name, "xmlns", 5) && (*tpp)->ns && tp->ns && ((k = strcmp((*tpp)->ns, tp->ns)) > 0 || (!k && strcmp((*tpp)->name, name) > 0)))
break;
}
}
tp->next = *tpp;
*tpp = tp;
}
else
#endif
{ tp->next = soap->attributes;
soap->attributes = tp;
}
strcpy((char*)tp->name, name);
tp->value = NULL;
}
else if (tp->visible)
{ return SOAP_OK;
}
else if (value && tp->value && tp->size <= strlen(value))
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Free attribute value of %s (free %p)\n", name, tp->value));
SOAP_FREE(soap, tp->value);
tp->value = NULL;
tp->ns = NULL;
}
if (value)
{ if (!tp->value)
{ tp->size = strlen(value) + 1;
if (!(tp->value = (char*)SOAP_MALLOC(soap, tp->size)))
return soap->error = SOAP_EOM;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Allocate attribute value for %s (%p)\n", tp->name, tp->value));
}
strcpy(tp->value, value);
if (!strncmp(tp->name, "xmlns:", 6))
tp->ns = tp->value;
tp->visible = 2;
tp->flag = (short)flag;
#ifndef WITH_LEAN
if (!strcmp(name, "wsu:Id"))
{ soap->event = SOAP_SEC_BEGIN;
strncpy(soap->id, value, sizeof(soap->id));
soap->id[sizeof(soap->id)-1] = '\0';
}
#endif
}
else
tp->visible = 1;
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
void
SOAP_FMAC2
soap_clr_attr(struct soap *soap)
{ register struct soap_attribute *tp;
#ifndef WITH_LEAN
if ((soap->mode & SOAP_XML_CANONICAL))
{ while (soap->attributes)
{ tp = soap->attributes->next;
if (soap->attributes->value)
SOAP_FREE(soap, soap->attributes->value);
SOAP_FREE(soap, soap->attributes);
soap->attributes = tp;
}
}
else
#endif
{ for (tp = soap->attributes; tp; tp = tp->next)
tp->visible = 0;
}
}
#endif
/******************************************************************************/
#ifndef PALM_2
static int
soap_getattrval(struct soap *soap, char *s, size_t n, soap_wchar d)
{ register size_t i;
for (i = 0; i < n; i++)
{ register soap_wchar c = soap_get(soap);
switch (c)
{
case SOAP_TT:
*s++ = '<';
soap_unget(soap, '/');
break;
case SOAP_LT:
*s++ = '<';
break;
case SOAP_GT:
if (d == ' ')
{ soap_unget(soap, c);
*s = '\0';
return SOAP_OK;
}
*s++ = '>';
break;
case SOAP_QT:
if (c == d)
{ *s = '\0';
return SOAP_OK;
}
*s++ = '"';
break;
case SOAP_AP:
if (c == d)
{ *s = '\0';
return SOAP_OK;
}
*s++ = '\'';
break;
case '\t':
case '\n':
case '\r':
case ' ':
case '/':
if (d == ' ')
{ soap_unget(soap, c);
*s = '\0';
return SOAP_OK;
}
default:
if ((int)c == EOF)
return soap->error = SOAP_CHK_EOF;
*s++ = (char)c;
}
}
return soap->error = SOAP_EOM;
}
#endif
/******************************************************************************/
#ifdef WITH_FAST
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_store_lab(struct soap *soap, const char *s, size_t n)
{ soap->labidx = 0;
return soap_append_lab(soap, s, n);
}
#endif
#endif
/******************************************************************************/
#ifdef WITH_FAST
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_append_lab(struct soap *soap, const char *s, size_t n)
{ if (soap->labidx + n >= soap->lablen)
{ register char *t = soap->labbuf;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Enlarging look-aside buffer to append data, old size=%lu", (unsigned long)soap->lablen));
if (soap->lablen == 0)
soap->lablen = SOAP_LABLEN;
while (soap->labidx + n >= soap->lablen)
soap->lablen <<= 1;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, ", new size=%lu\n", (unsigned long)soap->lablen));
soap->labbuf = (char*)SOAP_MALLOC(soap, soap->lablen);
if (!soap->labbuf)
{ if (t)
SOAP_FREE(soap, t);
return soap->error = SOAP_EOM;
}
if (t)
{ memcpy(soap->labbuf, t, soap->labidx);
SOAP_FREE(soap, t);
}
}
if (s)
{ memcpy(soap->labbuf + soap->labidx, s, n);
soap->labidx += n;
}
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_peek_element(struct soap *soap)
{
#ifdef WITH_DOM
register struct soap_dom_attribute **att = NULL;
register char *lead = NULL;
#endif
register struct soap_attribute *tp, *tq = NULL;
register const char *t;
register char *s;
register soap_wchar c;
register int i;
if (soap->peeked)
{ if (!*soap->tag)
return soap->error = SOAP_NO_TAG;
return SOAP_OK;
}
soap->peeked = 1;
soap->id[0] = '\0';
soap->href[0] = '\0';
soap->type[0] = '\0';
soap->arrayType[0] = '\0';
soap->arraySize[0] = '\0';
soap->arrayOffset[0] = '\0';
soap->other = 0;
soap->root = -1;
soap->position = 0;
soap->null = 0;
soap->mustUnderstand = 0;
/* UTF-8 BOM? */
c = soap_getchar(soap);
if (c == 0xEF && soap_get0(soap) == 0xBB)
{ c = soap_get1(soap);
if ((c = soap_get1(soap)) == 0xBF)
soap->mode &= ~SOAP_ENC_LATIN;
else
soap_unget(soap, (0x0F << 12) | (0xBB << 6) | (c & 0x3F)); /* UTF-8 */
}
else if ((c == 0xFE && soap_get0(soap) == 0xFF) /* UTF-16 BE */
|| (c == 0xFF && soap_get0(soap) == 0xFE)) /* UTF-16 LE */
return soap->error = SOAP_UTF_ERROR;
else
soap_unget(soap, c);
c = soap_get(soap);
#ifdef WITH_DOM
/* whitespace leading to tag is not insignificant for DOM */
if (soap_blank(c))
{ soap->labidx = 0;
do
{ if (soap_append_lab(soap, NULL, 0))
return soap->error;
s = soap->labbuf + soap->labidx;
i = soap->lablen - soap->labidx;
soap->labidx = soap->lablen;
while (soap_blank(c) && i--)
{ *s++ = c;
c = soap_get(soap);
}
}
while (soap_blank(c));
*s = '\0';
lead = soap->labbuf;
}
#else
/* skip space */
while (soap_blank(c))
c = soap_get(soap);
#endif
if (c != SOAP_LT)
{ *soap->tag = '\0';
if ((int)c == EOF)
return soap->error = SOAP_CHK_EOF;
soap_unget(soap, c);
#ifdef WITH_DOM
/* whitespace leading to end tag is significant for DOM */
if ((soap->mode & SOAP_XML_DOM) && soap->dom)
{ if (lead && *lead)
soap->dom->tail = soap_strdup(soap, lead);
else
soap->dom->tail = (char*)SOAP_STR_EOS;
}
#endif
return soap->error = SOAP_NO_TAG;
}
s = soap->tag;
do c = soap_get1(soap);
while (soap_blank(c));
i = sizeof(soap->tag);
while (c != '>' && c != '/' && soap_notblank(c) && (int)c != EOF)
{ if (--i > 0)
*s++ = (char)c;
c = soap_get1(soap);
}
while (soap_blank(c))
c = soap_get1(soap);
*s = '\0';
#ifdef WITH_DOM
if (soap->mode & SOAP_XML_DOM)
{ register struct soap_dom_element *elt;
elt = (struct soap_dom_element*)soap_malloc(soap, sizeof(struct soap_dom_element));
if (!elt)
return soap->error;
elt->next = NULL;
elt->nstr = NULL;
elt->name = soap_strdup(soap, soap->tag);
elt->prnt = soap->dom;
elt->elts = NULL;
elt->atts = NULL;
elt->data = NULL;
elt->wide = NULL;
elt->type = 0;
elt->node = NULL;
elt->head = soap_strdup(soap, lead);
elt->tail = NULL;
elt->soap = soap;
if (soap->dom)
{ struct soap_dom_element *p = soap->dom->elts;
if (p)
{ while (p->next)
p = p->next;
p->next = elt;
}
else
soap->dom->elts = elt;
}
soap->dom = elt;
att = &elt->atts;
}
#endif
soap_pop_namespace(soap);
for (tp = soap->attributes; tp; tp = tp->next)
tp->visible = 0;
while ((int)c != EOF && c != '>' && c != '/')
{ s = soap->tmpbuf;
i = sizeof(soap->tmpbuf);
while (c != '=' && c != '>' && c != '/' && soap_notblank(c) && (int)c != EOF)
{ if (--i > 0)
*s++ = (char)c;
c = soap_get1(soap);
}
*s = '\0';
if (i == sizeof(soap->tmpbuf))
return soap->error = SOAP_SYNTAX_ERROR;
#ifdef WITH_DOM
/* add attribute name to dom */
if (att)
{ *att = (struct soap_dom_attribute*)soap_malloc(soap, sizeof(struct soap_dom_attribute));
if (!*att)
return soap->error;
(*att)->next = NULL;
(*att)->nstr = NULL;
(*att)->name = soap_strdup(soap, soap->tmpbuf);
(*att)->data = NULL;
(*att)->wide = NULL;
(*att)->soap = soap;
}
#endif
if (!strncmp(soap->tmpbuf, "xmlns", 5))
{ if (soap->tmpbuf[5] == ':')
t = soap->tmpbuf + 6;
else if (soap->tmpbuf[5])
t = NULL;
else
t = SOAP_STR_EOS;
}
else
t = NULL;
tq = NULL;
for (tp = soap->attributes; tp; tq = tp, tp = tp->next)
{ if (!SOAP_STRCMP(tp->name, soap->tmpbuf))
break;
}
if (!tp)
{ tp = (struct soap_attribute*)SOAP_MALLOC(soap, sizeof(struct soap_attribute) + strlen(soap->tmpbuf));
if (!tp)
return soap->error = SOAP_EOM;
strcpy((char*)tp->name, soap->tmpbuf);
tp->value = NULL;
tp->size = 0;
tp->ns = NULL;
/* if attribute name is qualified, append it to the end of the list */
if (tq && strchr(soap->tmpbuf, ':'))
{ tq->next = tp;
tp->next = NULL;
}
else
{ tp->next = soap->attributes;
soap->attributes = tp;
}
}
while (soap_blank(c))
c = soap_get1(soap);
if (c == '=')
{ do c = soap_getutf8(soap);
while (soap_blank(c));
if (c != SOAP_QT && c != SOAP_AP)
{ soap_unget(soap, c);
c = ' '; /* blank delimiter */
}
if (soap_getattrval(soap, tp->value, tp->size, c))
{
#ifdef WITH_FAST
if (soap->error != SOAP_EOM)
return soap->error;
soap->error = SOAP_OK;
if (soap_store_lab(soap, tp->value, tp->size))
return soap->error;
if (tp->value)
SOAP_FREE(soap, tp->value);
tp->value = NULL;
for (;;)
{ if (soap_getattrval(soap, soap->labbuf + soap->labidx, soap->lablen - soap->labidx, c))
{ if (soap->error != SOAP_EOM)
return soap->error;
soap->error = SOAP_OK;
soap->labidx = soap->lablen;
if (soap_append_lab(soap, NULL, 0))
return soap->error;
}
else
break;
}
if (soap->labidx)
tp->size = soap->lablen;
else
{ tp->size = strlen(soap->labbuf) + 1;
if (tp->size < SOAP_LABLEN)
tp->size = SOAP_LABLEN;
}
if (!(tp->value = (char*)SOAP_MALLOC(soap, tp->size)))
return soap->error = SOAP_EOM;
strcpy(tp->value, soap->labbuf);
#else
size_t n;
if (soap->error != SOAP_EOM)
return soap->error;
soap->error = SOAP_OK;
if (soap_new_block(soap) == NULL)
return soap->error;
for (;;)
{ if (!(s = (char*)soap_push_block(soap, NULL, SOAP_BLKLEN)))
return soap->error;
if (soap_getattrval(soap, s, SOAP_BLKLEN, c))
{ if (soap->error != SOAP_EOM)
return soap->error;
soap->error = SOAP_OK;
}
else
break;
}
n = tp->size + soap->blist->size;
if (!(s = (char*)SOAP_MALLOC(soap, n)))
return soap->error = SOAP_EOM;
if (tp->value)
{ memcpy(s, tp->value, tp->size);
SOAP_FREE(soap, tp->value);
}
soap_save_block(soap, NULL, s + tp->size, 0);
tp->value = s;
tp->size = n;
#endif
}
do c = soap_get1(soap);
while (soap_blank(c));
tp->visible = 2; /* seen this attribute w/ value */
#ifdef WITH_DOM
if (att)
(*att)->data = soap_strdup(soap, tp->value);
#endif
}
else
tp->visible = 1; /* seen this attribute w/o value */
#ifdef WITH_DOM
if (att)
att = &(*att)->next;
#endif
if (t && tp->value)
{ if (soap_push_namespace(soap, t, tp->value) == NULL)
return soap->error;
}
}
#ifdef WITH_DOM
if (att)
{ soap->dom->nstr = soap_current_namespace(soap, soap->tag);
for (att = &soap->dom->atts; *att; att = &(*att)->next)
(*att)->nstr = soap_current_namespace(soap, (*att)->name);
}
#endif
if ((int)c == EOF)
return soap->error = SOAP_CHK_EOF;
if (!(soap->body = (c != '/')))
do c = soap_get1(soap);
while (soap_blank(c));
#ifdef WITH_DOM
if (soap->mode & SOAP_XML_DOM)
{ if (!soap->body && soap->dom->prnt)
soap->dom = soap->dom->prnt;
}
#endif
for (tp = soap->attributes; tp; tp = tp->next)
{ if (tp->visible && tp->value)
{
#ifndef WITH_NOIDREF
if (!strcmp(tp->name, "id"))
{ if ((soap->version > 0 && !(soap->mode & SOAP_XML_TREE))
|| (soap->mode & SOAP_XML_GRAPH))
{ *soap->id = '#';
strncpy(soap->id + 1, tp->value, sizeof(soap->id) - 2);
soap->id[sizeof(soap->id)-1] = '\0';
}
}
else if (!strcmp(tp->name, "href"))
{ if (soap->version == 1
|| (soap->mode & SOAP_XML_GRAPH)
|| (soap->mode & SOAP_ENC_MTOM)
|| (soap->mode & SOAP_ENC_DIME))
{ strncpy(soap->href, tp->value, sizeof(soap->href) - 1);
soap->href[sizeof(soap->href)-1] = '\0';
}
}
else
#endif
if (!soap_match_tag(soap, tp->name, "xsi:type"))
{ strncpy(soap->type, tp->value, sizeof(soap->type) - 1);
soap->type[sizeof(soap->type)-1] = '\0';
}
else if ((!soap_match_tag(soap, tp->name, "xsi:null")
|| !soap_match_tag(soap, tp->name, "xsi:nil"))
&& (!strcmp(tp->value, "1")
|| !strcmp(tp->value, "true")))
{ soap->null = 1;
}
else if (soap->version == 1)
{ if (!soap_match_tag(soap, tp->name, "SOAP-ENC:arrayType"))
{ s = soap_strrchr(tp->value, '[');
if (s && (size_t)(s - tp->value) < sizeof(soap->arrayType))
{ strncpy(soap->arrayType, tp->value, s - tp->value);
soap->arrayType[s - tp->value] = '\0';
strncpy(soap->arraySize, s, sizeof(soap->arraySize) - 1);
}
else
strncpy(soap->arrayType, tp->value, sizeof(soap->arrayType) - 1);
soap->arraySize[sizeof(soap->arrayType)-1] = '\0';
soap->arrayType[sizeof(soap->arrayType)-1] = '\0';
}
else if (!soap_match_tag(soap, tp->name, "SOAP-ENC:offset"))
strncpy(soap->arrayOffset, tp->value, sizeof(soap->arrayOffset));
else if (!soap_match_tag(soap, tp->name, "SOAP-ENC:position"))
soap->position = soap_getposition(tp->value, soap->positions);
else if (!soap_match_tag(soap, tp->name, "SOAP-ENC:root"))
soap->root = ((!strcmp(tp->value, "1") || !strcmp(tp->value, "true")));
else if (!soap_match_tag(soap, tp->name, "SOAP-ENV:mustUnderstand")
&& (!strcmp(tp->value, "1") || !strcmp(tp->value, "true")))
soap->mustUnderstand = 1;
else if (!soap_match_tag(soap, tp->name, "SOAP-ENV:actor"))
{ if ((!soap->actor || strcmp(soap->actor, tp->value))
&& strcmp(tp->value, "http://schemas.xmlsoap.org/soap/actor/next"))
soap->other = 1;
}
}
else if (soap->version == 2)
{
#ifndef WITH_NOIDREF
if (!strcmp(tp->name, "ref")
|| !soap_match_tag(soap, tp->name, "SOAP-ENC:ref"))
{ *soap->href = '#';
strncpy(soap->href + 1, tp->value, sizeof(soap->href) - 2);
soap->href[sizeof(soap->href)-1] = '\0';
}
else
#endif
if (!soap_match_tag(soap, tp->name, "SOAP-ENC:itemType"))
strncpy(soap->arrayType, tp->value, sizeof(soap->arrayType) - 1);
else if (!soap_match_tag(soap, tp->name, "SOAP-ENC:arraySize"))
strncpy(soap->arraySize, tp->value, sizeof(soap->arraySize) - 1);
else if (!soap_match_tag(soap, tp->name, "SOAP-ENV:mustUnderstand")
&& (!strcmp(tp->value, "1") || !strcmp(tp->value, "true")))
soap->mustUnderstand = 1;
else if (!soap_match_tag(soap, tp->name, "SOAP-ENV:role"))
{ if ((!soap->actor || strcmp(soap->actor, tp->value))
&& strcmp(tp->value, "http://www.w3.org/2003/05/soap-envelope/role/next"))
soap->other = 1;
}
}
else
{ if (!soap_match_tag(soap, tp->name, "wsdl:required") && !strcmp(tp->value, "true"))
soap->mustUnderstand = 1;
}
}
}
#ifdef WITH_DOM
if (soap->feltbegin)
return soap->error = soap->feltbegin(soap, soap->tag);
#endif
return soap->error = SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
void
SOAP_FMAC2
soap_retry(struct soap *soap)
{ soap->error = SOAP_OK;
soap_revert(soap);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
void
SOAP_FMAC2
soap_revert(struct soap *soap)
{ if (!soap->peeked)
{ soap->peeked = 1;
if (soap->body)
soap->level--;
}
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Reverting to last element '%s' (level=%u)\n", soap->tag, soap->level));
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_string_out(struct soap *soap, const char *s, int flag)
{ register const char *t;
register soap_wchar c;
register soap_wchar mask = (soap_wchar)0xFFFFFF80UL;
#ifdef WITH_DOM
if ((soap->mode & SOAP_XML_DOM) && soap->dom)
{ soap->dom->data = soap_strdup(soap, s);
return SOAP_OK;
}
#endif
if (flag == 2 || soap->mode & SOAP_C_UTFSTRING)
mask = 0;
t = s;
while ((c = *t++))
{ switch (c)
{
case 0x09:
if (flag)
{ if (soap_send_raw(soap, s, t - s - 1) || soap_send_raw(soap, "	", 5))
return soap->error;
s = t;
}
break;
case 0x0A:
if (flag || !(soap->mode & SOAP_XML_CANONICAL))
{ if (soap_send_raw(soap, s, t - s - 1) || soap_send_raw(soap, "
", 5))
return soap->error;
s = t;
}
break;
case 0x0D:
if (soap_send_raw(soap, s, t - s - 1) || soap_send_raw(soap, "
", 5))
return soap->error;
s = t;
break;
case '&':
if (soap_send_raw(soap, s, t - s - 1) || soap_send_raw(soap, "&", 5))
return soap->error;
s = t;
break;
case '<':
if (soap_send_raw(soap, s, t - s - 1) || soap_send_raw(soap, "<", 4))
return soap->error;
s = t;
break;
case '>':
if (!flag)
{ if (soap_send_raw(soap, s, t - s - 1) || soap_send_raw(soap, ">", 4))
return soap->error;
s = t;
}
break;
case '"':
if (flag)
{ if (soap_send_raw(soap, s, t - s - 1) || soap_send_raw(soap, """, 6))
return soap->error;
s = t;
}
break;
default:
#ifndef WITH_LEANER
#ifdef HAVE_MBTOWC
if (soap->mode & SOAP_C_MBSTRING)
{ wchar_t wc;
register int m = mbtowc(&wc, t - 1, MB_CUR_MAX);
if (m > 0 && !((soap_wchar)wc == c && m == 1 && c < 0x80))
{ if (soap_send_raw(soap, s, t - s - 1) || soap_pututf8(soap, (unsigned long)wc))
return soap->error;
s = t += m - 1;
continue;
}
}
#endif
#endif
#ifndef WITH_NOSTRINGTOUTF8
if ((c & mask) || !(c & 0xFFFFFFE0UL))
{ if (soap_send_raw(soap, s, t - s - 1) || soap_pututf8(soap, (unsigned char)c))
return soap->error;
s = t;
}
#endif
}
}
return soap_send_raw(soap, s, t - s - 1);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
char *
SOAP_FMAC2
soap_string_in(struct soap *soap, int flag, long minlen, long maxlen)
{ register char *s;
char *t = NULL;
register size_t i;
register long l = 0;
register int n = 0, f = 0, m = 0;
register soap_wchar c;
#if !defined(WITH_LEANER) && defined(HAVE_WCTOMB)
char buf[MB_LEN_MAX > 8 ? MB_LEN_MAX : 8];
#else
char buf[8];
#endif
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Reading string content, flag=%d\n", flag));
if (soap->peeked && *soap->tag)
{
#ifndef WITH_LEAN
struct soap_attribute *tp;
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "String content includes tag '%s' and attributes\n", soap->tag));
t = soap->tmpbuf;
*t = '<';
t[sizeof(soap->tmpbuf)-1] = '\0';
strncpy(t + 1, soap->tag, sizeof(soap->tmpbuf) - 2);
t += strlen(t);
for (tp = soap->attributes; tp; tp = tp->next)
{ if (tp->visible)
{ if (t >= soap->tmpbuf + sizeof(soap->tmpbuf) - 2)
break;
*t++ = ' ';
strcpy(t, tp->name);
t += strlen(t);
if (t >= soap->tmpbuf + sizeof(soap->tmpbuf) - 2)
break; /* too many or large attribute values */
if (tp->value)
{ *t++ = '=';
*t++ = '"';
strcpy(t, tp->value);
t += strlen(t);
*t++ = '"';
}
}
}
if (!soap->body)
*t++ = '/';
*t++ = '>';
*t = '\0';
t = soap->tmpbuf;
m = (int)strlen(soap->tmpbuf);
#endif
if (soap->body)
n = 1;
f = 1;
soap->peeked = 0;
}
#ifdef WITH_CDATA
if (!flag)
{ register int state = 0;
#ifdef WITH_FAST
soap->labidx = 0; /* use look-aside buffer */
#else
if (soap_new_block(soap) == NULL)
return NULL;
#endif
for (;;)
{
#ifdef WITH_FAST
register size_t k;
if (soap_append_lab(soap, NULL, 0)) /* allocate more space in look-aside buffer if necessary */
return NULL;
s = soap->labbuf + soap->labidx; /* space to populate */
k = soap->lablen - soap->labidx; /* number of bytes available */
soap->labidx = soap->lablen; /* claim this space */
#else
register size_t k = SOAP_BLKLEN;
if (!(s = (char*)soap_push_block(soap, NULL, k)))
return NULL;
#endif
for (i = 0; i < k; i++)
{ if (m > 0)
{ *s++ = *t++; /* copy multibyte characters */
m--;
continue;
}
c = soap_getchar(soap);
if ((int)c == EOF)
goto end;
if ((c >= 0x80 || c < SOAP_AP) && state != 1 && !(soap->mode & SOAP_ENC_LATIN))
{ if ((c & 0x7FFFFFFF) >= 0x80)
{ soap_unget(soap, c);
c = soap_getutf8(soap);
}
if ((c & 0x7FFFFFFF) >= 0x80 && (!flag || (soap->mode & SOAP_C_UTFSTRING)))
{ c &= 0x7FFFFFFF;
t = buf;
if (c < 0x0800)
*t++ = (char)(0xC0 | ((c >> 6) & 0x1F));
else
{ if (c < 0x010000)
*t++ = (char)(0xE0 | ((c >> 12) & 0x0F));
else
{ if (c < 0x200000)
*t++ = (char)(0xF0 | ((c >> 18) & 0x07));
else
{ if (c < 0x04000000)
*t++ = (char)(0xF8 | ((c >> 24) & 0x03));
else
{ *t++ = (char)(0xFC | ((c >> 30) & 0x01));
*t++ = (char)(0x80 | ((c >> 24) & 0x3F));
}
*t++ = (char)(0x80 | ((c >> 18) & 0x3F));
}
*t++ = (char)(0x80 | ((c >> 12) & 0x3F));
}
*t++ = (char)(0x80 | ((c >> 6) & 0x3F));
}
*t++ = (char)(0x80 | (c & 0x3F));
m = (int)(t - buf) - 1;
t = buf;
*s++ = *t++;
continue;
}
}
switch (state)
{ case 1:
if (c == ']')
state = 4;
*s++ = (char)c;
continue;
case 2:
if (c == '-')
state = 6;
*s++ = (char)c;
continue;
case 3:
if (c == '?')
state = 8;
*s++ = (char)c;
continue;
/* CDATA */
case 4:
if (c == ']')
state = 5;
else
state = 1;
*s++ = (char)c;
continue;
case 5:
if (c == '>')
state = 0;
else
state = 1;
*s++ = (char)c;
continue;
/* comment */
case 6:
if (c == '-')
state = 7;
else
state = 2;
*s++ = (char)c;
continue;
case 7:
if (c == '>')
state = 0;
else
state = 2;
*s++ = (char)c;
continue;
/* PI */
case 8:
if (c == '>')
state = 0;
else
state = 3;
*s++ = (char)c;
continue;
}
switch (c)
{
case SOAP_TT:
if (n == 0)
goto end;
n--;
*s++ = '<';
t = (char*)"/";
m = 1;
break;
case SOAP_LT:
if (f && n == 0)
goto end;
n++;
*s++ = '<';
break;
case SOAP_GT:
*s++ = '>';
break;
case SOAP_QT:
*s++ = '"';
break;
case SOAP_AP:
*s++ = '\'';
break;
case '/':
if (n > 0)
{ c = soap_getchar(soap);
if (c == '>')
n--;
soap_unget(soap, c);
}
*s++ = '/';
break;
case '<':
c = soap_getchar(soap);
if (c == '/')
{ if (n == 0)
{ c = SOAP_TT;
goto end;
}
n--;
}
else if (c == '!')
{ c = soap_getchar(soap);
if (c == '[')
{ do c = soap_getchar(soap);
while ((int)c != EOF && c != '[');
if ((int)c == EOF)
goto end;
t = (char*)"![CDATA[";
m = 8;
state = 1;
}
else if (c == '-')
{ if ((c = soap_getchar(soap)) == '-')
state = 2;
t = (char*)"!-";
m = 2;
soap_unget(soap, c);
}
else
{ t = (char*)"!";
m = 1;
soap_unget(soap, c);
}
*s++ = '<';
break;
}
else if (c == '?')
state = 3;
else if (f && n == 0)
{ soap_revget1(soap);
c = '<';
goto end;
}
else
n++;
soap_unget(soap, c);
*s++ = '<';
break;
case '>':
*s++ = '>';
break;
case '"':
*s++ = '"';
break;
default:
#ifndef WITH_LEANER
#ifdef HAVE_WCTOMB
if (soap->mode & SOAP_C_MBSTRING)
{ m = wctomb(buf, (wchar_t)(c & 0x7FFFFFFF));
if (m >= 1 && m <= (int)MB_CUR_MAX)
{ t = buf;
*s++ = *t++;
m--;
}
else
{ *s++ = SOAP_UNKNOWN_CHAR;
m = 0;
}
}
else
#endif
#endif
*s++ = (char)(c & 0xFF);
}
l++;
if (maxlen >= 0 && l > maxlen)
{ DBGLOG(TEST,SOAP_MESSAGE(fdebug, "String too long: maxlen=%ld\n", maxlen));
soap->error = SOAP_LENGTH;
return NULL;
}
}
}
}
#endif
#ifdef WITH_FAST
soap->labidx = 0; /* use look-aside buffer */
#else
if (soap_new_block(soap) == NULL)
return NULL;
#endif
for (;;)
{
#ifdef WITH_FAST
register size_t k;
if (soap_append_lab(soap, NULL, 0)) /* allocate more space in look-aside buffer if necessary */
return NULL;
s = soap->labbuf + soap->labidx; /* space to populate */
k = soap->lablen - soap->labidx; /* number of bytes available */
soap->labidx = soap->lablen; /* claim this space */
#else
register size_t k = SOAP_BLKLEN;
if (!(s = (char*)soap_push_block(soap, NULL, k)))
return NULL;
#endif
for (i = 0; i < k; i++)
{ if (m > 0)
{ *s++ = *t++; /* copy multibyte characters */
m--;
continue;
}
if (!flag)
c = soap_getchar(soap);
else if ((soap->mode & SOAP_C_UTFSTRING))
{ if (((c = soap_get(soap)) & 0x80000000) && c >= -0x7FFFFF80 && c < SOAP_AP)
{ c &= 0x7FFFFFFF;
t = buf;
if (c < 0x0800)
*t++ = (char)(0xC0 | ((c >> 6) & 0x1F));
else
{ if (c < 0x010000)
*t++ = (char)(0xE0 | ((c >> 12) & 0x0F));
else
{ if (c < 0x200000)
*t++ = (char)(0xF0 | ((c >> 18) & 0x07));
else
{ if (c < 0x04000000)
*t++ = (char)(0xF8 | ((c >> 24) & 0x03));
else
{ *t++ = (char)(0xFC | ((c >> 30) & 0x01));
*t++ = (char)(0x80 | ((c >> 24) & 0x3F));
}
*t++ = (char)(0x80 | ((c >> 18) & 0x3F));
}
*t++ = (char)(0x80 | ((c >> 12) & 0x3F));
}
*t++ = (char)(0x80 | ((c >> 6) & 0x3F));
}
*t++ = (char)(0x80 | (c & 0x3F));
m = (int)(t - buf) - 1;
t = buf;
*s++ = *t++;
continue;
}
}
else
c = soap_getutf8(soap);
switch (c)
{
case SOAP_TT:
if (n == 0)
goto end;
n--;
*s++ = '<';
t = (char*)"/";
m = 1;
break;
case SOAP_LT:
if (f && n == 0)
goto end;
n++;
*s++ = '<';
break;
case SOAP_GT:
*s++ = '>';
break;
case SOAP_QT:
*s++ = '"';
break;
case SOAP_AP:
*s++ = '\'';
break;
case '/':
if (n > 0)
{ c = soap_get(soap);
if (c == SOAP_GT)
n--;
soap_unget(soap, c);
}
*s++ = '/';
break;
case (soap_wchar)('<' | 0x80000000):
if (flag)
*s++ = '<';
else
{ *s++ = '&';
t = (char*)"lt;";
m = 3;
}
break;
case (soap_wchar)('>' | 0x80000000):
if (flag)
*s++ = '>';
else
{ *s++ = '&';
t = (char*)"gt;";
m = 3;
}
break;
case (soap_wchar)('&' | 0x80000000):
if (flag)
*s++ = '&';
else
{ *s++ = '&';
t = (char*)"amp;";
m = 4;
}
break;
case (soap_wchar)('"' | 0x80000000):
if (flag)
*s++ = '"';
else
{ *s++ = '&';
t = (char*)"quot;";
m = 5;
}
break;
case (soap_wchar)('\'' | 0x80000000):
if (flag)
*s++ = '\'';
else
{ *s++ = '&';
t = (char*)"apos;";
m = 5;
}
break;
default:
if ((int)c == EOF)
goto end;
#ifndef WITH_LEANER
#ifdef HAVE_WCTOMB
if (soap->mode & SOAP_C_MBSTRING)
{ m = wctomb(buf, (wchar_t)(c & 0x7FFFFFFF));
if (m >= 1 && m <= (int)MB_CUR_MAX)
{ t = buf;
*s++ = *t++;
m--;
}
else
{ *s++ = SOAP_UNKNOWN_CHAR;
m = 0;
}
}
else
#endif
#endif
*s++ = (char)(c & 0xFF);
}
l++;
if (maxlen >= 0 && l > maxlen)
{ DBGLOG(TEST,SOAP_MESSAGE(fdebug, "String too long: maxlen=%ld\n", maxlen));
soap->error = SOAP_LENGTH;
return NULL;
}
}
}
end:
soap_unget(soap, c);
*s = '\0';
#ifdef WITH_FAST
t = soap_strdup(soap, soap->labbuf);
#else
soap_size_block(soap, NULL, i+1);
t = soap_save_block(soap, NULL, 0);
#endif
if (l < minlen)
{ DBGLOG(TEST,SOAP_MESSAGE(fdebug, "String too short: %ld chars, minlen=%ld\n", l, minlen));
soap->error = SOAP_LENGTH;
return NULL;
}
#ifdef WITH_DOM
if ((soap->mode & SOAP_XML_DOM) && soap->dom)
{ if (flag == 3)
soap->dom->tail = t;
else
soap->dom->data = t;
}
#endif
if (flag == 2)
if (soap_s2QName(soap, t, &t, minlen, maxlen))
return NULL;
return t;
}
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_wstring_out(struct soap *soap, const wchar_t *s, int flag)
{ const char *t;
char tmp;
register soap_wchar c;
#ifdef WITH_DOM
if ((soap->mode & SOAP_XML_DOM) && soap->dom)
{ wchar_t *r = (wchar_t*)s;
int n = 1;
while (*r++)
n++;
soap->dom->wide = r = (wchar_t*)soap_malloc(soap, n * sizeof(wchar_t));
while (n--)
*r++ = *s++;
return SOAP_OK;
}
#endif
while ((c = *s++))
{ switch (c)
{
case 0x09:
if (flag)
t = "	";
else
t = "\t";
break;
case 0x0A:
if (flag || !(soap->mode & SOAP_XML_CANONICAL))
t = "
";
else
t = "\n";
break;
case 0x0D:
t = "
";
break;
case '&':
t = "&";
break;
case '<':
t = "<";
break;
case '>':
if (flag)
t = ">";
else
t = ">";
break;
case '"':
if (flag)
t = """;
else
t = "\"";
break;
default:
if (c >= 0x20 && c < 0x80)
{ tmp = (char)c;
if (soap_send_raw(soap, &tmp, 1))
return soap->error;
}
else
{ /* check for UTF16 encoding when wchar_t is too small to hold UCS */
if (sizeof(wchar_t) < 4 && (c & 0xFC00) == 0xD800)
{ register soap_wchar d = *s++;
if ((d & 0xFC00) == 0xDC00)
c = ((c - 0xD800) << 10) + (d - 0xDC00) + 0x10000;
else
c = 0xFFFD; /* Malformed */
}
if (soap_pututf8(soap, (unsigned long)c))
return soap->error;
}
continue;
}
if (soap_send(soap, t))
return soap->error;
}
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_2
SOAP_FMAC1
wchar_t *
SOAP_FMAC2
soap_wstring_in(struct soap *soap, int flag, long minlen, long maxlen)
{ wchar_t *s;
register int i, n = 0, f = 0;
register long l = 0;
register soap_wchar c;
char *t = NULL;
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Reading wide string content\n"));
if (soap->peeked)
{ if (*soap->tag)
{
#ifndef WITH_LEAN
struct soap_attribute *tp;
t = soap->tmpbuf;
*t = '<';
t[sizeof(soap->tmpbuf)-1] = '\0';
strncpy(t + 1, soap->tag, sizeof(soap->tmpbuf) - 2);
t += strlen(t);
for (tp = soap->attributes; tp; tp = tp->next)
{ if (tp->visible)
{ if (t >= soap->tmpbuf + sizeof(soap->tmpbuf) - 2)
break;
*t++ = ' ';
strcpy(t, tp->name);
t += strlen(t);
if (t >= soap->tmpbuf + sizeof(soap->tmpbuf) - 2)
break;
if (tp->value)
{ *t++ = '=';
*t++ = '"';
strcpy(t, tp->value);
t += strlen(t);
*t++ = '"';
}
}
}
if (!soap->body)
*t++ = '/';
*t++ = '>';
*t = '\0';
t = soap->tmpbuf;
#endif
if (soap->body)
n = 1;
f = 1;
soap->peeked = 0;
}
}
if (soap_new_block(soap) == NULL)
return NULL;
for (;;)
{ if (!(s = (wchar_t*)soap_push_block(soap, NULL, sizeof(wchar_t)*SOAP_BLKLEN)))
return NULL;
for (i = 0; i < SOAP_BLKLEN; i++)
{ if (t)
{ *s++ = (wchar_t)*t++;
if (!*t)
t = NULL;
continue;
}
c = soap_getutf8(soap);
switch (c)
{
case SOAP_TT:
if (n == 0)
goto end;
n--;
*s++ = '<';
soap_unget(soap, '/');
break;
case SOAP_LT:
if (f && n == 0)
goto end;
n++;
*s++ = '<';
break;
case SOAP_GT:
*s++ = '>';
break;
case SOAP_QT:
*s++ = '"';
break;
case SOAP_AP:
*s++ = '\'';
break;
case '/':
if (n > 0)
{ c = soap_getutf8(soap);
if (c == SOAP_GT)
n--;
soap_unget(soap, c);
}
*s++ = '/';
break;
case '<':
if (flag)
*s++ = (soap_wchar)'<';
else
{ *s++ = (soap_wchar)'&';
t = (char*)"lt;";
}
break;
case '>':
if (flag)
*s++ = (soap_wchar)'>';
else
{ *s++ = (soap_wchar)'&';
t = (char*)"gt;";
}
break;
case '"':
if (flag)
*s++ = (soap_wchar)'"';
else
{ *s++ = (soap_wchar)'&';
t = (char*)"quot;";
}
break;
default:
if ((int)c == EOF)
goto end;
/* use UTF16 encoding when wchar_t is too small to hold UCS */
if (sizeof(wchar_t) < 4 && c > 0xFFFF)
{ register soap_wchar c1, c2;
c1 = 0xD800 - (0x10000 >> 10) + (c >> 10);
c2 = 0xDC00 + (c & 0x3FF);
c = c1;
soap_unget(soap, c2);
}
*s++ = (wchar_t)c & 0x7FFFFFFF;
}
l++;
if (maxlen >= 0 && l > maxlen)
{ DBGLOG(TEST,SOAP_MESSAGE(fdebug, "String too long: maxlen=%ld\n", maxlen));
soap->error = SOAP_LENGTH;
return NULL;
}
}
}
end:
soap_unget(soap, c);
*s = '\0';
soap_size_block(soap, NULL, sizeof(wchar_t) * (i + 1));
if (l < minlen)
{ DBGLOG(TEST,SOAP_MESSAGE(fdebug, "String too short: %ld chars, minlen=%ld\n", l, minlen));
soap->error = SOAP_LENGTH;
return NULL;
}
s = (wchar_t*)soap_save_block(soap, NULL, NULL, 0);
#ifdef WITH_DOM
if ((soap->mode & SOAP_XML_DOM) && soap->dom)
soap->dom->wide = s;
#endif
return s;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_int2s(struct soap *soap, int n)
{ return soap_long2s(soap, (long)n);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_outint(struct soap *soap, const char *tag, int id, const int *p, const char *type, int n)
{ if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, p, n), type)
|| soap_string_out(soap, soap_long2s(soap, (long)*p), 0))
return soap->error;
return soap_element_end_out(soap, tag);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_s2int(struct soap *soap, const char *s, int *p)
{ if (s)
{ long n;
char *r;
#ifndef WITH_NOIO
#ifndef WITH_LEAN
soap_reset_errno;
#endif
#endif
n = soap_strtol(s, &r, 10);
if (s == r || *r
#ifndef WITH_LEAN
|| n != (int)n
#endif
#ifndef WITH_NOIO
#ifndef WITH_LEAN
|| soap_errno == SOAP_ERANGE
#endif
#endif
)
soap->error = SOAP_TYPE;
*p = (int)n;
}
return soap->error;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int *
SOAP_FMAC2
soap_inint(struct soap *soap, const char *tag, int *p, const char *type, int t)
{ if (soap_element_begin_in(soap, tag, 0, NULL))
return NULL;
#ifndef WITH_LEAN
if (*soap->type
&& soap_match_tag(soap, soap->type, type)
&& soap_match_tag(soap, soap->type, ":int")
&& soap_match_tag(soap, soap->type, ":short")
&& soap_match_tag(soap, soap->type, ":byte"))
{ soap->error = SOAP_TYPE;
soap_revert(soap);
return NULL;
}
#endif
p = (int*)soap_id_enter(soap, soap->id, p, t, sizeof(int), 0, NULL, NULL, NULL);
if (*soap->href)
p = (int*)soap_id_forward(soap, soap->href, p, 0, t, 0, sizeof(int), 0, NULL);
else if (p)
{ if (soap_s2int(soap, soap_value(soap), p))
return NULL;
}
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return p;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_long2s(struct soap *soap, long n)
{ sprintf(soap->tmpbuf, "%ld", n);
return soap->tmpbuf;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_outlong(struct soap *soap, const char *tag, int id, const long *p, const char *type, int n)
{ if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, p, n), type)
|| soap_string_out(soap, soap_long2s(soap, *p), 0))
return soap->error;
return soap_element_end_out(soap, tag);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_s2long(struct soap *soap, const char *s, long *p)
{ if (s)
{ char *r;
#ifndef WITH_NOIO
#ifndef WITH_LEAN
soap_reset_errno;
#endif
#endif
*p = soap_strtol(s, &r, 10);
if (s == r || *r
#ifndef WITH_NOIO
#ifndef WITH_LEAN
|| soap_errno == SOAP_ERANGE
#endif
#endif
)
soap->error = SOAP_TYPE;
}
return soap->error;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
long *
SOAP_FMAC2
soap_inlong(struct soap *soap, const char *tag, long *p, const char *type, int t)
{ if (soap_element_begin_in(soap, tag, 0, NULL))
return NULL;
#ifndef WITH_LEAN
if (*soap->type
&& soap_match_tag(soap, soap->type, type)
&& soap_match_tag(soap, soap->type, ":int")
&& soap_match_tag(soap, soap->type, ":short")
&& soap_match_tag(soap, soap->type, ":byte"))
{ soap->error = SOAP_TYPE;
soap_revert(soap);
return NULL;
}
#endif
p = (long*)soap_id_enter(soap, soap->id, p, t, sizeof(long), 0, NULL, NULL, NULL);
if (*soap->href)
p = (long*)soap_id_forward(soap, soap->href, p, 0, t, 0, sizeof(long), 0, NULL);
else if (p)
{ if (soap_s2long(soap, soap_value(soap), p))
return NULL;
}
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return p;
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_LONG642s(struct soap *soap, LONG64 n)
{ sprintf(soap->tmpbuf, SOAP_LONG_FORMAT, n);
return soap->tmpbuf;
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
int
SOAP_FMAC2
soap_outLONG64(struct soap *soap, const char *tag, int id, const LONG64 *p, const char *type, int n)
{ if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, p, n), type)
|| soap_string_out(soap, soap_LONG642s(soap, *p), 0))
return soap->error;
return soap_element_end_out(soap, tag);
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
int
SOAP_FMAC2
soap_s2LONG64(struct soap *soap, const char *s, LONG64 *p)
{ if (s)
{
#ifdef HAVE_STRTOLL
char *r;
#ifndef WITH_NOIO
#ifndef WITH_LEAN
soap_reset_errno;
#endif
#endif
*p = soap_strtoll(s, &r, 10);
if (s == r || *r
#ifndef WITH_NOIO
#ifndef WITH_LEAN
|| soap_errno == SOAP_ERANGE
#endif
#endif
)
#else
# ifdef HAVE_SSCANF
if (sscanf(s, SOAP_LONG_FORMAT, p) != 1)
# endif
#endif
soap->error = SOAP_TYPE;
}
return soap->error;
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
LONG64 *
SOAP_FMAC2
soap_inLONG64(struct soap *soap, const char *tag, LONG64 *p, const char *type, int t)
{ if (soap_element_begin_in(soap, tag, 0, NULL))
return NULL;
#ifndef WITH_LEAN
if (*soap->type
&& soap_match_tag(soap, soap->type, type)
&& soap_match_tag(soap, soap->type, ":integer")
&& soap_match_tag(soap, soap->type, ":positiveInteger")
&& soap_match_tag(soap, soap->type, ":negativeInteger")
&& soap_match_tag(soap, soap->type, ":nonPositiveInteger")
&& soap_match_tag(soap, soap->type, ":nonNegativeInteger")
&& soap_match_tag(soap, soap->type, ":long")
&& soap_match_tag(soap, soap->type, ":int")
&& soap_match_tag(soap, soap->type, ":short")
&& soap_match_tag(soap, soap->type, ":byte"))
{ soap->error = SOAP_TYPE;
soap_revert(soap);
return NULL;
}
#endif
p = (LONG64*)soap_id_enter(soap, soap->id, p, t, sizeof(LONG64), 0, NULL, NULL, NULL);
if (*soap->href)
p = (LONG64*)soap_id_forward(soap, soap->href, p, 0, t, 0, sizeof(LONG64), 0, NULL);
else if (p)
{ if (soap_s2LONG64(soap, soap_value(soap), p))
return NULL;
}
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return p;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_byte2s(struct soap *soap, char n)
{ return soap_long2s(soap, (long)n);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_outbyte(struct soap *soap, const char *tag, int id, const char *p, const char *type, int n)
{ if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, p, n), type)
|| soap_string_out(soap, soap_long2s(soap, (long)*p), 0))
return soap->error;
return soap_element_end_out(soap, tag);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_s2byte(struct soap *soap, const char *s, char *p)
{ if (s)
{ long n;
char *r;
n = soap_strtol(s, &r, 10);
if (s == r || *r || n < -128 || n > 127)
soap->error = SOAP_TYPE;
*p = (char)n;
}
return soap->error;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
char *
SOAP_FMAC2
soap_inbyte(struct soap *soap, const char *tag, char *p, const char *type, int t)
{ if (soap_element_begin_in(soap, tag, 0, NULL))
return NULL;
#ifndef WITH_LEAN
if (*soap->type
&& soap_match_tag(soap, soap->type, type)
&& soap_match_tag(soap, soap->type, ":byte"))
{ soap->error = SOAP_TYPE;
soap_revert(soap);
return NULL;
}
#endif
p = (char*)soap_id_enter(soap, soap->id, p, t, sizeof(char), 0, NULL, NULL, NULL);
if (*soap->href)
p = (char*)soap_id_forward(soap, soap->href, p, 0, t, 0, sizeof(char), 0, NULL);
else if (p)
{ if (soap_s2byte(soap, soap_value(soap), p))
return NULL;
}
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return p;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_short2s(struct soap *soap, short n)
{ return soap_long2s(soap, (long)n);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_outshort(struct soap *soap, const char *tag, int id, const short *p, const char *type, int n)
{ if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, p, n), type)
|| soap_string_out(soap, soap_long2s(soap, (long)*p), 0))
return soap->error;
return soap_element_end_out(soap, tag);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_s2short(struct soap *soap, const char *s, short *p)
{ if (s)
{ long n;
char *r;
n = soap_strtol(s, &r, 10);
if (s == r || *r || n < -32768 || n > 32767)
soap->error = SOAP_TYPE;
*p = (short)n;
}
return soap->error;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
short *
SOAP_FMAC2
soap_inshort(struct soap *soap, const char *tag, short *p, const char *type, int t)
{ if (soap_element_begin_in(soap, tag, 0, NULL))
return NULL;
#ifndef WITH_LEAN
if (*soap->type
&& soap_match_tag(soap, soap->type, type)
&& soap_match_tag(soap, soap->type, ":short")
&& soap_match_tag(soap, soap->type, ":byte"))
{ soap->error = SOAP_TYPE;
soap_revert(soap);
return NULL;
}
#endif
p = (short*)soap_id_enter(soap, soap->id, p, t, sizeof(short), 0, NULL, NULL, NULL);
if (*soap->href)
p = (short*)soap_id_forward(soap, soap->href, p, 0, t, 0, sizeof(short), 0, NULL);
else if (p)
{ if (soap_s2short(soap, soap_value(soap), p))
return NULL;
}
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return p;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_float2s(struct soap *soap, float n)
{ char *s;
if (soap_isnan((double)n))
return "NaN";
if (soap_ispinff(n))
return "INF";
if (soap_isninff(n))
return "-INF";
s = soap->tmpbuf;
#if defined(HAVE_SPRINTF_L)
# ifdef WIN32
_sprintf_s_l(s, _countof(soap->tmpbuf), soap->float_format, soap->c_locale, n);
# else
sprintf_l(s, soap->c_locale, soap->float_format, n);
# endif
#else
sprintf(s, soap->float_format, n);
s = strchr(s, ','); /* convert decimal comma to DP */
if (s)
*s = '.';
#endif
return soap->tmpbuf;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_outfloat(struct soap *soap, const char *tag, int id, const float *p, const char *type, int n)
{ if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, p, n), type)
|| soap_string_out(soap, soap_float2s(soap, *p), 0))
return soap->error;
return soap_element_end_out(soap, tag);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_s2float(struct soap *soap, const char *s, float *p)
{ if (s)
{ if (!*s)
return soap->error = SOAP_TYPE;
if (!soap_tag_cmp(s, "INF"))
*p = FLT_PINFTY;
else if (!soap_tag_cmp(s, "+INF"))
*p = FLT_PINFTY;
else if (!soap_tag_cmp(s, "-INF"))
*p = FLT_NINFTY;
else if (!soap_tag_cmp(s, "NaN"))
*p = FLT_NAN;
else
{
/* On some systems strtof requires -std=c99 or does not even link: so we try to use strtod first */
#if defined(HAVE_STRTOD_L)
char *r;
# ifdef WIN32
*p = (float)_strtod_l(s, &r, soap->c_locale);
# else
*p = (float)strtod_l(s, &r, soap->c_locale);
# endif
if (*r)
#elif defined(HAVE_STRTOD)
char *r;
*p = (float)strtod(s, &r);
if (*r)
#elif defined(HAVE_STRTOF_L)
char *r;
*p = strtof_l((char*)s, &r, soap->c_locale);
if (*r)
#elif defined(HAVE_STRTOF)
char *r;
*p = strtof((char*)s, &r);
if (*r)
#endif
{
#if defined(HAVE_SSCANF_L) && !defined(HAVE_STRTOF_L) && !defined(HAVE_STRTOD_L)
if (sscanf_l(s, soap->c_locale, "%g", p) != 1)
soap->error = SOAP_TYPE;
#elif defined(HAVE_SSCANF)
if (sscanf(s, "%g", p) != 1)
soap->error = SOAP_TYPE;
#else
soap->error = SOAP_TYPE;
#endif
}
}
}
return soap->error;
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
static int soap_isnumeric(struct soap *soap, const char *type)
{ if (soap_match_tag(soap, soap->type, type)
&& soap_match_tag(soap, soap->type, ":float")
&& soap_match_tag(soap, soap->type, ":double")
&& soap_match_tag(soap, soap->type, ":decimal")
&& soap_match_tag(soap, soap->type, ":integer")
&& soap_match_tag(soap, soap->type, ":positiveInteger")
&& soap_match_tag(soap, soap->type, ":negativeInteger")
&& soap_match_tag(soap, soap->type, ":nonPositiveInteger")
&& soap_match_tag(soap, soap->type, ":nonNegativeInteger")
&& soap_match_tag(soap, soap->type, ":long")
&& soap_match_tag(soap, soap->type, ":int")
&& soap_match_tag(soap, soap->type, ":short")
&& soap_match_tag(soap, soap->type, ":byte")
&& soap_match_tag(soap, soap->type, ":unsignedLong")
&& soap_match_tag(soap, soap->type, ":unsignedInt")
&& soap_match_tag(soap, soap->type, ":unsignedShort")
&& soap_match_tag(soap, soap->type, ":unsignedByte"))
{ soap->error = SOAP_TYPE;
soap_revert(soap);
return SOAP_ERR;
}
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
float *
SOAP_FMAC2
soap_infloat(struct soap *soap, const char *tag, float *p, const char *type, int t)
{ if (soap_element_begin_in(soap, tag, 0, NULL))
return NULL;
#ifndef WITH_LEAN
if (*soap->type != '\0' && soap_isnumeric(soap, type))
return NULL;
#endif
p = (float*)soap_id_enter(soap, soap->id, p, t, sizeof(float), 0, NULL, NULL, NULL);
if (*soap->href)
p = (float*)soap_id_forward(soap, soap->href, p, 0, t, 0, sizeof(float), 0, NULL);
else if (p)
{ if (soap_s2float(soap, soap_value(soap), p))
return NULL;
}
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return p;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_double2s(struct soap *soap, double n)
{ char *s;
if (soap_isnan(n))
return "NaN";
if (soap_ispinfd(n))
return "INF";
if (soap_isninfd(n))
return "-INF";
s = soap->tmpbuf;
#if defined(HAVE_SPRINTF_L)
# ifdef WIN32
_sprintf_s_l(s, _countof(soap->tmpbuf), soap->double_format, soap->c_locale, n);
# else
sprintf_l(s, soap->c_locale, soap->double_format, n);
# endif
#else
sprintf(s, soap->double_format, n);
s = strchr(s, ','); /* convert decimal comma to DP */
if (s)
*s = '.';
#endif
return soap->tmpbuf;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_outdouble(struct soap *soap, const char *tag, int id, const double *p, const char *type, int n)
{ if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, p, n), type)
|| soap_string_out(soap, soap_double2s(soap, *p), 0))
return soap->error;
return soap_element_end_out(soap, tag);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_s2double(struct soap *soap, const char *s, double *p)
{ if (s)
{ if (!*s)
return soap->error = SOAP_TYPE;
if (!soap_tag_cmp(s, "INF"))
*p = DBL_PINFTY;
else if (!soap_tag_cmp(s, "+INF"))
*p = DBL_PINFTY;
else if (!soap_tag_cmp(s, "-INF"))
*p = DBL_NINFTY;
else if (!soap_tag_cmp(s, "NaN"))
*p = DBL_NAN;
else
{
#if defined(HAVE_STRTOD_L)
char *r;
# ifdef WIN32
*p = _strtod_l(s, &r, soap->c_locale);
# else
*p = strtod_l(s, &r, soap->c_locale);
# endif
if (*r)
#elif defined(HAVE_STRTOD)
char *r;
*p = strtod(s, &r);
if (*r)
#endif
{
#if defined(HAVE_SSCANF_L) && !defined(HAVE_STRTOF_L) && !defined(HAVE_STRTOD_L)
if (sscanf_l(s, soap->c_locale, "%lg", p) != 1)
soap->error = SOAP_TYPE;
#elif defined(HAVE_SSCANF)
if (sscanf(s, "%lg", p) != 1)
soap->error = SOAP_TYPE;
#else
soap->error = SOAP_TYPE;
#endif
}
}
}
return soap->error;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
double *
SOAP_FMAC2
soap_indouble(struct soap *soap, const char *tag, double *p, const char *type, int t)
{ if (soap_element_begin_in(soap, tag, 0, NULL))
return NULL;
#ifndef WITH_LEAN
if (*soap->type != '\0' && soap_isnumeric(soap, type))
return NULL;
#endif
p = (double*)soap_id_enter(soap, soap->id, p, t, sizeof(double), 0, NULL, NULL, NULL);
if (*soap->href)
p = (double*)soap_id_forward(soap, soap->href, p, 0, t, 0, sizeof(double), 0, NULL);
else if (p)
{ if (soap_s2double(soap, soap_value(soap), p))
return NULL;
}
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return p;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_unsignedByte2s(struct soap *soap, unsigned char n)
{ return soap_unsignedLong2s(soap, (unsigned long)n);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_outunsignedByte(struct soap *soap, const char *tag, int id, const unsigned char *p, const char *type, int n)
{ if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, p, n), type)
|| soap_string_out(soap, soap_unsignedLong2s(soap, (unsigned long)*p), 0))
return soap->error;
return soap_element_end_out(soap, tag);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_s2unsignedByte(struct soap *soap, const char *s, unsigned char *p)
{ if (s)
{ unsigned long n;
char *r;
n = soap_strtoul(s, &r, 10);
if (s == r || *r || n > 255)
soap->error = SOAP_TYPE;
*p = (unsigned char)n;
}
return soap->error;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
unsigned char *
SOAP_FMAC2
soap_inunsignedByte(struct soap *soap, const char *tag, unsigned char *p, const char *type, int t)
{ if (soap_element_begin_in(soap, tag, 0, NULL))
return NULL;
#ifndef WITH_LEAN
if (*soap->type
&& soap_match_tag(soap, soap->type, type)
&& soap_match_tag(soap, soap->type, ":unsignedByte"))
{ soap->error = SOAP_TYPE;
soap_revert(soap);
return NULL;
}
#endif
p = (unsigned char*)soap_id_enter(soap, soap->id, p, t, sizeof(unsigned char), 0, NULL, NULL, NULL);
if (*soap->href)
p = (unsigned char*)soap_id_forward(soap, soap->href, p, 0, t, 0, sizeof(unsigned char), 0, NULL);
else if (p)
{ if (soap_s2unsignedByte(soap, soap_value(soap), p))
return NULL;
}
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return p;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_unsignedShort2s(struct soap *soap, unsigned short n)
{ return soap_unsignedLong2s(soap, (unsigned long)n);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_outunsignedShort(struct soap *soap, const char *tag, int id, const unsigned short *p, const char *type, int n)
{ if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, p, n), type)
|| soap_string_out(soap, soap_unsignedLong2s(soap, (unsigned long)*p), 0))
return soap->error;
return soap_element_end_out(soap, tag);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_s2unsignedShort(struct soap *soap, const char *s, unsigned short *p)
{ if (s)
{ unsigned long n;
char *r;
n = soap_strtoul(s, &r, 10);
if (s == r || *r || n > 65535)
soap->error = SOAP_TYPE;
*p = (unsigned short)n;
}
return soap->error;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
unsigned short *
SOAP_FMAC2
soap_inunsignedShort(struct soap *soap, const char *tag, unsigned short *p, const char *type, int t)
{ if (soap_element_begin_in(soap, tag, 0, NULL))
return NULL;
#ifndef WITH_LEAN
if (*soap->type
&& soap_match_tag(soap, soap->type, type)
&& soap_match_tag(soap, soap->type, ":unsignedShort")
&& soap_match_tag(soap, soap->type, ":unsignedByte"))
{ soap->error = SOAP_TYPE;
soap_revert(soap);
return NULL;
}
#endif
p = (unsigned short*)soap_id_enter(soap, soap->id, p, t, sizeof(unsigned short), 0, NULL, NULL, NULL);
if (*soap->href)
p = (unsigned short*)soap_id_forward(soap, soap->href, p, 0, t, 0, sizeof(unsigned short), 0, NULL);
else if (p)
{ if (soap_s2unsignedShort(soap, soap_value(soap), p))
return NULL;
}
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return p;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_unsignedInt2s(struct soap *soap, unsigned int n)
{ return soap_unsignedLong2s(soap, (unsigned long)n);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_outunsignedInt(struct soap *soap, const char *tag, int id, const unsigned int *p, const char *type, int n)
{ if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, p, n), type)
|| soap_string_out(soap, soap_unsignedLong2s(soap, (unsigned long)*p), 0))
return soap->error;
return soap_element_end_out(soap, tag);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_s2unsignedInt(struct soap *soap, const char *s, unsigned int *p)
{ if (s)
{ char *r;
#ifndef WITH_NOIO
#ifndef WITH_LEAN
soap_reset_errno;
#endif
#endif
*p = (unsigned int)soap_strtoul(s, &r, 10);
if ((s == r && (soap->mode & SOAP_XML_STRICT)) || *r
#ifndef WITH_NOIO
#ifndef WITH_LEAN
|| soap_errno == SOAP_ERANGE
#endif
#endif
)
soap->error = SOAP_TYPE;
}
return soap->error;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
unsigned int *
SOAP_FMAC2
soap_inunsignedInt(struct soap *soap, const char *tag, unsigned int *p, const char *type, int t)
{ if (soap_element_begin_in(soap, tag, 0, NULL))
return NULL;
#ifndef WITH_LEAN
if (*soap->type
&& soap_match_tag(soap, soap->type, type)
&& soap_match_tag(soap, soap->type, ":unsignedInt")
&& soap_match_tag(soap, soap->type, ":unsignedShort")
&& soap_match_tag(soap, soap->type, ":unsignedByte"))
{ soap->error = SOAP_TYPE;
soap_revert(soap);
return NULL;
}
#endif
p = (unsigned int*)soap_id_enter(soap, soap->id, p, t, sizeof(unsigned int), 0, NULL, NULL, NULL);
if (*soap->href)
p = (unsigned int*)soap_id_forward(soap, soap->href, p, 0, t, 0, sizeof(unsigned int), 0, NULL);
else if (p)
{ if (soap_s2unsignedInt(soap, soap_value(soap), p))
return NULL;
}
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return p;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_unsignedLong2s(struct soap *soap, unsigned long n)
{ sprintf(soap->tmpbuf, "%lu", n);
return soap->tmpbuf;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_outunsignedLong(struct soap *soap, const char *tag, int id, const unsigned long *p, const char *type, int n)
{ if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, p, n), type)
|| soap_string_out(soap, soap_unsignedLong2s(soap, *p), 0))
return soap->error;
return soap_element_end_out(soap, tag);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_s2unsignedLong(struct soap *soap, const char *s, unsigned long *p)
{ if (s)
{ char *r;
#ifndef WITH_NOIO
#ifndef WITH_LEAN
soap_reset_errno;
#endif
#endif
*p = soap_strtoul(s, &r, 10);
if ((s == r && (soap->mode & SOAP_XML_STRICT)) || *r
#ifndef WITH_NOIO
#ifndef WITH_LEAN
|| soap_errno == SOAP_ERANGE
#endif
#endif
)
soap->error = SOAP_TYPE;
}
return soap->error;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
unsigned long *
SOAP_FMAC2
soap_inunsignedLong(struct soap *soap, const char *tag, unsigned long *p, const char *type, int t)
{ if (soap_element_begin_in(soap, tag, 0, NULL))
return NULL;
#ifndef WITH_LEAN
if (*soap->type
&& soap_match_tag(soap, soap->type, type)
&& soap_match_tag(soap, soap->type, ":unsignedInt")
&& soap_match_tag(soap, soap->type, ":unsignedShort")
&& soap_match_tag(soap, soap->type, ":unsignedByte"))
{ soap->error = SOAP_TYPE;
soap_revert(soap);
return NULL;
}
#endif
p = (unsigned long*)soap_id_enter(soap, soap->id, p, t, sizeof(unsigned long), 0, NULL, NULL, NULL);
if (*soap->href)
p = (unsigned long*)soap_id_forward(soap, soap->href, p, 0, t, 0, sizeof(unsigned long), 0, NULL);
else if (p)
{ if (soap_s2unsignedLong(soap, soap_value(soap), p))
return NULL;
}
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return p;
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_ULONG642s(struct soap *soap, ULONG64 n)
{ sprintf(soap->tmpbuf, SOAP_ULONG_FORMAT, n);
return soap->tmpbuf;
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
int
SOAP_FMAC2
soap_outULONG64(struct soap *soap, const char *tag, int id, const ULONG64 *p, const char *type, int n)
{ if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, p, n), type)
|| soap_string_out(soap, soap_ULONG642s(soap, *p), 0))
return soap->error;
return soap_element_end_out(soap, tag);
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
int
SOAP_FMAC2
soap_s2ULONG64(struct soap *soap, const char *s, ULONG64 *p)
{ if (s)
{
#ifdef HAVE_STRTOULL
char *r;
#ifndef WITH_NOIO
#ifndef WITH_LEAN
soap_reset_errno;
#endif
#endif
*p = soap_strtoull(s, &r, 10);
if ((s == r && (soap->mode & SOAP_XML_STRICT)) || *r
#ifndef WITH_NOIO
#ifndef WITH_LEAN
|| soap_errno == SOAP_ERANGE
#endif
#endif
)
#else
#ifdef HAVE_SSCANF
if (sscanf(s, SOAP_ULONG_FORMAT, p) != 1)
#endif
#endif
soap->error = SOAP_TYPE;
}
return soap->error;
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
ULONG64 *
SOAP_FMAC2
soap_inULONG64(struct soap *soap, const char *tag, ULONG64 *p, const char *type, int t)
{ if (soap_element_begin_in(soap, tag, 0, NULL))
return NULL;
if (*soap->type
&& soap_match_tag(soap, soap->type, type)
&& soap_match_tag(soap, soap->type, ":positiveInteger")
&& soap_match_tag(soap, soap->type, ":nonNegativeInteger")
&& soap_match_tag(soap, soap->type, ":unsignedLong")
&& soap_match_tag(soap, soap->type, ":unsignedInt")
&& soap_match_tag(soap, soap->type, ":unsignedShort")
&& soap_match_tag(soap, soap->type, ":unsignedByte"))
{ soap->error = SOAP_TYPE;
soap_revert(soap);
return NULL;
}
p = (ULONG64*)soap_id_enter(soap, soap->id, p, t, sizeof(ULONG64), 0, NULL, NULL, NULL);
if (*soap->href)
p = (ULONG64*)soap_id_forward(soap, soap->href, p, 0, t, 0, sizeof(ULONG64), 0, NULL);
else if (p)
{ if (soap_s2ULONG64(soap, soap_value(soap), p))
return NULL;
}
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return p;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_s2string(struct soap *soap, const char *s, char **t, long minlen, long maxlen)
{ if (s)
{ long l = (long)strlen(s);
if ((maxlen >= 0 && l > maxlen) || l < minlen)
return soap->error = SOAP_LENGTH;
if (!(*t = soap_strdup(soap, s)))
return soap->error = SOAP_EOM;
if (!(soap->mode & (SOAP_ENC_LATIN | SOAP_C_UTFSTRING)))
{ char *r = *t;
/* remove non-ASCII chars */
for (s = *t; *s; s++)
if (!(*s & 0x80))
*r++ = *s;
*r = '\0';
}
}
return soap->error;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_s2QName(struct soap *soap, const char *s, char **t, long minlen, long maxlen)
{ if (s)
{ long l = (long)strlen(s);
if ((maxlen >= 0 && l > maxlen) || l < minlen)
return soap->error = SOAP_LENGTH;
soap->labidx = 0;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Normalized namespace(s) of QNames '%s'", s));
/* convert (by prefix normalize prefix) all QNames in s */
for (;;)
{ size_t n;
struct soap_nlist *np;
register const char *p;
/* skip blanks */
while (*s && soap_blank((soap_wchar)*s))
s++;
if (!*s)
break;
/* find next QName */
n = 1;
while (s[n] && !soap_blank((soap_wchar)s[n]))
n++;
np = soap->nlist;
/* if there is no namespace stack, or prefix is "#" or "xml" then copy string */
if (!np || *s == '#' || !strncmp(s, "xml:", 4))
{ soap_append_lab(soap, s, n);
}
else /* we normalize the QName by replacing its prefix */
{ const char *q;
for (p = s; *p && p < s + n; p++)
if (*p == ':')
break;
if (*p == ':')
{ size_t k = p - s;
while (np && (strncmp(np->id, s, k) || np->id[k]))
np = np->next;
p++;
}
else
{ while (np && *np->id)
np = np->next;
p = s;
}
/* replace prefix */
if (np)
{ if (np->index >= 0 && soap->local_namespaces && (q = soap->local_namespaces[np->index].id))
{ size_t k = strlen(q);
if (q[k-1] != '_')
soap_append_lab(soap, q, k);
else
{ soap_append_lab(soap, "\"", 1);
soap_append_lab(soap, soap->local_namespaces[np->index].ns, strlen(soap->local_namespaces[np->index].ns));
soap_append_lab(soap, "\"", 1);
}
}
else if (np->ns)
{ soap_append_lab(soap, "\"", 1);
soap_append_lab(soap, np->ns, strlen(np->ns));
soap_append_lab(soap, "\"", 1);
}
else
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "\nNamespace prefix of '%s' not defined (index=%d, URI=%s)\n", s, np->index, np->ns ? np->ns : SOAP_STR_EOS));
return soap->error = SOAP_NAMESPACE;
}
}
else if (s[n]) /* no namespace, part of string */
{ soap_append_lab(soap, s, n);
}
else /* no namespace: assume "" namespace */
{ soap_append_lab(soap, "\"\"", 2);
}
soap_append_lab(soap, ":", 1);
soap_append_lab(soap, p, n - (p-s));
}
/* advance to next and add spacing */
s += n;
if (*s)
soap_append_lab(soap, " ", 1);
}
soap_append_lab(soap, SOAP_STR_EOS, 1);
*t = soap_strdup(soap, soap->labbuf);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, " into '%s'\n", *t));
}
return soap->error;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_QName2s(struct soap *soap, const char *s)
{ const char *t = NULL;
if (s)
{ soap->labidx = 0;
for (;;)
{ size_t n;
/* skip blanks */
while (*s && soap_blank((soap_wchar)*s))
s++;
if (!*s)
break;
/* find next QName */
n = 1;
while (s[n] && !soap_blank((soap_wchar)s[n]))
n++;
/* normal prefix: pass string as is */
if (*s != '"')
{
#ifndef WITH_LEAN
if ((soap->mode & SOAP_XML_CANONICAL))
soap_utilize_ns(soap, s);
if ((soap->mode & SOAP_XML_DEFAULTNS))
{ const char *r = strchr(s, ':');
if (r && soap->nlist && !strncmp(soap->nlist->id, s, r-s) && !soap->nlist->id[r-s])
{ n -= r-s + 1;
s = r + 1;
}
}
#endif
soap_append_lab(soap, s, n);
}
else /* URL-based string prefix */
{ const char *q;
s++;
q = strchr(s, '"');
if (q)
{ struct Namespace *p = soap->local_namespaces;
if (p)
{ for (; p->id; p++)
{ if (p->ns)
if (!soap_tag_cmp(s, p->ns))
break;
if (p->in)
if (!soap_tag_cmp(s, p->in))
break;
}
}
/* URL is in the namespace table? */
if (p && p->id)
{ const char *r = p->id;
#ifndef WITH_LEAN
if ((soap->mode & SOAP_XML_DEFAULTNS) && soap->nlist && !strcmp(soap->nlist->id, r))
q++;
else
#endif
soap_append_lab(soap, r, strlen(r));
}
else /* not in namespace table: create xmlns binding */
{ char *r = soap_strdup(soap, s);
r[q-s] = '\0';
sprintf(soap->tmpbuf, "xmlns:_%d", soap->idnum++);
soap_set_attr(soap, soap->tmpbuf, r, 1);
soap_append_lab(soap, soap->tmpbuf + 6, strlen(soap->tmpbuf + 6));
}
soap_append_lab(soap, q + 1, n - (q-s) - 1);
}
}
/* advance to next and add spacing */
s += n;
if (*s)
soap_append_lab(soap, " ", 1);
}
soap_append_lab(soap, SOAP_STR_EOS, 1);
t = soap_strdup(soap, soap->labbuf);
}
return t;
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
int
SOAP_FMAC2
soap_s2wchar(struct soap *soap, const char *s, wchar_t **t, long minlen, long maxlen)
{ if (s)
{ long l;
wchar_t *r;
*t = r = (wchar_t*)soap_malloc(soap, sizeof(wchar_t) * (strlen(s) + 1));
if (!r)
return soap->error = SOAP_EOM;
if (soap->mode & SOAP_ENC_LATIN)
{ while (*s)
*r++ = (wchar_t)*s++;
}
else
{ /* Convert UTF8 to wchar */
while (*s)
{ register soap_wchar c, c1, c2, c3, c4;
c = (unsigned char)*s++;
if (c < 0x80)
*r++ = (wchar_t)c;
else
{ c1 = (soap_wchar)*s++ & 0x3F;
if (c < 0xE0)
*r++ = (wchar_t)(((soap_wchar)(c & 0x1F) << 6) | c1);
else
{ c2 = (soap_wchar)*s++ & 0x3F;
if (c < 0xF0)
*r++ = (wchar_t)(((soap_wchar)(c & 0x0F) << 12) | (c1 << 6) | c2);
else
{ c3 = (soap_wchar)*s++ & 0x3F;
if (c < 0xF8)
*r++ = (wchar_t)(((soap_wchar)(c & 0x07) << 18) | (c1 << 12) | (c2 << 6) | c3);
else
{ c4 = (soap_wchar)*s++ & 0x3F;
if (c < 0xFC)
*r++ = (wchar_t)(((soap_wchar)(c & 0x03) << 24) | (c1 << 18) | (c2 << 12) | (c3 << 6) | c4);
else
*r++ = (wchar_t)(((soap_wchar)(c & 0x01) << 30) | (c1 << 24) | (c2 << 18) | (c3 << 12) | (c4 << 6) | (soap_wchar)(*s++ & 0x3F));
}
}
}
}
}
}
*r = L'\0';
l = (long)(r - *t);
if ((maxlen >= 0 && l > maxlen) || l < minlen)
return soap->error = SOAP_LENGTH;
}
return soap->error;
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_wchar2s(struct soap *soap, const wchar_t *s)
{ register soap_wchar c;
register char *r, *t;
const wchar_t *q = s;
size_t n = 0;
while ((c = *q++))
{ if (c > 0 && c < 0x80)
n++;
else
n += 6;
}
r = t = (char*)soap_malloc(soap, n + 1);
if (r)
{ /* Convert wchar to UTF8 */
while ((c = *s++))
{ if (c > 0 && c < 0x80)
*t++ = (char)c;
else
{ if (c < 0x0800)
*t++ = (char)(0xC0 | ((c >> 6) & 0x1F));
else
{ if (c < 0x010000)
*t++ = (char)(0xE0 | ((c >> 12) & 0x0F));
else
{ if (c < 0x200000)
*t++ = (char)(0xF0 | ((c >> 18) & 0x07));
else
{ if (c < 0x04000000)
*t++ = (char)(0xF8 | ((c >> 24) & 0x03));
else
{ *t++ = (char)(0xFC | ((c >> 30) & 0x01));
*t++ = (char)(0x80 | ((c >> 24) & 0x3F));
}
*t++ = (char)(0x80 | ((c >> 18) & 0x3F));
}
*t++ = (char)(0x80 | ((c >> 12) & 0x3F));
}
*t++ = (char)(0x80 | ((c >> 6) & 0x3F));
}
*t++ = (char)(0x80 | (c & 0x3F));
}
}
*t = '\0';
}
return r;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_outstring(struct soap *soap, const char *tag, int id, char *const*p, const char *type, int n)
{ id = soap_element_id(soap, tag, id, *p, NULL, 0, type, n);
if (id < 0)
return soap->error;
if (!**p && (soap->mode & SOAP_C_NILSTRING))
return soap_element_null(soap, tag, id, type);
if (soap_element_begin_out(soap, tag, id, type)
|| soap_string_out(soap, *p, 0)
|| soap_element_end_out(soap, tag))
return soap->error;
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
char **
SOAP_FMAC2
soap_instring(struct soap *soap, const char *tag, char **p, const char *type, int t, int flag, long minlen, long maxlen)
{ (void)type;
if (soap_element_begin_in(soap, tag, 1, NULL))
{ if (!tag || *tag != '-' || soap->error != SOAP_NO_TAG)
return NULL;
soap->error = SOAP_OK;
}
if (!p)
{ if (!(p = (char**)soap_malloc(soap, sizeof(char*))))
return NULL;
}
if (soap->null)
*p = NULL;
else if (soap->body)
{ *p = soap_string_in(soap, flag, minlen, maxlen);
if (!*p || !(char*)soap_id_enter(soap, soap->id, *p, t, sizeof(char*), 0, NULL, NULL, NULL))
return NULL;
if (!**p && tag && *tag == '-')
{ soap->error = SOAP_NO_TAG;
return NULL;
}
}
else if (tag && *tag == '-')
{ soap->error = SOAP_NO_TAG;
return NULL;
}
else if (!*soap->href && minlen > 0)
{ soap->error = SOAP_LENGTH;
return NULL;
}
else
*p = soap_strdup(soap, SOAP_STR_EOS);
if (*soap->href)
p = (char**)soap_id_lookup(soap, soap->href, (void**)p, t, sizeof(char**), 0);
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return p;
}
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_outwstring(struct soap *soap, const char *tag, int id, wchar_t *const*p, const char *type, int n)
{ id = soap_element_id(soap, tag, id, *p, NULL, 0, type, n);
if (id < 0)
return soap->error;
if (!**p && (soap->mode & SOAP_C_NILSTRING))
return soap_element_null(soap, tag, id, type);
if (soap_element_begin_out(soap, tag, id, type)
|| soap_wstring_out(soap, *p, 0)
|| soap_element_end_out(soap, tag))
return soap->error;
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_2
SOAP_FMAC1
wchar_t **
SOAP_FMAC2
soap_inwstring(struct soap *soap, const char *tag, wchar_t **p, const char *type, int t, long minlen, long maxlen)
{ (void)type;
if (soap_element_begin_in(soap, tag, 1, NULL))
{ if (!tag || *tag != '-' || soap->error != SOAP_NO_TAG)
return NULL;
soap->error = SOAP_OK;
}
if (!p)
{ if (!(p = (wchar_t**)soap_malloc(soap, sizeof(wchar_t*))))
return NULL;
}
if (soap->body)
{ *p = soap_wstring_in(soap, 1, minlen, maxlen);
if (!*p || !(wchar_t*)soap_id_enter(soap, soap->id, *p, t, sizeof(wchar_t*), 0, NULL, NULL, NULL))
return NULL;
if (!**p && tag && *tag == '-')
{ soap->error = SOAP_NO_TAG;
return NULL;
}
}
else if (tag && *tag == '-')
{ soap->error = SOAP_NO_TAG;
return NULL;
}
else if (soap->null)
*p = NULL;
else
*p = soap_wstrdup(soap, (wchar_t*)SOAP_STR_EOS);
if (*soap->href)
p = (wchar_t**)soap_id_lookup(soap, soap->href, (void**)p, t, sizeof(wchar_t**), 0);
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return p;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
time_t
SOAP_FMAC2
soap_timegm(struct tm *T)
{
#if defined(HAVE_TIMEGM)
return timegm(T);
#else
time_t t, g, z;
struct tm tm;
t = mktime(T);
if (t == (time_t)-1)
return (time_t)-1;
#ifdef HAVE_GMTIME_R
gmtime_r(&t, &tm);
#else
tm = *gmtime(&t);
#endif
tm.tm_isdst = 0;
g = mktime(&tm);
if (g == (time_t)-1)
return (time_t)-1;
z = g - t;
return t - z;
#endif
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_dateTime2s(struct soap *soap, time_t n)
{ struct tm T, *pT = &T;
#if defined(HAVE_GMTIME_R)
if (gmtime_r(&n, pT))
strftime(soap->tmpbuf, sizeof(soap->tmpbuf), "%Y-%m-%dT%H:%M:%SZ", pT);
#elif defined(HAVE_GMTIME)
if ((pT = gmtime(&n)))
strftime(soap->tmpbuf, sizeof(soap->tmpbuf), "%Y-%m-%dT%H:%M:%SZ", pT);
#elif defined(HAVE_GETTIMEOFDAY)
struct timezone tz;
memset((void*)&tz, 0, sizeof(tz));
#if defined(HAVE_LOCALTIME_R)
if (localtime_r(&n, pT))
{ struct timeval tv;
gettimeofday(&tv, &tz);
strftime(soap->tmpbuf, sizeof(soap->tmpbuf), "%Y-%m-%dT%H:%M:%S", pT);
sprintf(soap->tmpbuf + strlen(soap->tmpbuf), "%+03d:%02d", -tz.tz_minuteswest/60+(pT->tm_isdst!=0), abs(tz.tz_minuteswest)%60);
}
#else
if ((pT = localtime(&n)))
{ struct timeval tv;
gettimeofday(&tv, &tz);
strftime(soap->tmpbuf, sizeof(soap->tmpbuf), "%Y-%m-%dT%H:%M:%S", pT);
sprintf(soap->tmpbuf + strlen(soap->tmpbuf), "%+03d:%02d", -tz.tz_minuteswest/60+(pT->tm_isdst!=0), abs(tz.tz_minuteswest)%60);
}
#endif
#elif defined(HAVE_FTIME)
struct timeb t;
memset((void*)&t, 0, sizeof(t));
#if defined(HAVE_LOCALTIME_R)
if (localtime_r(&n, pT))
{
#ifdef __BORLANDC__
::ftime(&t);
#else
ftime(&t);
#endif
strftime(soap->tmpbuf, sizeof(soap->tmpbuf), "%Y-%m-%dT%H:%M:%S", pT);
sprintf(soap->tmpbuf + strlen(soap->tmpbuf), "%+03d:%02d", -t.timezone/60+(pT->tm_isdst!=0), abs(t.timezone)%60);
}
#else
if ((pT = localtime(&n)))
{
#ifdef __BORLANDC__
::ftime(&t);
#else
ftime(&t);
#endif
strftime(soap->tmpbuf, sizeof(soap->tmpbuf), "%Y-%m-%dT%H:%M:%S", pT);
sprintf(soap->tmpbuf + strlen(soap->tmpbuf), "%+03d:%02d", -t.timezone/60+(pT->tm_isdst!=0), abs(t.timezone)%60);
}
#endif
#elif defined(HAVE_LOCALTIME_R)
if (localtime_r(&n, pT))
strftime(soap->tmpbuf, sizeof(soap->tmpbuf), "%Y-%m-%dT%H:%M:%S", pT);
#else
if ((pT = localtime(&n)))
strftime(soap->tmpbuf, sizeof(soap->tmpbuf), "%Y-%m-%dT%H:%M:%S", pT);
#endif
else
strcpy(soap->tmpbuf, "1969-12-31T23:59:59Z");
return soap->tmpbuf;
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
int
SOAP_FMAC2
soap_outdateTime(struct soap *soap, const char *tag, int id, const time_t *p, const char *type, int n)
{ if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, p, n), type)
|| soap_string_out(soap, soap_dateTime2s(soap, *p), 0))
return soap->error;
return soap_element_end_out(soap, tag);
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
int
SOAP_FMAC2
soap_s2dateTime(struct soap *soap, const char *s, time_t *p)
{ if (s)
{ char zone[32];
struct tm T;
const char *t;
*zone = '\0';
memset((void*)&T, 0, sizeof(T));
if (strchr(s, '-'))
t = "%d-%d-%dT%d:%d:%d%31s";
else if (strchr(s, ':'))
t = "%4d%2d%2dT%d:%d:%d%31s";
else /* parse non-XSD-standard alternative ISO 8601 format */
t = "%4d%2d%2dT%2d%2d%2d%31s";
if (sscanf(s, t, &T.tm_year, &T.tm_mon, &T.tm_mday, &T.tm_hour, &T.tm_min, &T.tm_sec, zone) < 6)
return soap->error = SOAP_TYPE;
if (T.tm_year == 1)
T.tm_year = 70;
else
T.tm_year -= 1900;
T.tm_mon--;
if (*zone == '.')
{ for (s = zone + 1; *s; s++)
if (*s < '0' || *s > '9')
break;
}
else
s = zone;
if (*s)
{
#ifndef WITH_NOZONE
if (*s == '+' || *s == '-')
{ int h = 0, m = 0;
if (s[3] == ':')
{ /* +hh:mm */
sscanf(s, "%d:%d", &h, &m);
if (h < 0)
m = -m;
}
else /* +hhmm */
{ m = (int)soap_strtol(s, NULL, 10);
h = m / 100;
m = m % 100;
}
T.tm_min -= m;
T.tm_hour -= h;
/* put hour and min in range */
T.tm_hour += T.tm_min / 60;
T.tm_min %= 60;
if (T.tm_min < 0)
{ T.tm_min += 60;
T.tm_hour--;
}
T.tm_mday += T.tm_hour / 24;
T.tm_hour %= 24;
if (T.tm_hour < 0)
{ T.tm_hour += 24;
T.tm_mday--;
}
/* note: day of the month may be out of range, timegm() handles it */
}
#endif
*p = soap_timegm(&T);
}
else /* no UTC or timezone, so assume we got a localtime */
{ T.tm_isdst = -1;
*p = mktime(&T);
}
}
return soap->error;
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
time_t *
SOAP_FMAC2
soap_indateTime(struct soap *soap, const char *tag, time_t *p, const char *type, int t)
{ if (soap_element_begin_in(soap, tag, 0, NULL))
return NULL;
if (*soap->type
&& soap_match_tag(soap, soap->type, type)
&& soap_match_tag(soap, soap->type, ":dateTime"))
{ soap->error = SOAP_TYPE;
soap_revert(soap);
return NULL;
}
p = (time_t*)soap_id_enter(soap, soap->id, p, t, sizeof(time_t), 0, NULL, NULL, NULL);
if (*soap->href)
p = (time_t*)soap_id_forward(soap, soap->href, p, 0, t, 0, sizeof(time_t), 0, NULL);
else if (p)
{ if (soap_s2dateTime(soap, soap_value(soap), p))
return NULL;
}
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return p;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_outliteral(struct soap *soap, const char *tag, char *const*p, const char *type)
{ int i;
const char *t = NULL;
if (tag && *tag != '-')
{ if (soap->local_namespaces && (t = strchr(tag, ':')))
{ strncpy(soap->tmpbuf, tag, t-tag);
soap->tmpbuf[t-tag] = '\0';
for (i = 0; soap->local_namespaces[i].id; i++)
if (!strcmp(soap->tmpbuf, soap->local_namespaces[i].id))
break;
t++;
if (soap_element(soap, t, 0, type)
|| soap_attribute(soap, "xmlns", soap->local_namespaces[i].ns ? soap->local_namespaces[i].ns : SOAP_STR_EOS)
|| soap_element_start_end_out(soap, NULL))
return soap->error;
}
else
{ t = tag;
if (soap_element_begin_out(soap, t, 0, type))
return soap->error;
}
}
if (p && *p)
{ if (soap_send(soap, *p))
return soap->error;
}
if (t)
return soap_element_end_out(soap, t);
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
char **
SOAP_FMAC2
soap_inliteral(struct soap *soap, const char *tag, char **p)
{ if (soap_element_begin_in(soap, tag, 1, NULL))
{ if (soap->error != SOAP_NO_TAG || soap_unget(soap, soap_get(soap)) == SOAP_TT)
return NULL;
soap->error = SOAP_OK;
}
if (!p)
{ if (!(p = (char**)soap_malloc(soap, sizeof(char*))))
return NULL;
}
if (soap->body || (tag && *tag == '-'))
{ *p = soap_string_in(soap, 0, -1, -1);
if (!*p)
return NULL;
if (!**p && tag && *tag == '-')
{ soap->error = SOAP_NO_TAG;
return NULL;
}
}
else if (soap->null)
*p = NULL;
else
*p = soap_strdup(soap, SOAP_STR_EOS);
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return p;
}
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_outwliteral(struct soap *soap, const char *tag, wchar_t *const*p, const char *type)
{ int i;
const char *t = NULL;
if (tag && *tag != '-')
{ if (soap->local_namespaces && (t = strchr(tag, ':')))
{ strncpy(soap->tmpbuf, tag, t-tag);
soap->tmpbuf[t-tag] = '\0';
for (i = 0; soap->local_namespaces[i].id; i++)
if (!strcmp(soap->tmpbuf, soap->local_namespaces[i].id))
break;
t++;
if (soap_element(soap, t, 0, type)
|| soap_attribute(soap, "xmlns", soap->local_namespaces[i].ns ? soap->local_namespaces[i].ns : SOAP_STR_EOS)
|| soap_element_start_end_out(soap, NULL))
return soap->error;
}
else
{ t = tag;
if (soap_element_begin_out(soap, t, 0, type))
return soap->error;
}
if (soap_send(soap, soap->tmpbuf))
return soap->error;
}
if (p)
{ wchar_t c;
const wchar_t *s = *p;
while ((c = *s++))
{ if (soap_pututf8(soap, (unsigned long)c))
return soap->error;
}
}
if (t)
return soap_element_end_out(soap, t);
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_2
SOAP_FMAC1
wchar_t **
SOAP_FMAC2
soap_inwliteral(struct soap *soap, const char *tag, wchar_t **p)
{ if (soap_element_begin_in(soap, tag, 1, NULL))
{ if (soap->error != SOAP_NO_TAG || soap_unget(soap, soap_get(soap)) == SOAP_TT)
return NULL;
soap->error = SOAP_OK;
}
if (!p)
{ if (!(p = (wchar_t**)soap_malloc(soap, sizeof(wchar_t*))))
return NULL;
}
if (soap->body)
{ *p = soap_wstring_in(soap, 0, -1, -1);
if (!*p)
return NULL;
if (!**p && tag && *tag == '-')
{ soap->error = SOAP_NO_TAG;
return NULL;
}
}
else if (tag && *tag == '-')
{ soap->error = SOAP_NO_TAG;
return NULL;
}
else if (soap->null)
*p = NULL;
else
*p = soap_wstrdup(soap, (wchar_t*)SOAP_STR_EOS);
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return p;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
const char *
SOAP_FMAC2
soap_value(struct soap *soap)
{ register size_t i;
register soap_wchar c = 0;
register char *s = soap->tmpbuf;
if (!soap->body)
return SOAP_STR_EOS;
do c = soap_get(soap);
while (soap_blank(c));
for (i = 0; i < sizeof(soap->tmpbuf) - 1; i++)
{ if (c == SOAP_TT || c == SOAP_LT || (int)c == EOF)
break;
*s++ = (char)c;
c = soap_get(soap);
}
for (s--; i > 0; i--, s--)
{ if (!soap_blank((soap_wchar)*s))
break;
}
s[1] = '\0';
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Element content value='%s'\n", soap->tmpbuf));
if (c == SOAP_TT || c == SOAP_LT || (int)c == EOF)
soap_unget(soap, c);
else if (soap->mode & SOAP_XML_STRICT)
{ soap->error = SOAP_LENGTH;
return NULL;
}
#ifdef WITH_DOM
if ((soap->mode & SOAP_XML_DOM) && soap->dom)
soap->dom->data = soap_strdup(soap, soap->tmpbuf);
#endif
return soap->tmpbuf; /* return non-null pointer */
}
#endif
/******************************************************************************/
#if !defined(WITH_LEANER) || !defined(WITH_NOHTTP)
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_getline(struct soap *soap, char *s, int len)
{ int i = len;
soap_wchar c = 0;
for (;;)
{ while (--i > 0)
{ c = soap_getchar(soap);
if (c == '\r' || c == '\n')
break;
if ((int)c == EOF)
return soap->error = SOAP_CHK_EOF;
*s++ = (char)c;
}
if (c != '\n')
c = soap_getchar(soap); /* got \r or something else, now get \n */
if (c == '\n')
{ *s = '\0';
if (i+1 == len) /* empty line: end of HTTP/MIME header */
break;
c = soap_get0(soap);
if (c != ' ' && c != '\t') /* HTTP line continuation? */
break;
}
else if ((int)c == EOF)
return soap->error = SOAP_CHK_EOF;
if (i < 0)
return soap->error = SOAP_HDR;
}
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_1
static size_t
soap_count_attachments(struct soap *soap)
{
#ifndef WITH_LEANER
register struct soap_multipart *content;
register size_t count = soap->count;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Calculating the message size with attachments, current count=%lu\n", (unsigned long)count));
if ((soap->mode & SOAP_ENC_DIME) && !(soap->mode & SOAP_ENC_MTOM))
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Calculating the size of DIME attachments\n"));
for (content = soap->dime.first; content; content = content->next)
{ count += 12 + ((content->size+3)&(~3));
if (content->id)
count += ((strlen(content->id)+3)&(~3));
if (content->type)
count += ((strlen(content->type)+3)&(~3));
if (content->options)
count += ((((unsigned char)content->options[2] << 8) | ((unsigned char)content->options[3]))+7)&(~3);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Size of DIME attachment content is %lu bytes\n", (unsigned long)content->size));
}
}
if ((soap->mode & SOAP_ENC_MIME) && soap->mime.boundary)
{ register size_t n = strlen(soap->mime.boundary);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Calculating the size of MIME attachments\n"));
for (content = soap->mime.first; content; content = content->next)
{ register const char *s;
/* count \r\n--boundary\r\n */
count += 6 + n;
/* count Content-Type: ...\r\n */
if (content->type)
count += 16 + strlen(content->type);
/* count Content-Transfer-Encoding: ...\r\n */
s = soap_code_str(mime_codes, content->encoding);
if (s)
count += 29 + strlen(s);
/* count Content-ID: ...\r\n */
if (content->id)
count += 14 + strlen(content->id);
/* count Content-Location: ...\r\n */
if (content->location)
count += 20 + strlen(content->location);
/* count Content-Description: ...\r\n */
if (content->description)
count += 23 + strlen(content->description);
/* count \r\n...content */
count += 2 + content->size;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Size of MIME attachment content is %lu bytes\n", (unsigned long)content->size));
}
/* count \r\n--boundary-- */
count += 6 + n;
}
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "New count is %lu bytes\n", (unsigned long)count));
return count;
#else
return soap->count;
#endif
}
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
static int
soap_putdimefield(struct soap *soap, const char *s, size_t n)
{ if (soap_send_raw(soap, s, n))
return soap->error;
return soap_send_raw(soap, SOAP_STR_PADDING, -(long)n&3);
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
char *
SOAP_FMAC2
soap_dime_option(struct soap *soap, unsigned short optype, const char *option)
{ size_t n;
char *s = NULL;
if (option)
{ n = strlen(option);
s = (char*)soap_malloc(soap, n + 5);
if (s)
{ s[0] = (char)(optype >> 8);
s[1] = (char)(optype & 0xFF);
s[2] = (char)(n >> 8);
s[3] = (char)(n & 0xFF);
strcpy(s + 4, option);
}
}
return s;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_putdimehdr(struct soap *soap)
{ unsigned char tmp[12];
size_t optlen = 0, idlen = 0, typelen = 0;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Put DIME header id='%s'\n", soap->dime.id ? soap->dime.id : SOAP_STR_EOS));
if (soap->dime.options)
optlen = (((unsigned char)soap->dime.options[2] << 8) | ((unsigned char)soap->dime.options[3])) + 4;
if (soap->dime.id)
{ idlen = strlen(soap->dime.id);
if (idlen > 0x0000FFFF)
idlen = 0x0000FFFF;
}
if (soap->dime.type)
{ typelen = strlen(soap->dime.type);
if (typelen > 0x0000FFFF)
typelen = 0x0000FFFF;
}
tmp[0] = SOAP_DIME_VERSION | (soap->dime.flags & 0x7);
tmp[1] = soap->dime.flags & 0xF0;
tmp[2] = (char)(optlen >> 8);
tmp[3] = (char)(optlen & 0xFF);
tmp[4] = (char)(idlen >> 8);
tmp[5] = (char)(idlen & 0xFF);
tmp[6] = (char)(typelen >> 8);
tmp[7] = (char)(typelen & 0xFF);
tmp[8] = (char)(soap->dime.size >> 24);
tmp[9] = (char)((soap->dime.size >> 16) & 0xFF);
tmp[10] = (char)((soap->dime.size >> 8) & 0xFF);
tmp[11] = (char)(soap->dime.size & 0xFF);
if (soap_send_raw(soap, (char*)tmp, 12)
|| soap_putdimefield(soap, soap->dime.options, optlen)
|| soap_putdimefield(soap, soap->dime.id, idlen)
|| soap_putdimefield(soap, soap->dime.type, typelen))
return soap->error;
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_putdime(struct soap *soap)
{ struct soap_multipart *content;
if (!(soap->mode & SOAP_ENC_DIME))
return SOAP_OK;
for (content = soap->dime.first; content; content = content->next)
{ void *handle;
soap->dime.size = content->size;
soap->dime.id = content->id;
soap->dime.type = content->type;
soap->dime.options = content->options;
soap->dime.flags = SOAP_DIME_VERSION | SOAP_DIME_MEDIA;
if (soap->fdimereadopen && ((handle = soap->fdimereadopen(soap, (void*)content->ptr, content->id, content->type, content->options)) || soap->error))
{ size_t size = content->size;
if (!handle)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "fdimereadopen failed\n"));
return soap->error;
}
if (!size && ((soap->mode & SOAP_ENC_XML) || (soap->mode & SOAP_IO) == SOAP_IO_CHUNK || (soap->mode & SOAP_IO) == SOAP_IO_STORE))
{ size_t chunksize = sizeof(soap->tmpbuf);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Chunked streaming DIME\n"));
do
{ size = soap->fdimeread(soap, handle, soap->tmpbuf, chunksize);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "fdimeread returned %lu bytes\n", (unsigned long)size));
if (size < chunksize)
{ soap->dime.flags &= ~SOAP_DIME_CF;
if (!content->next)
soap->dime.flags |= SOAP_DIME_ME;
}
else
soap->dime.flags |= SOAP_DIME_CF;
soap->dime.size = size;
if (soap_putdimehdr(soap)
|| soap_putdimefield(soap, soap->tmpbuf, size))
break;
if (soap->dime.id)
{ soap->dime.flags &= ~(SOAP_DIME_MB | SOAP_DIME_MEDIA);
soap->dime.id = NULL;
soap->dime.type = NULL;
soap->dime.options = NULL;
}
} while (size >= chunksize);
}
else
{ if (!content->next)
soap->dime.flags |= SOAP_DIME_ME;
if (soap_putdimehdr(soap))
return soap->error;
do
{ size_t bufsize;
if (size < sizeof(soap->tmpbuf))
bufsize = size;
else
bufsize = sizeof(soap->tmpbuf);
if (!(bufsize = soap->fdimeread(soap, handle, soap->tmpbuf, bufsize)))
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "fdimeread failed: insufficient data (%lu bytes remaining from %lu bytes)\n", (unsigned long)size, (unsigned long)content->size));
soap->error = SOAP_CHK_EOF;
break;
}
if (soap_send_raw(soap, soap->tmpbuf, bufsize))
break;
size -= bufsize;
} while (size);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "fdimereadclose\n"));
soap_send_raw(soap, SOAP_STR_PADDING, -(long)soap->dime.size&3);
}
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "fdimereadclose\n"));
if (soap->fdimereadclose)
soap->fdimereadclose(soap, handle);
}
else
{ if (!content->next)
soap->dime.flags |= SOAP_DIME_ME;
if (soap_putdimehdr(soap)
|| soap_putdimefield(soap, (char*)content->ptr, content->size))
return soap->error;
}
}
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
static char *
soap_getdimefield(struct soap *soap, size_t n)
{ register soap_wchar c;
register size_t i;
register char *s;
register char *p = NULL;
if (n)
{ p = (char*)soap_malloc(soap, n + 1);
if (p)
{ s = p;
for (i = n; i > 0; i--)
{ if ((int)(c = soap_get1(soap)) == EOF)
{ soap->error = SOAP_CHK_EOF;
return NULL;
}
*s++ = (char)c;
}
*s = '\0';
if ((soap->error = soap_move(soap, -(long)n&3)))
return NULL;
}
else
soap->error = SOAP_EOM;
}
return p;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_getdimehdr(struct soap *soap)
{ register soap_wchar c;
register char *s;
register int i;
unsigned char tmp[12];
size_t optlen, idlen, typelen;
if (!(soap->mode & SOAP_ENC_DIME))
return soap->error = SOAP_DIME_END;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Get DIME header\n"));
if (soap->dime.buflen || soap->dime.chunksize)
{ if (soap_move(soap, (long)(soap->dime.size - soap_tell(soap))))
return soap->error = SOAP_CHK_EOF;
soap_unget(soap, soap_getchar(soap)); /* skip padding and get hdr */
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "... From chunked\n"));
return SOAP_OK;
}
s = (char*)tmp;
for (i = 12; i > 0; i--)
{ if ((int)(c = soap_getchar(soap)) == EOF)
return soap->error = SOAP_CHK_EOF;
*s++ = (char)c;
}
if ((tmp[0] & 0xF8) != SOAP_DIME_VERSION)
return soap->error = SOAP_DIME_MISMATCH;
soap->dime.flags = (tmp[0] & 0x7) | (tmp[1] & 0xF0);
optlen = (tmp[2] << 8) | tmp[3];
idlen = (tmp[4] << 8) | tmp[5];
typelen = (tmp[6] << 8) | tmp[7];
soap->dime.size = (tmp[8] << 24) | (tmp[9] << 16) | (tmp[10] << 8) | tmp[11];
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "DIME size=%lu flags=0x%X\n", (unsigned long)soap->dime.size, soap->dime.flags));
if (!(soap->dime.options = soap_getdimefield(soap, optlen)) && soap->error)
return soap->error;
if (!(soap->dime.id = soap_getdimefield(soap, idlen)) && soap->error)
return soap->error;
if (!(soap->dime.type = soap_getdimefield(soap, typelen)) && soap->error)
return soap->error;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "DIME id=%s, type=%s, options=%s\n", soap->dime.id ? soap->dime.id : SOAP_STR_EOS, soap->dime.type ? soap->dime.type : "", soap->dime.options ? soap->dime.options+4 : SOAP_STR_EOS));
if (soap->dime.flags & SOAP_DIME_ME)
soap->mode &= ~SOAP_ENC_DIME;
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_getdime(struct soap *soap)
{ while (soap->dime.flags & SOAP_DIME_CF)
{ if (soap_getdimehdr(soap))
return soap->error;
if (soap_move(soap, (long)soap->dime.size))
return soap->error = SOAP_EOF;
}
if (soap_move(soap, (long)(((soap->dime.size+3)&(~3))-soap_tell(soap))))
return soap->error = SOAP_EOF;
for (;;)
{ register struct soap_multipart *content;
if (soap_getdimehdr(soap))
break;
if (soap->fdimewriteopen && ((soap->dime.ptr = (char*)soap->fdimewriteopen(soap, soap->dime.id, soap->dime.type, soap->dime.options)) || soap->error))
{ const char *id, *type, *options;
size_t size, n;
if (!soap->dime.ptr)
return soap->error;
id = soap->dime.id;
type = soap->dime.type;
options = soap->dime.options;
for (;;)
{ size = soap->dime.size;
for (;;)
{ n = soap->buflen - soap->bufidx;
if (size < n)
n = size;
if ((soap->error = soap->fdimewrite(soap, (void*)soap->dime.ptr, soap->buf + soap->bufidx, n)))
break;
size -= n;
if (!size)
{ soap->bufidx += n;
break;
}
if (soap_recv(soap))
{ soap->error = SOAP_EOF;
goto end;
}
}
if (soap_move(soap, -(long)soap->dime.size&3))
{ soap->error = SOAP_EOF;
break;
}
if (!(soap->dime.flags & SOAP_DIME_CF))
break;
if (soap_getdimehdr(soap))
break;
}
end:
if (soap->fdimewriteclose)
soap->fdimewriteclose(soap, (void*)soap->dime.ptr);
soap->dime.size = 0;
soap->dime.id = id;
soap->dime.type = type;
soap->dime.options = options;
}
else if (soap->dime.flags & SOAP_DIME_CF)
{ const char *id, *type, *options;
id = soap->dime.id;
type = soap->dime.type;
options = soap->dime.options;
if (soap_new_block(soap) == NULL)
return SOAP_EOM;
for (;;)
{ register soap_wchar c;
register size_t i;
register char *s;
s = (char*)soap_push_block(soap, NULL, soap->dime.size);
if (!s)
return soap->error = SOAP_EOM;
for (i = soap->dime.size; i > 0; i--)
{ if ((int)(c = soap_get1(soap)) == EOF)
return soap->error = SOAP_EOF;
*s++ = (char)c;
}
if (soap_move(soap, -(long)soap->dime.size&3))
return soap->error = SOAP_EOF;
if (!(soap->dime.flags & SOAP_DIME_CF))
break;
if (soap_getdimehdr(soap))
return soap->error;
}
soap->dime.size = soap->blist->size++; /* allocate one more for '\0' */
if (!(soap->dime.ptr = soap_save_block(soap, NULL, NULL, 0)))
return soap->error;
soap->dime.ptr[soap->dime.size] = '\0'; /* force 0-terminated */
soap->dime.id = id;
soap->dime.type = type;
soap->dime.options = options;
}
else
soap->dime.ptr = soap_getdimefield(soap, soap->dime.size);
content = soap_new_multipart(soap, &soap->dime.first, &soap->dime.last, soap->dime.ptr, soap->dime.size);
if (!content)
return soap->error = SOAP_EOM;
content->id = soap->dime.id;
content->type = soap->dime.type;
content->options = soap->dime.options;
if (soap->error)
return soap->error;
soap_resolve_attachment(soap, content);
}
if (soap->error != SOAP_DIME_END)
return soap->error;
return soap->error = SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_getmimehdr(struct soap *soap)
{ struct soap_multipart *content;
do
{ if (soap_getline(soap, soap->msgbuf, sizeof(soap->msgbuf)))
return soap->error;
}
while (!*soap->msgbuf);
if (soap->msgbuf[0] == '-' && soap->msgbuf[1] == '-')
{ char *s = soap->msgbuf + strlen(soap->msgbuf) - 1;
/* remove white space */
while (soap_blank((soap_wchar)*s))
s--;
s[1] = '\0';
if (soap->mime.boundary)
{ if (strcmp(soap->msgbuf + 2, soap->mime.boundary))
return soap->error = SOAP_MIME_ERROR;
}
else
soap->mime.boundary = soap_strdup(soap, soap->msgbuf + 2);
if (soap_getline(soap, soap->msgbuf, sizeof(soap->msgbuf)))
return soap->error;
}
if (soap_set_mime_attachment(soap, NULL, 0, SOAP_MIME_NONE, NULL, NULL, NULL, NULL))
return soap->error = SOAP_EOM;
content = soap->mime.last;
for (;;)
{ register char *key = soap->msgbuf;
register char *val;
if (!*key)
break;
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "MIME header: %s\n", key));
val = strchr(soap->msgbuf, ':');
if (val)
{ *val = '\0';
do val++;
while (*val && *val <= 32);
if (!soap_tag_cmp(key, "Content-ID"))
content->id = soap_strdup(soap, val);
else if (!soap_tag_cmp(key, "Content-Location"))
content->location = soap_strdup(soap, val);
else if (!soap_tag_cmp(key, "Content-Disposition"))
content->id = soap_strdup(soap, soap_get_header_attribute(soap, val, "name"));
else if (!soap_tag_cmp(key, "Content-Type"))
content->type = soap_strdup(soap, val);
else if (!soap_tag_cmp(key, "Content-Description"))
content->description = soap_strdup(soap, val);
else if (!soap_tag_cmp(key, "Content-Transfer-Encoding"))
content->encoding = (enum soap_mime_encoding)soap_code_int(mime_codes, val, (long)SOAP_MIME_NONE);
}
if (soap_getline(soap, key, sizeof(soap->msgbuf)))
return soap->error;
}
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_getmime(struct soap *soap)
{ while (soap_get_mime_attachment(soap, NULL))
;
return soap->error;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_post_check_mime_attachments(struct soap *soap)
{ soap->imode |= SOAP_MIME_POSTCHECK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_check_mime_attachments(struct soap *soap)
{ if (soap->mode & SOAP_MIME_POSTCHECK)
return soap_get_mime_attachment(soap, NULL) != NULL;
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
struct soap_multipart *
SOAP_FMAC2
soap_get_mime_attachment(struct soap *soap, void *handle)
{ register soap_wchar c = 0;
register size_t i, m = 0;
register char *s, *t = NULL;
register struct soap_multipart *content;
register short flag = 0;
if (!(soap->mode & SOAP_ENC_MIME))
return NULL;
content = soap->mime.last;
if (!content)
{ if (soap_getmimehdr(soap))
return NULL;
content = soap->mime.last;
}
else if (content != soap->mime.first)
{ if (soap->fmimewriteopen && ((content->ptr = (char*)soap->fmimewriteopen(soap, (void*)handle, content->id, content->type, content->description, content->encoding)) || soap->error))
{ if (!content->ptr)
return NULL;
}
}
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Parsing MIME content id=%s type=%s\n", content->id ? content->id : SOAP_STR_EOS, content->type ? content->type : SOAP_STR_EOS));
if (!content->ptr && soap_new_block(soap) == NULL)
{ soap->error = SOAP_EOM;
return NULL;
}
for (;;)
{ if (content->ptr)
s = soap->tmpbuf;
else if (!(s = (char*)soap_push_block(soap, NULL, sizeof(soap->tmpbuf))))
{ soap->error = SOAP_EOM;
return NULL;
}
for (i = 0; i < sizeof(soap->tmpbuf); i++)
{ if (m > 0)
{ *s++ = *t++;
m--;
}
else
{ if (!flag)
{ c = soap_get1(soap);
if ((int)c == EOF)
{ if (content->ptr && soap->fmimewriteclose)
soap->fmimewriteclose(soap, (void*)content->ptr);
soap->error = SOAP_CHK_EOF;
return NULL;
}
}
if (flag || c == '\r')
{ t = soap->msgbuf;
memset(t, 0, sizeof(soap->msgbuf));
strcpy(t, "\n--");
if (soap->mime.boundary)
strncat(t, soap->mime.boundary, sizeof(soap->msgbuf)-4);
do c = soap_getchar(soap);
while (c == *t++);
if ((int)c == EOF)
{ if (content->ptr && soap->fmimewriteclose)
soap->fmimewriteclose(soap, (void*)content->ptr);
soap->error = SOAP_CHK_EOF;
return NULL;
}
if (!*--t)
goto end;
*t = (char)c;
flag = (c == '\r');
m = t - soap->msgbuf + 1 - flag;
t = soap->msgbuf;
c = '\r';
}
*s++ = (char)c;
}
}
if (content->ptr && soap->fmimewrite)
{ if ((soap->error = soap->fmimewrite(soap, (void*)content->ptr, soap->tmpbuf, i)))
break;
}
}
end:
*s = '\0'; /* force 0-terminated */
if (content->ptr)
{ if (!soap->error && soap->fmimewrite)
soap->error = soap->fmimewrite(soap, (void*)content->ptr, soap->tmpbuf, i);
if (soap->fmimewriteclose)
soap->fmimewriteclose(soap, (void*)content->ptr);
if (soap->error)
return NULL;
}
else
{ content->size = soap_size_block(soap, NULL, i+1)-1;
content->ptr = soap_save_block(soap, NULL, NULL, 0);
}
soap_resolve_attachment(soap, content);
if (c == '-' && soap_getchar(soap) == '-')
{ soap->mode &= ~SOAP_ENC_MIME;
if ((soap->mode & SOAP_MIME_POSTCHECK) && soap_end_recv(soap))
{ if (soap->keep_alive < 0)
soap->keep_alive = 0;
soap_closesock(soap);
return NULL;
}
}
else
{ while (c != '\r' && (int)c != EOF && soap_blank(c))
c = soap_getchar(soap);
if (c != '\r' || soap_getchar(soap) != '\n')
{ soap->error = SOAP_MIME_ERROR;
return NULL;
}
if (soap_getmimehdr(soap))
return NULL;
}
return content;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_match_cid(struct soap *soap, const char *s, const char *t)
{ register size_t n;
if (!s)
return 1;
if (!strcmp(s, t))
return 0;
if (!strncmp(s, "cid:", 4))
s += 4;
n = strlen(t);
if (*t == '<')
{ t++;
n -= 2;
}
if (!strncmp(s, t, n) && !s[n])
return 0;
soap_decode(soap->tmpbuf, sizeof(soap->tmpbuf), s, SOAP_STR_EOS);
if (!strncmp(soap->tmpbuf, t, n) && !soap->tmpbuf[n])
return 0;
return 1;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
static void
soap_resolve_attachment(struct soap *soap, struct soap_multipart *content)
{ if (content->id)
{ register struct soap_xlist **xp = &soap->xlist;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Resolving attachment data for id=%s\n", content->id));
while (*xp)
{ register struct soap_xlist *xq = *xp;
if (!soap_match_cid(soap, xq->id, content->id))
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Found matching attachment %s for content id=%s\n", xq->id, content->id));
*xp = xq->next;
*xq->ptr = (unsigned char*)content->ptr;
*xq->size = (int)content->size;
*xq->type = (char*)content->type;
if (content->options)
*xq->options = (char*)content->options;
else
*xq->options = (char*)content->description;
SOAP_FREE(soap, xq);
}
else
xp = &(*xp)->next;
}
}
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_putmimehdr(struct soap *soap, struct soap_multipart *content)
{ const char *s;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "MIME attachment type=%s\n", content->type ? content->type : SOAP_STR_EOS));
if (soap_send3(soap, "\r\n--", soap->mime.boundary, "\r\n"))
return soap->error;
if (content->type && soap_send3(soap, "Content-Type: ", content->type, "\r\n"))
return soap->error;
s = soap_code_str(mime_codes, content->encoding);
if (s && soap_send3(soap, "Content-Transfer-Encoding: ", s, "\r\n"))
return soap->error;
if (content->id && soap_send3(soap, "Content-ID: ", content->id, "\r\n"))
return soap->error;
if (content->location && soap_send3(soap, "Content-Location: ", content->location, "\r\n"))
return soap->error;
if (content->description && soap_send3(soap, "Content-Description: ", content->description, "\r\n"))
return soap->error;
return soap_send_raw(soap, "\r\n", 2);
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_putmime(struct soap *soap)
{ struct soap_multipart *content;
if (!(soap->mode & SOAP_ENC_MIME) || !soap->mime.boundary)
return SOAP_OK;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Sending MIME attachments\n"));
for (content = soap->mime.first; content; content = content->next)
{ void *handle;
if (soap->fmimereadopen && ((handle = soap->fmimereadopen(soap, (void*)content->ptr, content->id, content->type, content->description)) || soap->error))
{ size_t size = content->size;
if (!handle)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "fmimereadopen failed\n"));
return soap->error;
}
if (soap_putmimehdr(soap, content))
return soap->error;
if (!size)
{ if ((soap->mode & SOAP_ENC_XML) || (soap->mode & SOAP_IO) == SOAP_IO_CHUNK || (soap->mode & SOAP_IO) == SOAP_IO_STORE)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Chunked streaming MIME\n"));
do
{ size = soap->fmimeread(soap, handle, soap->tmpbuf, sizeof(soap->tmpbuf));
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "fmimeread returned %lu bytes\n", (unsigned long)size));
if (soap_send_raw(soap, soap->tmpbuf, size))
break;
} while (size);
}
else
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Error: cannot chunk streaming MIME (no HTTP chunking)\n"));
}
}
else
{ do
{ size_t bufsize;
if (size < sizeof(soap->tmpbuf))
bufsize = size;
else
bufsize = sizeof(soap->tmpbuf);
if (!(bufsize = soap->fmimeread(soap, handle, soap->tmpbuf, bufsize)))
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "fmimeread failed: insufficient data (%lu bytes remaining from %lu bytes)\n", (unsigned long)size, (unsigned long)content->size));
soap->error = SOAP_EOF;
break;
}
if (soap_send_raw(soap, soap->tmpbuf, bufsize))
break;
size -= bufsize;
} while (size);
}
if (soap->fmimereadclose)
soap->fmimereadclose(soap, handle);
}
else
{ if (soap_putmimehdr(soap, content)
|| soap_send_raw(soap, content->ptr, content->size))
return soap->error;
}
}
return soap_send3(soap, "\r\n--", soap->mime.boundary, "--");
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_set_dime(struct soap *soap)
{ soap->omode |= SOAP_ENC_DIME;
soap->dime.first = NULL;
soap->dime.last = NULL;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_set_mime(struct soap *soap, const char *boundary, const char *start)
{ soap->omode |= SOAP_ENC_MIME;
soap->mime.first = NULL;
soap->mime.last = NULL;
soap->mime.boundary = soap_strdup(soap, boundary);
soap->mime.start = soap_strdup(soap, start);
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_clr_dime(struct soap *soap)
{ soap->omode &= ~SOAP_ENC_DIME;
soap->dime.first = NULL;
soap->dime.last = NULL;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_clr_mime(struct soap *soap)
{ soap->omode &= ~SOAP_ENC_MIME;
soap->mime.first = NULL;
soap->mime.last = NULL;
soap->mime.boundary = NULL;
soap->mime.start = NULL;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
static struct soap_multipart*
soap_new_multipart(struct soap *soap, struct soap_multipart **first, struct soap_multipart **last, char *ptr, size_t size)
{ struct soap_multipart *content;
content = (struct soap_multipart*)soap_malloc(soap, sizeof(struct soap_multipart));
if (content)
{ content->next = NULL;
content->ptr = ptr;
content->size = size;
content->id = NULL;
content->type = NULL;
content->options = NULL;
content->encoding = SOAP_MIME_NONE;
content->location = NULL;
content->description = NULL;
if (!*first)
*first = content;
if (*last)
(*last)->next = content;
*last = content;
}
return content;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_set_dime_attachment(struct soap *soap, char *ptr, size_t size, const char *type, const char *id, unsigned short optype, const char *option)
{ struct soap_multipart *content = soap_new_multipart(soap, &soap->dime.first, &soap->dime.last, ptr, size);
if (!content)
return SOAP_EOM;
content->id = soap_strdup(soap, id);
content->type = soap_strdup(soap, type);
content->options = soap_dime_option(soap, optype, option);
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_set_mime_attachment(struct soap *soap, char *ptr, size_t size, enum soap_mime_encoding encoding, const char *type, const char *id, const char *location, const char *description)
{ struct soap_multipart *content = soap_new_multipart(soap, &soap->mime.first, &soap->mime.last, ptr, size);
if (!content)
return SOAP_EOM;
content->id = soap_strdup(soap, id);
content->type = soap_strdup(soap, type);
content->encoding = encoding;
content->location = soap_strdup(soap, location);
content->description = soap_strdup(soap, description);
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
SOAP_FMAC1
struct soap_multipart*
SOAP_FMAC2
soap_next_multipart(struct soap_multipart *content)
{ if (content)
return content->next;
return NULL;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
static void
soap_select_mime_boundary(struct soap *soap)
{ while (!soap->mime.boundary || soap_valid_mime_boundary(soap))
{ register char *s = soap->mime.boundary;
register size_t n = 0;
if (s)
n = strlen(s);
if (n < 16)
{ n = 64;
s = soap->mime.boundary = (char*)soap_malloc(soap, n + 1);
if (!s)
return;
}
strcpy(s, "==");
s += 2;
n -= 4;
while (n)
{ *s++ = soap_base64o[soap_random & 0x3F];
n--;
}
strcpy(s, "==");
}
if (!soap->mime.start)
soap->mime.start = "<SOAP-ENV:Envelope>";
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEANER
#ifndef PALM_1
static int
soap_valid_mime_boundary(struct soap *soap)
{ register struct soap_multipart *content;
register size_t k;
if (soap->fmimeread)
return SOAP_OK;
k = strlen(soap->mime.boundary);
for (content = soap->mime.first; content; content = content->next)
{ if (content->ptr && content->size >= k)
{ register const char *p = (const char*)content->ptr;
register size_t i;
for (i = 0; i < content->size - k; i++, p++)
{ if (!strncmp(p, soap->mime.boundary, k))
return SOAP_ERR;
}
}
}
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifdef WITH_GZIP
#ifndef PALM_1
static int
soap_getgziphdr(struct soap *soap)
{ int i;
soap_wchar c = 0, f = 0;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Get gzip header\n"));
for (i = 0; i < 9; i++)
{ if ((int)(c = soap_get1(soap) == EOF))
return soap->error = SOAP_ZLIB_ERROR;
if (i == 1 && c == 8)
soap->z_dict = 0;
if (i == 2)
f = c;
}
if (f & 0x04) /* FEXTRA */
{ for (i = soap_get1(soap) | (soap_get1(soap) << 8); i; i--)
{ if ((int)soap_get1(soap) == EOF)
return soap->error = SOAP_ZLIB_ERROR;
}
}
if (f & 0x08) /* skip FNAME */
{ do
c = soap_get1(soap);
while (c && (int)c != EOF);
}
if ((int)c != EOF && (f & 0x10)) /* skip FCOMMENT */
{ do
c = soap_get1(soap);
while (c && (int)c != EOF);
}
if ((int)c != EOF && (f & 0x02)) /* skip FHCRC (CRC32 is used) */
{ if ((int)(c = soap_get1(soap)) != EOF)
c = soap_get1(soap);
}
if ((int)c == EOF)
return soap->error = SOAP_ZLIB_ERROR;
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_begin_serve(struct soap *soap)
{
#ifdef WITH_FASTCGI
if (FCGI_Accept() < 0)
{ soap->error = SOAP_EOF;
return soap_send_fault(soap);
}
#endif
soap_begin(soap);
if (soap_begin_recv(soap)
|| soap_envelope_begin_in(soap)
|| soap_recv_header(soap)
|| soap_body_begin_in(soap))
{ if (soap->error < SOAP_STOP)
{
#ifdef WITH_FASTCGI
soap_send_fault(soap);
#else
return soap_send_fault(soap);
#endif
}
return soap_closesock(soap);
}
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_begin_recv(struct soap *soap)
{ register soap_wchar c;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Initializing for input\n"));
soap->error = SOAP_OK;
soap->filterstop = SOAP_OK;
soap_free_temp(soap);
soap_set_local_namespaces(soap);
soap->version = 0; /* don't assume we're parsing SOAP content by default */
#ifndef WITH_NOIDREF
soap_free_iht(soap);
#endif
if ((soap->imode & SOAP_IO) == SOAP_IO_CHUNK)
soap->omode |= SOAP_IO_CHUNK;
soap->imode &= ~(SOAP_IO | SOAP_ENC_MIME);
soap->mode = soap->imode;
if (!soap->keep_alive)
{ soap->buflen = 0;
soap->bufidx = 0;
}
if (!(soap->mode & SOAP_IO_KEEPALIVE))
soap->keep_alive = 0;
soap->ahead = 0;
soap->peeked = 0;
soap->level = 0;
soap->part = SOAP_BEGIN;
soap->alloced = 0;
soap->body = 1;
soap->count = 0;
soap->length = 0;
soap->cdata = 0;
*soap->endpoint = '\0';
soap->action = NULL;
soap->header = NULL;
soap->fault = NULL;
soap->status = 0;
soap->fform = NULL;
#ifndef WITH_LEANER
soap->dom = NULL;
soap->dime.chunksize = 0;
soap->dime.buflen = 0;
soap->dime.list = NULL;
soap->dime.first = NULL;
soap->dime.last = NULL;
soap->mime.list = NULL;
soap->mime.first = NULL;
soap->mime.last = NULL;
soap->mime.boundary = NULL;
soap->mime.start = NULL;
#endif
#ifdef WIN32
#ifndef UNDER_CE
#ifndef WITH_FASTCGI
if (!soap_valid_socket(soap->socket) && !soap->is) /* Set win32 stdout or soap->sendfd to BINARY, e.g. to support DIME */
#ifdef __BORLANDC__
setmode(soap->recvfd, _O_BINARY);
#else
_setmode(soap->recvfd, _O_BINARY);
#endif
#endif
#endif
#endif
#ifdef WITH_ZLIB
soap->mode &= ~SOAP_ENC_ZLIB;
soap->zlib_in = SOAP_ZLIB_NONE;
soap->zlib_out = SOAP_ZLIB_NONE;
soap->d_stream->next_in = Z_NULL;
soap->d_stream->avail_in = 0;
soap->d_stream->next_out = (Byte*)soap->buf;
soap->d_stream->avail_out = SOAP_BUFLEN;
soap->z_ratio_in = 1.0;
#endif
#ifdef WITH_OPENSSL
if (soap->ssl)
ERR_clear_error();
#endif
#ifndef WITH_LEANER
if (soap->fprepareinitrecv && (soap->error = soap->fprepareinitrecv(soap)))
return soap->error;
#endif
c = soap_getchar(soap);
#ifdef WITH_GZIP
if (c == 0x1F)
{ if (soap_getgziphdr(soap))
return soap->error;
if (inflateInit2(soap->d_stream, -MAX_WBITS) != Z_OK)
return soap->error = SOAP_ZLIB_ERROR;
if (soap->z_dict)
{ if (inflateSetDictionary(soap->d_stream, (const Bytef*)soap->z_dict, soap->z_dict_len) != Z_OK)
return soap->error = SOAP_ZLIB_ERROR;
}
soap->zlib_state = SOAP_ZLIB_INFLATE;
soap->mode |= SOAP_ENC_ZLIB;
soap->zlib_in = SOAP_ZLIB_GZIP;
soap->z_crc = crc32(0L, NULL, 0);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "gzip initialized\n"));
if (!soap->z_buf)
soap->z_buf = (char*)SOAP_MALLOC(soap, SOAP_BUFLEN);
memcpy(soap->z_buf, soap->buf, SOAP_BUFLEN);
/* should not chunk over plain transport, so why bother to check? */
/* if ((soap->mode & SOAP_IO) == SOAP_IO_CHUNK) */
/* soap->z_buflen = soap->bufidx; */
/* else */
soap->d_stream->next_in = (Byte*)(soap->z_buf + soap->bufidx);
soap->d_stream->avail_in = (unsigned int)(soap->buflen - soap->bufidx);
soap->z_buflen = soap->buflen;
soap->buflen = soap->bufidx;
c = ' ';
}
#endif
while (soap_blank(c))
c = soap_getchar(soap);
#ifndef WITH_LEANER
if (c == '-' && soap_get0(soap) == '-')
soap->mode |= SOAP_ENC_MIME;
else if ((c & 0xFFFC) == (SOAP_DIME_VERSION | SOAP_DIME_MB) && (soap_get0(soap) & 0xFFF0) == 0x20)
soap->mode |= SOAP_ENC_DIME;
else
#endif
{ /* skip BOM */
if (c == 0xEF && soap_get0(soap) == 0xBB)
{ c = soap_get1(soap);
if ((c = soap_get1(soap)) == 0xBF)
{ soap->mode &= ~SOAP_ENC_LATIN;
c = soap_getchar(soap);
}
else
c = (0x0F << 12) | (0xBB << 6) | (c & 0x3F); /* UTF-8 */
}
else if ((c == 0xFE && soap_get0(soap) == 0xFF) /* UTF-16 BE */
|| (c == 0xFF && soap_get0(soap) == 0xFE)) /* UTF-16 LE */
return soap->error = SOAP_UTF_ERROR;
/* skip space */
while (soap_blank(c))
c = soap_getchar(soap);
}
if ((int)c == EOF)
return soap->error = SOAP_CHK_EOF;
soap_unget(soap, c);
#ifndef WITH_NOHTTP
/* if not XML or MIME/DIME/ZLIB, assume HTTP header */
if (c != '<' && !(soap->mode & (SOAP_ENC_MIME | SOAP_ENC_DIME | SOAP_ENC_ZLIB)))
{ soap_mode m = soap->imode;
soap->mode &= ~SOAP_IO;
soap->error = soap->fparse(soap);
if (soap->error && soap->error < SOAP_STOP)
{ soap->keep_alive = 0; /* force close later */
return soap->error;
}
if (soap->error == SOAP_STOP)
{ if (soap->fform)
{ soap->error = soap->fform(soap);
if (soap->error == SOAP_OK)
soap->error = SOAP_STOP; /* prevents further processing */
}
return soap->error;
}
soap->mode = soap->imode; /* if imode is changed, effectuate */
soap->imode = m; /* restore imode */
#ifdef WITH_ZLIB
soap->mode &= ~SOAP_ENC_ZLIB;
#endif
if ((soap->mode & SOAP_IO) == SOAP_IO_CHUNK)
{ soap->chunkbuflen = soap->buflen;
soap->buflen = soap->bufidx;
soap->chunksize = 0;
}
/* Note: fparse should not use soap_unget to push back last char */
#if 0
if (soap->status > 200 && soap->length == 0 && !(soap->http_content && (!soap->keep_alive || soap->recv_timeout)) && (soap->imode & SOAP_IO) != SOAP_IO_CHUNK)
#endif
if (soap->status && !soap->body)
return soap->error = soap->status;
if (soap_get0(soap) == (int)EOF)
{ if (soap->status == 0 || soap->status == 200)
return soap->error = SOAP_NO_DATA; /* HTTP OK: always expect data */
return soap->error = soap->status;
}
#ifdef WITH_ZLIB
if (soap->zlib_in != SOAP_ZLIB_NONE)
{
#ifdef WITH_GZIP
if (soap->zlib_in != SOAP_ZLIB_DEFLATE)
{ c = soap_get1(soap);
if (c == 0x1F)
{ if (soap_getgziphdr(soap))
return soap->error;
if (inflateInit2(soap->d_stream, -MAX_WBITS) != Z_OK)
return soap->error = SOAP_ZLIB_ERROR;
soap->z_crc = crc32(0L, NULL, 0);
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "gzip initialized\n"));
}
else
{ soap_revget1(soap);
if (inflateInit(soap->d_stream) != Z_OK)
return soap->error = SOAP_ZLIB_ERROR;
soap->zlib_in = SOAP_ZLIB_DEFLATE;
}
}
else
#endif
if (inflateInit(soap->d_stream) != Z_OK)
return soap->error = SOAP_ZLIB_ERROR;
if (soap->z_dict)
{ if (inflateSetDictionary(soap->d_stream, (const Bytef*)soap->z_dict, soap->z_dict_len) != Z_OK)
return soap->error = SOAP_ZLIB_ERROR;
}
soap->zlib_state = SOAP_ZLIB_INFLATE;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Inflate initialized\n"));
soap->mode |= SOAP_ENC_ZLIB;
if (!soap->z_buf)
soap->z_buf = (char*)SOAP_MALLOC(soap, SOAP_BUFLEN);
memcpy(soap->z_buf, soap->buf, SOAP_BUFLEN);
soap->d_stream->next_in = (Byte*)(soap->z_buf + soap->bufidx);
soap->d_stream->avail_in = (unsigned int)(soap->buflen - soap->bufidx);
soap->z_buflen = soap->buflen;
soap->buflen = soap->bufidx;
}
#endif
#ifndef WITH_LEANER
if (soap->fpreparerecv && (soap->mode & SOAP_IO) != SOAP_IO_CHUNK && soap->buflen > soap->bufidx)
{ int r;
if ((r = soap->fpreparerecv(soap, soap->buf + soap->bufidx, soap->buflen - soap->bufidx)))
return soap->error = r;
}
#endif
if (soap->error)
{ if (soap->error == SOAP_FORM && soap->fform)
{ soap->error = soap->fform(soap);
if (soap->error == SOAP_OK)
soap->error = SOAP_STOP; /* prevents further processing */
}
return soap->error;
}
}
#endif
#ifndef WITH_LEANER
if (soap->mode & SOAP_ENC_MIME)
{ do /* skip preamble */
{ if ((int)(c = soap_getchar(soap)) == EOF)
return soap->error = SOAP_CHK_EOF;
} while (c != '-' || soap_get0(soap) != '-');
soap_unget(soap, c);
if (soap_getmimehdr(soap))
return soap->error;
if (soap->mime.start)
{ do
{ if (!soap->mime.last->id)
break;
if (!soap_match_cid(soap, soap->mime.start, soap->mime.last->id))
break;
} while (soap_get_mime_attachment(soap, NULL));
}
if (soap_get_header_attribute(soap, soap->mime.first->type, "application/dime"))
soap->mode |= SOAP_ENC_DIME;
}
if (soap->mode & SOAP_ENC_DIME)
{ if (soap_getdimehdr(soap))
return soap->error;
if (soap->dime.flags & SOAP_DIME_CF)
{ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Chunked DIME SOAP message\n"));
soap->dime.chunksize = soap->dime.size;
if (soap->buflen - soap->bufidx >= soap->dime.chunksize)
{ soap->dime.buflen = soap->buflen;
soap->buflen = soap->bufidx + soap->dime.chunksize;
}
else
soap->dime.chunksize -= soap->buflen - soap->bufidx;
}
soap->count = soap->buflen - soap->bufidx;
}
#endif
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_envelope_begin_out(struct soap *soap)
{
#ifndef WITH_LEANER
size_t n = 0;
if ((soap->mode & SOAP_ENC_MIME) && soap->mime.boundary && soap->mime.start && strlen(soap->mime.boundary) + strlen(soap->mime.start) < sizeof(soap->tmpbuf) - 80 )
{ const char *s;
if ((soap->mode & SOAP_ENC_DIME) && !(soap->mode & SOAP_ENC_MTOM))
s = "application/dime";
else if (soap->version == 2)
{ if (soap->mode & SOAP_ENC_MTOM)
s = "application/xop+xml; charset=utf-8; type=\"application/soap+xml\"";
else
s = "application/soap+xml; charset=utf-8";
}
else if (soap->mode & SOAP_ENC_MTOM)
s = "application/xop+xml; charset=utf-8; type=\"text/xml\"";
else
s = "text/xml; charset=utf-8";
sprintf(soap->tmpbuf, "--%s\r\nContent-Type: %s\r\nContent-Transfer-Encoding: binary\r\nContent-ID: %s\r\n\r\n", soap->mime.boundary, s, soap->mime.start);
n = strlen(soap->tmpbuf);
if (soap_send_raw(soap, soap->tmpbuf, n))
return soap->error;
}
if (soap->mode & SOAP_IO_LENGTH)
soap->dime.size = soap->count; /* DIME in MIME correction */
if (!(soap->mode & SOAP_IO_LENGTH) && (soap->mode & SOAP_ENC_DIME))
{ if (soap_putdimehdr(soap))
return soap->error;
}
#endif
if (soap->version == 0)
return SOAP_OK;
soap->part = SOAP_IN_ENVELOPE;
return soap_element_begin_out(soap, "SOAP-ENV:Envelope", 0, NULL);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_envelope_end_out(struct soap *soap)
{ if (soap->version == 0)
return SOAP_OK;
if (soap_element_end_out(soap, "SOAP-ENV:Envelope")
|| soap_send_raw(soap, "\r\n", 2)) /* 2.8: always emit \r\n */
return soap->error;
#ifndef WITH_LEANER
if ((soap->mode & SOAP_IO_LENGTH) && (soap->mode & SOAP_ENC_DIME) && !(soap->mode & SOAP_ENC_MTOM))
{ soap->dime.size = soap->count - soap->dime.size; /* DIME in MIME correction */
sprintf(soap->id, soap->dime_id_format, 0);
soap->dime.id = soap->id;
if (soap->local_namespaces)
{ if (soap->local_namespaces[0].out)
soap->dime.type = (char*)soap->local_namespaces[0].out;
else
soap->dime.type = (char*)soap->local_namespaces[0].ns;
}
soap->dime.options = NULL;
soap->dime.flags = SOAP_DIME_MB | SOAP_DIME_ABSURI;
if (!soap->dime.first)
soap->dime.flags |= SOAP_DIME_ME;
soap->count += 12 + ((strlen(soap->dime.id)+3)&(~3)) + (soap->dime.type ? ((strlen(soap->dime.type)+3)&(~3)) : 0);
}
if ((soap->mode & SOAP_ENC_DIME) && !(soap->mode & SOAP_ENC_MTOM))
return soap_send_raw(soap, SOAP_STR_PADDING, -(long)soap->dime.size&3);
#endif
soap->part = SOAP_END_ENVELOPE;
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
#ifndef PALM_1
SOAP_FMAC1
char*
SOAP_FMAC2
soap_get_http_body(struct soap *soap)
{
#ifndef WITH_LEAN
register size_t l = 0, n = 0;
register char *s;
/* get HTML body of HTTP error content */
if (!(soap->mode & SOAP_ENC_ZLIB) && (soap->mode & SOAP_IO) != SOAP_IO_CHUNK)
{ n = soap->length;
if (!n)
return NULL;
}
#ifdef WITH_FAST
soap->labidx = 0; /* use look-aside buffer */
#else
if (soap_new_block(soap) == NULL)
return NULL;
#endif
for (;;)
{
#ifdef WITH_FAST
register size_t i, k;
if (soap_append_lab(soap, NULL, 0)) /* allocate more space in look-aside buffer if necessary */
return NULL;
s = soap->labbuf + soap->labidx; /* space to populate */
k = soap->lablen - soap->labidx; /* number of bytes available */
soap->labidx = soap->lablen; /* claim this space */
#else
register size_t i, k = SOAP_BLKLEN;
if (!(s = (char*)soap_push_block(soap, NULL, k)))
return NULL;
#endif
for (i = 0; i < k; i++)
{ register soap_wchar c;
l++;
if (n > 0 && l > n)
goto end;
c = soap_getchar(soap);
if ((int)c == EOF)
goto end;
*s++ = (char)(c & 0xFF);
}
}
end:
*s = '\0';
#ifdef WITH_FAST
s = soap_strdup(soap, soap->labbuf);
#else
soap_size_block(soap, NULL, i+1);
s = soap_save_block(soap, NULL, 0);
#endif
return s;
#else
return NULL;
#endif
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_envelope_begin_in(struct soap *soap)
{ register struct Namespace *p;
soap->part = SOAP_IN_ENVELOPE;
if (soap_element_begin_in(soap, "SOAP-ENV:Envelope", 0, NULL))
{ if (soap->error == SOAP_TAG_MISMATCH)
{ if (!soap_element_begin_in(soap, "Envelope", 0, NULL))
soap->error = SOAP_VERSIONMISMATCH;
else if (soap->status)
soap->error = soap->status;
return SOAP_OK;
}
else if (soap->status)
soap->error = soap->status;
return soap->error;
}
p = soap->local_namespaces;
if (p)
{ const char *ns = p[0].out;
if (!ns)
ns = p[0].ns;
if (!strcmp(ns, soap_env1))
{ soap->version = 1; /* make sure we use SOAP 1.1 */
if (p[1].out)
SOAP_FREE(soap, p[1].out);
if ((p[1].out = (char*)SOAP_MALLOC(soap, sizeof(soap_enc1))))
strcpy(p[1].out, soap_enc1);
}
else if (!strcmp(ns, soap_env2))
{ soap->version = 2; /* make sure we use SOAP 1.2 */
if (p[1].out)
SOAP_FREE(soap, p[1].out);
if ((p[1].out = (char*)SOAP_MALLOC(soap, sizeof(soap_enc2))))
strcpy(p[1].out, soap_enc2);
}
}
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_envelope_end_in(struct soap *soap)
{ if (soap->version == 0)
return SOAP_OK;
soap->part = SOAP_END_ENVELOPE;
return soap_element_end_in(soap, "SOAP-ENV:Envelope");
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_body_begin_out(struct soap *soap)
{ if (soap->version == 1)
soap->encoding = 1;
#ifndef WITH_LEAN
if ((soap->mode & SOAP_SEC_WSUID) && soap_set_attr(soap, "wsu:Id", "Body", 1))
return soap->error;
#endif
if (soap->version == 0)
return SOAP_OK;
soap->part = SOAP_IN_BODY;
return soap_element_begin_out(soap, "SOAP-ENV:Body", 0, NULL);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_body_end_out(struct soap *soap)
{ if (soap->version == 0)
return SOAP_OK;
if (soap_element_end_out(soap, "SOAP-ENV:Body"))
return soap->error;
soap->part = SOAP_END_BODY;
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_body_begin_in(struct soap *soap)
{ if (soap->version == 0)
return SOAP_OK;
soap->part = SOAP_IN_BODY;
if (soap_element_begin_in(soap, "SOAP-ENV:Body", 0, NULL))
return soap->error;
if (!soap->body)
soap->part = SOAP_NO_BODY;
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_body_end_in(struct soap *soap)
{ if (soap->version == 0)
return SOAP_OK;
if (soap->part == SOAP_NO_BODY)
return soap->error = SOAP_OK;
soap->part = SOAP_END_BODY;
return soap_element_end_in(soap, "SOAP-ENV:Body");
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_recv_header(struct soap *soap)
{ if (soap_getheader(soap) && soap->error == SOAP_TAG_MISMATCH)
soap->error = SOAP_OK;
if (soap->error == SOAP_OK && soap->fheader)
soap->error = soap->fheader(soap);
return soap->error;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_set_endpoint(struct soap *soap, const char *endpoint)
{ register const char *s;
register size_t i, n;
soap->endpoint[0] = '\0';
soap->host[0] = '\0';
soap->path[0] = '/';
soap->path[1] = '\0';
soap->port = 80;
if (!endpoint || !*endpoint)
return;
#ifdef WITH_OPENSSL
if (!soap_tag_cmp(endpoint, "https:*"))
soap->port = 443;
#endif
strncpy(soap->endpoint, endpoint, sizeof(soap->endpoint) - 1);
soap->endpoint[sizeof(soap->endpoint) - 1] = '\0';
s = strchr(endpoint, ':');
if (s && s[1] == '/' && s[2] == '/')
s += 3;
else
s = endpoint;
n = strlen(s);
if (n >= sizeof(soap->host))
n = sizeof(soap->host) - 1;
#ifdef WITH_IPV6
if (s[0] == '[')
{ s++;
for (i = 0; i < n; i++)
{ if (s[i] == ']')
{ s++;
--n;
break;
}
soap->host[i] = s[i];
}
}
else
{ for (i = 0; i < n; i++)
{ soap->host[i] = s[i];
if (s[i] == '/' || s[i] == ':')
break;
}
}
#else
for (i = 0; i < n; i++)
{ soap->host[i] = s[i];
if (s[i] == '/' || s[i] == ':')
break;
}
#endif
soap->host[i] = '\0';
if (s[i] == ':')
{ soap->port = (int)soap_strtol(s + i + 1, NULL, 10);
for (i++; i < n; i++)
if (s[i] == '/')
break;
}
if (i < n && s[i])
{ strncpy(soap->path, s + i, sizeof(soap->path));
soap->path[sizeof(soap->path) - 1] = '\0';
}
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_connect(struct soap *soap, const char *endpoint, const char *action)
{ return soap_connect_command(soap, SOAP_POST, endpoint, action);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_connect_command(struct soap *soap, int http_command, const char *endpoints, const char *action)
{ char *endpoint;
const char *s;
if (endpoints && (s = strchr(endpoints, ' ')))
{ endpoint = (char*)SOAP_MALLOC(soap, strlen(endpoints) + 1);
for (;;)
{ strncpy(endpoint, endpoints, s - endpoints);
endpoint[s - endpoints] = '\0';
if (soap_try_connect_command(soap, http_command, endpoint, action) != SOAP_TCP_ERROR)
break;
if (!*s)
break;
soap->error = SOAP_OK;
while (*s == ' ')
s++;
endpoints = s;
s = strchr(endpoints, ' ');
if (!s)
s = endpoints + strlen(endpoints);
}
SOAP_FREE(soap, endpoint);
}
else
soap_try_connect_command(soap, http_command, endpoints, action);
return soap->error;
}
#endif
/******************************************************************************/
#ifndef PALM_1
static int
soap_try_connect_command(struct soap *soap, int http_command, const char *endpoint, const char *action)
{ char host[sizeof(soap->host)];
int port;
size_t count;
soap->error = SOAP_OK;
strcpy(host, soap->host); /* save previous host name: if != then reconnect */
port = soap->port; /* save previous port to compare */
soap->status = http_command;
soap_set_endpoint(soap, endpoint);
#ifndef WITH_LEANER
if (soap->fconnect)
{ if ((soap->error = soap->fconnect(soap, endpoint, soap->host, soap->port)))
return soap->error;
}
else
#endif
soap->action = soap_strdup(soap, action);
if (soap->fopen && *soap->host)
{ if (!soap->keep_alive || !soap_valid_socket(soap->socket) || strcmp(soap->host, host) || soap->port != port || !soap->fpoll || soap->fpoll(soap))
{ soap->error = SOAP_OK;
#ifndef WITH_LEAN
if (!strncmp(endpoint, "soap.udp:", 9))
soap->omode |= SOAP_IO_UDP;
else
#endif
{ soap->keep_alive = 0; /* to force close */
soap->omode &= ~SOAP_IO_UDP; /* to force close */
}
soap_closesock(soap);
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Connect/reconnect to '%s' host='%s' path='%s' port=%d\n", endpoint?endpoint:"(null)", soap->host, soap->path, soap->port));
if (!soap->keep_alive || !soap_valid_socket(soap->socket))
{ soap->socket = soap->fopen(soap, endpoint, soap->host, soap->port);
if (soap->error)
return soap->error;
soap->keep_alive = ((soap->omode & SOAP_IO_KEEPALIVE) != 0);
}
}
}
#ifdef WITH_NTLM
if (soap_ntlm_handshake(soap, SOAP_GET, endpoint, soap->host, soap->port))
return soap->error;
#endif
count = soap_count_attachments(soap);
if (soap_begin_send(soap))
return soap->error;
if (http_command == SOAP_GET)
{ soap->mode &= ~SOAP_IO;
soap->mode |= SOAP_IO_BUFFER;
}
#ifndef WITH_NOHTTP
if ((soap->mode & SOAP_IO) != SOAP_IO_STORE && !(soap->mode & SOAP_ENC_XML) && endpoint)
{ unsigned int k = soap->mode;
soap->mode &= ~(SOAP_IO | SOAP_ENC_ZLIB);
if ((k & SOAP_IO) != SOAP_IO_FLUSH)
soap->mode |= SOAP_IO_BUFFER;
if ((soap->error = soap->fpost(soap, endpoint, soap->host, soap->port, soap->path, action, count)))
return soap->error;
#ifndef WITH_LEANER
if ((k & SOAP_IO) == SOAP_IO_CHUNK)
{ if (soap_flush(soap))
return soap->error;
}
#endif
soap->mode = k;
}
if (http_command == SOAP_GET || http_command == SOAP_DEL)
return soap_end_send_flush(soap);
#endif
return SOAP_OK;
}
#endif
/******************************************************************************/
#ifdef WITH_NTLM
#ifndef PALM_1
static int
soap_ntlm_handshake(struct soap *soap, int command, const char *endpoint, const char *host, int port)
{ /* requires libntlm from http://www.nongnu.org/libntlm/ */
const char *userid = (soap->proxy_userid ? soap->proxy_userid : soap->userid);
const char *passwd = (soap->proxy_passwd ? soap->proxy_passwd : soap->passwd);
struct SOAP_ENV__Header *oldheader;
if (soap->ntlm_challenge && userid && passwd && soap->authrealm)
{ tSmbNtlmAuthRequest req;
tSmbNtlmAuthResponse res;
tSmbNtlmAuthChallenge ch;
short k = soap->keep_alive;
size_t l = soap->length;
size_t c = soap->count;
soap_mode m = soap->mode, o = soap->omode;
int s = soap->status;
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "NTLM '%s'\n", soap->ntlm_challenge));
if (!*soap->ntlm_challenge)
{ DBGLOG(TEST,SOAP_MESSAGE(fdebug, "NTLM S->C Type 1: received NTLM authentication challenge from server\n"));
/* S -> C 401 Unauthorized
WWW-Authenticate: NTLM
*/
buildSmbNtlmAuthRequest(&req, userid, soap->authrealm);
soap->ntlm_challenge = soap_s2base64(soap, (unsigned char*)&req, NULL, SmbLength(&req));
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "NTLM C->S Type 2: sending NTLM authorization to server\nAuthorization: NTLM %s\n", soap->ntlm_challenge));
/* C -> S GET ...
Authorization: NTLM TlRMTVNTUAABAAAAA7IAAAoACgApAAAACQAJACAAAABMSUdIVENJVFlVUlNBLU1JTk9S
*/
soap->omode = SOAP_IO_BUFFER;
if (soap_begin_send(soap))
return soap->error;
soap->keep_alive = 1;
soap->status = command;
if (soap->fpost(soap, endpoint, host, port, soap->path, soap->action, 0)
|| soap_end_send_flush(soap))
return soap->error;
soap->mode = m;
soap->keep_alive = k;
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "NTLM S->C Type 2: waiting on server NTLM response\n"));
oldheader = soap->header;
if (soap_begin_recv(soap))
if (soap->error == SOAP_EOF)
return soap->error;
soap_end_recv(soap);
soap->header = oldheader;
soap->length = l;
if (soap->status != 401 && soap->status != 407)
return soap->error = SOAP_NTLM_ERROR;
soap->error = SOAP_OK;
}
/* S -> C 401 Unauthorized
WWW-Authenticate: NTLM TlRMTVNTUAACAAAAAAAAACgAAAABggAAU3J2Tm9uY2UAAAAAAAAAAA==
*/
soap_base642s(soap, soap->ntlm_challenge, (char*)&ch, sizeof(tSmbNtlmAuthChallenge), NULL);
buildSmbNtlmAuthResponse(&ch, &res, userid, passwd);
soap->ntlm_challenge = soap_s2base64(soap, (unsigned char*)&res, NULL, SmbLength(&res));
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "NTLM C->S Type 3: sending NTLM authorization to server\nAuthorization: NTLM %s\n", soap->ntlm_challenge));
/* C -> S GET ...
Authorization: NTLM TlRMTVNTUAADAAAAGAAYAHIAAAAYABgAigAAABQAFABAAAAADAAMAFQAAAASABIAYAAAAAAAAACiAAAAAYIAAFUAUgBTAEEALQBNAEkATgBPAFIAWgBhAHAAaABvAGQATABJAEcASABUAEMASQBUAFkArYfKbe/jRoW5xDxHeoxC1gBmfWiS5+iX4OAN4xBKG/IFPwfH3agtPEia6YnhsADT
*/
soap->keep_alive = k;
soap->length = l;
soap->count = c;
soap->mode = m;
soap->omode = o;
soap->status = s;
}
return SOAP_OK;
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
char*
SOAP_FMAC2
soap_s2base64(struct soap *soap, const unsigned char *s, char *t, int n)
{ register int i;
register unsigned long m;
register char *p;
if (!t)
t = (char*)soap_malloc(soap, (n + 2) / 3 * 4 + 1);
if (!t)
return NULL;
p = t;
t[0] = '\0';
if (!s)
return p;
for (; n > 2; n -= 3, s += 3)
{ m = s[0];
m = (m << 8) | s[1];
m = (m << 8) | s[2];
for (i = 4; i > 0; m >>= 6)
t[--i] = soap_base64o[m & 0x3F];
t += 4;
}
t[0] = '\0';
if (n > 0)
{ m = 0;
for (i = 0; i < n; i++)
m = (m << 8) | *s++;
for (; i < 3; i++)
m <<= 8;
for (i++; i > 0; m >>= 6)
t[--i] = soap_base64o[m & 0x3F];
for (i = 3; i > n; i--)
t[i] = '=';
t[4] = '\0';
}
return p;
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_base642s(struct soap *soap, const char *s, char *t, size_t l, int *n)
{ register size_t i, j;
register soap_wchar c;
register unsigned long m;
register const char *p;
if (!s || !*s)
{ if (n)
*n = 0;
if (soap->error)
return NULL;
return SOAP_NON_NULL;
}
if (!t)
{ l = (strlen(s) + 3) / 4 * 3 + 1; /* make sure enough space for \0 */
t = (char*)soap_malloc(soap, l);
}
if (!t)
return NULL;
p = t;
if (n)
*n = 0;
for (;;)
{ for (i = 0; i < SOAP_BLKLEN; i++)
{ m = 0;
j = 0;
while (j < 4)
{ c = *s++;
if (c == '=' || !c)
{ i *= 3;
switch (j)
{ case 2:
*t++ = (char)((m >> 4) & 0xFF);
i++;
break;
case 3:
*t++ = (char)((m >> 10) & 0xFF);
*t++ = (char)((m >> 2) & 0xFF);
i += 2;
}
if (n)
*n += (int)i;
if (l >= j)
*t = '\0';
return p;
}
c -= '+';
if (c >= 0 && c <= 79)
{ int b = soap_base64i[c];
if (b >= 64)
{ soap->error = SOAP_TYPE;
return NULL;
}
m = (m << 6) + b;
j++;
}
else if (!soap_blank(c + '+'))
{ soap->error = SOAP_TYPE;
return NULL;
}
}
if (l < 3)
{ if (n)
*n += (int)i;
*t = '\0';
return p;
}
*t++ = (char)((m >> 16) & 0xFF);
*t++ = (char)((m >> 8) & 0xFF);
*t++ = (char)(m & 0xFF);
l -= 3;
}
if (n)
*n += 3 * SOAP_BLKLEN;
}
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
char*
SOAP_FMAC2
soap_s2hex(struct soap *soap, const unsigned char *s, char *t, int n)
{ register char *p;
if (!t)
t = (char*)soap_malloc(soap, 2 * n + 1);
if (!t)
return NULL;
p = t;
t[0] = '\0';
if (s)
{ for (; n > 0; n--)
{ register int m = *s++;
*t++ = (char)((m >> 4) + (m > 159 ? 'a' - 10 : '0'));
m &= 0x0F;
*t++ = (char)(m + (m > 9 ? 'a' - 10 : '0'));
}
}
*t++ = '\0';
return p;
}
#endif
/******************************************************************************/
#ifndef WITH_LEAN
SOAP_FMAC1
const char*
SOAP_FMAC2
soap_hex2s(struct soap *soap, const char *s, char *t, size_t l, int *n)
{ register const char *p;
if (!s || !*s)
{ if (n)
*n = 0;
if (soap->error)
return NULL;
return SOAP_NON_NULL;
}
if (!t)
{ l = strlen(s) / 2 + 1; /* make sure enough space for \0 */
t = (char*)soap_malloc(soap, l);
}
if (!t)
return NULL;
p = t;
while (l)
{ register int d1, d2;
d1 = *s++;
if (!d1)
break;
d2 = *s++;
if (!d2)
break;
*t++ = (char)(((d1 >= 'A' ? (d1 & 0x7) + 9 : d1 - '0') << 4) + (d2 >= 'A' ? (d2 & 0x7) + 9 : d2 - '0'));
l--;
}
if (n)
*n = (int)(t - p);
if (l)
*t = '\0';
return p;
}
#endif
/******************************************************************************/
#ifndef WITH_NOHTTP
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_puthttphdr(struct soap *soap, int status, size_t count)
{ if (soap->status != SOAP_GET && soap->status != SOAP_DEL && soap->status != SOAP_CONNECT)
{ register const char *s = "text/xml; charset=utf-8";
register int err = SOAP_OK;
#ifndef WITH_LEANER
register const char *r = NULL;
#endif
if ((status == SOAP_FILE || soap->status == SOAP_PUT || soap->status == SOAP_POST_FILE) && soap->http_content)
s = soap->http_content;
else if (status == SOAP_HTML)
s = "text/html; charset=utf-8";
else if (count || ((soap->omode & SOAP_IO) == SOAP_IO_CHUNK))
{ if (soap->version == 2)
s = "application/soap+xml; charset=utf-8";
}
#ifndef WITH_LEANER
if (soap->mode & (SOAP_ENC_DIME | SOAP_ENC_MTOM))
{ if (soap->mode & SOAP_ENC_MTOM)
{ if (soap->version == 2)
r = "application/soap+xml";
else
r = "text/xml";
s = "application/xop+xml";
}
else
s = "application/dime";
}
if ((soap->mode & SOAP_ENC_MIME) && soap->mime.boundary && strlen(soap->mime.boundary) + strlen(soap->mime.start ? soap->mime.start : SOAP_STR_EOS) < sizeof(soap->tmpbuf) - 80)
{ register const char *t = strchr(s, ';');
sprintf(soap->tmpbuf, "multipart/related; charset=utf-8; boundary=\"%s\"; type=\"", soap->mime.boundary);
if (t)
{ strncat(soap->tmpbuf, s, t - s);
soap->tmpbuf[sizeof(soap->tmpbuf)-1] = '\0';
}
else
strcat(soap->tmpbuf, s);
if (soap->mime.start)
{ strcat(soap->tmpbuf, "\"; start=\"");
strcat(soap->tmpbuf, soap->mime.start);
}
strcat(soap->tmpbuf, "\"");
if (r)
{ strcat(soap->tmpbuf, "; start-info=\"");
strcat(soap->tmpbuf, r);
strcat(soap->tmpbuf, "\"");
}
s = soap->tmpbuf;
}
else
s = strcpy(soap->tmpbuf, s);
if (status == SOAP_OK && soap->version == 2 && soap->action && strlen(soap->action) + strlen(s) < sizeof(soap->tmpbuf) - 80)
sprintf(soap->tmpbuf + strlen(s), "; action=\"%s\"", soap->action);
#endif
if ((err = soap->fposthdr(soap, "Content-Type", s)))
return err;
#ifdef WITH_ZLIB
if ((soap->omode & SOAP_ENC_ZLIB))
{
#ifdef WITH_GZIP
err = soap->fposthdr(soap, "Content-Encoding", soap->zlib_out == SOAP_ZLIB_DEFLATE ? "deflate" : "gzip");
#else
err = soap->fposthdr(soap, "Content-Encoding", "deflate");
#endif
if (err)
return err;
}
#endif
#ifndef WITH_LEANER
if ((soap->omode & SOAP_IO) == SOAP_IO_CHUNK)
err = soap->fposthdr(soap, "Transfer-Encoding", "chunked");
else
#endif
if (s)
{ sprintf(soap->tmpbuf, "%lu", (unsigned long)count);
err = soap->fposthdr(soap, "Content-Length", soap->tmpbuf);
}
if (err)
return err;
}
return soap->fposthdr(soap, "Connection", soap->keep_alive ? "keep-alive" : "close");
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEAN
static const char*
soap_set_validation_fault(struct soap *soap, const char *s, const char *t)
{ if (*soap->tag)
#ifdef HAVE_SNPRINTF
soap_snprintf(soap->msgbuf, sizeof(soap->msgbuf), "Validation constraint violation: %s%s in element '%s'", s, t ? t : SOAP_STR_EOS, soap->tag);
#else
sprintf(soap->msgbuf, "Validation constraint violation: %s%s in element '%s'", s, t ? t : SOAP_STR_EOS, soap->tag);
#endif
else
#ifdef HAVE_SNPRINTF
soap_snprintf(soap->msgbuf, sizeof(soap->msgbuf), "Validation constraint violation: %s%s", s, t ? t : SOAP_STR_EOS);
#else
sprintf(soap->msgbuf, "Validation constraint violation: %s%s", s, t ? t : SOAP_STR_EOS);
#endif
return soap->msgbuf;
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
void
SOAP_FMAC2
soap_set_fault(struct soap *soap)
{ const char **c = soap_faultcode(soap);
const char **s = soap_faultstring(soap);
if (soap->fseterror)
soap->fseterror(soap, c, s);
if (!*c)
{ if (soap->version == 2)
*c = "SOAP-ENV:Sender";
else
*c = "SOAP-ENV:Client";
}
if (*s)
return;
switch (soap->error)
{
#ifndef WITH_LEAN
case SOAP_CLI_FAULT:
*s = "Client fault";
break;
case SOAP_SVR_FAULT:
*s = "Server fault";
break;
case SOAP_TAG_MISMATCH:
*s = soap_set_validation_fault(soap, "tag name or namespace mismatch", NULL);
break;
case SOAP_TYPE:
*s = soap_set_validation_fault(soap, "data type mismatch ", soap->type);
break;
case SOAP_SYNTAX_ERROR:
*s = "Well-formedness violation";
break;
case SOAP_NO_TAG:
*s = "No tag: no XML root element or missing SOAP message body element";
break;
case SOAP_MUSTUNDERSTAND:
*c = "SOAP-ENV:MustUnderstand";
#ifdef HAVE_SNPRINTF
soap_snprintf(soap->msgbuf, sizeof(soap->msgbuf), "The data in element '%s' must be understood but cannot be handled", soap->tag);
#else
sprintf(soap->msgbuf, "The data in element '%s' must be understood but cannot be handled", soap->tag);
#endif
*s = soap->msgbuf;
break;
case SOAP_VERSIONMISMATCH:
*c = "SOAP-ENV:VersionMismatch";
*s = "Invalid SOAP message or SOAP version mismatch";
break;
case SOAP_DATAENCODINGUNKNOWN:
*c = "SOAP-ENV:DataEncodingUnknown";
*s = "Unsupported SOAP data encoding";
break;
case SOAP_NAMESPACE:
*s = soap_set_validation_fault(soap, "namespace error", NULL);
break;
case SOAP_USER_ERROR:
*s = "User data error";
break;
case SOAP_FATAL_ERROR:
*s = "Fatal error";
break;
case SOAP_NO_METHOD:
#ifdef HAVE_SNPRINTF
soap_snprintf(soap->msgbuf, sizeof(soap->msgbuf), "Method '%s' not implemented: method name or namespace not recognized", soap->tag);
#else
sprintf(soap->msgbuf, "Method '%s' not implemented: method name or namespace not recognized", soap->tag);
#endif
*s = soap->msgbuf;
break;
case SOAP_NO_DATA:
*s = "Data required for operation";
break;
case SOAP_GET_METHOD:
*s = "HTTP GET method not implemented";
break;
case SOAP_PUT_METHOD:
*s = "HTTP PUT method not implemented";
break;
case SOAP_HTTP_METHOD:
*s = "HTTP method not implemented";
break;
case SOAP_EOM:
*s = "Out of memory";
break;
case SOAP_MOE:
*s = "Memory overflow or memory corruption error";
break;
case SOAP_HDR:
*s = "Header line too long";
break;
case SOAP_IOB:
*s = "Array index out of bounds";
break;
case SOAP_NULL:
*s = soap_set_validation_fault(soap, "nil not allowed", NULL);
break;
case SOAP_DUPLICATE_ID:
*s = soap_set_validation_fault(soap, "multiple definitions (use the SOAP_XML_TREE flag) of the same id ", soap->id);
if (soap->version == 2)
*soap_faultsubcode(soap) = "SOAP-ENC:DuplicateID";
break;
case SOAP_MISSING_ID:
*s = soap_set_validation_fault(soap, "missing id for ref ", soap->id);
if (soap->version == 2)
*soap_faultsubcode(soap) = "SOAP-ENC:MissingID";
break;
case SOAP_HREF:
*s = soap_set_validation_fault(soap, "incompatible object type ref/id pair ", soap->id);
break;
case SOAP_FAULT:
break;
#ifndef WITH_NOIO
case SOAP_UDP_ERROR:
*s = "Message too large for UDP packet";
break;
case SOAP_TCP_ERROR:
*s = tcp_error(soap);
break;
#endif
case SOAP_HTTP_ERROR:
*s = "An HTTP processing error occurred";
break;
case SOAP_NTLM_ERROR:
*s = "An HTTP NTLM authentication error occurred";
break;
case SOAP_SSL_ERROR:
#ifdef WITH_OPENSSL
*s = "SSL/TLS error";
#else
*s = "OpenSSL not installed: recompile with -DWITH_OPENSSL";
#endif
break;
case SOAP_PLUGIN_ERROR:
*s = "Plugin registry error";
break;
case SOAP_DIME_ERROR:
*s = "DIME format error";
break;
case SOAP_DIME_HREF:
*s = "DIME href to missing attachment";
break;
case SOAP_DIME_MISMATCH:
*s = "DIME version/transmission error";
break;
case SOAP_DIME_END:
*s = "End of DIME error";
break;
case SOAP_MIME_ERROR:
*s = "MIME format error";
break;
case SOAP_MIME_HREF:
*s = "MIME href to missing attachment";
break;
case SOAP_MIME_END:
*s = "End of MIME error";
break;
case SOAP_ZLIB_ERROR:
#ifdef WITH_ZLIB
#ifdef HAVE_SNPRINTF
soap_snprintf(soap->msgbuf, sizeof(soap->msgbuf), "Zlib/gzip error: '%s'", soap->d_stream->msg ? soap->d_stream->msg : SOAP_STR_EOS);
#else
sprintf(soap->msgbuf, "Zlib/gzip error: '%s'", soap->d_stream->msg ? soap->d_stream->msg : SOAP_STR_EOS);
#endif
*s = soap->msgbuf;
#else
*s = "Zlib/gzip not installed for (de)compression: recompile with -DWITH_GZIP";
#endif
break;
case SOAP_REQUIRED:
*s = soap_set_validation_fault(soap, "missing required attribute", NULL);
break;
case SOAP_PROHIBITED:
*s = soap_set_validation_fault(soap, "prohibited attribute present", NULL);
break;
case SOAP_OCCURS:
*s = soap_set_validation_fault(soap, "occurrence violation", NULL);
break;
case SOAP_LENGTH:
*s = soap_set_validation_fault(soap, "content range or length violation", NULL);
break;
case SOAP_FD_EXCEEDED:
*s = "Maximum number of open connections was reached (no define HAVE_POLL): increase FD_SETSIZE";
break;
case SOAP_UTF_ERROR:
*s = "UTF content encoding error";
break;
case SOAP_STOP:
*s = "Stopped: no response sent or received (informative)";
break;
#endif
case SOAP_EOF:
#ifndef WITH_NOIO
*s = soap_strerror(soap); /* *s = soap->msgbuf */
#ifndef WITH_LEAN
if (strlen(soap->msgbuf) + 25 < sizeof(soap->msgbuf))
{ memmove(soap->msgbuf + 25, soap->msgbuf, strlen(soap->msgbuf) + 1);
memcpy(soap->msgbuf, "End of file or no input: ", 25);
}
#endif
break;
#else
*s = "End of file or no input";
break;
#endif
default:
#ifndef WITH_NOHTTP
#ifndef WITH_LEAN
if (soap->error > 200 && soap->error < 600)
{
#ifdef HAVE_SNPRINTF
soap_snprintf(soap->msgbuf, sizeof(soap->msgbuf), "HTTP Error: %d %s", soap->error, http_error(soap, soap->error));
#else
sprintf(soap->msgbuf, "HTTP Error: %d %s", soap->error, http_error(soap, soap->error));
#endif
*s = soap->msgbuf;
}
else
#endif
#endif
{ sprintf(soap->msgbuf, "Error %d", soap->error);
*s = soap->msgbuf;
}
}
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_send_fault(struct soap *soap)
{ register int status = soap->error;
if (status == SOAP_STOP)
return soap_closesock(soap);
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Sending back fault struct for error code %d\n", soap->error));
soap->keep_alive = 0; /* to terminate connection */
soap_set_fault(soap);
if (soap->error < 200 && soap->error != SOAP_FAULT)
soap->header = NULL;
if (status != SOAP_EOF || (!soap->recv_timeout && !soap->send_timeout))
{ int r = 1;
#ifndef WITH_NOIO
if (soap->fpoll && soap->fpoll(soap))
r = 0;
#ifndef WITH_LEAN
else if (soap_valid_socket(soap->socket))
{ r = tcp_select(soap, soap->socket, SOAP_TCP_SELECT_RCV | SOAP_TCP_SELECT_SND, 0);
if (r > 0)
{ if (!(r & SOAP_TCP_SELECT_SND)
|| ((r & SOAP_TCP_SELECT_RCV)
&& recv(soap->socket, soap->tmpbuf, 1, MSG_PEEK) < 0))
r = 0;
}
}
#endif
#endif
if (r > 0)
{ soap->error = SOAP_OK;
soap_serializeheader(soap);
soap_serializefault(soap);
soap_begin_count(soap);
if (soap->mode & SOAP_IO_LENGTH)
{ soap_envelope_begin_out(soap);
soap_putheader(soap);
soap_body_begin_out(soap);
soap_putfault(soap);
soap_body_end_out(soap);
soap_envelope_end_out(soap);
}
soap_end_count(soap);
if (soap_response(soap, status)
|| soap_envelope_begin_out(soap)
|| soap_putheader(soap)
|| soap_body_begin_out(soap)
|| soap_putfault(soap)
|| soap_body_end_out(soap)
|| soap_envelope_end_out(soap))
return soap_closesock(soap);
soap_end_send(soap);
}
}
soap->error = status;
return soap_closesock(soap);
}
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_recv_fault(struct soap *soap, int check)
{ register int status = soap->error;
if (soap->version == 0)
return SOAP_OK;
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Check if receiving SOAP Fault\n"));
if (!check)
{ /* try getfault when no tag or tag mismatched at level 2, otherwise ret */
if (soap->error != SOAP_NO_TAG
&& (soap->error != SOAP_TAG_MISMATCH || soap->level != 2))
return soap->error;
}
soap->error = SOAP_OK;
if (soap_getfault(soap))
{ /* check flag set: check if SOAP Fault is present, if not just return */
if (check && soap->error == SOAP_TAG_MISMATCH && soap->level == 2)
return soap->error = SOAP_OK;
DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Error: soap_get_soapfault() failed at level %u tag '%s'\n", soap->level, soap->tag));
*soap_faultcode(soap) = (soap->version == 2 ? "SOAP-ENV:Sender" : "SOAP-ENV:Client");
soap->error = status;
soap_set_fault(soap);
}
else
{ register const char *s = *soap_faultcode(soap);
if (!soap_match_tag(soap, s, "SOAP-ENV:Server") || !soap_match_tag(soap, s, "SOAP-ENV:Receiver"))
status = SOAP_SVR_FAULT;
else if (!soap_match_tag(soap, s, "SOAP-ENV:Client") || !soap_match_tag(soap, s, "SOAP-ENV:Sender"))
status = SOAP_CLI_FAULT;
else if (!soap_match_tag(soap, s, "SOAP-ENV:MustUnderstand"))
status = SOAP_MUSTUNDERSTAND;
else if (!soap_match_tag(soap, s, "SOAP-ENV:VersionMismatch"))
status = SOAP_VERSIONMISMATCH;
else
{ DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Received SOAP Fault code %s\n", s));
status = SOAP_FAULT;
}
if (!soap_body_end_in(soap))
soap_envelope_end_in(soap);
}
soap_end_recv(soap);
soap->error = status;
return soap_closesock(soap);
}
#endif
/******************************************************************************/
#ifndef WITH_NOHTTP
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_send_empty_response(struct soap *soap, int httpstatuscode)
{ register soap_mode m = soap->omode;
if (!(m & SOAP_IO_UDP))
{ soap->count = 0;
if ((m & SOAP_IO) == SOAP_IO_CHUNK)
soap->omode = (m & ~SOAP_IO) | SOAP_IO_BUFFER;
if (!soap_response(soap, httpstatuscode) && !soap_end_send(soap))
soap->error = SOAP_STOP; /* stops the server's processing of request */
soap->omode = m;
}
return soap_closesock(soap);
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOHTTP
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_recv_empty_response(struct soap *soap)
{ if (!(soap->omode & SOAP_IO_UDP))
{ if (!soap_begin_recv(soap))
soap_end_recv(soap);
else if (soap->error == SOAP_NO_DATA || soap->error == 202)
soap->error = SOAP_OK;
}
return soap_closesock(soap);
}
#endif
#endif
/******************************************************************************/
#ifndef WITH_NOIO
#ifndef PALM_1
static const char*
soap_strerror(struct soap *soap)
{ register int err = soap->errnum;
if (err)
{
#ifndef WIN32
# ifdef HAVE_STRERROR_R
strerror_r(err, soap->msgbuf, sizeof(soap->msgbuf));
# else
return strerror(err);
# endif
#else
#ifndef UNDER_CE
DWORD len;
*soap->msgbuf = '\0';
len = FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, err, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPSTR)soap->msgbuf, (DWORD)sizeof(soap->msgbuf), NULL);
#else
DWORD i, len;
*soap->msgbuf = '\0';
len = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, err, 0, (LPTSTR)soap->msgbuf, (DWORD)(sizeof(soap->msgbuf)/sizeof(TCHAR)), NULL);
for (i = 0; i <= len; i++)
{ if (((TCHAR*)soap->msgbuf)[i] < 0x80)
soap->msgbuf[i] = (char)((TCHAR*)soap->msgbuf)[i];
else
soap->msgbuf[i] = '?';
}
#endif
#endif
}
else
{ char *s = soap->msgbuf;
#ifndef WITH_LEAN
int rt = soap->recv_timeout, st = soap->send_timeout;
int ru = ' ', su = ' ';
#endif
strcpy(s, "Operation interrupted or timed out");
#ifndef WITH_LEAN
if (rt < 0)
{ rt = -rt;
ru = 'u';
}
if (st < 0)
{ st = -st;
su = 'u';
}
if (rt)
sprintf(s + strlen(s), " (%d%cs receive delay)", rt, ru);
if (st)
sprintf(s + strlen(s), " (%d%cs send delay)", st, su);
#endif
}
return soap->msgbuf;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_2
static int
soap_set_error(struct soap *soap, const char *faultcode, const char *faultsubcodeQName, const char *faultstring, const char *faultdetailXML, int soaperror)
{ *soap_faultcode(soap) = faultcode;
if (faultsubcodeQName)
*soap_faultsubcode(soap) = faultsubcodeQName;
*soap_faultstring(soap) = faultstring;
if (faultdetailXML && *faultdetailXML)
{ register const char **s = soap_faultdetail(soap);
if (s)
*s = faultdetailXML;
}
return soap->error = soaperror;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_set_sender_error(struct soap *soap, const char *faultstring, const char *faultdetailXML, int soaperror)
{ return soap_set_error(soap, soap->version == 2 ? "SOAP-ENV:Sender" : "SOAP-ENV:Client", NULL, faultstring, faultdetailXML, soaperror);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_set_receiver_error(struct soap *soap, const char *faultstring, const char *faultdetailXML, int soaperror)
{ return soap_set_error(soap, soap->version == 2 ? "SOAP-ENV:Receiver" : "SOAP-ENV:Server", NULL, faultstring, faultdetailXML, soaperror);
}
#endif
/******************************************************************************/
#ifndef PALM_2
static int
soap_copy_fault(struct soap *soap, const char *faultcode, const char *faultsubcodeQName, const char *faultstring, const char *faultdetailXML)
{ char *r = NULL, *s = NULL, *t = NULL;
if (faultsubcodeQName)
r = soap_strdup(soap, faultsubcodeQName);
if (faultstring)
s = soap_strdup(soap, faultstring);
if (faultdetailXML)
t = soap_strdup(soap, faultdetailXML);
return soap_set_error(soap, faultcode, r, s, t, SOAP_FAULT);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_sender_fault(struct soap *soap, const char *faultstring, const char *faultdetailXML)
{ return soap_sender_fault_subcode(soap, NULL, faultstring, faultdetailXML);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_sender_fault_subcode(struct soap *soap, const char *faultsubcodeQName, const char *faultstring, const char *faultdetailXML)
{ return soap_copy_fault(soap, soap->version == 2 ? "SOAP-ENV:Sender" : "SOAP-ENV:Client", faultsubcodeQName, faultstring, faultdetailXML);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_receiver_fault(struct soap *soap, const char *faultstring, const char *faultdetailXML)
{ return soap_receiver_fault_subcode(soap, NULL, faultstring, faultdetailXML);
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
int
SOAP_FMAC2
soap_receiver_fault_subcode(struct soap *soap, const char *faultsubcodeQName, const char *faultstring, const char *faultdetailXML)
{ return soap_copy_fault(soap, soap->version == 2 ? "SOAP-ENV:Receiver" : "SOAP-ENV:Server", faultsubcodeQName, faultstring, faultdetailXML);
}
#endif
/******************************************************************************/
#ifndef PALM_2
#ifndef WITH_NOSTDLIB
SOAP_FMAC1
void
SOAP_FMAC2
soap_print_fault(struct soap *soap, FILE *fd)
{ if (soap_check_state(soap))
fprintf(fd, "Error: soap struct state not initialized\n");
else if (soap->error)
{ const char **c, *v = NULL, *s, *d;
c = soap_faultcode(soap);
if (!*c)
soap_set_fault(soap);
if (soap->version == 2)
v = soap_check_faultsubcode(soap);
s = *soap_faultstring(soap);
d = soap_check_faultdetail(soap);
fprintf(fd, "%s%d fault: %s [%s]\n\"%s\"\nDetail: %s\n", soap->version ? "SOAP 1." : "Error ", soap->version ? (int)soap->version : soap->error, *c, v ? v : "no subcode", s ? s : "[no reason]", d ? d : "[no detail]");
}
}
#endif
#endif
/******************************************************************************/
#ifdef __cplusplus
#ifndef WITH_LEAN
#ifndef WITH_NOSTDLIB
#ifndef WITH_COMPAT
SOAP_FMAC1
void
SOAP_FMAC2
soap_stream_fault(struct soap *soap, std::ostream& os)
{ if (soap_check_state(soap))
os << "Error: soap struct state not initialized\n";
else if (soap->error)
{ const char **c, *v = NULL, *s, *d;
c = soap_faultcode(soap);
if (!*c)
soap_set_fault(soap);
if (soap->version == 2)
v = soap_check_faultsubcode(soap);
s = *soap_faultstring(soap);
d = soap_check_faultdetail(soap);
os << (soap->version ? "SOAP 1." : "Error ")
<< (soap->version ? (int)soap->version : soap->error)
<< " fault: " << *c
<< "[" << (v ? v : "no subcode") << "]"
<< std::endl
<< "\"" << (s ? s : "[no reason]") << "\""
<< std::endl
<< "Detail: " << (d ? d : "[no detail]")
<< std::endl;
}
}
#endif
#endif
#endif
#endif
/******************************************************************************/
#ifndef WITH_LEAN
#ifndef WITH_NOSTDLIB
SOAP_FMAC1
char*
SOAP_FMAC2
soap_sprint_fault(struct soap *soap, char *buf, size_t len)
{ if (soap_check_state(soap))
strncpy(buf, "Error: soap struct not initialized", len);
else if (soap->error)
{ const char **c, *v = NULL, *s, *d;
c = soap_faultcode(soap);
if (!*c)
soap_set_fault(soap);
if (soap->version == 2)
v = *soap_faultsubcode(soap);
s = *soap_faultstring(soap);
d = soap_check_faultdetail(soap);
#ifdef HAVE_SNPRINTF
soap_snprintf(buf, len, "%s%d fault: %s [%s]\n\"%s\"\nDetail: %s\n", soap->version ? "SOAP 1." : "Error ", soap->version ? (int)soap->version : soap->error, *c, v ? v : "no subcode", s ? s : "[no reason]", d ? d : "[no detail]");
#else
if (len > 40 + (v ? strlen(v) : 0) + (s ? strlen(s) : 0) + (d ? strlen(d) : 0))
sprintf(buf, "%s%d fault: %s [%s]\n\"%s\"\nDetail: %s\n", soap->version ? "SOAP 1." : "Error ", soap->version ? (int)soap->version : soap->error, *c, v ? v : "no subcode", s ? s : "[no reason]", d ? d : "[no detail]");
else if (len > 40)
sprintf(buf, "%s%d fault: %s\n", soap->version ? "SOAP 1." : "Error ", soap->version ? (int)soap->version : soap->error, *c);
else
buf[0] = '\0';
#endif
}
return buf;
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_1
#ifndef WITH_NOSTDLIB
SOAP_FMAC1
void
SOAP_FMAC2
soap_print_fault_location(struct soap *soap, FILE *fd)
{
#ifndef WITH_LEAN
int i, j, c1, c2;
if (soap->error && soap->error != SOAP_STOP && soap->bufidx <= soap->buflen && soap->buflen > 0 && soap->buflen <= SOAP_BUFLEN)
{ i = (int)soap->bufidx - 1;
if (i <= 0)
i = 0;
c1 = soap->buf[i];
soap->buf[i] = '\0';
if ((int)soap->buflen >= i + 1024)
j = i + 1023;
else
j = (int)soap->buflen - 1;
c2 = soap->buf[j];
soap->buf[j] = '\0';
fprintf(fd, "%s%c\n<!-- ** HERE ** -->\n", soap->buf, c1);
if (soap->bufidx < soap->buflen)
fprintf(fd, "%s\n", soap->buf + soap->bufidx);
soap->buf[i] = (char)c1;
soap->buf[j] = (char)c2;
}
#endif
}
#endif
#endif
/******************************************************************************/
#ifndef PALM_1
SOAP_FMAC1
int
SOAP_FMAC2
soap_register_plugin_arg(struct soap *soap, int (*fcreate)(struct soap*, struct soap_plugin*, void*), void *arg)
{ register struct soap_plugin *p;
register int r;
if (!(p = (struct soap_plugin*)SOAP_MALLOC(soap, sizeof(struct soap_plugin))))
return soap->error = SOAP_EOM;
p->id = NULL;
p->data = NULL;
p->fcopy = NULL;
p->fdelete = NULL;
r = fcreate(soap, p, arg);
if (!r && p->fdelete)
{ p->next = soap->plugins;
soap->plugins = p;
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Registered '%s' plugin\n", p->id));
return SOAP_OK;
}
DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Could not register plugin '%s': plugin returned error %d (or fdelete callback not set)\n", p->id ? p->id : "?", r));
SOAP_FREE(soap, p);
return r;
}
#endif
/******************************************************************************/
#ifndef PALM_1
static void *
fplugin(struct soap *soap, const char *id)
{ register struct soap_plugin *p;
for (p = soap->plugins; p; p = p->next)
if (p->id == id || !strcmp(p->id, id))
return p->data;
return NULL;
}
#endif
/******************************************************************************/
#ifndef PALM_2
SOAP_FMAC1
void *
SOAP_FMAC2
soap_lookup_plugin(struct soap *soap, const char *id)
{ return soap->fplugin(soap, id);
}
#endif
/******************************************************************************/
#ifdef __cplusplus
}
#endif
/******************************************************************************\
*
* C++ soap struct methods
*
\******************************************************************************/
#ifdef __cplusplus
soap::soap()
{ soap_init(this);
}
#endif
/******************************************************************************/
#ifdef __cplusplus
soap::soap(soap_mode m)
{ soap_init1(this, m);
}
#endif
/******************************************************************************/
#ifdef __cplusplus
soap::soap(soap_mode im, soap_mode om)
{ soap_init2(this, im, om);
}
#endif
/******************************************************************************/
#ifdef __cplusplus
soap::soap(const struct soap& soap)
{ soap_copy_context(this, &soap);
}
#endif
/******************************************************************************/
#ifdef __cplusplus
soap::~soap()
{ soap_destroy(this);
soap_end(this);
soap_done(this);
}
#endif
/******************************************************************************/
| [
"jyothish.jojy@gmail.com"
] | jyothish.jojy@gmail.com |
f0003511b93f38a094dcc9f3f01a5e9f1c41ea02 | cb00120c6dc6f6804521d1dc48cd0ad896dd6915 | /include/wx/msw/fdrepdlg.h | 01bae359fdd5f55ccc2324a1e9780a7ceca393a5 | [
"MIT"
] | permissive | VlasovRoman/SCF | 51d2e6cdb3d33641b129608bad8fd53c0b78d586 | 197e3decd212a39c20442473c54528513b4f3361 | refs/heads/master | 2020-04-03T02:34:32.369254 | 2018-11-18T22:57:56 | 2018-11-18T22:57:56 | 154,960,052 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,990 | h | /////////////////////////////////////////////////////////////////////////////
// Name: wx/msw/fdrepdlg.h
// Purpose: wxFindReplaceDialog class
// Author: Markus Greither
// Modified by: 31.07.01: VZ: integrated into wxWidgets
// Created: 23/03/2001
// Copyright: (c) Markus Greither
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_MSW_FDREPDLG_H_
#define _WX_MSW_FDREPDLG_H_
// ----------------------------------------------------------------------------
// wxFindReplaceDialog: dialog for searching / replacing text
// ----------------------------------------------------------------------------
class WXDLLIMPEXP_CORE wxFindReplaceDialog : public wxFindReplaceDialogBase
{
public:
// ctors and such
wxFindReplaceDialog()
{
Init();
}
wxFindReplaceDialog(wxWindow *parent,
wxFindReplaceData *data,
const wxString &title,
int style = 0);
bool Create(wxWindow *parent,
wxFindReplaceData *data,
const wxString &title,
int style = 0);
virtual ~wxFindReplaceDialog();
// implementation only from now on
wxFindReplaceDialogImpl *GetImpl() const
{
return m_impl;
}
// override some base class virtuals
virtual bool Show(bool show = true) wxOVERRIDE;
virtual void SetTitle( const wxString& title) wxOVERRIDE;
virtual wxString GetTitle() const wxOVERRIDE;
protected:
virtual void DoGetSize(int *width, int *height) const wxOVERRIDE;
virtual void DoGetClientSize(int *width, int *height) const wxOVERRIDE;
virtual void DoSetSize(int x, int y,
int width, int height,
int sizeFlags = wxSIZE_AUTO) wxOVERRIDE;
void Init();
wxString m_title;
wxFindReplaceDialogImpl *m_impl;
wxDECLARE_DYNAMIC_CLASS(wxFindReplaceDialog);
wxDECLARE_NO_COPY_CLASS(wxFindReplaceDialog);
};
#endif // _WX_MSW_FDREPDLG_H_
| [
"k.melekhin@gmail.com"
] | k.melekhin@gmail.com |
d15f5020c1451a68310263b1aee8698efdbb7156 | 1f286cc3e0ef13b320685600f3befea3f265d275 | /Source/Shooter/Private/Player/ShooterSpectatorPawn.cpp | 1228e16aaab3f30744d2c0c92c8f0d1c005c7722 | [] | no_license | sltn011/UE4-Shooter-Learning | d90e8cc8120ac100b16ae4522aed0990043eee3d | adb39a701890b756d62688e3f29ac44654ad0432 | refs/heads/master | 2023-07-18T06:27:27.001373 | 2021-08-30T20:17:59 | 2021-08-30T20:17:59 | 384,444,680 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 534 | cpp | // Shooter, All Rights Reserved
#include "Player/ShooterSpectatorPawn.h"
#include "Camera/CameraComponent.h"
AShooterSpectatorPawn::AShooterSpectatorPawn(
)
{
SpectatorCamera = CreateDefaultSubobject<UCameraComponent>(TEXT("SpectatorCamera"));
SpectatorCamera->bUsePawnControlRotation = true;
SpectatorCamera->PostProcessSettings.ColorSaturation = FVector4{ 1.0f, 1.0f, 1.0f, 0.0f };
SpectatorCamera->PostProcessSettings.bOverride_ColorSaturation = true;
SpectatorCamera->SetupAttachment(GetRootComponent());
} | [
"tenyaev011@gmail.com"
] | tenyaev011@gmail.com |
e0394d8831cc861c7562736b31ac1d5c9a704024 | 7fd5e6156d6a42b305809f474659f641450cea81 | /boost/preprocessor/repetition/repeat.hpp | 9708f0a047512f270fd48b89dfefb184e0bb78df | [] | no_license | imos/icfpc2015 | 5509b6cfc060108c9e5df8093c5bc5421c8480ea | e998055c0456c258aa86e8379180fad153878769 | refs/heads/master | 2020-04-11T04:30:08.777739 | 2015-08-10T11:53:12 | 2015-08-10T11:53:12 | 40,011,767 | 8 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 61,643 | hpp | # /* Copyright (C) 2001
# * Housemarque Oy
# * http://www.housemarque.com
# *
# * Distributed under the Boost Software License, Version 1.0. (See
# * accompanying file LICENSE_1_0.txt or copy at
# * http://www.boost.org/LICENSE_1_0.txt)
# */
#
# /* Revised by Paul Mensonides (2002) */
#
# /* See http://www.boost.org for most recent version. */
#
# ifndef BOOST_PREPROCESSOR_REPETITION_REPEAT_HPP
# define BOOST_PREPROCESSOR_REPETITION_REPEAT_HPP
#
# include "boost/preprocessor/cat.hpp"
# include "boost/preprocessor/config/config.hpp"
# include "boost/preprocessor/debug/error.hpp"
# include "boost/preprocessor/detail/auto_rec.hpp"
# include "boost/preprocessor/tuple/eat.hpp"
#
# /* BOOST_PP_REPEAT */
#
# if 0
# define BOOST_PP_REPEAT(count, macro, data)
# endif
#
# define BOOST_PP_REPEAT BOOST_PP_CAT(BOOST_PP_REPEAT_, BOOST_PP_AUTO_REC(BOOST_PP_REPEAT_P, 4))
#
# define BOOST_PP_REPEAT_P(n) BOOST_PP_CAT(BOOST_PP_REPEAT_CHECK_, BOOST_PP_REPEAT_ ## n(1, BOOST_PP_NIL BOOST_PP_TUPLE_EAT_3, BOOST_PP_NIL))
#
# define BOOST_PP_REPEAT_CHECK_BOOST_PP_NIL 1
# define BOOST_PP_REPEAT_CHECK_BOOST_PP_REPEAT_1(c, m, d) 0
# define BOOST_PP_REPEAT_CHECK_BOOST_PP_REPEAT_2(c, m, d) 0
# define BOOST_PP_REPEAT_CHECK_BOOST_PP_REPEAT_3(c, m, d) 0
#
# define BOOST_PP_REPEAT_1(c, m, d) BOOST_PP_REPEAT_1_I(c, m, d)
# define BOOST_PP_REPEAT_2(c, m, d) BOOST_PP_REPEAT_2_I(c, m, d)
# define BOOST_PP_REPEAT_3(c, m, d) BOOST_PP_REPEAT_3_I(c, m, d)
# define BOOST_PP_REPEAT_4(c, m, d) BOOST_PP_ERROR(0x0003)
#
# define BOOST_PP_REPEAT_1_I(c, m, d) BOOST_PP_REPEAT_1_ ## c(m, d)
# define BOOST_PP_REPEAT_2_I(c, m, d) BOOST_PP_REPEAT_2_ ## c(m, d)
# define BOOST_PP_REPEAT_3_I(c, m, d) BOOST_PP_REPEAT_3_ ## c(m, d)
#
# define BOOST_PP_REPEAT_1ST BOOST_PP_REPEAT_1
# define BOOST_PP_REPEAT_2ND BOOST_PP_REPEAT_2
# define BOOST_PP_REPEAT_3RD BOOST_PP_REPEAT_3
#
# define BOOST_PP_REPEAT_1_0(m, d)
# define BOOST_PP_REPEAT_1_1(m, d) m(2, 0, d)
# define BOOST_PP_REPEAT_1_2(m, d) BOOST_PP_REPEAT_1_1(m, d) m(2, 1, d)
# define BOOST_PP_REPEAT_1_3(m, d) BOOST_PP_REPEAT_1_2(m, d) m(2, 2, d)
# define BOOST_PP_REPEAT_1_4(m, d) BOOST_PP_REPEAT_1_3(m, d) m(2, 3, d)
# define BOOST_PP_REPEAT_1_5(m, d) BOOST_PP_REPEAT_1_4(m, d) m(2, 4, d)
# define BOOST_PP_REPEAT_1_6(m, d) BOOST_PP_REPEAT_1_5(m, d) m(2, 5, d)
# define BOOST_PP_REPEAT_1_7(m, d) BOOST_PP_REPEAT_1_6(m, d) m(2, 6, d)
# define BOOST_PP_REPEAT_1_8(m, d) BOOST_PP_REPEAT_1_7(m, d) m(2, 7, d)
# define BOOST_PP_REPEAT_1_9(m, d) BOOST_PP_REPEAT_1_8(m, d) m(2, 8, d)
# define BOOST_PP_REPEAT_1_10(m, d) BOOST_PP_REPEAT_1_9(m, d) m(2, 9, d)
# define BOOST_PP_REPEAT_1_11(m, d) BOOST_PP_REPEAT_1_10(m, d) m(2, 10, d)
# define BOOST_PP_REPEAT_1_12(m, d) BOOST_PP_REPEAT_1_11(m, d) m(2, 11, d)
# define BOOST_PP_REPEAT_1_13(m, d) BOOST_PP_REPEAT_1_12(m, d) m(2, 12, d)
# define BOOST_PP_REPEAT_1_14(m, d) BOOST_PP_REPEAT_1_13(m, d) m(2, 13, d)
# define BOOST_PP_REPEAT_1_15(m, d) BOOST_PP_REPEAT_1_14(m, d) m(2, 14, d)
# define BOOST_PP_REPEAT_1_16(m, d) BOOST_PP_REPEAT_1_15(m, d) m(2, 15, d)
# define BOOST_PP_REPEAT_1_17(m, d) BOOST_PP_REPEAT_1_16(m, d) m(2, 16, d)
# define BOOST_PP_REPEAT_1_18(m, d) BOOST_PP_REPEAT_1_17(m, d) m(2, 17, d)
# define BOOST_PP_REPEAT_1_19(m, d) BOOST_PP_REPEAT_1_18(m, d) m(2, 18, d)
# define BOOST_PP_REPEAT_1_20(m, d) BOOST_PP_REPEAT_1_19(m, d) m(2, 19, d)
# define BOOST_PP_REPEAT_1_21(m, d) BOOST_PP_REPEAT_1_20(m, d) m(2, 20, d)
# define BOOST_PP_REPEAT_1_22(m, d) BOOST_PP_REPEAT_1_21(m, d) m(2, 21, d)
# define BOOST_PP_REPEAT_1_23(m, d) BOOST_PP_REPEAT_1_22(m, d) m(2, 22, d)
# define BOOST_PP_REPEAT_1_24(m, d) BOOST_PP_REPEAT_1_23(m, d) m(2, 23, d)
# define BOOST_PP_REPEAT_1_25(m, d) BOOST_PP_REPEAT_1_24(m, d) m(2, 24, d)
# define BOOST_PP_REPEAT_1_26(m, d) BOOST_PP_REPEAT_1_25(m, d) m(2, 25, d)
# define BOOST_PP_REPEAT_1_27(m, d) BOOST_PP_REPEAT_1_26(m, d) m(2, 26, d)
# define BOOST_PP_REPEAT_1_28(m, d) BOOST_PP_REPEAT_1_27(m, d) m(2, 27, d)
# define BOOST_PP_REPEAT_1_29(m, d) BOOST_PP_REPEAT_1_28(m, d) m(2, 28, d)
# define BOOST_PP_REPEAT_1_30(m, d) BOOST_PP_REPEAT_1_29(m, d) m(2, 29, d)
# define BOOST_PP_REPEAT_1_31(m, d) BOOST_PP_REPEAT_1_30(m, d) m(2, 30, d)
# define BOOST_PP_REPEAT_1_32(m, d) BOOST_PP_REPEAT_1_31(m, d) m(2, 31, d)
# define BOOST_PP_REPEAT_1_33(m, d) BOOST_PP_REPEAT_1_32(m, d) m(2, 32, d)
# define BOOST_PP_REPEAT_1_34(m, d) BOOST_PP_REPEAT_1_33(m, d) m(2, 33, d)
# define BOOST_PP_REPEAT_1_35(m, d) BOOST_PP_REPEAT_1_34(m, d) m(2, 34, d)
# define BOOST_PP_REPEAT_1_36(m, d) BOOST_PP_REPEAT_1_35(m, d) m(2, 35, d)
# define BOOST_PP_REPEAT_1_37(m, d) BOOST_PP_REPEAT_1_36(m, d) m(2, 36, d)
# define BOOST_PP_REPEAT_1_38(m, d) BOOST_PP_REPEAT_1_37(m, d) m(2, 37, d)
# define BOOST_PP_REPEAT_1_39(m, d) BOOST_PP_REPEAT_1_38(m, d) m(2, 38, d)
# define BOOST_PP_REPEAT_1_40(m, d) BOOST_PP_REPEAT_1_39(m, d) m(2, 39, d)
# define BOOST_PP_REPEAT_1_41(m, d) BOOST_PP_REPEAT_1_40(m, d) m(2, 40, d)
# define BOOST_PP_REPEAT_1_42(m, d) BOOST_PP_REPEAT_1_41(m, d) m(2, 41, d)
# define BOOST_PP_REPEAT_1_43(m, d) BOOST_PP_REPEAT_1_42(m, d) m(2, 42, d)
# define BOOST_PP_REPEAT_1_44(m, d) BOOST_PP_REPEAT_1_43(m, d) m(2, 43, d)
# define BOOST_PP_REPEAT_1_45(m, d) BOOST_PP_REPEAT_1_44(m, d) m(2, 44, d)
# define BOOST_PP_REPEAT_1_46(m, d) BOOST_PP_REPEAT_1_45(m, d) m(2, 45, d)
# define BOOST_PP_REPEAT_1_47(m, d) BOOST_PP_REPEAT_1_46(m, d) m(2, 46, d)
# define BOOST_PP_REPEAT_1_48(m, d) BOOST_PP_REPEAT_1_47(m, d) m(2, 47, d)
# define BOOST_PP_REPEAT_1_49(m, d) BOOST_PP_REPEAT_1_48(m, d) m(2, 48, d)
# define BOOST_PP_REPEAT_1_50(m, d) BOOST_PP_REPEAT_1_49(m, d) m(2, 49, d)
# define BOOST_PP_REPEAT_1_51(m, d) BOOST_PP_REPEAT_1_50(m, d) m(2, 50, d)
# define BOOST_PP_REPEAT_1_52(m, d) BOOST_PP_REPEAT_1_51(m, d) m(2, 51, d)
# define BOOST_PP_REPEAT_1_53(m, d) BOOST_PP_REPEAT_1_52(m, d) m(2, 52, d)
# define BOOST_PP_REPEAT_1_54(m, d) BOOST_PP_REPEAT_1_53(m, d) m(2, 53, d)
# define BOOST_PP_REPEAT_1_55(m, d) BOOST_PP_REPEAT_1_54(m, d) m(2, 54, d)
# define BOOST_PP_REPEAT_1_56(m, d) BOOST_PP_REPEAT_1_55(m, d) m(2, 55, d)
# define BOOST_PP_REPEAT_1_57(m, d) BOOST_PP_REPEAT_1_56(m, d) m(2, 56, d)
# define BOOST_PP_REPEAT_1_58(m, d) BOOST_PP_REPEAT_1_57(m, d) m(2, 57, d)
# define BOOST_PP_REPEAT_1_59(m, d) BOOST_PP_REPEAT_1_58(m, d) m(2, 58, d)
# define BOOST_PP_REPEAT_1_60(m, d) BOOST_PP_REPEAT_1_59(m, d) m(2, 59, d)
# define BOOST_PP_REPEAT_1_61(m, d) BOOST_PP_REPEAT_1_60(m, d) m(2, 60, d)
# define BOOST_PP_REPEAT_1_62(m, d) BOOST_PP_REPEAT_1_61(m, d) m(2, 61, d)
# define BOOST_PP_REPEAT_1_63(m, d) BOOST_PP_REPEAT_1_62(m, d) m(2, 62, d)
# define BOOST_PP_REPEAT_1_64(m, d) BOOST_PP_REPEAT_1_63(m, d) m(2, 63, d)
# define BOOST_PP_REPEAT_1_65(m, d) BOOST_PP_REPEAT_1_64(m, d) m(2, 64, d)
# define BOOST_PP_REPEAT_1_66(m, d) BOOST_PP_REPEAT_1_65(m, d) m(2, 65, d)
# define BOOST_PP_REPEAT_1_67(m, d) BOOST_PP_REPEAT_1_66(m, d) m(2, 66, d)
# define BOOST_PP_REPEAT_1_68(m, d) BOOST_PP_REPEAT_1_67(m, d) m(2, 67, d)
# define BOOST_PP_REPEAT_1_69(m, d) BOOST_PP_REPEAT_1_68(m, d) m(2, 68, d)
# define BOOST_PP_REPEAT_1_70(m, d) BOOST_PP_REPEAT_1_69(m, d) m(2, 69, d)
# define BOOST_PP_REPEAT_1_71(m, d) BOOST_PP_REPEAT_1_70(m, d) m(2, 70, d)
# define BOOST_PP_REPEAT_1_72(m, d) BOOST_PP_REPEAT_1_71(m, d) m(2, 71, d)
# define BOOST_PP_REPEAT_1_73(m, d) BOOST_PP_REPEAT_1_72(m, d) m(2, 72, d)
# define BOOST_PP_REPEAT_1_74(m, d) BOOST_PP_REPEAT_1_73(m, d) m(2, 73, d)
# define BOOST_PP_REPEAT_1_75(m, d) BOOST_PP_REPEAT_1_74(m, d) m(2, 74, d)
# define BOOST_PP_REPEAT_1_76(m, d) BOOST_PP_REPEAT_1_75(m, d) m(2, 75, d)
# define BOOST_PP_REPEAT_1_77(m, d) BOOST_PP_REPEAT_1_76(m, d) m(2, 76, d)
# define BOOST_PP_REPEAT_1_78(m, d) BOOST_PP_REPEAT_1_77(m, d) m(2, 77, d)
# define BOOST_PP_REPEAT_1_79(m, d) BOOST_PP_REPEAT_1_78(m, d) m(2, 78, d)
# define BOOST_PP_REPEAT_1_80(m, d) BOOST_PP_REPEAT_1_79(m, d) m(2, 79, d)
# define BOOST_PP_REPEAT_1_81(m, d) BOOST_PP_REPEAT_1_80(m, d) m(2, 80, d)
# define BOOST_PP_REPEAT_1_82(m, d) BOOST_PP_REPEAT_1_81(m, d) m(2, 81, d)
# define BOOST_PP_REPEAT_1_83(m, d) BOOST_PP_REPEAT_1_82(m, d) m(2, 82, d)
# define BOOST_PP_REPEAT_1_84(m, d) BOOST_PP_REPEAT_1_83(m, d) m(2, 83, d)
# define BOOST_PP_REPEAT_1_85(m, d) BOOST_PP_REPEAT_1_84(m, d) m(2, 84, d)
# define BOOST_PP_REPEAT_1_86(m, d) BOOST_PP_REPEAT_1_85(m, d) m(2, 85, d)
# define BOOST_PP_REPEAT_1_87(m, d) BOOST_PP_REPEAT_1_86(m, d) m(2, 86, d)
# define BOOST_PP_REPEAT_1_88(m, d) BOOST_PP_REPEAT_1_87(m, d) m(2, 87, d)
# define BOOST_PP_REPEAT_1_89(m, d) BOOST_PP_REPEAT_1_88(m, d) m(2, 88, d)
# define BOOST_PP_REPEAT_1_90(m, d) BOOST_PP_REPEAT_1_89(m, d) m(2, 89, d)
# define BOOST_PP_REPEAT_1_91(m, d) BOOST_PP_REPEAT_1_90(m, d) m(2, 90, d)
# define BOOST_PP_REPEAT_1_92(m, d) BOOST_PP_REPEAT_1_91(m, d) m(2, 91, d)
# define BOOST_PP_REPEAT_1_93(m, d) BOOST_PP_REPEAT_1_92(m, d) m(2, 92, d)
# define BOOST_PP_REPEAT_1_94(m, d) BOOST_PP_REPEAT_1_93(m, d) m(2, 93, d)
# define BOOST_PP_REPEAT_1_95(m, d) BOOST_PP_REPEAT_1_94(m, d) m(2, 94, d)
# define BOOST_PP_REPEAT_1_96(m, d) BOOST_PP_REPEAT_1_95(m, d) m(2, 95, d)
# define BOOST_PP_REPEAT_1_97(m, d) BOOST_PP_REPEAT_1_96(m, d) m(2, 96, d)
# define BOOST_PP_REPEAT_1_98(m, d) BOOST_PP_REPEAT_1_97(m, d) m(2, 97, d)
# define BOOST_PP_REPEAT_1_99(m, d) BOOST_PP_REPEAT_1_98(m, d) m(2, 98, d)
# define BOOST_PP_REPEAT_1_100(m, d) BOOST_PP_REPEAT_1_99(m, d) m(2, 99, d)
# define BOOST_PP_REPEAT_1_101(m, d) BOOST_PP_REPEAT_1_100(m, d) m(2, 100, d)
# define BOOST_PP_REPEAT_1_102(m, d) BOOST_PP_REPEAT_1_101(m, d) m(2, 101, d)
# define BOOST_PP_REPEAT_1_103(m, d) BOOST_PP_REPEAT_1_102(m, d) m(2, 102, d)
# define BOOST_PP_REPEAT_1_104(m, d) BOOST_PP_REPEAT_1_103(m, d) m(2, 103, d)
# define BOOST_PP_REPEAT_1_105(m, d) BOOST_PP_REPEAT_1_104(m, d) m(2, 104, d)
# define BOOST_PP_REPEAT_1_106(m, d) BOOST_PP_REPEAT_1_105(m, d) m(2, 105, d)
# define BOOST_PP_REPEAT_1_107(m, d) BOOST_PP_REPEAT_1_106(m, d) m(2, 106, d)
# define BOOST_PP_REPEAT_1_108(m, d) BOOST_PP_REPEAT_1_107(m, d) m(2, 107, d)
# define BOOST_PP_REPEAT_1_109(m, d) BOOST_PP_REPEAT_1_108(m, d) m(2, 108, d)
# define BOOST_PP_REPEAT_1_110(m, d) BOOST_PP_REPEAT_1_109(m, d) m(2, 109, d)
# define BOOST_PP_REPEAT_1_111(m, d) BOOST_PP_REPEAT_1_110(m, d) m(2, 110, d)
# define BOOST_PP_REPEAT_1_112(m, d) BOOST_PP_REPEAT_1_111(m, d) m(2, 111, d)
# define BOOST_PP_REPEAT_1_113(m, d) BOOST_PP_REPEAT_1_112(m, d) m(2, 112, d)
# define BOOST_PP_REPEAT_1_114(m, d) BOOST_PP_REPEAT_1_113(m, d) m(2, 113, d)
# define BOOST_PP_REPEAT_1_115(m, d) BOOST_PP_REPEAT_1_114(m, d) m(2, 114, d)
# define BOOST_PP_REPEAT_1_116(m, d) BOOST_PP_REPEAT_1_115(m, d) m(2, 115, d)
# define BOOST_PP_REPEAT_1_117(m, d) BOOST_PP_REPEAT_1_116(m, d) m(2, 116, d)
# define BOOST_PP_REPEAT_1_118(m, d) BOOST_PP_REPEAT_1_117(m, d) m(2, 117, d)
# define BOOST_PP_REPEAT_1_119(m, d) BOOST_PP_REPEAT_1_118(m, d) m(2, 118, d)
# define BOOST_PP_REPEAT_1_120(m, d) BOOST_PP_REPEAT_1_119(m, d) m(2, 119, d)
# define BOOST_PP_REPEAT_1_121(m, d) BOOST_PP_REPEAT_1_120(m, d) m(2, 120, d)
# define BOOST_PP_REPEAT_1_122(m, d) BOOST_PP_REPEAT_1_121(m, d) m(2, 121, d)
# define BOOST_PP_REPEAT_1_123(m, d) BOOST_PP_REPEAT_1_122(m, d) m(2, 122, d)
# define BOOST_PP_REPEAT_1_124(m, d) BOOST_PP_REPEAT_1_123(m, d) m(2, 123, d)
# define BOOST_PP_REPEAT_1_125(m, d) BOOST_PP_REPEAT_1_124(m, d) m(2, 124, d)
# define BOOST_PP_REPEAT_1_126(m, d) BOOST_PP_REPEAT_1_125(m, d) m(2, 125, d)
# define BOOST_PP_REPEAT_1_127(m, d) BOOST_PP_REPEAT_1_126(m, d) m(2, 126, d)
# define BOOST_PP_REPEAT_1_128(m, d) BOOST_PP_REPEAT_1_127(m, d) m(2, 127, d)
# define BOOST_PP_REPEAT_1_129(m, d) BOOST_PP_REPEAT_1_128(m, d) m(2, 128, d)
# define BOOST_PP_REPEAT_1_130(m, d) BOOST_PP_REPEAT_1_129(m, d) m(2, 129, d)
# define BOOST_PP_REPEAT_1_131(m, d) BOOST_PP_REPEAT_1_130(m, d) m(2, 130, d)
# define BOOST_PP_REPEAT_1_132(m, d) BOOST_PP_REPEAT_1_131(m, d) m(2, 131, d)
# define BOOST_PP_REPEAT_1_133(m, d) BOOST_PP_REPEAT_1_132(m, d) m(2, 132, d)
# define BOOST_PP_REPEAT_1_134(m, d) BOOST_PP_REPEAT_1_133(m, d) m(2, 133, d)
# define BOOST_PP_REPEAT_1_135(m, d) BOOST_PP_REPEAT_1_134(m, d) m(2, 134, d)
# define BOOST_PP_REPEAT_1_136(m, d) BOOST_PP_REPEAT_1_135(m, d) m(2, 135, d)
# define BOOST_PP_REPEAT_1_137(m, d) BOOST_PP_REPEAT_1_136(m, d) m(2, 136, d)
# define BOOST_PP_REPEAT_1_138(m, d) BOOST_PP_REPEAT_1_137(m, d) m(2, 137, d)
# define BOOST_PP_REPEAT_1_139(m, d) BOOST_PP_REPEAT_1_138(m, d) m(2, 138, d)
# define BOOST_PP_REPEAT_1_140(m, d) BOOST_PP_REPEAT_1_139(m, d) m(2, 139, d)
# define BOOST_PP_REPEAT_1_141(m, d) BOOST_PP_REPEAT_1_140(m, d) m(2, 140, d)
# define BOOST_PP_REPEAT_1_142(m, d) BOOST_PP_REPEAT_1_141(m, d) m(2, 141, d)
# define BOOST_PP_REPEAT_1_143(m, d) BOOST_PP_REPEAT_1_142(m, d) m(2, 142, d)
# define BOOST_PP_REPEAT_1_144(m, d) BOOST_PP_REPEAT_1_143(m, d) m(2, 143, d)
# define BOOST_PP_REPEAT_1_145(m, d) BOOST_PP_REPEAT_1_144(m, d) m(2, 144, d)
# define BOOST_PP_REPEAT_1_146(m, d) BOOST_PP_REPEAT_1_145(m, d) m(2, 145, d)
# define BOOST_PP_REPEAT_1_147(m, d) BOOST_PP_REPEAT_1_146(m, d) m(2, 146, d)
# define BOOST_PP_REPEAT_1_148(m, d) BOOST_PP_REPEAT_1_147(m, d) m(2, 147, d)
# define BOOST_PP_REPEAT_1_149(m, d) BOOST_PP_REPEAT_1_148(m, d) m(2, 148, d)
# define BOOST_PP_REPEAT_1_150(m, d) BOOST_PP_REPEAT_1_149(m, d) m(2, 149, d)
# define BOOST_PP_REPEAT_1_151(m, d) BOOST_PP_REPEAT_1_150(m, d) m(2, 150, d)
# define BOOST_PP_REPEAT_1_152(m, d) BOOST_PP_REPEAT_1_151(m, d) m(2, 151, d)
# define BOOST_PP_REPEAT_1_153(m, d) BOOST_PP_REPEAT_1_152(m, d) m(2, 152, d)
# define BOOST_PP_REPEAT_1_154(m, d) BOOST_PP_REPEAT_1_153(m, d) m(2, 153, d)
# define BOOST_PP_REPEAT_1_155(m, d) BOOST_PP_REPEAT_1_154(m, d) m(2, 154, d)
# define BOOST_PP_REPEAT_1_156(m, d) BOOST_PP_REPEAT_1_155(m, d) m(2, 155, d)
# define BOOST_PP_REPEAT_1_157(m, d) BOOST_PP_REPEAT_1_156(m, d) m(2, 156, d)
# define BOOST_PP_REPEAT_1_158(m, d) BOOST_PP_REPEAT_1_157(m, d) m(2, 157, d)
# define BOOST_PP_REPEAT_1_159(m, d) BOOST_PP_REPEAT_1_158(m, d) m(2, 158, d)
# define BOOST_PP_REPEAT_1_160(m, d) BOOST_PP_REPEAT_1_159(m, d) m(2, 159, d)
# define BOOST_PP_REPEAT_1_161(m, d) BOOST_PP_REPEAT_1_160(m, d) m(2, 160, d)
# define BOOST_PP_REPEAT_1_162(m, d) BOOST_PP_REPEAT_1_161(m, d) m(2, 161, d)
# define BOOST_PP_REPEAT_1_163(m, d) BOOST_PP_REPEAT_1_162(m, d) m(2, 162, d)
# define BOOST_PP_REPEAT_1_164(m, d) BOOST_PP_REPEAT_1_163(m, d) m(2, 163, d)
# define BOOST_PP_REPEAT_1_165(m, d) BOOST_PP_REPEAT_1_164(m, d) m(2, 164, d)
# define BOOST_PP_REPEAT_1_166(m, d) BOOST_PP_REPEAT_1_165(m, d) m(2, 165, d)
# define BOOST_PP_REPEAT_1_167(m, d) BOOST_PP_REPEAT_1_166(m, d) m(2, 166, d)
# define BOOST_PP_REPEAT_1_168(m, d) BOOST_PP_REPEAT_1_167(m, d) m(2, 167, d)
# define BOOST_PP_REPEAT_1_169(m, d) BOOST_PP_REPEAT_1_168(m, d) m(2, 168, d)
# define BOOST_PP_REPEAT_1_170(m, d) BOOST_PP_REPEAT_1_169(m, d) m(2, 169, d)
# define BOOST_PP_REPEAT_1_171(m, d) BOOST_PP_REPEAT_1_170(m, d) m(2, 170, d)
# define BOOST_PP_REPEAT_1_172(m, d) BOOST_PP_REPEAT_1_171(m, d) m(2, 171, d)
# define BOOST_PP_REPEAT_1_173(m, d) BOOST_PP_REPEAT_1_172(m, d) m(2, 172, d)
# define BOOST_PP_REPEAT_1_174(m, d) BOOST_PP_REPEAT_1_173(m, d) m(2, 173, d)
# define BOOST_PP_REPEAT_1_175(m, d) BOOST_PP_REPEAT_1_174(m, d) m(2, 174, d)
# define BOOST_PP_REPEAT_1_176(m, d) BOOST_PP_REPEAT_1_175(m, d) m(2, 175, d)
# define BOOST_PP_REPEAT_1_177(m, d) BOOST_PP_REPEAT_1_176(m, d) m(2, 176, d)
# define BOOST_PP_REPEAT_1_178(m, d) BOOST_PP_REPEAT_1_177(m, d) m(2, 177, d)
# define BOOST_PP_REPEAT_1_179(m, d) BOOST_PP_REPEAT_1_178(m, d) m(2, 178, d)
# define BOOST_PP_REPEAT_1_180(m, d) BOOST_PP_REPEAT_1_179(m, d) m(2, 179, d)
# define BOOST_PP_REPEAT_1_181(m, d) BOOST_PP_REPEAT_1_180(m, d) m(2, 180, d)
# define BOOST_PP_REPEAT_1_182(m, d) BOOST_PP_REPEAT_1_181(m, d) m(2, 181, d)
# define BOOST_PP_REPEAT_1_183(m, d) BOOST_PP_REPEAT_1_182(m, d) m(2, 182, d)
# define BOOST_PP_REPEAT_1_184(m, d) BOOST_PP_REPEAT_1_183(m, d) m(2, 183, d)
# define BOOST_PP_REPEAT_1_185(m, d) BOOST_PP_REPEAT_1_184(m, d) m(2, 184, d)
# define BOOST_PP_REPEAT_1_186(m, d) BOOST_PP_REPEAT_1_185(m, d) m(2, 185, d)
# define BOOST_PP_REPEAT_1_187(m, d) BOOST_PP_REPEAT_1_186(m, d) m(2, 186, d)
# define BOOST_PP_REPEAT_1_188(m, d) BOOST_PP_REPEAT_1_187(m, d) m(2, 187, d)
# define BOOST_PP_REPEAT_1_189(m, d) BOOST_PP_REPEAT_1_188(m, d) m(2, 188, d)
# define BOOST_PP_REPEAT_1_190(m, d) BOOST_PP_REPEAT_1_189(m, d) m(2, 189, d)
# define BOOST_PP_REPEAT_1_191(m, d) BOOST_PP_REPEAT_1_190(m, d) m(2, 190, d)
# define BOOST_PP_REPEAT_1_192(m, d) BOOST_PP_REPEAT_1_191(m, d) m(2, 191, d)
# define BOOST_PP_REPEAT_1_193(m, d) BOOST_PP_REPEAT_1_192(m, d) m(2, 192, d)
# define BOOST_PP_REPEAT_1_194(m, d) BOOST_PP_REPEAT_1_193(m, d) m(2, 193, d)
# define BOOST_PP_REPEAT_1_195(m, d) BOOST_PP_REPEAT_1_194(m, d) m(2, 194, d)
# define BOOST_PP_REPEAT_1_196(m, d) BOOST_PP_REPEAT_1_195(m, d) m(2, 195, d)
# define BOOST_PP_REPEAT_1_197(m, d) BOOST_PP_REPEAT_1_196(m, d) m(2, 196, d)
# define BOOST_PP_REPEAT_1_198(m, d) BOOST_PP_REPEAT_1_197(m, d) m(2, 197, d)
# define BOOST_PP_REPEAT_1_199(m, d) BOOST_PP_REPEAT_1_198(m, d) m(2, 198, d)
# define BOOST_PP_REPEAT_1_200(m, d) BOOST_PP_REPEAT_1_199(m, d) m(2, 199, d)
# define BOOST_PP_REPEAT_1_201(m, d) BOOST_PP_REPEAT_1_200(m, d) m(2, 200, d)
# define BOOST_PP_REPEAT_1_202(m, d) BOOST_PP_REPEAT_1_201(m, d) m(2, 201, d)
# define BOOST_PP_REPEAT_1_203(m, d) BOOST_PP_REPEAT_1_202(m, d) m(2, 202, d)
# define BOOST_PP_REPEAT_1_204(m, d) BOOST_PP_REPEAT_1_203(m, d) m(2, 203, d)
# define BOOST_PP_REPEAT_1_205(m, d) BOOST_PP_REPEAT_1_204(m, d) m(2, 204, d)
# define BOOST_PP_REPEAT_1_206(m, d) BOOST_PP_REPEAT_1_205(m, d) m(2, 205, d)
# define BOOST_PP_REPEAT_1_207(m, d) BOOST_PP_REPEAT_1_206(m, d) m(2, 206, d)
# define BOOST_PP_REPEAT_1_208(m, d) BOOST_PP_REPEAT_1_207(m, d) m(2, 207, d)
# define BOOST_PP_REPEAT_1_209(m, d) BOOST_PP_REPEAT_1_208(m, d) m(2, 208, d)
# define BOOST_PP_REPEAT_1_210(m, d) BOOST_PP_REPEAT_1_209(m, d) m(2, 209, d)
# define BOOST_PP_REPEAT_1_211(m, d) BOOST_PP_REPEAT_1_210(m, d) m(2, 210, d)
# define BOOST_PP_REPEAT_1_212(m, d) BOOST_PP_REPEAT_1_211(m, d) m(2, 211, d)
# define BOOST_PP_REPEAT_1_213(m, d) BOOST_PP_REPEAT_1_212(m, d) m(2, 212, d)
# define BOOST_PP_REPEAT_1_214(m, d) BOOST_PP_REPEAT_1_213(m, d) m(2, 213, d)
# define BOOST_PP_REPEAT_1_215(m, d) BOOST_PP_REPEAT_1_214(m, d) m(2, 214, d)
# define BOOST_PP_REPEAT_1_216(m, d) BOOST_PP_REPEAT_1_215(m, d) m(2, 215, d)
# define BOOST_PP_REPEAT_1_217(m, d) BOOST_PP_REPEAT_1_216(m, d) m(2, 216, d)
# define BOOST_PP_REPEAT_1_218(m, d) BOOST_PP_REPEAT_1_217(m, d) m(2, 217, d)
# define BOOST_PP_REPEAT_1_219(m, d) BOOST_PP_REPEAT_1_218(m, d) m(2, 218, d)
# define BOOST_PP_REPEAT_1_220(m, d) BOOST_PP_REPEAT_1_219(m, d) m(2, 219, d)
# define BOOST_PP_REPEAT_1_221(m, d) BOOST_PP_REPEAT_1_220(m, d) m(2, 220, d)
# define BOOST_PP_REPEAT_1_222(m, d) BOOST_PP_REPEAT_1_221(m, d) m(2, 221, d)
# define BOOST_PP_REPEAT_1_223(m, d) BOOST_PP_REPEAT_1_222(m, d) m(2, 222, d)
# define BOOST_PP_REPEAT_1_224(m, d) BOOST_PP_REPEAT_1_223(m, d) m(2, 223, d)
# define BOOST_PP_REPEAT_1_225(m, d) BOOST_PP_REPEAT_1_224(m, d) m(2, 224, d)
# define BOOST_PP_REPEAT_1_226(m, d) BOOST_PP_REPEAT_1_225(m, d) m(2, 225, d)
# define BOOST_PP_REPEAT_1_227(m, d) BOOST_PP_REPEAT_1_226(m, d) m(2, 226, d)
# define BOOST_PP_REPEAT_1_228(m, d) BOOST_PP_REPEAT_1_227(m, d) m(2, 227, d)
# define BOOST_PP_REPEAT_1_229(m, d) BOOST_PP_REPEAT_1_228(m, d) m(2, 228, d)
# define BOOST_PP_REPEAT_1_230(m, d) BOOST_PP_REPEAT_1_229(m, d) m(2, 229, d)
# define BOOST_PP_REPEAT_1_231(m, d) BOOST_PP_REPEAT_1_230(m, d) m(2, 230, d)
# define BOOST_PP_REPEAT_1_232(m, d) BOOST_PP_REPEAT_1_231(m, d) m(2, 231, d)
# define BOOST_PP_REPEAT_1_233(m, d) BOOST_PP_REPEAT_1_232(m, d) m(2, 232, d)
# define BOOST_PP_REPEAT_1_234(m, d) BOOST_PP_REPEAT_1_233(m, d) m(2, 233, d)
# define BOOST_PP_REPEAT_1_235(m, d) BOOST_PP_REPEAT_1_234(m, d) m(2, 234, d)
# define BOOST_PP_REPEAT_1_236(m, d) BOOST_PP_REPEAT_1_235(m, d) m(2, 235, d)
# define BOOST_PP_REPEAT_1_237(m, d) BOOST_PP_REPEAT_1_236(m, d) m(2, 236, d)
# define BOOST_PP_REPEAT_1_238(m, d) BOOST_PP_REPEAT_1_237(m, d) m(2, 237, d)
# define BOOST_PP_REPEAT_1_239(m, d) BOOST_PP_REPEAT_1_238(m, d) m(2, 238, d)
# define BOOST_PP_REPEAT_1_240(m, d) BOOST_PP_REPEAT_1_239(m, d) m(2, 239, d)
# define BOOST_PP_REPEAT_1_241(m, d) BOOST_PP_REPEAT_1_240(m, d) m(2, 240, d)
# define BOOST_PP_REPEAT_1_242(m, d) BOOST_PP_REPEAT_1_241(m, d) m(2, 241, d)
# define BOOST_PP_REPEAT_1_243(m, d) BOOST_PP_REPEAT_1_242(m, d) m(2, 242, d)
# define BOOST_PP_REPEAT_1_244(m, d) BOOST_PP_REPEAT_1_243(m, d) m(2, 243, d)
# define BOOST_PP_REPEAT_1_245(m, d) BOOST_PP_REPEAT_1_244(m, d) m(2, 244, d)
# define BOOST_PP_REPEAT_1_246(m, d) BOOST_PP_REPEAT_1_245(m, d) m(2, 245, d)
# define BOOST_PP_REPEAT_1_247(m, d) BOOST_PP_REPEAT_1_246(m, d) m(2, 246, d)
# define BOOST_PP_REPEAT_1_248(m, d) BOOST_PP_REPEAT_1_247(m, d) m(2, 247, d)
# define BOOST_PP_REPEAT_1_249(m, d) BOOST_PP_REPEAT_1_248(m, d) m(2, 248, d)
# define BOOST_PP_REPEAT_1_250(m, d) BOOST_PP_REPEAT_1_249(m, d) m(2, 249, d)
# define BOOST_PP_REPEAT_1_251(m, d) BOOST_PP_REPEAT_1_250(m, d) m(2, 250, d)
# define BOOST_PP_REPEAT_1_252(m, d) BOOST_PP_REPEAT_1_251(m, d) m(2, 251, d)
# define BOOST_PP_REPEAT_1_253(m, d) BOOST_PP_REPEAT_1_252(m, d) m(2, 252, d)
# define BOOST_PP_REPEAT_1_254(m, d) BOOST_PP_REPEAT_1_253(m, d) m(2, 253, d)
# define BOOST_PP_REPEAT_1_255(m, d) BOOST_PP_REPEAT_1_254(m, d) m(2, 254, d)
# define BOOST_PP_REPEAT_1_256(m, d) BOOST_PP_REPEAT_1_255(m, d) m(2, 255, d)
#
# define BOOST_PP_REPEAT_2_0(m, d)
# define BOOST_PP_REPEAT_2_1(m, d) m(3, 0, d)
# define BOOST_PP_REPEAT_2_2(m, d) BOOST_PP_REPEAT_2_1(m, d) m(3, 1, d)
# define BOOST_PP_REPEAT_2_3(m, d) BOOST_PP_REPEAT_2_2(m, d) m(3, 2, d)
# define BOOST_PP_REPEAT_2_4(m, d) BOOST_PP_REPEAT_2_3(m, d) m(3, 3, d)
# define BOOST_PP_REPEAT_2_5(m, d) BOOST_PP_REPEAT_2_4(m, d) m(3, 4, d)
# define BOOST_PP_REPEAT_2_6(m, d) BOOST_PP_REPEAT_2_5(m, d) m(3, 5, d)
# define BOOST_PP_REPEAT_2_7(m, d) BOOST_PP_REPEAT_2_6(m, d) m(3, 6, d)
# define BOOST_PP_REPEAT_2_8(m, d) BOOST_PP_REPEAT_2_7(m, d) m(3, 7, d)
# define BOOST_PP_REPEAT_2_9(m, d) BOOST_PP_REPEAT_2_8(m, d) m(3, 8, d)
# define BOOST_PP_REPEAT_2_10(m, d) BOOST_PP_REPEAT_2_9(m, d) m(3, 9, d)
# define BOOST_PP_REPEAT_2_11(m, d) BOOST_PP_REPEAT_2_10(m, d) m(3, 10, d)
# define BOOST_PP_REPEAT_2_12(m, d) BOOST_PP_REPEAT_2_11(m, d) m(3, 11, d)
# define BOOST_PP_REPEAT_2_13(m, d) BOOST_PP_REPEAT_2_12(m, d) m(3, 12, d)
# define BOOST_PP_REPEAT_2_14(m, d) BOOST_PP_REPEAT_2_13(m, d) m(3, 13, d)
# define BOOST_PP_REPEAT_2_15(m, d) BOOST_PP_REPEAT_2_14(m, d) m(3, 14, d)
# define BOOST_PP_REPEAT_2_16(m, d) BOOST_PP_REPEAT_2_15(m, d) m(3, 15, d)
# define BOOST_PP_REPEAT_2_17(m, d) BOOST_PP_REPEAT_2_16(m, d) m(3, 16, d)
# define BOOST_PP_REPEAT_2_18(m, d) BOOST_PP_REPEAT_2_17(m, d) m(3, 17, d)
# define BOOST_PP_REPEAT_2_19(m, d) BOOST_PP_REPEAT_2_18(m, d) m(3, 18, d)
# define BOOST_PP_REPEAT_2_20(m, d) BOOST_PP_REPEAT_2_19(m, d) m(3, 19, d)
# define BOOST_PP_REPEAT_2_21(m, d) BOOST_PP_REPEAT_2_20(m, d) m(3, 20, d)
# define BOOST_PP_REPEAT_2_22(m, d) BOOST_PP_REPEAT_2_21(m, d) m(3, 21, d)
# define BOOST_PP_REPEAT_2_23(m, d) BOOST_PP_REPEAT_2_22(m, d) m(3, 22, d)
# define BOOST_PP_REPEAT_2_24(m, d) BOOST_PP_REPEAT_2_23(m, d) m(3, 23, d)
# define BOOST_PP_REPEAT_2_25(m, d) BOOST_PP_REPEAT_2_24(m, d) m(3, 24, d)
# define BOOST_PP_REPEAT_2_26(m, d) BOOST_PP_REPEAT_2_25(m, d) m(3, 25, d)
# define BOOST_PP_REPEAT_2_27(m, d) BOOST_PP_REPEAT_2_26(m, d) m(3, 26, d)
# define BOOST_PP_REPEAT_2_28(m, d) BOOST_PP_REPEAT_2_27(m, d) m(3, 27, d)
# define BOOST_PP_REPEAT_2_29(m, d) BOOST_PP_REPEAT_2_28(m, d) m(3, 28, d)
# define BOOST_PP_REPEAT_2_30(m, d) BOOST_PP_REPEAT_2_29(m, d) m(3, 29, d)
# define BOOST_PP_REPEAT_2_31(m, d) BOOST_PP_REPEAT_2_30(m, d) m(3, 30, d)
# define BOOST_PP_REPEAT_2_32(m, d) BOOST_PP_REPEAT_2_31(m, d) m(3, 31, d)
# define BOOST_PP_REPEAT_2_33(m, d) BOOST_PP_REPEAT_2_32(m, d) m(3, 32, d)
# define BOOST_PP_REPEAT_2_34(m, d) BOOST_PP_REPEAT_2_33(m, d) m(3, 33, d)
# define BOOST_PP_REPEAT_2_35(m, d) BOOST_PP_REPEAT_2_34(m, d) m(3, 34, d)
# define BOOST_PP_REPEAT_2_36(m, d) BOOST_PP_REPEAT_2_35(m, d) m(3, 35, d)
# define BOOST_PP_REPEAT_2_37(m, d) BOOST_PP_REPEAT_2_36(m, d) m(3, 36, d)
# define BOOST_PP_REPEAT_2_38(m, d) BOOST_PP_REPEAT_2_37(m, d) m(3, 37, d)
# define BOOST_PP_REPEAT_2_39(m, d) BOOST_PP_REPEAT_2_38(m, d) m(3, 38, d)
# define BOOST_PP_REPEAT_2_40(m, d) BOOST_PP_REPEAT_2_39(m, d) m(3, 39, d)
# define BOOST_PP_REPEAT_2_41(m, d) BOOST_PP_REPEAT_2_40(m, d) m(3, 40, d)
# define BOOST_PP_REPEAT_2_42(m, d) BOOST_PP_REPEAT_2_41(m, d) m(3, 41, d)
# define BOOST_PP_REPEAT_2_43(m, d) BOOST_PP_REPEAT_2_42(m, d) m(3, 42, d)
# define BOOST_PP_REPEAT_2_44(m, d) BOOST_PP_REPEAT_2_43(m, d) m(3, 43, d)
# define BOOST_PP_REPEAT_2_45(m, d) BOOST_PP_REPEAT_2_44(m, d) m(3, 44, d)
# define BOOST_PP_REPEAT_2_46(m, d) BOOST_PP_REPEAT_2_45(m, d) m(3, 45, d)
# define BOOST_PP_REPEAT_2_47(m, d) BOOST_PP_REPEAT_2_46(m, d) m(3, 46, d)
# define BOOST_PP_REPEAT_2_48(m, d) BOOST_PP_REPEAT_2_47(m, d) m(3, 47, d)
# define BOOST_PP_REPEAT_2_49(m, d) BOOST_PP_REPEAT_2_48(m, d) m(3, 48, d)
# define BOOST_PP_REPEAT_2_50(m, d) BOOST_PP_REPEAT_2_49(m, d) m(3, 49, d)
# define BOOST_PP_REPEAT_2_51(m, d) BOOST_PP_REPEAT_2_50(m, d) m(3, 50, d)
# define BOOST_PP_REPEAT_2_52(m, d) BOOST_PP_REPEAT_2_51(m, d) m(3, 51, d)
# define BOOST_PP_REPEAT_2_53(m, d) BOOST_PP_REPEAT_2_52(m, d) m(3, 52, d)
# define BOOST_PP_REPEAT_2_54(m, d) BOOST_PP_REPEAT_2_53(m, d) m(3, 53, d)
# define BOOST_PP_REPEAT_2_55(m, d) BOOST_PP_REPEAT_2_54(m, d) m(3, 54, d)
# define BOOST_PP_REPEAT_2_56(m, d) BOOST_PP_REPEAT_2_55(m, d) m(3, 55, d)
# define BOOST_PP_REPEAT_2_57(m, d) BOOST_PP_REPEAT_2_56(m, d) m(3, 56, d)
# define BOOST_PP_REPEAT_2_58(m, d) BOOST_PP_REPEAT_2_57(m, d) m(3, 57, d)
# define BOOST_PP_REPEAT_2_59(m, d) BOOST_PP_REPEAT_2_58(m, d) m(3, 58, d)
# define BOOST_PP_REPEAT_2_60(m, d) BOOST_PP_REPEAT_2_59(m, d) m(3, 59, d)
# define BOOST_PP_REPEAT_2_61(m, d) BOOST_PP_REPEAT_2_60(m, d) m(3, 60, d)
# define BOOST_PP_REPEAT_2_62(m, d) BOOST_PP_REPEAT_2_61(m, d) m(3, 61, d)
# define BOOST_PP_REPEAT_2_63(m, d) BOOST_PP_REPEAT_2_62(m, d) m(3, 62, d)
# define BOOST_PP_REPEAT_2_64(m, d) BOOST_PP_REPEAT_2_63(m, d) m(3, 63, d)
# define BOOST_PP_REPEAT_2_65(m, d) BOOST_PP_REPEAT_2_64(m, d) m(3, 64, d)
# define BOOST_PP_REPEAT_2_66(m, d) BOOST_PP_REPEAT_2_65(m, d) m(3, 65, d)
# define BOOST_PP_REPEAT_2_67(m, d) BOOST_PP_REPEAT_2_66(m, d) m(3, 66, d)
# define BOOST_PP_REPEAT_2_68(m, d) BOOST_PP_REPEAT_2_67(m, d) m(3, 67, d)
# define BOOST_PP_REPEAT_2_69(m, d) BOOST_PP_REPEAT_2_68(m, d) m(3, 68, d)
# define BOOST_PP_REPEAT_2_70(m, d) BOOST_PP_REPEAT_2_69(m, d) m(3, 69, d)
# define BOOST_PP_REPEAT_2_71(m, d) BOOST_PP_REPEAT_2_70(m, d) m(3, 70, d)
# define BOOST_PP_REPEAT_2_72(m, d) BOOST_PP_REPEAT_2_71(m, d) m(3, 71, d)
# define BOOST_PP_REPEAT_2_73(m, d) BOOST_PP_REPEAT_2_72(m, d) m(3, 72, d)
# define BOOST_PP_REPEAT_2_74(m, d) BOOST_PP_REPEAT_2_73(m, d) m(3, 73, d)
# define BOOST_PP_REPEAT_2_75(m, d) BOOST_PP_REPEAT_2_74(m, d) m(3, 74, d)
# define BOOST_PP_REPEAT_2_76(m, d) BOOST_PP_REPEAT_2_75(m, d) m(3, 75, d)
# define BOOST_PP_REPEAT_2_77(m, d) BOOST_PP_REPEAT_2_76(m, d) m(3, 76, d)
# define BOOST_PP_REPEAT_2_78(m, d) BOOST_PP_REPEAT_2_77(m, d) m(3, 77, d)
# define BOOST_PP_REPEAT_2_79(m, d) BOOST_PP_REPEAT_2_78(m, d) m(3, 78, d)
# define BOOST_PP_REPEAT_2_80(m, d) BOOST_PP_REPEAT_2_79(m, d) m(3, 79, d)
# define BOOST_PP_REPEAT_2_81(m, d) BOOST_PP_REPEAT_2_80(m, d) m(3, 80, d)
# define BOOST_PP_REPEAT_2_82(m, d) BOOST_PP_REPEAT_2_81(m, d) m(3, 81, d)
# define BOOST_PP_REPEAT_2_83(m, d) BOOST_PP_REPEAT_2_82(m, d) m(3, 82, d)
# define BOOST_PP_REPEAT_2_84(m, d) BOOST_PP_REPEAT_2_83(m, d) m(3, 83, d)
# define BOOST_PP_REPEAT_2_85(m, d) BOOST_PP_REPEAT_2_84(m, d) m(3, 84, d)
# define BOOST_PP_REPEAT_2_86(m, d) BOOST_PP_REPEAT_2_85(m, d) m(3, 85, d)
# define BOOST_PP_REPEAT_2_87(m, d) BOOST_PP_REPEAT_2_86(m, d) m(3, 86, d)
# define BOOST_PP_REPEAT_2_88(m, d) BOOST_PP_REPEAT_2_87(m, d) m(3, 87, d)
# define BOOST_PP_REPEAT_2_89(m, d) BOOST_PP_REPEAT_2_88(m, d) m(3, 88, d)
# define BOOST_PP_REPEAT_2_90(m, d) BOOST_PP_REPEAT_2_89(m, d) m(3, 89, d)
# define BOOST_PP_REPEAT_2_91(m, d) BOOST_PP_REPEAT_2_90(m, d) m(3, 90, d)
# define BOOST_PP_REPEAT_2_92(m, d) BOOST_PP_REPEAT_2_91(m, d) m(3, 91, d)
# define BOOST_PP_REPEAT_2_93(m, d) BOOST_PP_REPEAT_2_92(m, d) m(3, 92, d)
# define BOOST_PP_REPEAT_2_94(m, d) BOOST_PP_REPEAT_2_93(m, d) m(3, 93, d)
# define BOOST_PP_REPEAT_2_95(m, d) BOOST_PP_REPEAT_2_94(m, d) m(3, 94, d)
# define BOOST_PP_REPEAT_2_96(m, d) BOOST_PP_REPEAT_2_95(m, d) m(3, 95, d)
# define BOOST_PP_REPEAT_2_97(m, d) BOOST_PP_REPEAT_2_96(m, d) m(3, 96, d)
# define BOOST_PP_REPEAT_2_98(m, d) BOOST_PP_REPEAT_2_97(m, d) m(3, 97, d)
# define BOOST_PP_REPEAT_2_99(m, d) BOOST_PP_REPEAT_2_98(m, d) m(3, 98, d)
# define BOOST_PP_REPEAT_2_100(m, d) BOOST_PP_REPEAT_2_99(m, d) m(3, 99, d)
# define BOOST_PP_REPEAT_2_101(m, d) BOOST_PP_REPEAT_2_100(m, d) m(3, 100, d)
# define BOOST_PP_REPEAT_2_102(m, d) BOOST_PP_REPEAT_2_101(m, d) m(3, 101, d)
# define BOOST_PP_REPEAT_2_103(m, d) BOOST_PP_REPEAT_2_102(m, d) m(3, 102, d)
# define BOOST_PP_REPEAT_2_104(m, d) BOOST_PP_REPEAT_2_103(m, d) m(3, 103, d)
# define BOOST_PP_REPEAT_2_105(m, d) BOOST_PP_REPEAT_2_104(m, d) m(3, 104, d)
# define BOOST_PP_REPEAT_2_106(m, d) BOOST_PP_REPEAT_2_105(m, d) m(3, 105, d)
# define BOOST_PP_REPEAT_2_107(m, d) BOOST_PP_REPEAT_2_106(m, d) m(3, 106, d)
# define BOOST_PP_REPEAT_2_108(m, d) BOOST_PP_REPEAT_2_107(m, d) m(3, 107, d)
# define BOOST_PP_REPEAT_2_109(m, d) BOOST_PP_REPEAT_2_108(m, d) m(3, 108, d)
# define BOOST_PP_REPEAT_2_110(m, d) BOOST_PP_REPEAT_2_109(m, d) m(3, 109, d)
# define BOOST_PP_REPEAT_2_111(m, d) BOOST_PP_REPEAT_2_110(m, d) m(3, 110, d)
# define BOOST_PP_REPEAT_2_112(m, d) BOOST_PP_REPEAT_2_111(m, d) m(3, 111, d)
# define BOOST_PP_REPEAT_2_113(m, d) BOOST_PP_REPEAT_2_112(m, d) m(3, 112, d)
# define BOOST_PP_REPEAT_2_114(m, d) BOOST_PP_REPEAT_2_113(m, d) m(3, 113, d)
# define BOOST_PP_REPEAT_2_115(m, d) BOOST_PP_REPEAT_2_114(m, d) m(3, 114, d)
# define BOOST_PP_REPEAT_2_116(m, d) BOOST_PP_REPEAT_2_115(m, d) m(3, 115, d)
# define BOOST_PP_REPEAT_2_117(m, d) BOOST_PP_REPEAT_2_116(m, d) m(3, 116, d)
# define BOOST_PP_REPEAT_2_118(m, d) BOOST_PP_REPEAT_2_117(m, d) m(3, 117, d)
# define BOOST_PP_REPEAT_2_119(m, d) BOOST_PP_REPEAT_2_118(m, d) m(3, 118, d)
# define BOOST_PP_REPEAT_2_120(m, d) BOOST_PP_REPEAT_2_119(m, d) m(3, 119, d)
# define BOOST_PP_REPEAT_2_121(m, d) BOOST_PP_REPEAT_2_120(m, d) m(3, 120, d)
# define BOOST_PP_REPEAT_2_122(m, d) BOOST_PP_REPEAT_2_121(m, d) m(3, 121, d)
# define BOOST_PP_REPEAT_2_123(m, d) BOOST_PP_REPEAT_2_122(m, d) m(3, 122, d)
# define BOOST_PP_REPEAT_2_124(m, d) BOOST_PP_REPEAT_2_123(m, d) m(3, 123, d)
# define BOOST_PP_REPEAT_2_125(m, d) BOOST_PP_REPEAT_2_124(m, d) m(3, 124, d)
# define BOOST_PP_REPEAT_2_126(m, d) BOOST_PP_REPEAT_2_125(m, d) m(3, 125, d)
# define BOOST_PP_REPEAT_2_127(m, d) BOOST_PP_REPEAT_2_126(m, d) m(3, 126, d)
# define BOOST_PP_REPEAT_2_128(m, d) BOOST_PP_REPEAT_2_127(m, d) m(3, 127, d)
# define BOOST_PP_REPEAT_2_129(m, d) BOOST_PP_REPEAT_2_128(m, d) m(3, 128, d)
# define BOOST_PP_REPEAT_2_130(m, d) BOOST_PP_REPEAT_2_129(m, d) m(3, 129, d)
# define BOOST_PP_REPEAT_2_131(m, d) BOOST_PP_REPEAT_2_130(m, d) m(3, 130, d)
# define BOOST_PP_REPEAT_2_132(m, d) BOOST_PP_REPEAT_2_131(m, d) m(3, 131, d)
# define BOOST_PP_REPEAT_2_133(m, d) BOOST_PP_REPEAT_2_132(m, d) m(3, 132, d)
# define BOOST_PP_REPEAT_2_134(m, d) BOOST_PP_REPEAT_2_133(m, d) m(3, 133, d)
# define BOOST_PP_REPEAT_2_135(m, d) BOOST_PP_REPEAT_2_134(m, d) m(3, 134, d)
# define BOOST_PP_REPEAT_2_136(m, d) BOOST_PP_REPEAT_2_135(m, d) m(3, 135, d)
# define BOOST_PP_REPEAT_2_137(m, d) BOOST_PP_REPEAT_2_136(m, d) m(3, 136, d)
# define BOOST_PP_REPEAT_2_138(m, d) BOOST_PP_REPEAT_2_137(m, d) m(3, 137, d)
# define BOOST_PP_REPEAT_2_139(m, d) BOOST_PP_REPEAT_2_138(m, d) m(3, 138, d)
# define BOOST_PP_REPEAT_2_140(m, d) BOOST_PP_REPEAT_2_139(m, d) m(3, 139, d)
# define BOOST_PP_REPEAT_2_141(m, d) BOOST_PP_REPEAT_2_140(m, d) m(3, 140, d)
# define BOOST_PP_REPEAT_2_142(m, d) BOOST_PP_REPEAT_2_141(m, d) m(3, 141, d)
# define BOOST_PP_REPEAT_2_143(m, d) BOOST_PP_REPEAT_2_142(m, d) m(3, 142, d)
# define BOOST_PP_REPEAT_2_144(m, d) BOOST_PP_REPEAT_2_143(m, d) m(3, 143, d)
# define BOOST_PP_REPEAT_2_145(m, d) BOOST_PP_REPEAT_2_144(m, d) m(3, 144, d)
# define BOOST_PP_REPEAT_2_146(m, d) BOOST_PP_REPEAT_2_145(m, d) m(3, 145, d)
# define BOOST_PP_REPEAT_2_147(m, d) BOOST_PP_REPEAT_2_146(m, d) m(3, 146, d)
# define BOOST_PP_REPEAT_2_148(m, d) BOOST_PP_REPEAT_2_147(m, d) m(3, 147, d)
# define BOOST_PP_REPEAT_2_149(m, d) BOOST_PP_REPEAT_2_148(m, d) m(3, 148, d)
# define BOOST_PP_REPEAT_2_150(m, d) BOOST_PP_REPEAT_2_149(m, d) m(3, 149, d)
# define BOOST_PP_REPEAT_2_151(m, d) BOOST_PP_REPEAT_2_150(m, d) m(3, 150, d)
# define BOOST_PP_REPEAT_2_152(m, d) BOOST_PP_REPEAT_2_151(m, d) m(3, 151, d)
# define BOOST_PP_REPEAT_2_153(m, d) BOOST_PP_REPEAT_2_152(m, d) m(3, 152, d)
# define BOOST_PP_REPEAT_2_154(m, d) BOOST_PP_REPEAT_2_153(m, d) m(3, 153, d)
# define BOOST_PP_REPEAT_2_155(m, d) BOOST_PP_REPEAT_2_154(m, d) m(3, 154, d)
# define BOOST_PP_REPEAT_2_156(m, d) BOOST_PP_REPEAT_2_155(m, d) m(3, 155, d)
# define BOOST_PP_REPEAT_2_157(m, d) BOOST_PP_REPEAT_2_156(m, d) m(3, 156, d)
# define BOOST_PP_REPEAT_2_158(m, d) BOOST_PP_REPEAT_2_157(m, d) m(3, 157, d)
# define BOOST_PP_REPEAT_2_159(m, d) BOOST_PP_REPEAT_2_158(m, d) m(3, 158, d)
# define BOOST_PP_REPEAT_2_160(m, d) BOOST_PP_REPEAT_2_159(m, d) m(3, 159, d)
# define BOOST_PP_REPEAT_2_161(m, d) BOOST_PP_REPEAT_2_160(m, d) m(3, 160, d)
# define BOOST_PP_REPEAT_2_162(m, d) BOOST_PP_REPEAT_2_161(m, d) m(3, 161, d)
# define BOOST_PP_REPEAT_2_163(m, d) BOOST_PP_REPEAT_2_162(m, d) m(3, 162, d)
# define BOOST_PP_REPEAT_2_164(m, d) BOOST_PP_REPEAT_2_163(m, d) m(3, 163, d)
# define BOOST_PP_REPEAT_2_165(m, d) BOOST_PP_REPEAT_2_164(m, d) m(3, 164, d)
# define BOOST_PP_REPEAT_2_166(m, d) BOOST_PP_REPEAT_2_165(m, d) m(3, 165, d)
# define BOOST_PP_REPEAT_2_167(m, d) BOOST_PP_REPEAT_2_166(m, d) m(3, 166, d)
# define BOOST_PP_REPEAT_2_168(m, d) BOOST_PP_REPEAT_2_167(m, d) m(3, 167, d)
# define BOOST_PP_REPEAT_2_169(m, d) BOOST_PP_REPEAT_2_168(m, d) m(3, 168, d)
# define BOOST_PP_REPEAT_2_170(m, d) BOOST_PP_REPEAT_2_169(m, d) m(3, 169, d)
# define BOOST_PP_REPEAT_2_171(m, d) BOOST_PP_REPEAT_2_170(m, d) m(3, 170, d)
# define BOOST_PP_REPEAT_2_172(m, d) BOOST_PP_REPEAT_2_171(m, d) m(3, 171, d)
# define BOOST_PP_REPEAT_2_173(m, d) BOOST_PP_REPEAT_2_172(m, d) m(3, 172, d)
# define BOOST_PP_REPEAT_2_174(m, d) BOOST_PP_REPEAT_2_173(m, d) m(3, 173, d)
# define BOOST_PP_REPEAT_2_175(m, d) BOOST_PP_REPEAT_2_174(m, d) m(3, 174, d)
# define BOOST_PP_REPEAT_2_176(m, d) BOOST_PP_REPEAT_2_175(m, d) m(3, 175, d)
# define BOOST_PP_REPEAT_2_177(m, d) BOOST_PP_REPEAT_2_176(m, d) m(3, 176, d)
# define BOOST_PP_REPEAT_2_178(m, d) BOOST_PP_REPEAT_2_177(m, d) m(3, 177, d)
# define BOOST_PP_REPEAT_2_179(m, d) BOOST_PP_REPEAT_2_178(m, d) m(3, 178, d)
# define BOOST_PP_REPEAT_2_180(m, d) BOOST_PP_REPEAT_2_179(m, d) m(3, 179, d)
# define BOOST_PP_REPEAT_2_181(m, d) BOOST_PP_REPEAT_2_180(m, d) m(3, 180, d)
# define BOOST_PP_REPEAT_2_182(m, d) BOOST_PP_REPEAT_2_181(m, d) m(3, 181, d)
# define BOOST_PP_REPEAT_2_183(m, d) BOOST_PP_REPEAT_2_182(m, d) m(3, 182, d)
# define BOOST_PP_REPEAT_2_184(m, d) BOOST_PP_REPEAT_2_183(m, d) m(3, 183, d)
# define BOOST_PP_REPEAT_2_185(m, d) BOOST_PP_REPEAT_2_184(m, d) m(3, 184, d)
# define BOOST_PP_REPEAT_2_186(m, d) BOOST_PP_REPEAT_2_185(m, d) m(3, 185, d)
# define BOOST_PP_REPEAT_2_187(m, d) BOOST_PP_REPEAT_2_186(m, d) m(3, 186, d)
# define BOOST_PP_REPEAT_2_188(m, d) BOOST_PP_REPEAT_2_187(m, d) m(3, 187, d)
# define BOOST_PP_REPEAT_2_189(m, d) BOOST_PP_REPEAT_2_188(m, d) m(3, 188, d)
# define BOOST_PP_REPEAT_2_190(m, d) BOOST_PP_REPEAT_2_189(m, d) m(3, 189, d)
# define BOOST_PP_REPEAT_2_191(m, d) BOOST_PP_REPEAT_2_190(m, d) m(3, 190, d)
# define BOOST_PP_REPEAT_2_192(m, d) BOOST_PP_REPEAT_2_191(m, d) m(3, 191, d)
# define BOOST_PP_REPEAT_2_193(m, d) BOOST_PP_REPEAT_2_192(m, d) m(3, 192, d)
# define BOOST_PP_REPEAT_2_194(m, d) BOOST_PP_REPEAT_2_193(m, d) m(3, 193, d)
# define BOOST_PP_REPEAT_2_195(m, d) BOOST_PP_REPEAT_2_194(m, d) m(3, 194, d)
# define BOOST_PP_REPEAT_2_196(m, d) BOOST_PP_REPEAT_2_195(m, d) m(3, 195, d)
# define BOOST_PP_REPEAT_2_197(m, d) BOOST_PP_REPEAT_2_196(m, d) m(3, 196, d)
# define BOOST_PP_REPEAT_2_198(m, d) BOOST_PP_REPEAT_2_197(m, d) m(3, 197, d)
# define BOOST_PP_REPEAT_2_199(m, d) BOOST_PP_REPEAT_2_198(m, d) m(3, 198, d)
# define BOOST_PP_REPEAT_2_200(m, d) BOOST_PP_REPEAT_2_199(m, d) m(3, 199, d)
# define BOOST_PP_REPEAT_2_201(m, d) BOOST_PP_REPEAT_2_200(m, d) m(3, 200, d)
# define BOOST_PP_REPEAT_2_202(m, d) BOOST_PP_REPEAT_2_201(m, d) m(3, 201, d)
# define BOOST_PP_REPEAT_2_203(m, d) BOOST_PP_REPEAT_2_202(m, d) m(3, 202, d)
# define BOOST_PP_REPEAT_2_204(m, d) BOOST_PP_REPEAT_2_203(m, d) m(3, 203, d)
# define BOOST_PP_REPEAT_2_205(m, d) BOOST_PP_REPEAT_2_204(m, d) m(3, 204, d)
# define BOOST_PP_REPEAT_2_206(m, d) BOOST_PP_REPEAT_2_205(m, d) m(3, 205, d)
# define BOOST_PP_REPEAT_2_207(m, d) BOOST_PP_REPEAT_2_206(m, d) m(3, 206, d)
# define BOOST_PP_REPEAT_2_208(m, d) BOOST_PP_REPEAT_2_207(m, d) m(3, 207, d)
# define BOOST_PP_REPEAT_2_209(m, d) BOOST_PP_REPEAT_2_208(m, d) m(3, 208, d)
# define BOOST_PP_REPEAT_2_210(m, d) BOOST_PP_REPEAT_2_209(m, d) m(3, 209, d)
# define BOOST_PP_REPEAT_2_211(m, d) BOOST_PP_REPEAT_2_210(m, d) m(3, 210, d)
# define BOOST_PP_REPEAT_2_212(m, d) BOOST_PP_REPEAT_2_211(m, d) m(3, 211, d)
# define BOOST_PP_REPEAT_2_213(m, d) BOOST_PP_REPEAT_2_212(m, d) m(3, 212, d)
# define BOOST_PP_REPEAT_2_214(m, d) BOOST_PP_REPEAT_2_213(m, d) m(3, 213, d)
# define BOOST_PP_REPEAT_2_215(m, d) BOOST_PP_REPEAT_2_214(m, d) m(3, 214, d)
# define BOOST_PP_REPEAT_2_216(m, d) BOOST_PP_REPEAT_2_215(m, d) m(3, 215, d)
# define BOOST_PP_REPEAT_2_217(m, d) BOOST_PP_REPEAT_2_216(m, d) m(3, 216, d)
# define BOOST_PP_REPEAT_2_218(m, d) BOOST_PP_REPEAT_2_217(m, d) m(3, 217, d)
# define BOOST_PP_REPEAT_2_219(m, d) BOOST_PP_REPEAT_2_218(m, d) m(3, 218, d)
# define BOOST_PP_REPEAT_2_220(m, d) BOOST_PP_REPEAT_2_219(m, d) m(3, 219, d)
# define BOOST_PP_REPEAT_2_221(m, d) BOOST_PP_REPEAT_2_220(m, d) m(3, 220, d)
# define BOOST_PP_REPEAT_2_222(m, d) BOOST_PP_REPEAT_2_221(m, d) m(3, 221, d)
# define BOOST_PP_REPEAT_2_223(m, d) BOOST_PP_REPEAT_2_222(m, d) m(3, 222, d)
# define BOOST_PP_REPEAT_2_224(m, d) BOOST_PP_REPEAT_2_223(m, d) m(3, 223, d)
# define BOOST_PP_REPEAT_2_225(m, d) BOOST_PP_REPEAT_2_224(m, d) m(3, 224, d)
# define BOOST_PP_REPEAT_2_226(m, d) BOOST_PP_REPEAT_2_225(m, d) m(3, 225, d)
# define BOOST_PP_REPEAT_2_227(m, d) BOOST_PP_REPEAT_2_226(m, d) m(3, 226, d)
# define BOOST_PP_REPEAT_2_228(m, d) BOOST_PP_REPEAT_2_227(m, d) m(3, 227, d)
# define BOOST_PP_REPEAT_2_229(m, d) BOOST_PP_REPEAT_2_228(m, d) m(3, 228, d)
# define BOOST_PP_REPEAT_2_230(m, d) BOOST_PP_REPEAT_2_229(m, d) m(3, 229, d)
# define BOOST_PP_REPEAT_2_231(m, d) BOOST_PP_REPEAT_2_230(m, d) m(3, 230, d)
# define BOOST_PP_REPEAT_2_232(m, d) BOOST_PP_REPEAT_2_231(m, d) m(3, 231, d)
# define BOOST_PP_REPEAT_2_233(m, d) BOOST_PP_REPEAT_2_232(m, d) m(3, 232, d)
# define BOOST_PP_REPEAT_2_234(m, d) BOOST_PP_REPEAT_2_233(m, d) m(3, 233, d)
# define BOOST_PP_REPEAT_2_235(m, d) BOOST_PP_REPEAT_2_234(m, d) m(3, 234, d)
# define BOOST_PP_REPEAT_2_236(m, d) BOOST_PP_REPEAT_2_235(m, d) m(3, 235, d)
# define BOOST_PP_REPEAT_2_237(m, d) BOOST_PP_REPEAT_2_236(m, d) m(3, 236, d)
# define BOOST_PP_REPEAT_2_238(m, d) BOOST_PP_REPEAT_2_237(m, d) m(3, 237, d)
# define BOOST_PP_REPEAT_2_239(m, d) BOOST_PP_REPEAT_2_238(m, d) m(3, 238, d)
# define BOOST_PP_REPEAT_2_240(m, d) BOOST_PP_REPEAT_2_239(m, d) m(3, 239, d)
# define BOOST_PP_REPEAT_2_241(m, d) BOOST_PP_REPEAT_2_240(m, d) m(3, 240, d)
# define BOOST_PP_REPEAT_2_242(m, d) BOOST_PP_REPEAT_2_241(m, d) m(3, 241, d)
# define BOOST_PP_REPEAT_2_243(m, d) BOOST_PP_REPEAT_2_242(m, d) m(3, 242, d)
# define BOOST_PP_REPEAT_2_244(m, d) BOOST_PP_REPEAT_2_243(m, d) m(3, 243, d)
# define BOOST_PP_REPEAT_2_245(m, d) BOOST_PP_REPEAT_2_244(m, d) m(3, 244, d)
# define BOOST_PP_REPEAT_2_246(m, d) BOOST_PP_REPEAT_2_245(m, d) m(3, 245, d)
# define BOOST_PP_REPEAT_2_247(m, d) BOOST_PP_REPEAT_2_246(m, d) m(3, 246, d)
# define BOOST_PP_REPEAT_2_248(m, d) BOOST_PP_REPEAT_2_247(m, d) m(3, 247, d)
# define BOOST_PP_REPEAT_2_249(m, d) BOOST_PP_REPEAT_2_248(m, d) m(3, 248, d)
# define BOOST_PP_REPEAT_2_250(m, d) BOOST_PP_REPEAT_2_249(m, d) m(3, 249, d)
# define BOOST_PP_REPEAT_2_251(m, d) BOOST_PP_REPEAT_2_250(m, d) m(3, 250, d)
# define BOOST_PP_REPEAT_2_252(m, d) BOOST_PP_REPEAT_2_251(m, d) m(3, 251, d)
# define BOOST_PP_REPEAT_2_253(m, d) BOOST_PP_REPEAT_2_252(m, d) m(3, 252, d)
# define BOOST_PP_REPEAT_2_254(m, d) BOOST_PP_REPEAT_2_253(m, d) m(3, 253, d)
# define BOOST_PP_REPEAT_2_255(m, d) BOOST_PP_REPEAT_2_254(m, d) m(3, 254, d)
# define BOOST_PP_REPEAT_2_256(m, d) BOOST_PP_REPEAT_2_255(m, d) m(3, 255, d)
#
# define BOOST_PP_REPEAT_3_0(m, d)
# define BOOST_PP_REPEAT_3_1(m, d) m(4, 0, d)
# define BOOST_PP_REPEAT_3_2(m, d) BOOST_PP_REPEAT_3_1(m, d) m(4, 1, d)
# define BOOST_PP_REPEAT_3_3(m, d) BOOST_PP_REPEAT_3_2(m, d) m(4, 2, d)
# define BOOST_PP_REPEAT_3_4(m, d) BOOST_PP_REPEAT_3_3(m, d) m(4, 3, d)
# define BOOST_PP_REPEAT_3_5(m, d) BOOST_PP_REPEAT_3_4(m, d) m(4, 4, d)
# define BOOST_PP_REPEAT_3_6(m, d) BOOST_PP_REPEAT_3_5(m, d) m(4, 5, d)
# define BOOST_PP_REPEAT_3_7(m, d) BOOST_PP_REPEAT_3_6(m, d) m(4, 6, d)
# define BOOST_PP_REPEAT_3_8(m, d) BOOST_PP_REPEAT_3_7(m, d) m(4, 7, d)
# define BOOST_PP_REPEAT_3_9(m, d) BOOST_PP_REPEAT_3_8(m, d) m(4, 8, d)
# define BOOST_PP_REPEAT_3_10(m, d) BOOST_PP_REPEAT_3_9(m, d) m(4, 9, d)
# define BOOST_PP_REPEAT_3_11(m, d) BOOST_PP_REPEAT_3_10(m, d) m(4, 10, d)
# define BOOST_PP_REPEAT_3_12(m, d) BOOST_PP_REPEAT_3_11(m, d) m(4, 11, d)
# define BOOST_PP_REPEAT_3_13(m, d) BOOST_PP_REPEAT_3_12(m, d) m(4, 12, d)
# define BOOST_PP_REPEAT_3_14(m, d) BOOST_PP_REPEAT_3_13(m, d) m(4, 13, d)
# define BOOST_PP_REPEAT_3_15(m, d) BOOST_PP_REPEAT_3_14(m, d) m(4, 14, d)
# define BOOST_PP_REPEAT_3_16(m, d) BOOST_PP_REPEAT_3_15(m, d) m(4, 15, d)
# define BOOST_PP_REPEAT_3_17(m, d) BOOST_PP_REPEAT_3_16(m, d) m(4, 16, d)
# define BOOST_PP_REPEAT_3_18(m, d) BOOST_PP_REPEAT_3_17(m, d) m(4, 17, d)
# define BOOST_PP_REPEAT_3_19(m, d) BOOST_PP_REPEAT_3_18(m, d) m(4, 18, d)
# define BOOST_PP_REPEAT_3_20(m, d) BOOST_PP_REPEAT_3_19(m, d) m(4, 19, d)
# define BOOST_PP_REPEAT_3_21(m, d) BOOST_PP_REPEAT_3_20(m, d) m(4, 20, d)
# define BOOST_PP_REPEAT_3_22(m, d) BOOST_PP_REPEAT_3_21(m, d) m(4, 21, d)
# define BOOST_PP_REPEAT_3_23(m, d) BOOST_PP_REPEAT_3_22(m, d) m(4, 22, d)
# define BOOST_PP_REPEAT_3_24(m, d) BOOST_PP_REPEAT_3_23(m, d) m(4, 23, d)
# define BOOST_PP_REPEAT_3_25(m, d) BOOST_PP_REPEAT_3_24(m, d) m(4, 24, d)
# define BOOST_PP_REPEAT_3_26(m, d) BOOST_PP_REPEAT_3_25(m, d) m(4, 25, d)
# define BOOST_PP_REPEAT_3_27(m, d) BOOST_PP_REPEAT_3_26(m, d) m(4, 26, d)
# define BOOST_PP_REPEAT_3_28(m, d) BOOST_PP_REPEAT_3_27(m, d) m(4, 27, d)
# define BOOST_PP_REPEAT_3_29(m, d) BOOST_PP_REPEAT_3_28(m, d) m(4, 28, d)
# define BOOST_PP_REPEAT_3_30(m, d) BOOST_PP_REPEAT_3_29(m, d) m(4, 29, d)
# define BOOST_PP_REPEAT_3_31(m, d) BOOST_PP_REPEAT_3_30(m, d) m(4, 30, d)
# define BOOST_PP_REPEAT_3_32(m, d) BOOST_PP_REPEAT_3_31(m, d) m(4, 31, d)
# define BOOST_PP_REPEAT_3_33(m, d) BOOST_PP_REPEAT_3_32(m, d) m(4, 32, d)
# define BOOST_PP_REPEAT_3_34(m, d) BOOST_PP_REPEAT_3_33(m, d) m(4, 33, d)
# define BOOST_PP_REPEAT_3_35(m, d) BOOST_PP_REPEAT_3_34(m, d) m(4, 34, d)
# define BOOST_PP_REPEAT_3_36(m, d) BOOST_PP_REPEAT_3_35(m, d) m(4, 35, d)
# define BOOST_PP_REPEAT_3_37(m, d) BOOST_PP_REPEAT_3_36(m, d) m(4, 36, d)
# define BOOST_PP_REPEAT_3_38(m, d) BOOST_PP_REPEAT_3_37(m, d) m(4, 37, d)
# define BOOST_PP_REPEAT_3_39(m, d) BOOST_PP_REPEAT_3_38(m, d) m(4, 38, d)
# define BOOST_PP_REPEAT_3_40(m, d) BOOST_PP_REPEAT_3_39(m, d) m(4, 39, d)
# define BOOST_PP_REPEAT_3_41(m, d) BOOST_PP_REPEAT_3_40(m, d) m(4, 40, d)
# define BOOST_PP_REPEAT_3_42(m, d) BOOST_PP_REPEAT_3_41(m, d) m(4, 41, d)
# define BOOST_PP_REPEAT_3_43(m, d) BOOST_PP_REPEAT_3_42(m, d) m(4, 42, d)
# define BOOST_PP_REPEAT_3_44(m, d) BOOST_PP_REPEAT_3_43(m, d) m(4, 43, d)
# define BOOST_PP_REPEAT_3_45(m, d) BOOST_PP_REPEAT_3_44(m, d) m(4, 44, d)
# define BOOST_PP_REPEAT_3_46(m, d) BOOST_PP_REPEAT_3_45(m, d) m(4, 45, d)
# define BOOST_PP_REPEAT_3_47(m, d) BOOST_PP_REPEAT_3_46(m, d) m(4, 46, d)
# define BOOST_PP_REPEAT_3_48(m, d) BOOST_PP_REPEAT_3_47(m, d) m(4, 47, d)
# define BOOST_PP_REPEAT_3_49(m, d) BOOST_PP_REPEAT_3_48(m, d) m(4, 48, d)
# define BOOST_PP_REPEAT_3_50(m, d) BOOST_PP_REPEAT_3_49(m, d) m(4, 49, d)
# define BOOST_PP_REPEAT_3_51(m, d) BOOST_PP_REPEAT_3_50(m, d) m(4, 50, d)
# define BOOST_PP_REPEAT_3_52(m, d) BOOST_PP_REPEAT_3_51(m, d) m(4, 51, d)
# define BOOST_PP_REPEAT_3_53(m, d) BOOST_PP_REPEAT_3_52(m, d) m(4, 52, d)
# define BOOST_PP_REPEAT_3_54(m, d) BOOST_PP_REPEAT_3_53(m, d) m(4, 53, d)
# define BOOST_PP_REPEAT_3_55(m, d) BOOST_PP_REPEAT_3_54(m, d) m(4, 54, d)
# define BOOST_PP_REPEAT_3_56(m, d) BOOST_PP_REPEAT_3_55(m, d) m(4, 55, d)
# define BOOST_PP_REPEAT_3_57(m, d) BOOST_PP_REPEAT_3_56(m, d) m(4, 56, d)
# define BOOST_PP_REPEAT_3_58(m, d) BOOST_PP_REPEAT_3_57(m, d) m(4, 57, d)
# define BOOST_PP_REPEAT_3_59(m, d) BOOST_PP_REPEAT_3_58(m, d) m(4, 58, d)
# define BOOST_PP_REPEAT_3_60(m, d) BOOST_PP_REPEAT_3_59(m, d) m(4, 59, d)
# define BOOST_PP_REPEAT_3_61(m, d) BOOST_PP_REPEAT_3_60(m, d) m(4, 60, d)
# define BOOST_PP_REPEAT_3_62(m, d) BOOST_PP_REPEAT_3_61(m, d) m(4, 61, d)
# define BOOST_PP_REPEAT_3_63(m, d) BOOST_PP_REPEAT_3_62(m, d) m(4, 62, d)
# define BOOST_PP_REPEAT_3_64(m, d) BOOST_PP_REPEAT_3_63(m, d) m(4, 63, d)
# define BOOST_PP_REPEAT_3_65(m, d) BOOST_PP_REPEAT_3_64(m, d) m(4, 64, d)
# define BOOST_PP_REPEAT_3_66(m, d) BOOST_PP_REPEAT_3_65(m, d) m(4, 65, d)
# define BOOST_PP_REPEAT_3_67(m, d) BOOST_PP_REPEAT_3_66(m, d) m(4, 66, d)
# define BOOST_PP_REPEAT_3_68(m, d) BOOST_PP_REPEAT_3_67(m, d) m(4, 67, d)
# define BOOST_PP_REPEAT_3_69(m, d) BOOST_PP_REPEAT_3_68(m, d) m(4, 68, d)
# define BOOST_PP_REPEAT_3_70(m, d) BOOST_PP_REPEAT_3_69(m, d) m(4, 69, d)
# define BOOST_PP_REPEAT_3_71(m, d) BOOST_PP_REPEAT_3_70(m, d) m(4, 70, d)
# define BOOST_PP_REPEAT_3_72(m, d) BOOST_PP_REPEAT_3_71(m, d) m(4, 71, d)
# define BOOST_PP_REPEAT_3_73(m, d) BOOST_PP_REPEAT_3_72(m, d) m(4, 72, d)
# define BOOST_PP_REPEAT_3_74(m, d) BOOST_PP_REPEAT_3_73(m, d) m(4, 73, d)
# define BOOST_PP_REPEAT_3_75(m, d) BOOST_PP_REPEAT_3_74(m, d) m(4, 74, d)
# define BOOST_PP_REPEAT_3_76(m, d) BOOST_PP_REPEAT_3_75(m, d) m(4, 75, d)
# define BOOST_PP_REPEAT_3_77(m, d) BOOST_PP_REPEAT_3_76(m, d) m(4, 76, d)
# define BOOST_PP_REPEAT_3_78(m, d) BOOST_PP_REPEAT_3_77(m, d) m(4, 77, d)
# define BOOST_PP_REPEAT_3_79(m, d) BOOST_PP_REPEAT_3_78(m, d) m(4, 78, d)
# define BOOST_PP_REPEAT_3_80(m, d) BOOST_PP_REPEAT_3_79(m, d) m(4, 79, d)
# define BOOST_PP_REPEAT_3_81(m, d) BOOST_PP_REPEAT_3_80(m, d) m(4, 80, d)
# define BOOST_PP_REPEAT_3_82(m, d) BOOST_PP_REPEAT_3_81(m, d) m(4, 81, d)
# define BOOST_PP_REPEAT_3_83(m, d) BOOST_PP_REPEAT_3_82(m, d) m(4, 82, d)
# define BOOST_PP_REPEAT_3_84(m, d) BOOST_PP_REPEAT_3_83(m, d) m(4, 83, d)
# define BOOST_PP_REPEAT_3_85(m, d) BOOST_PP_REPEAT_3_84(m, d) m(4, 84, d)
# define BOOST_PP_REPEAT_3_86(m, d) BOOST_PP_REPEAT_3_85(m, d) m(4, 85, d)
# define BOOST_PP_REPEAT_3_87(m, d) BOOST_PP_REPEAT_3_86(m, d) m(4, 86, d)
# define BOOST_PP_REPEAT_3_88(m, d) BOOST_PP_REPEAT_3_87(m, d) m(4, 87, d)
# define BOOST_PP_REPEAT_3_89(m, d) BOOST_PP_REPEAT_3_88(m, d) m(4, 88, d)
# define BOOST_PP_REPEAT_3_90(m, d) BOOST_PP_REPEAT_3_89(m, d) m(4, 89, d)
# define BOOST_PP_REPEAT_3_91(m, d) BOOST_PP_REPEAT_3_90(m, d) m(4, 90, d)
# define BOOST_PP_REPEAT_3_92(m, d) BOOST_PP_REPEAT_3_91(m, d) m(4, 91, d)
# define BOOST_PP_REPEAT_3_93(m, d) BOOST_PP_REPEAT_3_92(m, d) m(4, 92, d)
# define BOOST_PP_REPEAT_3_94(m, d) BOOST_PP_REPEAT_3_93(m, d) m(4, 93, d)
# define BOOST_PP_REPEAT_3_95(m, d) BOOST_PP_REPEAT_3_94(m, d) m(4, 94, d)
# define BOOST_PP_REPEAT_3_96(m, d) BOOST_PP_REPEAT_3_95(m, d) m(4, 95, d)
# define BOOST_PP_REPEAT_3_97(m, d) BOOST_PP_REPEAT_3_96(m, d) m(4, 96, d)
# define BOOST_PP_REPEAT_3_98(m, d) BOOST_PP_REPEAT_3_97(m, d) m(4, 97, d)
# define BOOST_PP_REPEAT_3_99(m, d) BOOST_PP_REPEAT_3_98(m, d) m(4, 98, d)
# define BOOST_PP_REPEAT_3_100(m, d) BOOST_PP_REPEAT_3_99(m, d) m(4, 99, d)
# define BOOST_PP_REPEAT_3_101(m, d) BOOST_PP_REPEAT_3_100(m, d) m(4, 100, d)
# define BOOST_PP_REPEAT_3_102(m, d) BOOST_PP_REPEAT_3_101(m, d) m(4, 101, d)
# define BOOST_PP_REPEAT_3_103(m, d) BOOST_PP_REPEAT_3_102(m, d) m(4, 102, d)
# define BOOST_PP_REPEAT_3_104(m, d) BOOST_PP_REPEAT_3_103(m, d) m(4, 103, d)
# define BOOST_PP_REPEAT_3_105(m, d) BOOST_PP_REPEAT_3_104(m, d) m(4, 104, d)
# define BOOST_PP_REPEAT_3_106(m, d) BOOST_PP_REPEAT_3_105(m, d) m(4, 105, d)
# define BOOST_PP_REPEAT_3_107(m, d) BOOST_PP_REPEAT_3_106(m, d) m(4, 106, d)
# define BOOST_PP_REPEAT_3_108(m, d) BOOST_PP_REPEAT_3_107(m, d) m(4, 107, d)
# define BOOST_PP_REPEAT_3_109(m, d) BOOST_PP_REPEAT_3_108(m, d) m(4, 108, d)
# define BOOST_PP_REPEAT_3_110(m, d) BOOST_PP_REPEAT_3_109(m, d) m(4, 109, d)
# define BOOST_PP_REPEAT_3_111(m, d) BOOST_PP_REPEAT_3_110(m, d) m(4, 110, d)
# define BOOST_PP_REPEAT_3_112(m, d) BOOST_PP_REPEAT_3_111(m, d) m(4, 111, d)
# define BOOST_PP_REPEAT_3_113(m, d) BOOST_PP_REPEAT_3_112(m, d) m(4, 112, d)
# define BOOST_PP_REPEAT_3_114(m, d) BOOST_PP_REPEAT_3_113(m, d) m(4, 113, d)
# define BOOST_PP_REPEAT_3_115(m, d) BOOST_PP_REPEAT_3_114(m, d) m(4, 114, d)
# define BOOST_PP_REPEAT_3_116(m, d) BOOST_PP_REPEAT_3_115(m, d) m(4, 115, d)
# define BOOST_PP_REPEAT_3_117(m, d) BOOST_PP_REPEAT_3_116(m, d) m(4, 116, d)
# define BOOST_PP_REPEAT_3_118(m, d) BOOST_PP_REPEAT_3_117(m, d) m(4, 117, d)
# define BOOST_PP_REPEAT_3_119(m, d) BOOST_PP_REPEAT_3_118(m, d) m(4, 118, d)
# define BOOST_PP_REPEAT_3_120(m, d) BOOST_PP_REPEAT_3_119(m, d) m(4, 119, d)
# define BOOST_PP_REPEAT_3_121(m, d) BOOST_PP_REPEAT_3_120(m, d) m(4, 120, d)
# define BOOST_PP_REPEAT_3_122(m, d) BOOST_PP_REPEAT_3_121(m, d) m(4, 121, d)
# define BOOST_PP_REPEAT_3_123(m, d) BOOST_PP_REPEAT_3_122(m, d) m(4, 122, d)
# define BOOST_PP_REPEAT_3_124(m, d) BOOST_PP_REPEAT_3_123(m, d) m(4, 123, d)
# define BOOST_PP_REPEAT_3_125(m, d) BOOST_PP_REPEAT_3_124(m, d) m(4, 124, d)
# define BOOST_PP_REPEAT_3_126(m, d) BOOST_PP_REPEAT_3_125(m, d) m(4, 125, d)
# define BOOST_PP_REPEAT_3_127(m, d) BOOST_PP_REPEAT_3_126(m, d) m(4, 126, d)
# define BOOST_PP_REPEAT_3_128(m, d) BOOST_PP_REPEAT_3_127(m, d) m(4, 127, d)
# define BOOST_PP_REPEAT_3_129(m, d) BOOST_PP_REPEAT_3_128(m, d) m(4, 128, d)
# define BOOST_PP_REPEAT_3_130(m, d) BOOST_PP_REPEAT_3_129(m, d) m(4, 129, d)
# define BOOST_PP_REPEAT_3_131(m, d) BOOST_PP_REPEAT_3_130(m, d) m(4, 130, d)
# define BOOST_PP_REPEAT_3_132(m, d) BOOST_PP_REPEAT_3_131(m, d) m(4, 131, d)
# define BOOST_PP_REPEAT_3_133(m, d) BOOST_PP_REPEAT_3_132(m, d) m(4, 132, d)
# define BOOST_PP_REPEAT_3_134(m, d) BOOST_PP_REPEAT_3_133(m, d) m(4, 133, d)
# define BOOST_PP_REPEAT_3_135(m, d) BOOST_PP_REPEAT_3_134(m, d) m(4, 134, d)
# define BOOST_PP_REPEAT_3_136(m, d) BOOST_PP_REPEAT_3_135(m, d) m(4, 135, d)
# define BOOST_PP_REPEAT_3_137(m, d) BOOST_PP_REPEAT_3_136(m, d) m(4, 136, d)
# define BOOST_PP_REPEAT_3_138(m, d) BOOST_PP_REPEAT_3_137(m, d) m(4, 137, d)
# define BOOST_PP_REPEAT_3_139(m, d) BOOST_PP_REPEAT_3_138(m, d) m(4, 138, d)
# define BOOST_PP_REPEAT_3_140(m, d) BOOST_PP_REPEAT_3_139(m, d) m(4, 139, d)
# define BOOST_PP_REPEAT_3_141(m, d) BOOST_PP_REPEAT_3_140(m, d) m(4, 140, d)
# define BOOST_PP_REPEAT_3_142(m, d) BOOST_PP_REPEAT_3_141(m, d) m(4, 141, d)
# define BOOST_PP_REPEAT_3_143(m, d) BOOST_PP_REPEAT_3_142(m, d) m(4, 142, d)
# define BOOST_PP_REPEAT_3_144(m, d) BOOST_PP_REPEAT_3_143(m, d) m(4, 143, d)
# define BOOST_PP_REPEAT_3_145(m, d) BOOST_PP_REPEAT_3_144(m, d) m(4, 144, d)
# define BOOST_PP_REPEAT_3_146(m, d) BOOST_PP_REPEAT_3_145(m, d) m(4, 145, d)
# define BOOST_PP_REPEAT_3_147(m, d) BOOST_PP_REPEAT_3_146(m, d) m(4, 146, d)
# define BOOST_PP_REPEAT_3_148(m, d) BOOST_PP_REPEAT_3_147(m, d) m(4, 147, d)
# define BOOST_PP_REPEAT_3_149(m, d) BOOST_PP_REPEAT_3_148(m, d) m(4, 148, d)
# define BOOST_PP_REPEAT_3_150(m, d) BOOST_PP_REPEAT_3_149(m, d) m(4, 149, d)
# define BOOST_PP_REPEAT_3_151(m, d) BOOST_PP_REPEAT_3_150(m, d) m(4, 150, d)
# define BOOST_PP_REPEAT_3_152(m, d) BOOST_PP_REPEAT_3_151(m, d) m(4, 151, d)
# define BOOST_PP_REPEAT_3_153(m, d) BOOST_PP_REPEAT_3_152(m, d) m(4, 152, d)
# define BOOST_PP_REPEAT_3_154(m, d) BOOST_PP_REPEAT_3_153(m, d) m(4, 153, d)
# define BOOST_PP_REPEAT_3_155(m, d) BOOST_PP_REPEAT_3_154(m, d) m(4, 154, d)
# define BOOST_PP_REPEAT_3_156(m, d) BOOST_PP_REPEAT_3_155(m, d) m(4, 155, d)
# define BOOST_PP_REPEAT_3_157(m, d) BOOST_PP_REPEAT_3_156(m, d) m(4, 156, d)
# define BOOST_PP_REPEAT_3_158(m, d) BOOST_PP_REPEAT_3_157(m, d) m(4, 157, d)
# define BOOST_PP_REPEAT_3_159(m, d) BOOST_PP_REPEAT_3_158(m, d) m(4, 158, d)
# define BOOST_PP_REPEAT_3_160(m, d) BOOST_PP_REPEAT_3_159(m, d) m(4, 159, d)
# define BOOST_PP_REPEAT_3_161(m, d) BOOST_PP_REPEAT_3_160(m, d) m(4, 160, d)
# define BOOST_PP_REPEAT_3_162(m, d) BOOST_PP_REPEAT_3_161(m, d) m(4, 161, d)
# define BOOST_PP_REPEAT_3_163(m, d) BOOST_PP_REPEAT_3_162(m, d) m(4, 162, d)
# define BOOST_PP_REPEAT_3_164(m, d) BOOST_PP_REPEAT_3_163(m, d) m(4, 163, d)
# define BOOST_PP_REPEAT_3_165(m, d) BOOST_PP_REPEAT_3_164(m, d) m(4, 164, d)
# define BOOST_PP_REPEAT_3_166(m, d) BOOST_PP_REPEAT_3_165(m, d) m(4, 165, d)
# define BOOST_PP_REPEAT_3_167(m, d) BOOST_PP_REPEAT_3_166(m, d) m(4, 166, d)
# define BOOST_PP_REPEAT_3_168(m, d) BOOST_PP_REPEAT_3_167(m, d) m(4, 167, d)
# define BOOST_PP_REPEAT_3_169(m, d) BOOST_PP_REPEAT_3_168(m, d) m(4, 168, d)
# define BOOST_PP_REPEAT_3_170(m, d) BOOST_PP_REPEAT_3_169(m, d) m(4, 169, d)
# define BOOST_PP_REPEAT_3_171(m, d) BOOST_PP_REPEAT_3_170(m, d) m(4, 170, d)
# define BOOST_PP_REPEAT_3_172(m, d) BOOST_PP_REPEAT_3_171(m, d) m(4, 171, d)
# define BOOST_PP_REPEAT_3_173(m, d) BOOST_PP_REPEAT_3_172(m, d) m(4, 172, d)
# define BOOST_PP_REPEAT_3_174(m, d) BOOST_PP_REPEAT_3_173(m, d) m(4, 173, d)
# define BOOST_PP_REPEAT_3_175(m, d) BOOST_PP_REPEAT_3_174(m, d) m(4, 174, d)
# define BOOST_PP_REPEAT_3_176(m, d) BOOST_PP_REPEAT_3_175(m, d) m(4, 175, d)
# define BOOST_PP_REPEAT_3_177(m, d) BOOST_PP_REPEAT_3_176(m, d) m(4, 176, d)
# define BOOST_PP_REPEAT_3_178(m, d) BOOST_PP_REPEAT_3_177(m, d) m(4, 177, d)
# define BOOST_PP_REPEAT_3_179(m, d) BOOST_PP_REPEAT_3_178(m, d) m(4, 178, d)
# define BOOST_PP_REPEAT_3_180(m, d) BOOST_PP_REPEAT_3_179(m, d) m(4, 179, d)
# define BOOST_PP_REPEAT_3_181(m, d) BOOST_PP_REPEAT_3_180(m, d) m(4, 180, d)
# define BOOST_PP_REPEAT_3_182(m, d) BOOST_PP_REPEAT_3_181(m, d) m(4, 181, d)
# define BOOST_PP_REPEAT_3_183(m, d) BOOST_PP_REPEAT_3_182(m, d) m(4, 182, d)
# define BOOST_PP_REPEAT_3_184(m, d) BOOST_PP_REPEAT_3_183(m, d) m(4, 183, d)
# define BOOST_PP_REPEAT_3_185(m, d) BOOST_PP_REPEAT_3_184(m, d) m(4, 184, d)
# define BOOST_PP_REPEAT_3_186(m, d) BOOST_PP_REPEAT_3_185(m, d) m(4, 185, d)
# define BOOST_PP_REPEAT_3_187(m, d) BOOST_PP_REPEAT_3_186(m, d) m(4, 186, d)
# define BOOST_PP_REPEAT_3_188(m, d) BOOST_PP_REPEAT_3_187(m, d) m(4, 187, d)
# define BOOST_PP_REPEAT_3_189(m, d) BOOST_PP_REPEAT_3_188(m, d) m(4, 188, d)
# define BOOST_PP_REPEAT_3_190(m, d) BOOST_PP_REPEAT_3_189(m, d) m(4, 189, d)
# define BOOST_PP_REPEAT_3_191(m, d) BOOST_PP_REPEAT_3_190(m, d) m(4, 190, d)
# define BOOST_PP_REPEAT_3_192(m, d) BOOST_PP_REPEAT_3_191(m, d) m(4, 191, d)
# define BOOST_PP_REPEAT_3_193(m, d) BOOST_PP_REPEAT_3_192(m, d) m(4, 192, d)
# define BOOST_PP_REPEAT_3_194(m, d) BOOST_PP_REPEAT_3_193(m, d) m(4, 193, d)
# define BOOST_PP_REPEAT_3_195(m, d) BOOST_PP_REPEAT_3_194(m, d) m(4, 194, d)
# define BOOST_PP_REPEAT_3_196(m, d) BOOST_PP_REPEAT_3_195(m, d) m(4, 195, d)
# define BOOST_PP_REPEAT_3_197(m, d) BOOST_PP_REPEAT_3_196(m, d) m(4, 196, d)
# define BOOST_PP_REPEAT_3_198(m, d) BOOST_PP_REPEAT_3_197(m, d) m(4, 197, d)
# define BOOST_PP_REPEAT_3_199(m, d) BOOST_PP_REPEAT_3_198(m, d) m(4, 198, d)
# define BOOST_PP_REPEAT_3_200(m, d) BOOST_PP_REPEAT_3_199(m, d) m(4, 199, d)
# define BOOST_PP_REPEAT_3_201(m, d) BOOST_PP_REPEAT_3_200(m, d) m(4, 200, d)
# define BOOST_PP_REPEAT_3_202(m, d) BOOST_PP_REPEAT_3_201(m, d) m(4, 201, d)
# define BOOST_PP_REPEAT_3_203(m, d) BOOST_PP_REPEAT_3_202(m, d) m(4, 202, d)
# define BOOST_PP_REPEAT_3_204(m, d) BOOST_PP_REPEAT_3_203(m, d) m(4, 203, d)
# define BOOST_PP_REPEAT_3_205(m, d) BOOST_PP_REPEAT_3_204(m, d) m(4, 204, d)
# define BOOST_PP_REPEAT_3_206(m, d) BOOST_PP_REPEAT_3_205(m, d) m(4, 205, d)
# define BOOST_PP_REPEAT_3_207(m, d) BOOST_PP_REPEAT_3_206(m, d) m(4, 206, d)
# define BOOST_PP_REPEAT_3_208(m, d) BOOST_PP_REPEAT_3_207(m, d) m(4, 207, d)
# define BOOST_PP_REPEAT_3_209(m, d) BOOST_PP_REPEAT_3_208(m, d) m(4, 208, d)
# define BOOST_PP_REPEAT_3_210(m, d) BOOST_PP_REPEAT_3_209(m, d) m(4, 209, d)
# define BOOST_PP_REPEAT_3_211(m, d) BOOST_PP_REPEAT_3_210(m, d) m(4, 210, d)
# define BOOST_PP_REPEAT_3_212(m, d) BOOST_PP_REPEAT_3_211(m, d) m(4, 211, d)
# define BOOST_PP_REPEAT_3_213(m, d) BOOST_PP_REPEAT_3_212(m, d) m(4, 212, d)
# define BOOST_PP_REPEAT_3_214(m, d) BOOST_PP_REPEAT_3_213(m, d) m(4, 213, d)
# define BOOST_PP_REPEAT_3_215(m, d) BOOST_PP_REPEAT_3_214(m, d) m(4, 214, d)
# define BOOST_PP_REPEAT_3_216(m, d) BOOST_PP_REPEAT_3_215(m, d) m(4, 215, d)
# define BOOST_PP_REPEAT_3_217(m, d) BOOST_PP_REPEAT_3_216(m, d) m(4, 216, d)
# define BOOST_PP_REPEAT_3_218(m, d) BOOST_PP_REPEAT_3_217(m, d) m(4, 217, d)
# define BOOST_PP_REPEAT_3_219(m, d) BOOST_PP_REPEAT_3_218(m, d) m(4, 218, d)
# define BOOST_PP_REPEAT_3_220(m, d) BOOST_PP_REPEAT_3_219(m, d) m(4, 219, d)
# define BOOST_PP_REPEAT_3_221(m, d) BOOST_PP_REPEAT_3_220(m, d) m(4, 220, d)
# define BOOST_PP_REPEAT_3_222(m, d) BOOST_PP_REPEAT_3_221(m, d) m(4, 221, d)
# define BOOST_PP_REPEAT_3_223(m, d) BOOST_PP_REPEAT_3_222(m, d) m(4, 222, d)
# define BOOST_PP_REPEAT_3_224(m, d) BOOST_PP_REPEAT_3_223(m, d) m(4, 223, d)
# define BOOST_PP_REPEAT_3_225(m, d) BOOST_PP_REPEAT_3_224(m, d) m(4, 224, d)
# define BOOST_PP_REPEAT_3_226(m, d) BOOST_PP_REPEAT_3_225(m, d) m(4, 225, d)
# define BOOST_PP_REPEAT_3_227(m, d) BOOST_PP_REPEAT_3_226(m, d) m(4, 226, d)
# define BOOST_PP_REPEAT_3_228(m, d) BOOST_PP_REPEAT_3_227(m, d) m(4, 227, d)
# define BOOST_PP_REPEAT_3_229(m, d) BOOST_PP_REPEAT_3_228(m, d) m(4, 228, d)
# define BOOST_PP_REPEAT_3_230(m, d) BOOST_PP_REPEAT_3_229(m, d) m(4, 229, d)
# define BOOST_PP_REPEAT_3_231(m, d) BOOST_PP_REPEAT_3_230(m, d) m(4, 230, d)
# define BOOST_PP_REPEAT_3_232(m, d) BOOST_PP_REPEAT_3_231(m, d) m(4, 231, d)
# define BOOST_PP_REPEAT_3_233(m, d) BOOST_PP_REPEAT_3_232(m, d) m(4, 232, d)
# define BOOST_PP_REPEAT_3_234(m, d) BOOST_PP_REPEAT_3_233(m, d) m(4, 233, d)
# define BOOST_PP_REPEAT_3_235(m, d) BOOST_PP_REPEAT_3_234(m, d) m(4, 234, d)
# define BOOST_PP_REPEAT_3_236(m, d) BOOST_PP_REPEAT_3_235(m, d) m(4, 235, d)
# define BOOST_PP_REPEAT_3_237(m, d) BOOST_PP_REPEAT_3_236(m, d) m(4, 236, d)
# define BOOST_PP_REPEAT_3_238(m, d) BOOST_PP_REPEAT_3_237(m, d) m(4, 237, d)
# define BOOST_PP_REPEAT_3_239(m, d) BOOST_PP_REPEAT_3_238(m, d) m(4, 238, d)
# define BOOST_PP_REPEAT_3_240(m, d) BOOST_PP_REPEAT_3_239(m, d) m(4, 239, d)
# define BOOST_PP_REPEAT_3_241(m, d) BOOST_PP_REPEAT_3_240(m, d) m(4, 240, d)
# define BOOST_PP_REPEAT_3_242(m, d) BOOST_PP_REPEAT_3_241(m, d) m(4, 241, d)
# define BOOST_PP_REPEAT_3_243(m, d) BOOST_PP_REPEAT_3_242(m, d) m(4, 242, d)
# define BOOST_PP_REPEAT_3_244(m, d) BOOST_PP_REPEAT_3_243(m, d) m(4, 243, d)
# define BOOST_PP_REPEAT_3_245(m, d) BOOST_PP_REPEAT_3_244(m, d) m(4, 244, d)
# define BOOST_PP_REPEAT_3_246(m, d) BOOST_PP_REPEAT_3_245(m, d) m(4, 245, d)
# define BOOST_PP_REPEAT_3_247(m, d) BOOST_PP_REPEAT_3_246(m, d) m(4, 246, d)
# define BOOST_PP_REPEAT_3_248(m, d) BOOST_PP_REPEAT_3_247(m, d) m(4, 247, d)
# define BOOST_PP_REPEAT_3_249(m, d) BOOST_PP_REPEAT_3_248(m, d) m(4, 248, d)
# define BOOST_PP_REPEAT_3_250(m, d) BOOST_PP_REPEAT_3_249(m, d) m(4, 249, d)
# define BOOST_PP_REPEAT_3_251(m, d) BOOST_PP_REPEAT_3_250(m, d) m(4, 250, d)
# define BOOST_PP_REPEAT_3_252(m, d) BOOST_PP_REPEAT_3_251(m, d) m(4, 251, d)
# define BOOST_PP_REPEAT_3_253(m, d) BOOST_PP_REPEAT_3_252(m, d) m(4, 252, d)
# define BOOST_PP_REPEAT_3_254(m, d) BOOST_PP_REPEAT_3_253(m, d) m(4, 253, d)
# define BOOST_PP_REPEAT_3_255(m, d) BOOST_PP_REPEAT_3_254(m, d) m(4, 254, d)
# define BOOST_PP_REPEAT_3_256(m, d) BOOST_PP_REPEAT_3_255(m, d) m(4, 255, d)
#
# endif
| [
"git@imoz.jp"
] | git@imoz.jp |
7f38048eaa54ce309bf0a5e012785a3a80035eec | f55fabbf75796d03f830c9701dbe9447428b429a | /11-9/stackCPP.cpp | 2f30726952018935ba44d897beb1335aedeeb861 | [] | no_license | PatilHrushikesh/localtogit- | 3364b1117ff5043ac0595034685dd87bab813eed | f321c675e96ac91dc7d1dfaf9d9e6dd73c5947f4 | refs/heads/master | 2022-03-27T03:02:40.580684 | 2019-12-13T18:55:13 | 2019-12-13T18:55:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 935 | cpp | #include <iostream>
#define MAX 4
using namespace std;
class stack
{
int arr[MAX];
int top;
public:
stack()
{
top=-1;
}
void push(int x)
{
if(!full())
arr[++top]=x;
else
cout<<"FILL";
}
int pop()
{
if(!empty())
{
return arr[top--];
}
}
int empty()
{
if(top==-1)
{
cout<<"\nEmpty stack\n";
return 1;
}
return 0;
}
int full()
{
if(top==MAX)
{
cout<<"Stack full\n";
return 1;
}
return 0;
}
void disp()
{
int i=-1;
while(++i<=top)
cout<<arr[i]<<" ";
}
};
int main()
{
stack S;
S.push(5);
S.push(12);
S.push(25);
S.push(62);
S.push(50);
S.disp();
cout<<"Poped out :"<<S.pop()<<" "<<S.pop()<<endl;
S.disp();
return 0;
}
| [
"hrushi2900@gmail.com"
] | hrushi2900@gmail.com |
c353e3ebc6dfd16517d7a272ce019a1010b71bc3 | 2e359b413caee4746e931e01807c279eeea18dca | /1290. Convert Binary Number in a Linked List to Integer.cpp | 457be4f9383742077b8f820d32bd424ae22fcec3 | [] | no_license | fsq/leetcode | 3a8826a11df21f8675ad1df3632d74bbbd758b71 | 70ea4138caaa48cc99bb6e6436afa8bcce370db3 | refs/heads/master | 2023-09-01T20:30:51.433499 | 2023-08-31T03:12:30 | 2023-08-31T03:12:30 | 117,914,925 | 7 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 359 | cpp | /**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
int getDecimalValue(ListNode* head) {
int x = 0;
for (auto p=head; p; p=p->next) {
x = (x << 1) | p->val;
}
return x;
}
};
| [
"19474@qq.com"
] | 19474@qq.com |
ad15fe2132df0e88bb55a1c6f5fc5b063aa93970 | 34c3b4449c61862a71ac8967cd271670762cf863 | /src/algorithm.cpp | ec88da491af999dbec2632e00efd83d136e0ea94 | [] | no_license | alu0101102726/DAA_P9 | 1151cd5ec8106ba1c9e54499fb6061207b42d13c | b7b10f31606ccc897356d339b4f191c9190b56bd | refs/heads/master | 2022-08-29T16:56:49.960232 | 2020-05-18T21:23:27 | 2020-05-18T21:23:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,485 | cpp | #include "../include/algorithm.hpp"
/**
* @brief Devuelve el valor del centro de gravedad del vector actual
*
* @param currentElement Representa el vector del que se va a calcular el centro
* de gravedad (este también es un vector)
* @return std::vector <float> Valor del centro de gravedad calculado
*/
std::vector <float> Algorithm::getGravityCenter(std::vector <int> currentElement) {
std::vector <float> center;
for (int index = 0; index < currentVectors.getDimension(); index++) {
float currentSum = 0;
for (int i = 0; i < currentElement.size(); i++) {
currentSum += currentVectors.getDataValue(currentElement[i], index);
}
center.push_back(currentSum / currentElement.size());
}
return center;
}
/**
* @brief Se encarga de inicializar la información recogida del fichero,
* es decir, los vectores y asignarlos al atributo de la clase que lo va
* a almacenar.
*
* @param newVector El elemento que se va a asignar
*/
void Algorithm::setInfo(Vectors newVector) {
currentVectors = newVector;
}
/**
* @brief Este método se encarga de hacer un sumatorio de todas las
* distancias de los nodos que se encuentran en el vector que se pasa
* como argumento.
*
* @param solution Vector que contiene los distintos nodos
* @return float Valor de la distancia entre los nodos
*/
float Algorithm::getTotalDistance(std::vector<int> solution) {
float distance = 0;
for(int i = 0; i < solution.size(); i++) {
for(int j = i + 1; j < solution.size(); j++) {
distance += currentVectors.getEuclideanDistance(solution[i], solution[j]);
}
}
return distance;
}
/**
* @brief Se encarga de determinar los candidatos a partir de un vector.
* Es decir, devuelve los elementos que no se encuentran en el vector que
* se pasa como parámetro.
*
* @param checkSelected Representa el vector sobre el que se quieren determinar
* los elementos que no pertenecen al mismo.
* @return std::vector<int> Vector con los elementos que no pertenecen al
* vector checkSelected.
*/
std::vector<int> Algorithm::getCandidates(std::vector<int> checkSelected) {
std::vector<int> candidates;
for (int currentElement = 0; currentElement < currentVectors.getSize(); currentElement++) {
if (std::find(checkSelected.begin(), checkSelected.end(), currentElement) == checkSelected.end()) {
candidates.push_back(currentElement);
}
}
return candidates;
} | [
"alu0101102726@ull.edu.es"
] | alu0101102726@ull.edu.es |
6e0ea1b20b4b3d108eeaa81dc7abc5a2864d5161 | 6c55297fef360ab83af0d963934b34e13e25f3e0 | /App/Classes/Native/Generics.cpp | f416595fbc50ec5502b06be9607acad4998897f2 | [] | no_license | jinzozo0402/login | 96adcdb9eaa81f55994fc549eef2378c0c7f9149 | 951e07c5073e7a39dcc45409324cfc5d03781ae0 | refs/heads/master | 2020-07-18T18:49:07.315185 | 2019-09-05T04:07:01 | 2019-09-05T04:07:01 | 206,294,849 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,779,370 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
template <typename R, typename T1, typename T2>
struct VirtFuncInvoker2
{
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>
struct VirtFuncInvoker1
{
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>
struct VirtFuncInvoker0
{
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);
}
};
struct VirtActionInvoker0
{
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 VirtActionInvoker1
{
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 VirtActionInvoker2
{
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, typename T3>
struct VirtActionInvoker3
{
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);
}
};
struct GenericVirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct GenericVirtActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct GenericVirtActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct GenericVirtActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)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 T1, typename T2, typename T3>
struct InterfaceActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct InterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
struct GenericInterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct GenericInterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct GenericInterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct GenericInterfaceActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
// <>f__AnonymousType0`1<System.Object>
struct U3CU3Ef__AnonymousType0_1_t103DB909F3478F55EAABC0751EA7624561E5B35F;
// Facebook.Unity.CallbackManager
struct CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105;
// Facebook.Unity.Canvas.CanvasFacebook
struct CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB;
// Facebook.Unity.Canvas.CanvasFacebook/CanvasUIMethodCall`1<System.Object>
struct CanvasUIMethodCall_1_tE38745DE6A2D71B417BD4CD0EBA247F66304816B;
// Facebook.Unity.Canvas.ICanvasJSWrapper
struct ICanvasJSWrapper_t51DE9666E794B5A1312C40B574E4332A8C51C6F0;
// Facebook.Unity.FacebookBase
struct FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524;
// Facebook.Unity.FacebookDelegate`1<System.Object>
struct FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA;
// Facebook.Unity.HideUnityDelegate
struct HideUnityDelegate_t65AA674EEA6BE9DB69E0E6ED262B29DCCAD64D68;
// Facebook.Unity.InitDelegate
struct InitDelegate_t70A5E2FF728D18D0A1D0BBB051DFF0AADE96A4B6;
// Facebook.Unity.MethodArguments
struct MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A;
// Facebook.Unity.MethodCall`1<System.Object>
struct MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3;
// Facebook.Unity.Mobile.Android.AndroidFacebook
struct AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5;
// Facebook.Unity.Mobile.Android.AndroidFacebook/JavaMethodCall`1<System.Object>
struct JavaMethodCall_1_tBA95102CDAA272A68B0E2BE48DA2462F6F3E486B;
// Facebook.Unity.Mobile.Android.IAndroidWrapper
struct IAndroidWrapper_tE0132634B760B51C273B9F3A75B66F8209641DC2;
// Facebook.Unity.Utilities/Callback`1<System.Object>
struct Callback_1_tC236E0C1DC51FBD8E73B1BC583F52DE679142177;
// System.Action`1<System.Boolean>
struct Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD;
// System.Action`1<System.Byte>
struct Action_1_t7CCD21D1063A83C9B6E5A95BFCE022A6EB65C46A;
// System.Action`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct Action_1_t0DEF774B03048897D0C95E1C3FDEC90E76AD66F6;
// System.Action`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>
struct Action_1_t8C2E57068917ACE417DC9F9EE5C1B893777A9E26;
// System.Action`1<System.Guid>
struct Action_1_t914484DED737548EE8FABFA959036371C8235942;
// System.Action`1<System.Int32>
struct Action_1_t9B7C5376025AEF32439C13FB3BA4BFF8F0F0477B;
// System.Action`1<System.Int32Enum>
struct Action_1_tABA1E3BFA092E3309A0ECC53722E4F9826DCE983;
// System.Action`1<System.Object>
struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0;
// System.Action`1<System.Single>
struct Action_1_tCBF7F8C203F735692364E5850B0A960E0EABD03B;
// System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>>
struct Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180;
// System.Action`1<System.UInt32>
struct Action_1_t6131F366126278D446E2FDDB6336343007AC2F72;
// System.Action`1<System.UInt64>
struct Action_1_t871A401E6A572812A4A4A51F3A4CCE60BEC5CF17;
// System.Action`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct Action_1_tFEDD064D971126B0D10EFA0985118B241D1D1869;
// System.Action`1<UnityEngine.Color32>
struct Action_1_t82786770BFC5780C2E617DB25669143D9ED35825;
// System.Action`1<UnityEngine.EventSystems.RaycastResult>
struct Action_1_t6C5DB7139F66EB76956C49A23DE0D327DCA73C81;
// System.Action`1<UnityEngine.Networking.ChannelPacket>
struct Action_1_t9DDCD79769ABDA964DF387C3C5D72506D9E977CC;
// System.Action`1<UnityEngine.Networking.ClientScene/PendingOwner>
struct Action_1_t92AFDDED5402DAAADD42F33DBA39BA7B4BF1161A;
// System.Action`1<UnityEngine.Networking.LocalClient/InternalMsg>
struct Action_1_t8A86539005F88E0B73A9A5A4AD68222BFB77FEEB;
// System.Action`1<UnityEngine.Networking.NetworkLobbyManager/PendingPlayer>
struct Action_1_t1DC3DD76887A3DC0A423CE7BCBC7D8C5684DD33B;
// System.Action`1<UnityEngine.Networking.NetworkMigrationManager/PendingPlayerInfo>
struct Action_1_tA52CEC15B4DC72F91013B30C153F16F5C5B257C8;
// System.Action`1<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>
struct Action_1_t5B34751F83F8DA7DD4FCBAC4E4771BCFF6028C9F;
// System.Action`1<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>
struct Action_1_t9067D73E0D49F5A367A0734CA77E72527B7CD313;
// System.Action`1<UnityEngine.RaycastHit2D>
struct Action_1_t163F662A723789B8BC371105BBD6022F26D9C6A6;
// System.Action`1<UnityEngine.UICharInfo>
struct Action_1_t4362622E084A551168772B92FB4DFEA74E07CDA5;
// System.Action`1<UnityEngine.UILineInfo>
struct Action_1_t7065A5D96364A7C750A7B180A2502537A82A9910;
// System.Action`1<UnityEngine.UIVertex>
struct Action_1_tE875D12E6922BF87BD02BA6C0FBD1096BCBB9426;
// System.Action`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct Action_1_tD3557152EC38C36B3C25B7FA509B9EC992BEBED0;
// System.Action`1<UnityEngine.Vector2>
struct Action_1_t97B24A3F0ABA64DD934A3DA82A6C9EB77C813E25;
// System.Action`1<UnityEngine.Vector3>
struct Action_1_t08BAF0B9143320EA6FA33CF25A59B6F1641EA5B6;
// System.Action`1<UnityEngine.Vector4>
struct Action_1_t6289D638A9944C0743697466AAE4CAB276AF2F5A;
// System.Action`2<System.Boolean,System.Object>
struct Action_2_t6C33D80670016FFA10F03F59FB542306FA60F1F3;
// System.Action`2<System.Char,System.Object>
struct Action_2_t2F784F6A8F0E6D7B6C7C73DCA17B1CCA8D724E48;
// System.Action`2<System.Int32,System.Int32>
struct Action_2_t7F48DB8D71AB14B1331B4BB8EE28580F28191ACE;
// System.Action`2<System.Int32,System.Int64>
struct Action_2_tC52FA3FD223419FC0456E089309277012CCE38E8;
// System.Action`2<System.Object,System.Boolean>
struct Action_2_t429E4750D84EBAC7EB494EB565EE0C8E1177C576;
// System.Action`2<System.Object,System.Int32Enum>
struct Action_2_t4A92D51BAC0CF291CCBECDD41B622EDAE4E77D9F;
// System.Action`2<System.Object,System.Object>
struct Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C;
// System.Action`3<System.Boolean,System.Boolean,System.Int32>
struct Action_3_tEE1FB0623176AFA5109FAA9BA7E82293445CAE1E;
// System.Action`3<System.Object,System.Object,System.Object>
struct Action_3_tCC14115B7178951118504E7198B7C872630643C5;
// System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>
struct EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F;
// System.Array/EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>
struct EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0;
// System.Array/EmptyInternalEnumerator`1<System.Boolean>
struct EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8;
// System.Array/EmptyInternalEnumerator`1<System.Byte>
struct EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A;
// System.Array/EmptyInternalEnumerator`1<System.Char>
struct EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD;
// System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>
struct EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int16,System.Object>>
struct EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>
struct EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers>>
struct EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>
struct EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>
struct EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>
struct EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>
struct EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>
struct EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>
struct EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>
struct EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64Enum,System.Object>>
struct EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkHash128,System.Object>>
struct EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>
struct EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>
struct EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>
struct EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>
struct EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<UnityEngine.Networking.NetworkInstanceId>>
struct EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>
struct EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>
struct EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int16,System.Object>>
struct EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>
struct EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers>>
struct EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>
struct EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>
struct EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>
struct EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>
struct EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>
struct EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>
struct EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64Enum,System.Object>>
struct EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkHash128,System.Object>>
struct EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkInstanceId,System.Object>>
struct EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkSceneId,System.Object>>
struct EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>
struct EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F;
// System.Array/EmptyInternalEnumerator`1<System.DateTime>
struct EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0;
// System.Array/EmptyInternalEnumerator`1<System.Decimal>
struct EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29;
// System.Array/EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventProvider/SessionInfo>
struct EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB;
// System.Array/EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventSource/EventMetadata>
struct EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82;
// System.Array/EmptyInternalEnumerator`1<System.Double>
struct EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0;
// System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>
struct EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81;
// System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>
struct EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3;
// System.Array/EmptyInternalEnumerator`1<System.Guid>
struct EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455;
// System.Array/EmptyInternalEnumerator`1<System.Int16>
struct EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611;
// System.Array/EmptyInternalEnumerator`1<System.Int32>
struct EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89;
// System.Array/EmptyInternalEnumerator`1<System.Int32Enum>
struct EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B;
// System.Array/EmptyInternalEnumerator`1<System.Int64>
struct EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0;
// System.Array/EmptyInternalEnumerator`1<System.IntPtr>
struct EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C;
// System.Array/EmptyInternalEnumerator`1<System.Net.Sockets.Socket/WSABUF>
struct EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F;
// System.Array/EmptyInternalEnumerator`1<System.Object>
struct EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A;
// System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>
struct EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C;
// System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>
struct EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666;
// System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>
struct EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B;
// System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>
struct EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00;
// System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>
struct EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551;
// System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>
struct EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38;
// System.Array/EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>
struct EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC;
// System.Array/EmptyInternalEnumerator`1<System.SByte>
struct EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343;
// System.Array/EmptyInternalEnumerator`1<System.Single>
struct EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236;
// System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>
struct EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4;
// System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>
struct EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF;
// System.Array/EmptyInternalEnumerator`1<System.TimeSpan>
struct EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6;
// System.Array/EmptyInternalEnumerator`1<System.UInt16>
struct EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611;
// System.Array/EmptyInternalEnumerator`1<System.UInt32>
struct EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6;
// System.Array/EmptyInternalEnumerator`1<System.UInt64>
struct EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD;
// System.Array/EmptyInternalEnumerator`1<System.UInt64Enum>
struct EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32;
// System.Array/EmptyInternalEnumerator`1<System.UIntPtr>
struct EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>
struct EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint2D>
struct EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>
struct EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>
struct EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>
struct EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>
struct EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>
struct EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Networking.ChannelPacket>
struct EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Networking.ClientScene/PendingOwner>
struct EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Networking.LocalClient/InternalMsg>
struct EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkBroadcastResult>
struct EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkHash128>
struct EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkInstanceId>
struct EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkLobbyManager/PendingPlayer>
struct EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers>
struct EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager/PendingPlayerInfo>
struct EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSceneId>
struct EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>
struct EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>
struct EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>
struct EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>
struct EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>
struct EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>
struct EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rect>
struct EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>
struct EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>
struct EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>
struct EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>
struct EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Touch>
struct EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>
struct EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>
struct EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>
struct EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>
struct EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>
struct EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>
struct EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>
struct EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>
struct EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>
struct EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>
struct EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Boolean[]
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.EqualityComparer`1<System.Object>
struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA;
// System.Collections.Generic.IDictionary`2<System.String,System.Object>
struct IDictionary_2_t6AF508DE18DA398DBB91330BEEB14B0CFBD4A8ED;
// System.Collections.Generic.List`1<UnityEngine.Networking.NetworkMigrationManager/PendingPlayerInfo>
struct List_1_t87345ABE62C753FC4A3E06A0820A8CAF6DC8ACA8;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.Diagnostics.Tracing.TraceLoggingEventTypes
struct TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.IFormatProvider
struct IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Reflection.ParameterInfo[]
struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2;
// System.String
struct String_t;
// System.Threading.CancellationCallbackInfo
struct CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36;
// System.Threading.ManualResetEvent
struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408;
// System.Threading.SendOrPostCallback
struct SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01;
// System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7;
// System.Type
struct Type_t;
// System.UInt32[]
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// UnityEngine.Camera
struct Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34;
// UnityEngine.EventSystems.BaseRaycaster
struct BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966;
// UnityEngine.Events.UnityAction
struct UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4;
// UnityEngine.Experimental.LowLevel.PlayerLoopSystem/UpdateFunction
struct UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8;
// UnityEngine.Experimental.LowLevel.PlayerLoopSystem[]
struct PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2;
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F;
// UnityEngine.Networking.NetworkConnection
struct NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA;
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0;
// UnityEngine.Playables.PlayableBinding/CreateOutputMethod
struct CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3;
// UnityEngine.Playables.PlayableBinding[]
struct PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB;
// UnityEngine.Sprite
struct Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198;
// UnityEngine.UI.Selectable
struct Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A;
IL2CPP_EXTERN_C RuntimeClass* AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Guid_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICanvasJSWrapper_t51DE9666E794B5A1312C40B574E4332A8C51C6F0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral2743196813A5635EC097418239BD515966A50491;
IL2CPP_EXTERN_C String_t* _stringLiteral3120F6061B840C2605321DA394727175D2C81C4A;
IL2CPP_EXTERN_C String_t* _stringLiteral5858A25A11472FD4CFA2597DDB1EFF89706B5707;
IL2CPP_EXTERN_C String_t* _stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503;
IL2CPP_EXTERN_C String_t* _stringLiteral9478629FC093D229DF09E560AEAA62C24EAF40E7;
IL2CPP_EXTERN_C String_t* _stringLiteralBFBAF8B2D1CDF92BF83857FE1748C0F68DE03D47;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m04B5C2FD10B42EA5CD3BBE88C3B8E1AF021CD27D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m07E77FDBFD58E5EE65287D586B1E09E258371140_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m0C60BE6EA74588A46F15051C3259341BDCB8F58A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m0CABA4EE26CC086C7D8C239B67A07B4890E7C8EC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m0FB286FD156C69E50C98EDD6ADF037DC6A46D771_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m12FF3DE66B0E5D028C2B6FFC51BB812BF1687D1E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m15EEEC43BE6688879498CA44467AB0E4ECD39A10_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m165DF603BD5CC24DD7D73981775AAEE1DF235094_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m17E39F6C3ADB920CA93850D89890D0E47C36592D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m1868AC47033FE9A5533D64C53CBF30CCF4F13274_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m1A73F71E135FF1DE7F950848A02B1C40221B2F72_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m1A92D15354A59955497E01D6224CE5BD444A9DB2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m1CE82E4289FB0185AFB66AE7C7EF92511DC7017E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m22CE8CF3548E568A359E9E09B9DF71C392A2E32C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m247079442CEC480662FA971CAD91C5A1ED937A9A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m293B9C3C02900945171CC48486B75790594968C4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2AF423D17198E438C0EFC65B276D2C53E684A093_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2B71AC61E1D5E112E4E40B79E0FC768F981AF275_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2D99D91E76466691A4182B87F18C0507601C08C8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2E0E999E9F84B2C679BFF6FE68A0A0883F5EA3B4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2E3532B82D1C6D2AE0835E096591EC98D0982AB2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m33DDE84CA6AB4BC7DC1F65D83ED0DDA363D512AB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m3A2F0EF9E1E044B1D2AC784755D3A61BA961BE9C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m420EE01A411C337671037356ED272F11275F1CB5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m422E28F501E2CD8CC9E2E4A95DF026BA47C92725_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m43159AC3B73F8C7B43D68F731301DAAF9660A0FF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m435FB1A1E27D78606C760DC791CE33F06A5EAE03_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m43CEF72B27A72848C3DFB1353CE9DF1A565B1E1F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m43D211386BFACB64619122C4508DE298757FFDF0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m48F65C072D4CD934C97FB2CB5DF62922B52C9970_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m4A4EFA8829A60E09FE4E94105F12D16C78230B77_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m4BBE2ED9520467529E070DEDE2D4EA9BC34FFF46_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m4D75CAE0763650D9067F695B43181AD1167219BC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m4F977D95275083EDFDF6E640938606098826C030_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m596FBD0FF13E8AC079AF1E3FCBF59FD8BFF0076E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m5A7A5AF62CCF46153A47CEF59A43C83C6D92BB56_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m5AB6DA521489CB4F468BB376B073E910DEBDE64F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m5B0E70936064DD8DBD9F90F842D80D0BE3C2F4AE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m5E5746A2F739063EB4AAD252A5755542C93CE3DC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m60F72696ADBA60FCDF548CC21844A3852BAA9820_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m630AF63B3207B43E2ED4C1B2D919B2E336C6859F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m671C6AAB39CBDF5F6C64F45C4C8E5A7FCE5CE47B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m68884E7F37A82001ECE18FF1AB9E0807E71EEB14_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m688871A0D97BDF5D132509D3C505A14475EF10FA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m69493094FDA55EF6716614CB6073AD3E81F5D74C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m6B46980E651EA5A3FDFDF0E11A514D4392774364_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m6E9F5FEA95891488995D987661B9DDDFFA7E2EA4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m6F736FA9A64A4731F43C0EB684DEC9FC7827B12F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m70740947394191A6C9D5A4BE101FBE4AB834E6E5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m74C53F2B3DCAF7CA8A55FD1A12A8A27D6D9A540E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m74F78B949FE0A28B76A17D74BD70A9ED83FD0864_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m7724FEA10A3B810C3543323AE7A1F3B663972FF5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m7A31C09586169FF920385A27391AA816E8F6F3B3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m7BC4D764094154DE60F8FB6C4201D3E091D5BFE5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m7FF157DCF930FD6D8E3448441F2EE79E8CB462A9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m8001F356CF3EF205D9D1585C4A8013E0BC3EEE44_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m80A2ACBC3B0046EDE292A4DDE0674EEE5ED4861B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m80A7206A59DAB66B4057C520F2A17432A094A3FE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m8147DED7E4B10DF28749C2BE6EAD0B6493C1D777_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m83FBD6CF2834CFCAD3D84A8215C40BCC028353A8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m8444FDF54FEBD602CA48F528EC463DB1AC8082E6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m87A6AFA112463A8339ABA2E4B097327D46019B15_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m89E994B29B5FB68A2E132D5BE44DED295944AC41_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m8AFD620D0B3BD3A1F968761903831952C731B3A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m8C8A1B00836A4D0437A7FF24D1532C211E45E393_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m8C9BFDE7C62F98D575E82E0AAC2AE297B745FBC9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m8D6D84541FA8C039CE3800A657E8640AFFCD1063_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m8D775E44C86196D9A8E7493AE45BB5274764C46A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m91850009EDCB6BD94A45C13901DADD42E470A99E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m952BF74D0CB1544321A6EC1605BF7919CAFF0896_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m9954484CD3A432A536BB55D687E86A360268B80C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m99A910FCF4C1B8533C8F7C8F36C066F0B715C745_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m9A6B6CBC5D424C044BF445F2CD69EA3986F61834_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m9FBAC2C4DDB28B317C4D36405B1901B3A98E0F0B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA06904B635841F0E7F80D2F769DE07A6ED082B01_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA09E0C78D8EF2892E5C4EF4F2DCFBF8DBEFDD8FB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA4E7989BC90D09B31EEDA1BDF04507D72F72A2A8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA64B6077FDD555F75AF944CE2FFA1EC4E671F294_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA85AAC77C98F6DBC4911612F3436BC77E597EA86_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA8EDB09064057A0786F373AD65D2D1BD26181070_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mADF4703A99D76C5A2AE37C4DC95E3958DBE9E99C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB020239A7A0F12907B4A51FA17738728687ADE59_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB025B8AAA29152B54E5AEE534D9402B39A6BED7F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB4538F08D37C1AF8ED2E5A8542368184F34E58E7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB55E0808A4D77A4946F44A0F47F8BE914C329D45_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB9F9A8521DE3F36A78F934BB06A77280EC38BC9B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mBA694D08EB8FDE2B47454EDE7A07F687ED317CCF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mBEC4557EDCDBE1BCFE4279943CFC23E51EE664A0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC07B792B936AADB3124956F37200AD20909E051B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC1B00DC8F54756D285CE951065DCB3583FA60DBF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC1C0DF442F32344DCEA7D870E1301FA676A78DF9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC2B8B3B80264600FD8E7FBA9DEBA4BA6FA287810_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC5BA4F2C682C18C4A01CECEDC74DE8D4FEAAD27C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC5C010E3A881F0C79192B7A183E954E8D01A5218_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD41BD65921AA0AFAA9025BD7FBEEE634BF58E633_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD62451B7245670D9AC8F19B55DD0D3E70E56CD3A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD6E60B22341F7E8C8EFE02DC34C603A14B59F376_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mDA9F64CC2753664296C3D3E7AA3AB26DEDDCA164_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mDB0FD89433C0DDE4EFD63DD246B7F970C1542321_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mDB789AF8B347AAB5B9C449C7519E95F969E9DE87_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mE05BEAE26B082F795117C94E65C14D2930BA5E29_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mE2016AE72E368C527141CFB7657D9644FEF1561E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mEA3554A434E127BEB53A50C0B937A0FDC4155661_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mEA48A914AC1EA8AA2BA4D469555F9A904465F31D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mED751D30B6A22442CB49EB4072CD97081F8583A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mEEA6BE494FBC6DF13FD4358FDD46705AAE7C10CB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mEEEA3BB14A06103E355C424A371C59B0968ABC51_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mEF898D1DEDB1095AC9E1556AE74B0BABD3B4B031_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mF477BCDFC6FB221532EC3FBD8F1711E6D55C1F10_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mF4F3FA2899CCD060317877FE1AE7645E060E5B58_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mF50B58F842124158245C98B1F976703224B89103_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mFA7801C41A4209BB9CFA5AE6C151A6E1CEA5879F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mFF2DE9B159D4CFDCA29671017D05A5FCC4E7F7FB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mFFD1CDBBF16EBBF275A7CB059C2C838A6CA5A492_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m1C0E1451A2D19F6FDD56E250C6480BE07691B8E8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m3A9DE2B954F50DF264A9CE67318E3E31A7115FCA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m6DE8266180816AACFC7A2316D0972317F9776BAD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m73CCDD94C855E7CE8895DB52181153038EAA8585_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m8622106F95B7EE6B6B5B00AB6FDF5A5D4F404662_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m902312010187A018147C6FDDC77113E4B125EC6C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mA2BE834E18743D7A1F0FFF5F46626012F344DE86_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mD4105F242FD3292C91E39969E215B61F2FEEE625_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_RuntimeMethod_var;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_m02789A61A2C3829C117DD7793B1273498B3EB8E6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_m06493A4A91EF5E0099535DF5E9D1CCA85F7519F6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_m10C6A956131CC7E0B40A82EF4973DB68378C7F11_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_m147EA0AF0B438620EBDA154160680EDFB8FDE786_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_m1CD951C5C13C40C9041757E11FA70D942A302894_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_m35B0142A5389168177B0689FB5B5FB008A0F18D5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_m38D4DB74F04D419EB6A08DC496693915A0A3060D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_m4567A97BF77F30EC35B138E04CE92FDC0BDC9EA9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_m4606EE7147EF7F25AA23990FA44B7402D66175FD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_m4A0C89BFD4F9ACA2EC33779E1FE47885A25D5063_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_m4AF84490D9160024EE3E0848204F17DF364D0670_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_m5488FF7945512DE423E4E1BD75E44F289D423CE6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_m5CDBA15E106EF1422C06CA296C25DEB9F63315DD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_m79E0B2D658D5B21C4C786744E6C6C377EC81DCFD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_m7BC329DB2132CBE9D7D92B0F80134971E5EDB976_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_m8440B6C337ED1E0854945DDEF0673A8372BA7F9E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_m9180967E80D10A8E0F1D965A99D8AFDAFDB41B2F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_mA64DEDBDA72CAD53205F5BA2411A5BF5806242EC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_mB210360A28A9B4279D84FCA3CD3CF3278E73E6C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_mBCFE828824358B60CCF7516B3819DE3C6273488A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_mC47E6E9D12041F47B283B476BA584D82A76007CA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_mC77F0EE59782F18A917A440DC2882C8B4B8AC6DF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_mC98C5450437D4211B29891F16F31D1EEF56C1522_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_mD00742BE47DDC0E0C42E919A99410635BF60ED73_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_mE2C6ADDC899C849AD1E6CE1CF2D486717C034859_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_mE4313EF810BAC126BFC787D0F9A91B89564A5F78_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_mEB7D149E305B5161037D7B4EA53522C466DB64F0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_mFD2A2F356CD808B55B916C0DD2D9F0DE63B33F0D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_1_BeginInvoke_mFDF13B1129ED7ED32B43BC6BCE22F71DB594AA19_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_2_BeginInvoke_m00BD43B0496F386EBA85D9FD7BF8480F6B2C1E13_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_2_BeginInvoke_m1A2023AD69CC33FE7360200C4E77F16B840BCCBB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_2_BeginInvoke_m4F9434B4D9C00487F3304FDB70D3303596AD3081_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_2_BeginInvoke_m6896AF87BCD908F449DE142BACD2A924D9C1869C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_2_BeginInvoke_m701B18451EA00B7A907C490C88AD8DA88992B8CC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_2_BeginInvoke_m90CE2E30BF265027DA651AF5A3946F6E1C2404E7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Action_3_BeginInvoke_m5615B0091F5F4D1AE791FAF33F8F86E309430DCE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUIMethodCall_1_UI_m100584F83B7BFF46FC5EDFBE379F834FAC4CA1C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m04B5C2FD10B42EA5CD3BBE88C3B8E1AF021CD27D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m07E77FDBFD58E5EE65287D586B1E09E258371140_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m0C60BE6EA74588A46F15051C3259341BDCB8F58A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m0CABA4EE26CC086C7D8C239B67A07B4890E7C8EC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m0FB286FD156C69E50C98EDD6ADF037DC6A46D771_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m12FF3DE66B0E5D028C2B6FFC51BB812BF1687D1E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m15EEEC43BE6688879498CA44467AB0E4ECD39A10_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m165DF603BD5CC24DD7D73981775AAEE1DF235094_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m17E39F6C3ADB920CA93850D89890D0E47C36592D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m1868AC47033FE9A5533D64C53CBF30CCF4F13274_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m1A73F71E135FF1DE7F950848A02B1C40221B2F72_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m1A92D15354A59955497E01D6224CE5BD444A9DB2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m1CE82E4289FB0185AFB66AE7C7EF92511DC7017E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m22CE8CF3548E568A359E9E09B9DF71C392A2E32C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m247079442CEC480662FA971CAD91C5A1ED937A9A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m293B9C3C02900945171CC48486B75790594968C4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m2AF423D17198E438C0EFC65B276D2C53E684A093_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m2B71AC61E1D5E112E4E40B79E0FC768F981AF275_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m2D99D91E76466691A4182B87F18C0507601C08C8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m2E0E999E9F84B2C679BFF6FE68A0A0883F5EA3B4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m2E3532B82D1C6D2AE0835E096591EC98D0982AB2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m33DDE84CA6AB4BC7DC1F65D83ED0DDA363D512AB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m3A2F0EF9E1E044B1D2AC784755D3A61BA961BE9C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m420EE01A411C337671037356ED272F11275F1CB5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m422E28F501E2CD8CC9E2E4A95DF026BA47C92725_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m43159AC3B73F8C7B43D68F731301DAAF9660A0FF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m435FB1A1E27D78606C760DC791CE33F06A5EAE03_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m43CEF72B27A72848C3DFB1353CE9DF1A565B1E1F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m43D211386BFACB64619122C4508DE298757FFDF0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m48F65C072D4CD934C97FB2CB5DF62922B52C9970_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m4A4EFA8829A60E09FE4E94105F12D16C78230B77_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m4BBE2ED9520467529E070DEDE2D4EA9BC34FFF46_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m4D75CAE0763650D9067F695B43181AD1167219BC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m4F977D95275083EDFDF6E640938606098826C030_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m596FBD0FF13E8AC079AF1E3FCBF59FD8BFF0076E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m5A7A5AF62CCF46153A47CEF59A43C83C6D92BB56_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m5AB6DA521489CB4F468BB376B073E910DEBDE64F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m5B0E70936064DD8DBD9F90F842D80D0BE3C2F4AE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m5E5746A2F739063EB4AAD252A5755542C93CE3DC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m60F72696ADBA60FCDF548CC21844A3852BAA9820_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m630AF63B3207B43E2ED4C1B2D919B2E336C6859F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m671C6AAB39CBDF5F6C64F45C4C8E5A7FCE5CE47B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m68884E7F37A82001ECE18FF1AB9E0807E71EEB14_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m688871A0D97BDF5D132509D3C505A14475EF10FA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m69493094FDA55EF6716614CB6073AD3E81F5D74C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m6B46980E651EA5A3FDFDF0E11A514D4392774364_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m6E9F5FEA95891488995D987661B9DDDFFA7E2EA4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m6F736FA9A64A4731F43C0EB684DEC9FC7827B12F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m70740947394191A6C9D5A4BE101FBE4AB834E6E5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m74C53F2B3DCAF7CA8A55FD1A12A8A27D6D9A540E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m74F78B949FE0A28B76A17D74BD70A9ED83FD0864_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m7724FEA10A3B810C3543323AE7A1F3B663972FF5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m7A31C09586169FF920385A27391AA816E8F6F3B3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m7BC4D764094154DE60F8FB6C4201D3E091D5BFE5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m7FF157DCF930FD6D8E3448441F2EE79E8CB462A9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m8001F356CF3EF205D9D1585C4A8013E0BC3EEE44_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m80A2ACBC3B0046EDE292A4DDE0674EEE5ED4861B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m80A7206A59DAB66B4057C520F2A17432A094A3FE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m8147DED7E4B10DF28749C2BE6EAD0B6493C1D777_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m83FBD6CF2834CFCAD3D84A8215C40BCC028353A8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m8444FDF54FEBD602CA48F528EC463DB1AC8082E6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m87A6AFA112463A8339ABA2E4B097327D46019B15_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m89E994B29B5FB68A2E132D5BE44DED295944AC41_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m8AFD620D0B3BD3A1F968761903831952C731B3A2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m8C8A1B00836A4D0437A7FF24D1532C211E45E393_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m8C9BFDE7C62F98D575E82E0AAC2AE297B745FBC9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m8D6D84541FA8C039CE3800A657E8640AFFCD1063_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m8D775E44C86196D9A8E7493AE45BB5274764C46A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m91850009EDCB6BD94A45C13901DADD42E470A99E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m952BF74D0CB1544321A6EC1605BF7919CAFF0896_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m9954484CD3A432A536BB55D687E86A360268B80C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m99A910FCF4C1B8533C8F7C8F36C066F0B715C745_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m9A6B6CBC5D424C044BF445F2CD69EA3986F61834_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m9FBAC2C4DDB28B317C4D36405B1901B3A98E0F0B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mA06904B635841F0E7F80D2F769DE07A6ED082B01_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mA09E0C78D8EF2892E5C4EF4F2DCFBF8DBEFDD8FB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mA4E7989BC90D09B31EEDA1BDF04507D72F72A2A8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mA64B6077FDD555F75AF944CE2FFA1EC4E671F294_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mA85AAC77C98F6DBC4911612F3436BC77E597EA86_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mA8EDB09064057A0786F373AD65D2D1BD26181070_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mADF4703A99D76C5A2AE37C4DC95E3958DBE9E99C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mB020239A7A0F12907B4A51FA17738728687ADE59_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mB025B8AAA29152B54E5AEE534D9402B39A6BED7F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mB4538F08D37C1AF8ED2E5A8542368184F34E58E7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mB55E0808A4D77A4946F44A0F47F8BE914C329D45_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mB9F9A8521DE3F36A78F934BB06A77280EC38BC9B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mBA694D08EB8FDE2B47454EDE7A07F687ED317CCF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mBEC4557EDCDBE1BCFE4279943CFC23E51EE664A0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mC07B792B936AADB3124956F37200AD20909E051B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mC1B00DC8F54756D285CE951065DCB3583FA60DBF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mC1C0DF442F32344DCEA7D870E1301FA676A78DF9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mC2B8B3B80264600FD8E7FBA9DEBA4BA6FA287810_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mC5BA4F2C682C18C4A01CECEDC74DE8D4FEAAD27C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mC5C010E3A881F0C79192B7A183E954E8D01A5218_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mD41BD65921AA0AFAA9025BD7FBEEE634BF58E633_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mD62451B7245670D9AC8F19B55DD0D3E70E56CD3A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mD6E60B22341F7E8C8EFE02DC34C603A14B59F376_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mDA9F64CC2753664296C3D3E7AA3AB26DEDDCA164_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mDB0FD89433C0DDE4EFD63DD246B7F970C1542321_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mDB789AF8B347AAB5B9C449C7519E95F969E9DE87_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mE05BEAE26B082F795117C94E65C14D2930BA5E29_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mE2016AE72E368C527141CFB7657D9644FEF1561E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mEA3554A434E127BEB53A50C0B937A0FDC4155661_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mEA48A914AC1EA8AA2BA4D469555F9A904465F31D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mED751D30B6A22442CB49EB4072CD97081F8583A2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mEEA6BE494FBC6DF13FD4358FDD46705AAE7C10CB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mEEEA3BB14A06103E355C424A371C59B0968ABC51_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mEF898D1DEDB1095AC9E1556AE74B0BABD3B4B031_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mF477BCDFC6FB221532EC3FBD8F1711E6D55C1F10_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mF4F3FA2899CCD060317877FE1AE7645E060E5B58_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mF50B58F842124158245C98B1F976703224B89103_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mFA7801C41A4209BB9CFA5AE6C151A6E1CEA5879F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mFF2DE9B159D4CFDCA29671017D05A5FCC4E7F7FB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mFFD1CDBBF16EBBF275A7CB059C2C838A6CA5A492_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m1C0E1451A2D19F6FDD56E250C6480BE07691B8E8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m3A9DE2B954F50DF264A9CE67318E3E31A7115FCA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m6DE8266180816AACFC7A2316D0972317F9776BAD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m73CCDD94C855E7CE8895DB52181153038EAA8585_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m8622106F95B7EE6B6B5B00AB6FDF5A5D4F404662_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m902312010187A018147C6FDDC77113E4B125EC6C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mA2BE834E18743D7A1F0FFF5F46626012F344DE86_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mD4105F242FD3292C91E39969E215B61F2FEEE625_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JavaMethodCall_1_Call_mA2B12085844B66E0C3169442E25BB9AE12494383_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodCall_1__ctor_m802C6D1FAEE164DF53C5A87DF68AFE2C6720EA74_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ef__AnonymousType0_1_ToString_m1B1F29A3B1690D6AA429AF0A8405278664F94771_MetadataUsageId;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com;
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com;
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke;
struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_com;
struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_pinvoke;
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
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.Object
// <>f__AnonymousType0`1<System.Object>
struct U3CU3Ef__AnonymousType0_1_t103DB909F3478F55EAABC0751EA7624561E5B35F : public RuntimeObject
{
public:
// <message>j__TPar <>f__AnonymousType0`1::<message>i__Field
RuntimeObject * ___U3CmessageU3Ei__Field_0;
public:
inline static int32_t get_offset_of_U3CmessageU3Ei__Field_0() { return static_cast<int32_t>(offsetof(U3CU3Ef__AnonymousType0_1_t103DB909F3478F55EAABC0751EA7624561E5B35F, ___U3CmessageU3Ei__Field_0)); }
inline RuntimeObject * get_U3CmessageU3Ei__Field_0() const { return ___U3CmessageU3Ei__Field_0; }
inline RuntimeObject ** get_address_of_U3CmessageU3Ei__Field_0() { return &___U3CmessageU3Ei__Field_0; }
inline void set_U3CmessageU3Ei__Field_0(RuntimeObject * value)
{
___U3CmessageU3Ei__Field_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CmessageU3Ei__Field_0), (void*)value);
}
};
// Facebook.Unity.CallbackManager
struct CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105 : public RuntimeObject
{
public:
// System.Collections.Generic.IDictionary`2<System.String,System.Object> Facebook.Unity.CallbackManager::facebookDelegates
RuntimeObject* ___facebookDelegates_0;
// System.Int32 Facebook.Unity.CallbackManager::nextAsyncId
int32_t ___nextAsyncId_1;
public:
inline static int32_t get_offset_of_facebookDelegates_0() { return static_cast<int32_t>(offsetof(CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105, ___facebookDelegates_0)); }
inline RuntimeObject* get_facebookDelegates_0() const { return ___facebookDelegates_0; }
inline RuntimeObject** get_address_of_facebookDelegates_0() { return &___facebookDelegates_0; }
inline void set_facebookDelegates_0(RuntimeObject* value)
{
___facebookDelegates_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___facebookDelegates_0), (void*)value);
}
inline static int32_t get_offset_of_nextAsyncId_1() { return static_cast<int32_t>(offsetof(CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105, ___nextAsyncId_1)); }
inline int32_t get_nextAsyncId_1() const { return ___nextAsyncId_1; }
inline int32_t* get_address_of_nextAsyncId_1() { return &___nextAsyncId_1; }
inline void set_nextAsyncId_1(int32_t value)
{
___nextAsyncId_1 = value;
}
};
// Facebook.Unity.FacebookBase
struct FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 : public RuntimeObject
{
public:
// Facebook.Unity.InitDelegate Facebook.Unity.FacebookBase::onInitCompleteDelegate
InitDelegate_t70A5E2FF728D18D0A1D0BBB051DFF0AADE96A4B6 * ___onInitCompleteDelegate_0;
// System.Boolean Facebook.Unity.FacebookBase::<Initialized>k__BackingField
bool ___U3CInitializedU3Ek__BackingField_1;
// Facebook.Unity.CallbackManager Facebook.Unity.FacebookBase::<CallbackManager>k__BackingField
CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105 * ___U3CCallbackManagerU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_onInitCompleteDelegate_0() { return static_cast<int32_t>(offsetof(FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524, ___onInitCompleteDelegate_0)); }
inline InitDelegate_t70A5E2FF728D18D0A1D0BBB051DFF0AADE96A4B6 * get_onInitCompleteDelegate_0() const { return ___onInitCompleteDelegate_0; }
inline InitDelegate_t70A5E2FF728D18D0A1D0BBB051DFF0AADE96A4B6 ** get_address_of_onInitCompleteDelegate_0() { return &___onInitCompleteDelegate_0; }
inline void set_onInitCompleteDelegate_0(InitDelegate_t70A5E2FF728D18D0A1D0BBB051DFF0AADE96A4B6 * value)
{
___onInitCompleteDelegate_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onInitCompleteDelegate_0), (void*)value);
}
inline static int32_t get_offset_of_U3CInitializedU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524, ___U3CInitializedU3Ek__BackingField_1)); }
inline bool get_U3CInitializedU3Ek__BackingField_1() const { return ___U3CInitializedU3Ek__BackingField_1; }
inline bool* get_address_of_U3CInitializedU3Ek__BackingField_1() { return &___U3CInitializedU3Ek__BackingField_1; }
inline void set_U3CInitializedU3Ek__BackingField_1(bool value)
{
___U3CInitializedU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CCallbackManagerU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524, ___U3CCallbackManagerU3Ek__BackingField_2)); }
inline CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105 * get_U3CCallbackManagerU3Ek__BackingField_2() const { return ___U3CCallbackManagerU3Ek__BackingField_2; }
inline CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105 ** get_address_of_U3CCallbackManagerU3Ek__BackingField_2() { return &___U3CCallbackManagerU3Ek__BackingField_2; }
inline void set_U3CCallbackManagerU3Ek__BackingField_2(CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105 * value)
{
___U3CCallbackManagerU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CCallbackManagerU3Ek__BackingField_2), (void*)value);
}
};
// Facebook.Unity.MethodArguments
struct MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A : public RuntimeObject
{
public:
// System.Collections.Generic.IDictionary`2<System.String,System.Object> Facebook.Unity.MethodArguments::arguments
RuntimeObject* ___arguments_0;
public:
inline static int32_t get_offset_of_arguments_0() { return static_cast<int32_t>(offsetof(MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A, ___arguments_0)); }
inline RuntimeObject* get_arguments_0() const { return ___arguments_0; }
inline RuntimeObject** get_address_of_arguments_0() { return &___arguments_0; }
inline void set_arguments_0(RuntimeObject* value)
{
___arguments_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___arguments_0), (void*)value);
}
};
// Facebook.Unity.MethodCall`1<System.Object>
struct MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 : public RuntimeObject
{
public:
// System.String Facebook.Unity.MethodCall`1::<MethodName>k__BackingField
String_t* ___U3CMethodNameU3Ek__BackingField_0;
// Facebook.Unity.FacebookDelegate`1<T> Facebook.Unity.MethodCall`1::<Callback>k__BackingField
FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * ___U3CCallbackU3Ek__BackingField_1;
// Facebook.Unity.FacebookBase Facebook.Unity.MethodCall`1::<FacebookImpl>k__BackingField
FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 * ___U3CFacebookImplU3Ek__BackingField_2;
// Facebook.Unity.MethodArguments Facebook.Unity.MethodCall`1::<Parameters>k__BackingField
MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * ___U3CParametersU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CMethodNameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3, ___U3CMethodNameU3Ek__BackingField_0)); }
inline String_t* get_U3CMethodNameU3Ek__BackingField_0() const { return ___U3CMethodNameU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CMethodNameU3Ek__BackingField_0() { return &___U3CMethodNameU3Ek__BackingField_0; }
inline void set_U3CMethodNameU3Ek__BackingField_0(String_t* value)
{
___U3CMethodNameU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CMethodNameU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CCallbackU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3, ___U3CCallbackU3Ek__BackingField_1)); }
inline FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * get_U3CCallbackU3Ek__BackingField_1() const { return ___U3CCallbackU3Ek__BackingField_1; }
inline FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA ** get_address_of_U3CCallbackU3Ek__BackingField_1() { return &___U3CCallbackU3Ek__BackingField_1; }
inline void set_U3CCallbackU3Ek__BackingField_1(FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * value)
{
___U3CCallbackU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CCallbackU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CFacebookImplU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3, ___U3CFacebookImplU3Ek__BackingField_2)); }
inline FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 * get_U3CFacebookImplU3Ek__BackingField_2() const { return ___U3CFacebookImplU3Ek__BackingField_2; }
inline FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 ** get_address_of_U3CFacebookImplU3Ek__BackingField_2() { return &___U3CFacebookImplU3Ek__BackingField_2; }
inline void set_U3CFacebookImplU3Ek__BackingField_2(FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 * value)
{
___U3CFacebookImplU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CFacebookImplU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CParametersU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3, ___U3CParametersU3Ek__BackingField_3)); }
inline MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * get_U3CParametersU3Ek__BackingField_3() const { return ___U3CParametersU3Ek__BackingField_3; }
inline MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A ** get_address_of_U3CParametersU3Ek__BackingField_3() { return &___U3CParametersU3Ek__BackingField_3; }
inline void set_U3CParametersU3Ek__BackingField_3(MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * value)
{
___U3CParametersU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CParametersU3Ek__BackingField_3), (void*)value);
}
};
struct Il2CppArrayBounds;
// System.Array
// System.Array_EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer_TableRange>
struct EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>
struct EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Boolean>
struct EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Byte>
struct EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Char>
struct EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>
struct EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>>
struct EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>
struct EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>
struct EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>
struct EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>
struct EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>>
struct EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>
struct EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>
struct EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>
struct EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>
struct EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>>
struct EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>>
struct EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>
struct EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>
struct EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<System.Int32>>
struct EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<System.Object>>
struct EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<UnityEngine.Networking.NetworkInstanceId>>
struct EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>
struct EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>
struct EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int16,System.Object>>
struct EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>
struct EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>
struct EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>
struct EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>
struct EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>
struct EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>
struct EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>
struct EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>
struct EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64Enum,System.Object>>
struct EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkHash128,System.Object>>
struct EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkInstanceId,System.Object>>
struct EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkSceneId,System.Object>>
struct EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Collections.Hashtable_bucket>
struct EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.DateTime>
struct EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Decimal>
struct EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>
struct EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventSource_EventMetadata>
struct EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Double>
struct EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>
struct EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>
struct EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Guid>
struct EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Int16>
struct EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Int32>
struct EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Int32Enum>
struct EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Int64>
struct EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.IntPtr>
struct EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Net.Sockets.Socket_WSABUF>
struct EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Object>
struct EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.ParameterizedStrings_FormatParam>
struct EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>
struct EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>
struct EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>
struct EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Resources.ResourceLocator>
struct EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>
struct EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>
struct EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.SByte>
struct EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Single>
struct EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>
struct EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>
struct EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.TimeSpan>
struct EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.UInt16>
struct EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.UInt32>
struct EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.UInt64>
struct EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.UInt64Enum>
struct EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<System.UIntPtr>
struct EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper_OrderBlock>
struct EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Color32>
struct EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.ContactPoint2D>
struct EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.ContactPoint>
struct EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>
struct EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>
struct EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>
struct EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Keyframe>
struct EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.ChannelPacket>
struct EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.ClientScene_PendingOwner>
struct EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.LocalClient_InternalMsg>
struct EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkBroadcastResult>
struct EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkHash128>
struct EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkInstanceId>
struct EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkLobbyManager_PendingPlayer>
struct EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>
struct EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo>
struct EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSceneId>
struct EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>
struct EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>
struct EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Plane>
struct EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>
struct EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>
struct EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.RaycastHit>
struct EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Rect>
struct EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>
struct EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents_HitInfo>
struct EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>
struct EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>
struct EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Touch>
struct EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>
struct EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>
struct EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>
struct EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UICharInfo>
struct EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UILineInfo>
struct EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UIVertex>
struct EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext_WorkRequest>
struct EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector2>
struct EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector3>
struct EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector4>
struct EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array_EmptyInternalEnumerator`1<UnityEngine.jvalue>
struct EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E_StaticFields
{
public:
// System.Array_EmptyInternalEnumerator`1<T> System.Array_EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Object>
struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com
{
};
// Facebook.Unity.Canvas.CanvasFacebook
struct CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB : public FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524
{
public:
// System.String Facebook.Unity.Canvas.CanvasFacebook::appId
String_t* ___appId_3;
// System.String Facebook.Unity.Canvas.CanvasFacebook::appLinkUrl
String_t* ___appLinkUrl_4;
// Facebook.Unity.Canvas.ICanvasJSWrapper Facebook.Unity.Canvas.CanvasFacebook::canvasJSWrapper
RuntimeObject* ___canvasJSWrapper_5;
// Facebook.Unity.HideUnityDelegate Facebook.Unity.Canvas.CanvasFacebook::onHideUnityDelegate
HideUnityDelegate_t65AA674EEA6BE9DB69E0E6ED262B29DCCAD64D68 * ___onHideUnityDelegate_6;
// System.Boolean Facebook.Unity.Canvas.CanvasFacebook::<LimitEventUsage>k__BackingField
bool ___U3CLimitEventUsageU3Ek__BackingField_7;
public:
inline static int32_t get_offset_of_appId_3() { return static_cast<int32_t>(offsetof(CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB, ___appId_3)); }
inline String_t* get_appId_3() const { return ___appId_3; }
inline String_t** get_address_of_appId_3() { return &___appId_3; }
inline void set_appId_3(String_t* value)
{
___appId_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___appId_3), (void*)value);
}
inline static int32_t get_offset_of_appLinkUrl_4() { return static_cast<int32_t>(offsetof(CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB, ___appLinkUrl_4)); }
inline String_t* get_appLinkUrl_4() const { return ___appLinkUrl_4; }
inline String_t** get_address_of_appLinkUrl_4() { return &___appLinkUrl_4; }
inline void set_appLinkUrl_4(String_t* value)
{
___appLinkUrl_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___appLinkUrl_4), (void*)value);
}
inline static int32_t get_offset_of_canvasJSWrapper_5() { return static_cast<int32_t>(offsetof(CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB, ___canvasJSWrapper_5)); }
inline RuntimeObject* get_canvasJSWrapper_5() const { return ___canvasJSWrapper_5; }
inline RuntimeObject** get_address_of_canvasJSWrapper_5() { return &___canvasJSWrapper_5; }
inline void set_canvasJSWrapper_5(RuntimeObject* value)
{
___canvasJSWrapper_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___canvasJSWrapper_5), (void*)value);
}
inline static int32_t get_offset_of_onHideUnityDelegate_6() { return static_cast<int32_t>(offsetof(CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB, ___onHideUnityDelegate_6)); }
inline HideUnityDelegate_t65AA674EEA6BE9DB69E0E6ED262B29DCCAD64D68 * get_onHideUnityDelegate_6() const { return ___onHideUnityDelegate_6; }
inline HideUnityDelegate_t65AA674EEA6BE9DB69E0E6ED262B29DCCAD64D68 ** get_address_of_onHideUnityDelegate_6() { return &___onHideUnityDelegate_6; }
inline void set_onHideUnityDelegate_6(HideUnityDelegate_t65AA674EEA6BE9DB69E0E6ED262B29DCCAD64D68 * value)
{
___onHideUnityDelegate_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onHideUnityDelegate_6), (void*)value);
}
inline static int32_t get_offset_of_U3CLimitEventUsageU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB, ___U3CLimitEventUsageU3Ek__BackingField_7)); }
inline bool get_U3CLimitEventUsageU3Ek__BackingField_7() const { return ___U3CLimitEventUsageU3Ek__BackingField_7; }
inline bool* get_address_of_U3CLimitEventUsageU3Ek__BackingField_7() { return &___U3CLimitEventUsageU3Ek__BackingField_7; }
inline void set_U3CLimitEventUsageU3Ek__BackingField_7(bool value)
{
___U3CLimitEventUsageU3Ek__BackingField_7 = value;
}
};
// Facebook.Unity.Canvas.CanvasFacebook_CanvasUIMethodCall`1<System.Object>
struct CanvasUIMethodCall_1_tE38745DE6A2D71B417BD4CD0EBA247F66304816B : public MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3
{
public:
// Facebook.Unity.Canvas.CanvasFacebook Facebook.Unity.Canvas.CanvasFacebook_CanvasUIMethodCall`1::canvasImpl
CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB * ___canvasImpl_4;
// System.String Facebook.Unity.Canvas.CanvasFacebook_CanvasUIMethodCall`1::callbackMethod
String_t* ___callbackMethod_5;
public:
inline static int32_t get_offset_of_canvasImpl_4() { return static_cast<int32_t>(offsetof(CanvasUIMethodCall_1_tE38745DE6A2D71B417BD4CD0EBA247F66304816B, ___canvasImpl_4)); }
inline CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB * get_canvasImpl_4() const { return ___canvasImpl_4; }
inline CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB ** get_address_of_canvasImpl_4() { return &___canvasImpl_4; }
inline void set_canvasImpl_4(CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB * value)
{
___canvasImpl_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___canvasImpl_4), (void*)value);
}
inline static int32_t get_offset_of_callbackMethod_5() { return static_cast<int32_t>(offsetof(CanvasUIMethodCall_1_tE38745DE6A2D71B417BD4CD0EBA247F66304816B, ___callbackMethod_5)); }
inline String_t* get_callbackMethod_5() const { return ___callbackMethod_5; }
inline String_t** get_address_of_callbackMethod_5() { return &___callbackMethod_5; }
inline void set_callbackMethod_5(String_t* value)
{
___callbackMethod_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___callbackMethod_5), (void*)value);
}
};
// Facebook.Unity.Mobile.Android.AndroidFacebook_JavaMethodCall`1<System.Object>
struct JavaMethodCall_1_tBA95102CDAA272A68B0E2BE48DA2462F6F3E486B : public MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3
{
public:
// Facebook.Unity.Mobile.Android.AndroidFacebook Facebook.Unity.Mobile.Android.AndroidFacebook_JavaMethodCall`1::androidImpl
AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5 * ___androidImpl_4;
public:
inline static int32_t get_offset_of_androidImpl_4() { return static_cast<int32_t>(offsetof(JavaMethodCall_1_tBA95102CDAA272A68B0E2BE48DA2462F6F3E486B, ___androidImpl_4)); }
inline AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5 * get_androidImpl_4() const { return ___androidImpl_4; }
inline AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5 ** get_address_of_androidImpl_4() { return &___androidImpl_4; }
inline void set_androidImpl_4(AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5 * value)
{
___androidImpl_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___androidImpl_4), (void*)value);
}
};
// Mono.Globalization.Unicode.CodePointIndexer_TableRange
struct TableRange_t485CF0807771CC05023466CFCB0AE25C46648100
{
public:
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::Start
int32_t ___Start_0;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::End
int32_t ___End_1;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::Count
int32_t ___Count_2;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::IndexStart
int32_t ___IndexStart_3;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::IndexEnd
int32_t ___IndexEnd_4;
public:
inline static int32_t get_offset_of_Start_0() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___Start_0)); }
inline int32_t get_Start_0() const { return ___Start_0; }
inline int32_t* get_address_of_Start_0() { return &___Start_0; }
inline void set_Start_0(int32_t value)
{
___Start_0 = value;
}
inline static int32_t get_offset_of_End_1() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___End_1)); }
inline int32_t get_End_1() const { return ___End_1; }
inline int32_t* get_address_of_End_1() { return &___End_1; }
inline void set_End_1(int32_t value)
{
___End_1 = value;
}
inline static int32_t get_offset_of_Count_2() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___Count_2)); }
inline int32_t get_Count_2() const { return ___Count_2; }
inline int32_t* get_address_of_Count_2() { return &___Count_2; }
inline void set_Count_2(int32_t value)
{
___Count_2 = value;
}
inline static int32_t get_offset_of_IndexStart_3() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___IndexStart_3)); }
inline int32_t get_IndexStart_3() const { return ___IndexStart_3; }
inline int32_t* get_address_of_IndexStart_3() { return &___IndexStart_3; }
inline void set_IndexStart_3(int32_t value)
{
___IndexStart_3 = value;
}
inline static int32_t get_offset_of_IndexEnd_4() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___IndexEnd_4)); }
inline int32_t get_IndexEnd_4() const { return ___IndexEnd_4; }
inline int32_t* get_address_of_IndexEnd_4() { return &___IndexEnd_4; }
inline void set_IndexEnd_4(int32_t value)
{
___IndexEnd_4 = value;
}
};
// System.Array_InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer_TableRange>
struct InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.ArraySegment`1<System.Byte>>
struct InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Boolean>
struct InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Byte>
struct InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Char>
struct InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.DictionaryEntry>
struct InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>>
struct InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>
struct InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>
struct InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>
struct InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>
struct InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>>
struct InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>
struct InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>
struct InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>
struct InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>
struct InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>>
struct InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>>
struct InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>
struct InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>
struct InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2
{
public:
// System.Array System.Array_InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array_InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.ArraySegment`1<System.Byte>
struct ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA
{
public:
// T[] System.ArraySegment`1::_array
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____array_0;
// System.Int32 System.ArraySegment`1::_offset
int32_t ____offset_1;
// System.Int32 System.ArraySegment`1::_count
int32_t ____count_2;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA, ____array_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__array_0() const { return ____array_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value);
}
inline static int32_t get_offset_of__offset_1() { return static_cast<int32_t>(offsetof(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA, ____offset_1)); }
inline int32_t get__offset_1() const { return ____offset_1; }
inline int32_t* get_address_of__offset_1() { return &____offset_1; }
inline void set__offset_1(int32_t value)
{
____offset_1 = value;
}
inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA, ____count_2)); }
inline int32_t get__count_2() const { return ____count_2; }
inline int32_t* get_address_of__count_2() { return &____count_2; }
inline void set__count_2(int32_t value)
{
____count_2 = value;
}
};
// System.Boolean
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Byte
struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07
{
public:
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); }
inline uint8_t get_m_value_0() const { return ___m_value_0; }
inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint8_t value)
{
___m_value_0 = value;
}
};
// System.Char
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9
{
public:
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); }
inline Il2CppChar get_m_value_0() const { return ___m_value_0; }
inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(Il2CppChar value)
{
___m_value_0 = value;
}
};
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
}
};
// System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4
{
public:
// System.Object System.Collections.DictionaryEntry::_key
RuntimeObject * ____key_0;
// System.Object System.Collections.DictionaryEntry::_value
RuntimeObject * ____value_1;
public:
inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____key_0)); }
inline RuntimeObject * get__key_0() const { return ____key_0; }
inline RuntimeObject ** get_address_of__key_0() { return &____key_0; }
inline void set__key_0(RuntimeObject * value)
{
____key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____key_0), (void*)value);
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____value_1)); }
inline RuntimeObject * get__value_1() const { return ____value_1; }
inline RuntimeObject ** get_address_of__value_1() { return &____value_1; }
inline void set__value_1(RuntimeObject * value)
{
____value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>
struct Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
int16_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3, ___key_2)); }
inline int16_t get_key_2() const { return ___key_2; }
inline int16_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(int16_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>
struct Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
int32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___key_2)); }
inline int32_t get_key_2() const { return ___key_2; }
inline int32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(int32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>
struct Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
int32_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___value_3)); }
inline int32_t get_value_3() const { return ___value_3; }
inline int32_t* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(int32_t value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>
struct Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
int64_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41, ___value_3)); }
inline int64_t get_value_3() const { return ___value_3; }
inline int64_t* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(int64_t value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>
struct Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>
struct Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
uint64_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___key_2)); }
inline uint64_t get_key_2() const { return ___key_2; }
inline uint64_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(uint64_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.HashSet`1_Slot<System.Int32>
struct Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7
{
public:
// System.Int32 System.Collections.Generic.HashSet`1_Slot::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.HashSet`1_Slot::next
int32_t ___next_1;
// T System.Collections.Generic.HashSet`1_Slot::value
int32_t ___value_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_value_2() { return static_cast<int32_t>(offsetof(Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7, ___value_2)); }
inline int32_t get_value_2() const { return ___value_2; }
inline int32_t* get_address_of_value_2() { return &___value_2; }
inline void set_value_2(int32_t value)
{
___value_2 = value;
}
};
// System.Collections.Generic.HashSet`1_Slot<System.Object>
struct Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279
{
public:
// System.Int32 System.Collections.Generic.HashSet`1_Slot::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.HashSet`1_Slot::next
int32_t ___next_1;
// T System.Collections.Generic.HashSet`1_Slot::value
RuntimeObject * ___value_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_value_2() { return static_cast<int32_t>(offsetof(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, ___value_2)); }
inline RuntimeObject * get_value_2() const { return ___value_2; }
inline RuntimeObject ** get_address_of_value_2() { return &___value_2; }
inline void set_value_2(RuntimeObject * value)
{
___value_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_2), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int16,System.Object>
struct KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int16_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03, ___key_0)); }
inline int16_t get_key_0() const { return ___key_0; }
inline int16_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int16_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>
struct KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367, ___key_0)); }
inline int32_t get_key_0() const { return ___key_0; }
inline int32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>
struct KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>
struct KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int64_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2, ___value_1)); }
inline int64_t get_value_1() const { return ___value_1; }
inline int64_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int64_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
struct KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>
struct KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint64_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4, ___key_0)); }
inline uint64_t get_key_0() const { return ___key_0; }
inline uint64_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(uint64_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Hashtable_bucket
struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083
{
public:
// System.Object System.Collections.Hashtable_bucket::key
RuntimeObject * ___key_0;
// System.Object System.Collections.Hashtable_bucket::val
RuntimeObject * ___val_1;
// System.Int32 System.Collections.Hashtable_bucket::hash_coll
int32_t ___hash_coll_2;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_val_1() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___val_1)); }
inline RuntimeObject * get_val_1() const { return ___val_1; }
inline RuntimeObject ** get_address_of_val_1() { return &___val_1; }
inline void set_val_1(RuntimeObject * value)
{
___val_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___val_1), (void*)value);
}
inline static int32_t get_offset_of_hash_coll_2() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___hash_coll_2)); }
inline int32_t get_hash_coll_2() const { return ___hash_coll_2; }
inline int32_t* get_address_of_hash_coll_2() { return &___hash_coll_2; }
inline void set_hash_coll_2(int32_t value)
{
___hash_coll_2 = value;
}
};
// Native definition for P/Invoke marshalling of System.Collections.Hashtable/bucket
struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_pinvoke
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___val_1;
int32_t ___hash_coll_2;
};
// Native definition for COM marshalling of System.Collections.Hashtable/bucket
struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_com
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___val_1;
int32_t ___hash_coll_2;
};
// System.DateTime
struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132
{
public:
// System.UInt64 System.DateTime::dateData
uint64_t ___dateData_44;
public:
inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, ___dateData_44)); }
inline uint64_t get_dateData_44() const { return ___dateData_44; }
inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; }
inline void set_dateData_44(uint64_t value)
{
___dateData_44 = value;
}
};
struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields
{
public:
// System.Int32[] System.DateTime::DaysToMonth365
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth365_29;
// System.Int32[] System.DateTime::DaysToMonth366
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth366_30;
// System.DateTime System.DateTime::MinValue
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MinValue_31;
// System.DateTime System.DateTime::MaxValue
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MaxValue_32;
public:
inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth365_29)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; }
inline void set_DaysToMonth365_29(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___DaysToMonth365_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value);
}
inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth366_30)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; }
inline void set_DaysToMonth366_30(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___DaysToMonth366_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value);
}
inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MinValue_31)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MinValue_31() const { return ___MinValue_31; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MinValue_31() { return &___MinValue_31; }
inline void set_MinValue_31(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___MinValue_31 = value;
}
inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MaxValue_32)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MaxValue_32() const { return ___MaxValue_32; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MaxValue_32() { return &___MaxValue_32; }
inline void set_MaxValue_32(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___MaxValue_32 = value;
}
};
// System.Decimal
struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8
{
public:
// System.Int32 System.Decimal::flags
int32_t ___flags_14;
// System.Int32 System.Decimal::hi
int32_t ___hi_15;
// System.Int32 System.Decimal::lo
int32_t ___lo_16;
// System.Int32 System.Decimal::mid
int32_t ___mid_17;
public:
inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___flags_14)); }
inline int32_t get_flags_14() const { return ___flags_14; }
inline int32_t* get_address_of_flags_14() { return &___flags_14; }
inline void set_flags_14(int32_t value)
{
___flags_14 = value;
}
inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___hi_15)); }
inline int32_t get_hi_15() const { return ___hi_15; }
inline int32_t* get_address_of_hi_15() { return &___hi_15; }
inline void set_hi_15(int32_t value)
{
___hi_15 = value;
}
inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___lo_16)); }
inline int32_t get_lo_16() const { return ___lo_16; }
inline int32_t* get_address_of_lo_16() { return &___lo_16; }
inline void set_lo_16(int32_t value)
{
___lo_16 = value;
}
inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___mid_17)); }
inline int32_t get_mid_17() const { return ___mid_17; }
inline int32_t* get_address_of_mid_17() { return &___mid_17; }
inline void set_mid_17(int32_t value)
{
___mid_17 = value;
}
};
struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields
{
public:
// System.UInt32[] System.Decimal::Powers10
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___Powers10_6;
// System.Decimal System.Decimal::Zero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___Zero_7;
// System.Decimal System.Decimal::One
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___One_8;
// System.Decimal System.Decimal::MinusOne
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinusOne_9;
// System.Decimal System.Decimal::MaxValue
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MaxValue_10;
// System.Decimal System.Decimal::MinValue
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinValue_11;
// System.Decimal System.Decimal::NearNegativeZero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearNegativeZero_12;
// System.Decimal System.Decimal::NearPositiveZero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearPositiveZero_13;
public:
inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Powers10_6)); }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_Powers10_6() const { return ___Powers10_6; }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_Powers10_6() { return &___Powers10_6; }
inline void set_Powers10_6(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value)
{
___Powers10_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value);
}
inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Zero_7)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_Zero_7() const { return ___Zero_7; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_Zero_7() { return &___Zero_7; }
inline void set_Zero_7(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___Zero_7 = value;
}
inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___One_8)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_One_8() const { return ___One_8; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_One_8() { return &___One_8; }
inline void set_One_8(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___One_8 = value;
}
inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinusOne_9)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinusOne_9() const { return ___MinusOne_9; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinusOne_9() { return &___MinusOne_9; }
inline void set_MinusOne_9(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MinusOne_9 = value;
}
inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MaxValue_10)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MaxValue_10() const { return ___MaxValue_10; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MaxValue_10() { return &___MaxValue_10; }
inline void set_MaxValue_10(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MaxValue_10 = value;
}
inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinValue_11)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinValue_11() const { return ___MinValue_11; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinValue_11() { return &___MinValue_11; }
inline void set_MinValue_11(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MinValue_11 = value;
}
inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearNegativeZero_12)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; }
inline void set_NearNegativeZero_12(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___NearNegativeZero_12 = value;
}
inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearPositiveZero_13)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; }
inline void set_NearPositiveZero_13(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___NearPositiveZero_13 = value;
}
};
// System.Diagnostics.Tracing.EventDescriptor
struct EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 System.Diagnostics.Tracing.EventDescriptor::m_traceloggingId
int32_t ___m_traceloggingId_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___m_traceloggingId_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.UInt16 System.Diagnostics.Tracing.EventDescriptor::m_id
uint16_t ___m_id_1;
};
#pragma pack(pop, tp)
struct
{
uint16_t ___m_id_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_version_2_OffsetPadding[2];
// System.Byte System.Diagnostics.Tracing.EventDescriptor::m_version
uint8_t ___m_version_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_version_2_OffsetPadding_forAlignmentOnly[2];
uint8_t ___m_version_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_channel_3_OffsetPadding[3];
// System.Byte System.Diagnostics.Tracing.EventDescriptor::m_channel
uint8_t ___m_channel_3;
};
#pragma pack(pop, tp)
struct
{
char ___m_channel_3_OffsetPadding_forAlignmentOnly[3];
uint8_t ___m_channel_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_level_4_OffsetPadding[4];
// System.Byte System.Diagnostics.Tracing.EventDescriptor::m_level
uint8_t ___m_level_4;
};
#pragma pack(pop, tp)
struct
{
char ___m_level_4_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_level_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_opcode_5_OffsetPadding[5];
// System.Byte System.Diagnostics.Tracing.EventDescriptor::m_opcode
uint8_t ___m_opcode_5;
};
#pragma pack(pop, tp)
struct
{
char ___m_opcode_5_OffsetPadding_forAlignmentOnly[5];
uint8_t ___m_opcode_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_task_6_OffsetPadding[6];
// System.UInt16 System.Diagnostics.Tracing.EventDescriptor::m_task
uint16_t ___m_task_6;
};
#pragma pack(pop, tp)
struct
{
char ___m_task_6_OffsetPadding_forAlignmentOnly[6];
uint16_t ___m_task_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_keywords_7_OffsetPadding[8];
// System.Int64 System.Diagnostics.Tracing.EventDescriptor::m_keywords
int64_t ___m_keywords_7;
};
#pragma pack(pop, tp)
struct
{
char ___m_keywords_7_OffsetPadding_forAlignmentOnly[8];
int64_t ___m_keywords_7_forAlignmentOnly;
};
};
};
uint8_t EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E__padding[16];
};
public:
inline static int32_t get_offset_of_m_traceloggingId_0() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_traceloggingId_0)); }
inline int32_t get_m_traceloggingId_0() const { return ___m_traceloggingId_0; }
inline int32_t* get_address_of_m_traceloggingId_0() { return &___m_traceloggingId_0; }
inline void set_m_traceloggingId_0(int32_t value)
{
___m_traceloggingId_0 = value;
}
inline static int32_t get_offset_of_m_id_1() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_id_1)); }
inline uint16_t get_m_id_1() const { return ___m_id_1; }
inline uint16_t* get_address_of_m_id_1() { return &___m_id_1; }
inline void set_m_id_1(uint16_t value)
{
___m_id_1 = value;
}
inline static int32_t get_offset_of_m_version_2() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_version_2)); }
inline uint8_t get_m_version_2() const { return ___m_version_2; }
inline uint8_t* get_address_of_m_version_2() { return &___m_version_2; }
inline void set_m_version_2(uint8_t value)
{
___m_version_2 = value;
}
inline static int32_t get_offset_of_m_channel_3() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_channel_3)); }
inline uint8_t get_m_channel_3() const { return ___m_channel_3; }
inline uint8_t* get_address_of_m_channel_3() { return &___m_channel_3; }
inline void set_m_channel_3(uint8_t value)
{
___m_channel_3 = value;
}
inline static int32_t get_offset_of_m_level_4() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_level_4)); }
inline uint8_t get_m_level_4() const { return ___m_level_4; }
inline uint8_t* get_address_of_m_level_4() { return &___m_level_4; }
inline void set_m_level_4(uint8_t value)
{
___m_level_4 = value;
}
inline static int32_t get_offset_of_m_opcode_5() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_opcode_5)); }
inline uint8_t get_m_opcode_5() const { return ___m_opcode_5; }
inline uint8_t* get_address_of_m_opcode_5() { return &___m_opcode_5; }
inline void set_m_opcode_5(uint8_t value)
{
___m_opcode_5 = value;
}
inline static int32_t get_offset_of_m_task_6() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_task_6)); }
inline uint16_t get_m_task_6() const { return ___m_task_6; }
inline uint16_t* get_address_of_m_task_6() { return &___m_task_6; }
inline void set_m_task_6(uint16_t value)
{
___m_task_6 = value;
}
inline static int32_t get_offset_of_m_keywords_7() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_keywords_7)); }
inline int64_t get_m_keywords_7() const { return ___m_keywords_7; }
inline int64_t* get_address_of_m_keywords_7() { return &___m_keywords_7; }
inline void set_m_keywords_7(int64_t value)
{
___m_keywords_7 = value;
}
};
// System.Diagnostics.Tracing.EventProvider_SessionInfo
struct SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A
{
public:
// System.Int32 System.Diagnostics.Tracing.EventProvider_SessionInfo::sessionIdBit
int32_t ___sessionIdBit_0;
// System.Int32 System.Diagnostics.Tracing.EventProvider_SessionInfo::etwSessionId
int32_t ___etwSessionId_1;
public:
inline static int32_t get_offset_of_sessionIdBit_0() { return static_cast<int32_t>(offsetof(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A, ___sessionIdBit_0)); }
inline int32_t get_sessionIdBit_0() const { return ___sessionIdBit_0; }
inline int32_t* get_address_of_sessionIdBit_0() { return &___sessionIdBit_0; }
inline void set_sessionIdBit_0(int32_t value)
{
___sessionIdBit_0 = value;
}
inline static int32_t get_offset_of_etwSessionId_1() { return static_cast<int32_t>(offsetof(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A, ___etwSessionId_1)); }
inline int32_t get_etwSessionId_1() const { return ___etwSessionId_1; }
inline int32_t* get_address_of_etwSessionId_1() { return &___etwSessionId_1; }
inline void set_etwSessionId_1(int32_t value)
{
___etwSessionId_1 = value;
}
};
// System.Double
struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409
{
public:
// System.Double System.Double::m_value
double ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); }
inline double get_m_value_0() const { return ___m_value_0; }
inline double* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(double value)
{
___m_value_0 = value;
}
};
struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields
{
public:
// System.Double System.Double::NegativeZero
double ___NegativeZero_7;
public:
inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); }
inline double get_NegativeZero_7() const { return ___NegativeZero_7; }
inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; }
inline void set_NegativeZero_7(double value)
{
___NegativeZero_7 = value;
}
};
// System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF
{
public:
public:
};
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com
{
};
// System.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4
{
public:
// System.UInt16 System.Globalization.InternalCodePageDataItem::codePage
uint16_t ___codePage_0;
// System.UInt16 System.Globalization.InternalCodePageDataItem::uiFamilyCodePage
uint16_t ___uiFamilyCodePage_1;
// System.UInt32 System.Globalization.InternalCodePageDataItem::flags
uint32_t ___flags_2;
// System.String System.Globalization.InternalCodePageDataItem::Names
String_t* ___Names_3;
public:
inline static int32_t get_offset_of_codePage_0() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___codePage_0)); }
inline uint16_t get_codePage_0() const { return ___codePage_0; }
inline uint16_t* get_address_of_codePage_0() { return &___codePage_0; }
inline void set_codePage_0(uint16_t value)
{
___codePage_0 = value;
}
inline static int32_t get_offset_of_uiFamilyCodePage_1() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___uiFamilyCodePage_1)); }
inline uint16_t get_uiFamilyCodePage_1() const { return ___uiFamilyCodePage_1; }
inline uint16_t* get_address_of_uiFamilyCodePage_1() { return &___uiFamilyCodePage_1; }
inline void set_uiFamilyCodePage_1(uint16_t value)
{
___uiFamilyCodePage_1 = value;
}
inline static int32_t get_offset_of_flags_2() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___flags_2)); }
inline uint32_t get_flags_2() const { return ___flags_2; }
inline uint32_t* get_address_of_flags_2() { return &___flags_2; }
inline void set_flags_2(uint32_t value)
{
___flags_2 = value;
}
inline static int32_t get_offset_of_Names_3() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___Names_3)); }
inline String_t* get_Names_3() const { return ___Names_3; }
inline String_t** get_address_of_Names_3() { return &___Names_3; }
inline void set_Names_3(String_t* value)
{
___Names_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Names_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_marshaled_pinvoke
{
uint16_t ___codePage_0;
uint16_t ___uiFamilyCodePage_1;
uint32_t ___flags_2;
char* ___Names_3;
};
// Native definition for COM marshalling of System.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_marshaled_com
{
uint16_t ___codePage_0;
uint16_t ___uiFamilyCodePage_1;
uint32_t ___flags_2;
Il2CppChar* ___Names_3;
};
// System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211
{
public:
// System.String System.Globalization.InternalEncodingDataItem::webName
String_t* ___webName_0;
// System.UInt16 System.Globalization.InternalEncodingDataItem::codePage
uint16_t ___codePage_1;
public:
inline static int32_t get_offset_of_webName_0() { return static_cast<int32_t>(offsetof(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211, ___webName_0)); }
inline String_t* get_webName_0() const { return ___webName_0; }
inline String_t** get_address_of_webName_0() { return &___webName_0; }
inline void set_webName_0(String_t* value)
{
___webName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___webName_0), (void*)value);
}
inline static int32_t get_offset_of_codePage_1() { return static_cast<int32_t>(offsetof(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211, ___codePage_1)); }
inline uint16_t get_codePage_1() const { return ___codePage_1; }
inline uint16_t* get_address_of_codePage_1() { return &___codePage_1; }
inline void set_codePage_1(uint16_t value)
{
___codePage_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_marshaled_pinvoke
{
char* ___webName_0;
uint16_t ___codePage_1;
};
// Native definition for COM marshalling of System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_marshaled_com
{
Il2CppChar* ___webName_0;
uint16_t ___codePage_1;
};
// System.Guid
struct Guid_t
{
public:
// System.Int32 System.Guid::_a
int32_t ____a_1;
// System.Int16 System.Guid::_b
int16_t ____b_2;
// System.Int16 System.Guid::_c
int16_t ____c_3;
// System.Byte System.Guid::_d
uint8_t ____d_4;
// System.Byte System.Guid::_e
uint8_t ____e_5;
// System.Byte System.Guid::_f
uint8_t ____f_6;
// System.Byte System.Guid::_g
uint8_t ____g_7;
// System.Byte System.Guid::_h
uint8_t ____h_8;
// System.Byte System.Guid::_i
uint8_t ____i_9;
// System.Byte System.Guid::_j
uint8_t ____j_10;
// System.Byte System.Guid::_k
uint8_t ____k_11;
public:
inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); }
inline int32_t get__a_1() const { return ____a_1; }
inline int32_t* get_address_of__a_1() { return &____a_1; }
inline void set__a_1(int32_t value)
{
____a_1 = value;
}
inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); }
inline int16_t get__b_2() const { return ____b_2; }
inline int16_t* get_address_of__b_2() { return &____b_2; }
inline void set__b_2(int16_t value)
{
____b_2 = value;
}
inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); }
inline int16_t get__c_3() const { return ____c_3; }
inline int16_t* get_address_of__c_3() { return &____c_3; }
inline void set__c_3(int16_t value)
{
____c_3 = value;
}
inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); }
inline uint8_t get__d_4() const { return ____d_4; }
inline uint8_t* get_address_of__d_4() { return &____d_4; }
inline void set__d_4(uint8_t value)
{
____d_4 = value;
}
inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); }
inline uint8_t get__e_5() const { return ____e_5; }
inline uint8_t* get_address_of__e_5() { return &____e_5; }
inline void set__e_5(uint8_t value)
{
____e_5 = value;
}
inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); }
inline uint8_t get__f_6() const { return ____f_6; }
inline uint8_t* get_address_of__f_6() { return &____f_6; }
inline void set__f_6(uint8_t value)
{
____f_6 = value;
}
inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); }
inline uint8_t get__g_7() const { return ____g_7; }
inline uint8_t* get_address_of__g_7() { return &____g_7; }
inline void set__g_7(uint8_t value)
{
____g_7 = value;
}
inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); }
inline uint8_t get__h_8() const { return ____h_8; }
inline uint8_t* get_address_of__h_8() { return &____h_8; }
inline void set__h_8(uint8_t value)
{
____h_8 = value;
}
inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); }
inline uint8_t get__i_9() const { return ____i_9; }
inline uint8_t* get_address_of__i_9() { return &____i_9; }
inline void set__i_9(uint8_t value)
{
____i_9 = value;
}
inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); }
inline uint8_t get__j_10() const { return ____j_10; }
inline uint8_t* get_address_of__j_10() { return &____j_10; }
inline void set__j_10(uint8_t value)
{
____j_10 = value;
}
inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); }
inline uint8_t get__k_11() const { return ____k_11; }
inline uint8_t* get_address_of__k_11() { return &____k_11; }
inline void set__k_11(uint8_t value)
{
____k_11 = value;
}
};
struct Guid_t_StaticFields
{
public:
// System.Guid System.Guid::Empty
Guid_t ___Empty_0;
// System.Object System.Guid::_rngAccess
RuntimeObject * ____rngAccess_12;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____rng_13;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
inline Guid_t get_Empty_0() const { return ___Empty_0; }
inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(Guid_t value)
{
___Empty_0 = value;
}
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
inline void set__rngAccess_12(RuntimeObject * value)
{
____rngAccess_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value);
}
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__rng_13() const { return ____rng_13; }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__rng_13() { return &____rng_13; }
inline void set__rng_13(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value)
{
____rng_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
}
};
// System.Int16
struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D
{
public:
// System.Int16 System.Int16::m_value
int16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); }
inline int16_t get_m_value_0() const { return ___m_value_0; }
inline int16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int16_t value)
{
___m_value_0 = value;
}
};
// System.Int32
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.Int64
struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436
{
public:
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); }
inline int64_t get_m_value_0() const { return ___m_value_0; }
inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int64_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.ParameterizedStrings_FormatParam
struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800
{
public:
// System.Int32 System.ParameterizedStrings_FormatParam::_int32
int32_t ____int32_0;
// System.String System.ParameterizedStrings_FormatParam::_string
String_t* ____string_1;
public:
inline static int32_t get_offset_of__int32_0() { return static_cast<int32_t>(offsetof(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, ____int32_0)); }
inline int32_t get__int32_0() const { return ____int32_0; }
inline int32_t* get_address_of__int32_0() { return &____int32_0; }
inline void set__int32_0(int32_t value)
{
____int32_0 = value;
}
inline static int32_t get_offset_of__string_1() { return static_cast<int32_t>(offsetof(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, ____string_1)); }
inline String_t* get__string_1() const { return ____string_1; }
inline String_t** get_address_of__string_1() { return &____string_1; }
inline void set__string_1(String_t* value)
{
____string_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____string_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.ParameterizedStrings/FormatParam
struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_marshaled_pinvoke
{
int32_t ____int32_0;
char* ____string_1;
};
// Native definition for COM marshalling of System.ParameterizedStrings/FormatParam
struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_marshaled_com
{
int32_t ____int32_0;
Il2CppChar* ____string_1;
};
// System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8
{
public:
// System.Type System.Reflection.CustomAttributeTypedArgument::argumentType
Type_t * ___argumentType_0;
// System.Object System.Reflection.CustomAttributeTypedArgument::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_argumentType_0() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8, ___argumentType_0)); }
inline Type_t * get_argumentType_0() const { return ___argumentType_0; }
inline Type_t ** get_address_of_argumentType_0() { return &___argumentType_0; }
inline void set_argumentType_0(Type_t * value)
{
___argumentType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___argumentType_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_pinvoke
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_com
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
// System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E
{
public:
// System.Boolean[] System.Reflection.ParameterModifier::_byRef
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ____byRef_0;
public:
inline static int32_t get_offset_of__byRef_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, ____byRef_0)); }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get__byRef_0() const { return ____byRef_0; }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of__byRef_0() { return &____byRef_0; }
inline void set__byRef_0(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value)
{
____byRef_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____byRef_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_pinvoke
{
int32_t* ____byRef_0;
};
// Native definition for COM marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_com
{
int32_t* ____byRef_0;
};
// System.Resources.ResourceLocator
struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C
{
public:
// System.Object System.Resources.ResourceLocator::_value
RuntimeObject * ____value_0;
// System.Int32 System.Resources.ResourceLocator::_dataPos
int32_t ____dataPos_1;
public:
inline static int32_t get_offset_of__value_0() { return static_cast<int32_t>(offsetof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____value_0)); }
inline RuntimeObject * get__value_0() const { return ____value_0; }
inline RuntimeObject ** get_address_of__value_0() { return &____value_0; }
inline void set__value_0(RuntimeObject * value)
{
____value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_0), (void*)value);
}
inline static int32_t get_offset_of__dataPos_1() { return static_cast<int32_t>(offsetof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____dataPos_1)); }
inline int32_t get__dataPos_1() const { return ____dataPos_1; }
inline int32_t* get_address_of__dataPos_1() { return &____dataPos_1; }
inline void set__dataPos_1(int32_t value)
{
____dataPos_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Resources.ResourceLocator
struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_pinvoke
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
// Native definition for COM marshalling of System.Resources.ResourceLocator
struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_com
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
// System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA
{
public:
// System.Object System.Runtime.CompilerServices.Ephemeron::key
RuntimeObject * ___key_0;
// System.Object System.Runtime.CompilerServices.Ephemeron::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_marshaled_pinvoke
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_marshaled_com
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
// System.Runtime.InteropServices.GCHandle
struct GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3
{
public:
// System.Int32 System.Runtime.InteropServices.GCHandle::handle
int32_t ___handle_0;
public:
inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3, ___handle_0)); }
inline int32_t get_handle_0() const { return ___handle_0; }
inline int32_t* get_address_of_handle_0() { return &___handle_0; }
inline void set_handle_0(int32_t value)
{
___handle_0 = value;
}
};
// System.SByte
struct SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF
{
public:
// System.SByte System.SByte::m_value
int8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, ___m_value_0)); }
inline int8_t get_m_value_0() const { return ___m_value_0; }
inline int8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int8_t value)
{
___m_value_0 = value;
}
};
// System.Single
struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping
struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B
{
public:
// System.Char System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_chMin
Il2CppChar ____chMin_0;
// System.Char System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_chMax
Il2CppChar ____chMax_1;
// System.Int32 System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_lcOp
int32_t ____lcOp_2;
// System.Int32 System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_data
int32_t ____data_3;
public:
inline static int32_t get_offset_of__chMin_0() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____chMin_0)); }
inline Il2CppChar get__chMin_0() const { return ____chMin_0; }
inline Il2CppChar* get_address_of__chMin_0() { return &____chMin_0; }
inline void set__chMin_0(Il2CppChar value)
{
____chMin_0 = value;
}
inline static int32_t get_offset_of__chMax_1() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____chMax_1)); }
inline Il2CppChar get__chMax_1() const { return ____chMax_1; }
inline Il2CppChar* get_address_of__chMax_1() { return &____chMax_1; }
inline void set__chMax_1(Il2CppChar value)
{
____chMax_1 = value;
}
inline static int32_t get_offset_of__lcOp_2() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____lcOp_2)); }
inline int32_t get__lcOp_2() const { return ____lcOp_2; }
inline int32_t* get_address_of__lcOp_2() { return &____lcOp_2; }
inline void set__lcOp_2(int32_t value)
{
____lcOp_2 = value;
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____data_3)); }
inline int32_t get__data_3() const { return ____data_3; }
inline int32_t* get_address_of__data_3() { return &____data_3; }
inline void set__data_3(int32_t value)
{
____data_3 = value;
}
};
// Native definition for P/Invoke marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_marshaled_pinvoke
{
uint8_t ____chMin_0;
uint8_t ____chMax_1;
int32_t ____lcOp_2;
int32_t ____data_3;
};
// Native definition for COM marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_marshaled_com
{
uint8_t ____chMin_0;
uint8_t ____chMax_1;
int32_t ____lcOp_2;
int32_t ____data_3;
};
// System.Threading.AsyncLocalValueChangedArgs`1<System.Object>
struct AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D
{
public:
// T System.Threading.AsyncLocalValueChangedArgs`1::<PreviousValue>k__BackingField
RuntimeObject * ___U3CPreviousValueU3Ek__BackingField_0;
// T System.Threading.AsyncLocalValueChangedArgs`1::<CurrentValue>k__BackingField
RuntimeObject * ___U3CCurrentValueU3Ek__BackingField_1;
// System.Boolean System.Threading.AsyncLocalValueChangedArgs`1::<ThreadContextChanged>k__BackingField
bool ___U3CThreadContextChangedU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CPreviousValueU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D, ___U3CPreviousValueU3Ek__BackingField_0)); }
inline RuntimeObject * get_U3CPreviousValueU3Ek__BackingField_0() const { return ___U3CPreviousValueU3Ek__BackingField_0; }
inline RuntimeObject ** get_address_of_U3CPreviousValueU3Ek__BackingField_0() { return &___U3CPreviousValueU3Ek__BackingField_0; }
inline void set_U3CPreviousValueU3Ek__BackingField_0(RuntimeObject * value)
{
___U3CPreviousValueU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPreviousValueU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CCurrentValueU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D, ___U3CCurrentValueU3Ek__BackingField_1)); }
inline RuntimeObject * get_U3CCurrentValueU3Ek__BackingField_1() const { return ___U3CCurrentValueU3Ek__BackingField_1; }
inline RuntimeObject ** get_address_of_U3CCurrentValueU3Ek__BackingField_1() { return &___U3CCurrentValueU3Ek__BackingField_1; }
inline void set_U3CCurrentValueU3Ek__BackingField_1(RuntimeObject * value)
{
___U3CCurrentValueU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CCurrentValueU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CThreadContextChangedU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D, ___U3CThreadContextChangedU3Ek__BackingField_2)); }
inline bool get_U3CThreadContextChangedU3Ek__BackingField_2() const { return ___U3CThreadContextChangedU3Ek__BackingField_2; }
inline bool* get_address_of_U3CThreadContextChangedU3Ek__BackingField_2() { return &___U3CThreadContextChangedU3Ek__BackingField_2; }
inline void set_U3CThreadContextChangedU3Ek__BackingField_2(bool value)
{
___U3CThreadContextChangedU3Ek__BackingField_2 = value;
}
};
// System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE
{
public:
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1::m_source
SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * ___m_source_0;
// System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1::m_index
int32_t ___m_index_1;
public:
inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE, ___m_source_0)); }
inline SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * get_m_source_0() const { return ___m_source_0; }
inline SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * value)
{
___m_source_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value);
}
inline static int32_t get_offset_of_m_index_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE, ___m_index_1)); }
inline int32_t get_m_index_1() const { return ___m_index_1; }
inline int32_t* get_address_of_m_index_1() { return &___m_index_1; }
inline void set_m_index_1(int32_t value)
{
___m_index_1 = value;
}
};
// System.UInt16
struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E
{
public:
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E, ___m_value_0)); }
inline uint16_t get_m_value_0() const { return ___m_value_0; }
inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint16_t value)
{
___m_value_0 = value;
}
};
// System.UInt32
struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B
{
public:
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); }
inline uint32_t get_m_value_0() const { return ___m_value_0; }
inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint32_t value)
{
___m_value_0 = value;
}
};
// System.UInt64
struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E
{
public:
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); }
inline uint64_t get_m_value_0() const { return ___m_value_0; }
inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint64_t value)
{
___m_value_0 = value;
}
};
// System.UIntPtr
struct UIntPtr_t
{
public:
// System.Void* System.UIntPtr::_pointer
void* ____pointer_1;
public:
inline static int32_t get_offset_of__pointer_1() { return static_cast<int32_t>(offsetof(UIntPtr_t, ____pointer_1)); }
inline void* get__pointer_1() const { return ____pointer_1; }
inline void** get_address_of__pointer_1() { return &____pointer_1; }
inline void set__pointer_1(void* value)
{
____pointer_1 = value;
}
};
struct UIntPtr_t_StaticFields
{
public:
// System.UIntPtr System.UIntPtr::Zero
uintptr_t ___Zero_0;
public:
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(UIntPtr_t_StaticFields, ___Zero_0)); }
inline uintptr_t get_Zero_0() const { return ___Zero_0; }
inline uintptr_t* get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(uintptr_t value)
{
___Zero_0 = value;
}
};
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// UnityEngine.BeforeRenderHelper_OrderBlock
struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727
{
public:
// System.Int32 UnityEngine.BeforeRenderHelper_OrderBlock::order
int32_t ___order_0;
// UnityEngine.Events.UnityAction UnityEngine.BeforeRenderHelper_OrderBlock::callback
UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * ___callback_1;
public:
inline static int32_t get_offset_of_order_0() { return static_cast<int32_t>(offsetof(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, ___order_0)); }
inline int32_t get_order_0() const { return ___order_0; }
inline int32_t* get_address_of_order_0() { return &___order_0; }
inline void set_order_0(int32_t value)
{
___order_0 = value;
}
inline static int32_t get_offset_of_callback_1() { return static_cast<int32_t>(offsetof(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, ___callback_1)); }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * get_callback_1() const { return ___callback_1; }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 ** get_address_of_callback_1() { return &___callback_1; }
inline void set_callback_1(UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * value)
{
___callback_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___callback_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_marshaled_pinvoke
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// Native definition for COM marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_marshaled_com
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// UnityEngine.Color
struct Color_t119BCA590009762C7223FDD3AF9706653AC84ED2
{
public:
// System.Single UnityEngine.Color::r
float ___r_0;
// System.Single UnityEngine.Color::g
float ___g_1;
// System.Single UnityEngine.Color::b
float ___b_2;
// System.Single UnityEngine.Color::a
float ___a_3;
public:
inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___r_0)); }
inline float get_r_0() const { return ___r_0; }
inline float* get_address_of_r_0() { return &___r_0; }
inline void set_r_0(float value)
{
___r_0 = value;
}
inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___g_1)); }
inline float get_g_1() const { return ___g_1; }
inline float* get_address_of_g_1() { return &___g_1; }
inline void set_g_1(float value)
{
___g_1 = value;
}
inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___b_2)); }
inline float get_b_2() const { return ___b_2; }
inline float* get_address_of_b_2() { return &___b_2; }
inline void set_b_2(float value)
{
___b_2 = value;
}
inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___a_3)); }
inline float get_a_3() const { return ___a_3; }
inline float* get_address_of_a_3() { return &___a_3; }
inline void set_a_3(float value)
{
___a_3 = value;
}
};
// UnityEngine.Color32
struct Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.Color32::rgba
int32_t ___rgba_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___rgba_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Byte UnityEngine.Color32::r
uint8_t ___r_1;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___r_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___g_2_OffsetPadding[1];
// System.Byte UnityEngine.Color32::g
uint8_t ___g_2;
};
#pragma pack(pop, tp)
struct
{
char ___g_2_OffsetPadding_forAlignmentOnly[1];
uint8_t ___g_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___b_3_OffsetPadding[2];
// System.Byte UnityEngine.Color32::b
uint8_t ___b_3;
};
#pragma pack(pop, tp)
struct
{
char ___b_3_OffsetPadding_forAlignmentOnly[2];
uint8_t ___b_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___a_4_OffsetPadding[3];
// System.Byte UnityEngine.Color32::a
uint8_t ___a_4;
};
#pragma pack(pop, tp)
struct
{
char ___a_4_OffsetPadding_forAlignmentOnly[3];
uint8_t ___a_4_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_rgba_0() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___rgba_0)); }
inline int32_t get_rgba_0() const { return ___rgba_0; }
inline int32_t* get_address_of_rgba_0() { return &___rgba_0; }
inline void set_rgba_0(int32_t value)
{
___rgba_0 = value;
}
inline static int32_t get_offset_of_r_1() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___r_1)); }
inline uint8_t get_r_1() const { return ___r_1; }
inline uint8_t* get_address_of_r_1() { return &___r_1; }
inline void set_r_1(uint8_t value)
{
___r_1 = value;
}
inline static int32_t get_offset_of_g_2() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___g_2)); }
inline uint8_t get_g_2() const { return ___g_2; }
inline uint8_t* get_address_of_g_2() { return &___g_2; }
inline void set_g_2(uint8_t value)
{
___g_2 = value;
}
inline static int32_t get_offset_of_b_3() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___b_3)); }
inline uint8_t get_b_3() const { return ___b_3; }
inline uint8_t* get_address_of_b_3() { return &___b_3; }
inline void set_b_3(uint8_t value)
{
___b_3 = value;
}
inline static int32_t get_offset_of_a_4() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___a_4)); }
inline uint8_t get_a_4() const { return ___a_4; }
inline uint8_t* get_address_of_a_4() { return &___a_4; }
inline void set_a_4(uint8_t value)
{
___a_4 = value;
}
};
// UnityEngine.Experimental.GlobalIllumination.LinearColor
struct LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD
{
public:
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_red
float ___m_red_0;
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_green
float ___m_green_1;
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_blue
float ___m_blue_2;
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_intensity
float ___m_intensity_3;
public:
inline static int32_t get_offset_of_m_red_0() { return static_cast<int32_t>(offsetof(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD, ___m_red_0)); }
inline float get_m_red_0() const { return ___m_red_0; }
inline float* get_address_of_m_red_0() { return &___m_red_0; }
inline void set_m_red_0(float value)
{
___m_red_0 = value;
}
inline static int32_t get_offset_of_m_green_1() { return static_cast<int32_t>(offsetof(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD, ___m_green_1)); }
inline float get_m_green_1() const { return ___m_green_1; }
inline float* get_address_of_m_green_1() { return &___m_green_1; }
inline void set_m_green_1(float value)
{
___m_green_1 = value;
}
inline static int32_t get_offset_of_m_blue_2() { return static_cast<int32_t>(offsetof(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD, ___m_blue_2)); }
inline float get_m_blue_2() const { return ___m_blue_2; }
inline float* get_address_of_m_blue_2() { return &___m_blue_2; }
inline void set_m_blue_2(float value)
{
___m_blue_2 = value;
}
inline static int32_t get_offset_of_m_intensity_3() { return static_cast<int32_t>(offsetof(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD, ___m_intensity_3)); }
inline float get_m_intensity_3() const { return ___m_intensity_3; }
inline float* get_address_of_m_intensity_3() { return &___m_intensity_3; }
inline void set_m_intensity_3(float value)
{
___m_intensity_3 = value;
}
};
// UnityEngine.Keyframe
struct Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74
{
public:
// System.Single UnityEngine.Keyframe::m_Time
float ___m_Time_0;
// System.Single UnityEngine.Keyframe::m_Value
float ___m_Value_1;
// System.Single UnityEngine.Keyframe::m_InTangent
float ___m_InTangent_2;
// System.Single UnityEngine.Keyframe::m_OutTangent
float ___m_OutTangent_3;
// System.Int32 UnityEngine.Keyframe::m_WeightedMode
int32_t ___m_WeightedMode_4;
// System.Single UnityEngine.Keyframe::m_InWeight
float ___m_InWeight_5;
// System.Single UnityEngine.Keyframe::m_OutWeight
float ___m_OutWeight_6;
public:
inline static int32_t get_offset_of_m_Time_0() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_Time_0)); }
inline float get_m_Time_0() const { return ___m_Time_0; }
inline float* get_address_of_m_Time_0() { return &___m_Time_0; }
inline void set_m_Time_0(float value)
{
___m_Time_0 = value;
}
inline static int32_t get_offset_of_m_Value_1() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_Value_1)); }
inline float get_m_Value_1() const { return ___m_Value_1; }
inline float* get_address_of_m_Value_1() { return &___m_Value_1; }
inline void set_m_Value_1(float value)
{
___m_Value_1 = value;
}
inline static int32_t get_offset_of_m_InTangent_2() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_InTangent_2)); }
inline float get_m_InTangent_2() const { return ___m_InTangent_2; }
inline float* get_address_of_m_InTangent_2() { return &___m_InTangent_2; }
inline void set_m_InTangent_2(float value)
{
___m_InTangent_2 = value;
}
inline static int32_t get_offset_of_m_OutTangent_3() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_OutTangent_3)); }
inline float get_m_OutTangent_3() const { return ___m_OutTangent_3; }
inline float* get_address_of_m_OutTangent_3() { return &___m_OutTangent_3; }
inline void set_m_OutTangent_3(float value)
{
___m_OutTangent_3 = value;
}
inline static int32_t get_offset_of_m_WeightedMode_4() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_WeightedMode_4)); }
inline int32_t get_m_WeightedMode_4() const { return ___m_WeightedMode_4; }
inline int32_t* get_address_of_m_WeightedMode_4() { return &___m_WeightedMode_4; }
inline void set_m_WeightedMode_4(int32_t value)
{
___m_WeightedMode_4 = value;
}
inline static int32_t get_offset_of_m_InWeight_5() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_InWeight_5)); }
inline float get_m_InWeight_5() const { return ___m_InWeight_5; }
inline float* get_address_of_m_InWeight_5() { return &___m_InWeight_5; }
inline void set_m_InWeight_5(float value)
{
___m_InWeight_5 = value;
}
inline static int32_t get_offset_of_m_OutWeight_6() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_OutWeight_6)); }
inline float get_m_OutWeight_6() const { return ___m_OutWeight_6; }
inline float* get_address_of_m_OutWeight_6() { return &___m_OutWeight_6; }
inline void set_m_OutWeight_6(float value)
{
___m_OutWeight_6 = value;
}
};
// UnityEngine.Networking.ChannelPacket
struct ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D
{
public:
// System.Int32 UnityEngine.Networking.ChannelPacket::m_Position
int32_t ___m_Position_0;
// System.Byte[] UnityEngine.Networking.ChannelPacket::m_Buffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_Buffer_1;
// System.Boolean UnityEngine.Networking.ChannelPacket::m_IsReliable
bool ___m_IsReliable_2;
public:
inline static int32_t get_offset_of_m_Position_0() { return static_cast<int32_t>(offsetof(ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D, ___m_Position_0)); }
inline int32_t get_m_Position_0() const { return ___m_Position_0; }
inline int32_t* get_address_of_m_Position_0() { return &___m_Position_0; }
inline void set_m_Position_0(int32_t value)
{
___m_Position_0 = value;
}
inline static int32_t get_offset_of_m_Buffer_1() { return static_cast<int32_t>(offsetof(ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D, ___m_Buffer_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_Buffer_1() const { return ___m_Buffer_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_Buffer_1() { return &___m_Buffer_1; }
inline void set_m_Buffer_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___m_Buffer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Buffer_1), (void*)value);
}
inline static int32_t get_offset_of_m_IsReliable_2() { return static_cast<int32_t>(offsetof(ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D, ___m_IsReliable_2)); }
inline bool get_m_IsReliable_2() const { return ___m_IsReliable_2; }
inline bool* get_address_of_m_IsReliable_2() { return &___m_IsReliable_2; }
inline void set_m_IsReliable_2(bool value)
{
___m_IsReliable_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.ChannelPacket
struct ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_marshaled_pinvoke
{
int32_t ___m_Position_0;
Il2CppSafeArray/*I1*/* ___m_Buffer_1;
int32_t ___m_IsReliable_2;
};
// Native definition for COM marshalling of UnityEngine.Networking.ChannelPacket
struct ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_marshaled_com
{
int32_t ___m_Position_0;
Il2CppSafeArray/*I1*/* ___m_Buffer_1;
int32_t ___m_IsReliable_2;
};
// UnityEngine.Networking.LocalClient_InternalMsg
struct InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0
{
public:
// System.Byte[] UnityEngine.Networking.LocalClient_InternalMsg::buffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer_0;
// System.Int32 UnityEngine.Networking.LocalClient_InternalMsg::channelId
int32_t ___channelId_1;
public:
inline static int32_t get_offset_of_buffer_0() { return static_cast<int32_t>(offsetof(InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0, ___buffer_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buffer_0() const { return ___buffer_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buffer_0() { return &___buffer_0; }
inline void set_buffer_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___buffer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buffer_0), (void*)value);
}
inline static int32_t get_offset_of_channelId_1() { return static_cast<int32_t>(offsetof(InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0, ___channelId_1)); }
inline int32_t get_channelId_1() const { return ___channelId_1; }
inline int32_t* get_address_of_channelId_1() { return &___channelId_1; }
inline void set_channelId_1(int32_t value)
{
___channelId_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.LocalClient/InternalMsg
struct InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_marshaled_pinvoke
{
Il2CppSafeArray/*I1*/* ___buffer_0;
int32_t ___channelId_1;
};
// Native definition for COM marshalling of UnityEngine.Networking.LocalClient/InternalMsg
struct InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_marshaled_com
{
Il2CppSafeArray/*I1*/* ___buffer_0;
int32_t ___channelId_1;
};
// UnityEngine.Networking.NetworkBroadcastResult
struct NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6
{
public:
// System.String UnityEngine.Networking.NetworkBroadcastResult::serverAddress
String_t* ___serverAddress_0;
// System.Byte[] UnityEngine.Networking.NetworkBroadcastResult::broadcastData
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___broadcastData_1;
public:
inline static int32_t get_offset_of_serverAddress_0() { return static_cast<int32_t>(offsetof(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6, ___serverAddress_0)); }
inline String_t* get_serverAddress_0() const { return ___serverAddress_0; }
inline String_t** get_address_of_serverAddress_0() { return &___serverAddress_0; }
inline void set_serverAddress_0(String_t* value)
{
___serverAddress_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___serverAddress_0), (void*)value);
}
inline static int32_t get_offset_of_broadcastData_1() { return static_cast<int32_t>(offsetof(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6, ___broadcastData_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_broadcastData_1() const { return ___broadcastData_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_broadcastData_1() { return &___broadcastData_1; }
inline void set_broadcastData_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___broadcastData_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___broadcastData_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.NetworkBroadcastResult
struct NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6_marshaled_pinvoke
{
char* ___serverAddress_0;
Il2CppSafeArray/*I1*/* ___broadcastData_1;
};
// Native definition for COM marshalling of UnityEngine.Networking.NetworkBroadcastResult
struct NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6_marshaled_com
{
Il2CppChar* ___serverAddress_0;
Il2CppSafeArray/*I1*/* ___broadcastData_1;
};
// UnityEngine.Networking.NetworkHash128
struct NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C
{
public:
// System.Byte UnityEngine.Networking.NetworkHash128::i0
uint8_t ___i0_0;
// System.Byte UnityEngine.Networking.NetworkHash128::i1
uint8_t ___i1_1;
// System.Byte UnityEngine.Networking.NetworkHash128::i2
uint8_t ___i2_2;
// System.Byte UnityEngine.Networking.NetworkHash128::i3
uint8_t ___i3_3;
// System.Byte UnityEngine.Networking.NetworkHash128::i4
uint8_t ___i4_4;
// System.Byte UnityEngine.Networking.NetworkHash128::i5
uint8_t ___i5_5;
// System.Byte UnityEngine.Networking.NetworkHash128::i6
uint8_t ___i6_6;
// System.Byte UnityEngine.Networking.NetworkHash128::i7
uint8_t ___i7_7;
// System.Byte UnityEngine.Networking.NetworkHash128::i8
uint8_t ___i8_8;
// System.Byte UnityEngine.Networking.NetworkHash128::i9
uint8_t ___i9_9;
// System.Byte UnityEngine.Networking.NetworkHash128::i10
uint8_t ___i10_10;
// System.Byte UnityEngine.Networking.NetworkHash128::i11
uint8_t ___i11_11;
// System.Byte UnityEngine.Networking.NetworkHash128::i12
uint8_t ___i12_12;
// System.Byte UnityEngine.Networking.NetworkHash128::i13
uint8_t ___i13_13;
// System.Byte UnityEngine.Networking.NetworkHash128::i14
uint8_t ___i14_14;
// System.Byte UnityEngine.Networking.NetworkHash128::i15
uint8_t ___i15_15;
public:
inline static int32_t get_offset_of_i0_0() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i0_0)); }
inline uint8_t get_i0_0() const { return ___i0_0; }
inline uint8_t* get_address_of_i0_0() { return &___i0_0; }
inline void set_i0_0(uint8_t value)
{
___i0_0 = value;
}
inline static int32_t get_offset_of_i1_1() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i1_1)); }
inline uint8_t get_i1_1() const { return ___i1_1; }
inline uint8_t* get_address_of_i1_1() { return &___i1_1; }
inline void set_i1_1(uint8_t value)
{
___i1_1 = value;
}
inline static int32_t get_offset_of_i2_2() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i2_2)); }
inline uint8_t get_i2_2() const { return ___i2_2; }
inline uint8_t* get_address_of_i2_2() { return &___i2_2; }
inline void set_i2_2(uint8_t value)
{
___i2_2 = value;
}
inline static int32_t get_offset_of_i3_3() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i3_3)); }
inline uint8_t get_i3_3() const { return ___i3_3; }
inline uint8_t* get_address_of_i3_3() { return &___i3_3; }
inline void set_i3_3(uint8_t value)
{
___i3_3 = value;
}
inline static int32_t get_offset_of_i4_4() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i4_4)); }
inline uint8_t get_i4_4() const { return ___i4_4; }
inline uint8_t* get_address_of_i4_4() { return &___i4_4; }
inline void set_i4_4(uint8_t value)
{
___i4_4 = value;
}
inline static int32_t get_offset_of_i5_5() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i5_5)); }
inline uint8_t get_i5_5() const { return ___i5_5; }
inline uint8_t* get_address_of_i5_5() { return &___i5_5; }
inline void set_i5_5(uint8_t value)
{
___i5_5 = value;
}
inline static int32_t get_offset_of_i6_6() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i6_6)); }
inline uint8_t get_i6_6() const { return ___i6_6; }
inline uint8_t* get_address_of_i6_6() { return &___i6_6; }
inline void set_i6_6(uint8_t value)
{
___i6_6 = value;
}
inline static int32_t get_offset_of_i7_7() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i7_7)); }
inline uint8_t get_i7_7() const { return ___i7_7; }
inline uint8_t* get_address_of_i7_7() { return &___i7_7; }
inline void set_i7_7(uint8_t value)
{
___i7_7 = value;
}
inline static int32_t get_offset_of_i8_8() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i8_8)); }
inline uint8_t get_i8_8() const { return ___i8_8; }
inline uint8_t* get_address_of_i8_8() { return &___i8_8; }
inline void set_i8_8(uint8_t value)
{
___i8_8 = value;
}
inline static int32_t get_offset_of_i9_9() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i9_9)); }
inline uint8_t get_i9_9() const { return ___i9_9; }
inline uint8_t* get_address_of_i9_9() { return &___i9_9; }
inline void set_i9_9(uint8_t value)
{
___i9_9 = value;
}
inline static int32_t get_offset_of_i10_10() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i10_10)); }
inline uint8_t get_i10_10() const { return ___i10_10; }
inline uint8_t* get_address_of_i10_10() { return &___i10_10; }
inline void set_i10_10(uint8_t value)
{
___i10_10 = value;
}
inline static int32_t get_offset_of_i11_11() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i11_11)); }
inline uint8_t get_i11_11() const { return ___i11_11; }
inline uint8_t* get_address_of_i11_11() { return &___i11_11; }
inline void set_i11_11(uint8_t value)
{
___i11_11 = value;
}
inline static int32_t get_offset_of_i12_12() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i12_12)); }
inline uint8_t get_i12_12() const { return ___i12_12; }
inline uint8_t* get_address_of_i12_12() { return &___i12_12; }
inline void set_i12_12(uint8_t value)
{
___i12_12 = value;
}
inline static int32_t get_offset_of_i13_13() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i13_13)); }
inline uint8_t get_i13_13() const { return ___i13_13; }
inline uint8_t* get_address_of_i13_13() { return &___i13_13; }
inline void set_i13_13(uint8_t value)
{
___i13_13 = value;
}
inline static int32_t get_offset_of_i14_14() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i14_14)); }
inline uint8_t get_i14_14() const { return ___i14_14; }
inline uint8_t* get_address_of_i14_14() { return &___i14_14; }
inline void set_i14_14(uint8_t value)
{
___i14_14 = value;
}
inline static int32_t get_offset_of_i15_15() { return static_cast<int32_t>(offsetof(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C, ___i15_15)); }
inline uint8_t get_i15_15() const { return ___i15_15; }
inline uint8_t* get_address_of_i15_15() { return &___i15_15; }
inline void set_i15_15(uint8_t value)
{
___i15_15 = value;
}
};
// UnityEngine.Networking.NetworkInstanceId
struct NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615
{
public:
// System.UInt32 UnityEngine.Networking.NetworkInstanceId::m_Value
uint32_t ___m_Value_0;
public:
inline static int32_t get_offset_of_m_Value_0() { return static_cast<int32_t>(offsetof(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615, ___m_Value_0)); }
inline uint32_t get_m_Value_0() const { return ___m_Value_0; }
inline uint32_t* get_address_of_m_Value_0() { return &___m_Value_0; }
inline void set_m_Value_0(uint32_t value)
{
___m_Value_0 = value;
}
};
struct NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615_StaticFields
{
public:
// UnityEngine.Networking.NetworkInstanceId UnityEngine.Networking.NetworkInstanceId::Invalid
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___Invalid_1;
// UnityEngine.Networking.NetworkInstanceId UnityEngine.Networking.NetworkInstanceId::Zero
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___Zero_2;
public:
inline static int32_t get_offset_of_Invalid_1() { return static_cast<int32_t>(offsetof(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615_StaticFields, ___Invalid_1)); }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 get_Invalid_1() const { return ___Invalid_1; }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 * get_address_of_Invalid_1() { return &___Invalid_1; }
inline void set_Invalid_1(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 value)
{
___Invalid_1 = value;
}
inline static int32_t get_offset_of_Zero_2() { return static_cast<int32_t>(offsetof(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615_StaticFields, ___Zero_2)); }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 get_Zero_2() const { return ___Zero_2; }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 * get_address_of_Zero_2() { return &___Zero_2; }
inline void set_Zero_2(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 value)
{
___Zero_2 = value;
}
};
// UnityEngine.Networking.NetworkLobbyManager_PendingPlayer
struct PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090
{
public:
// UnityEngine.Networking.NetworkConnection UnityEngine.Networking.NetworkLobbyManager_PendingPlayer::conn
NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA * ___conn_0;
// UnityEngine.GameObject UnityEngine.Networking.NetworkLobbyManager_PendingPlayer::lobbyPlayer
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___lobbyPlayer_1;
public:
inline static int32_t get_offset_of_conn_0() { return static_cast<int32_t>(offsetof(PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090, ___conn_0)); }
inline NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA * get_conn_0() const { return ___conn_0; }
inline NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA ** get_address_of_conn_0() { return &___conn_0; }
inline void set_conn_0(NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA * value)
{
___conn_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___conn_0), (void*)value);
}
inline static int32_t get_offset_of_lobbyPlayer_1() { return static_cast<int32_t>(offsetof(PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090, ___lobbyPlayer_1)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_lobbyPlayer_1() const { return ___lobbyPlayer_1; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_lobbyPlayer_1() { return &___lobbyPlayer_1; }
inline void set_lobbyPlayer_1(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___lobbyPlayer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lobbyPlayer_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.NetworkLobbyManager/PendingPlayer
struct PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090_marshaled_pinvoke
{
NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA * ___conn_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___lobbyPlayer_1;
};
// Native definition for COM marshalling of UnityEngine.Networking.NetworkLobbyManager/PendingPlayer
struct PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090_marshaled_com
{
NetworkConnection_t56E90DAE06B07A4A3233611CC9C0CBCD0A1CAFBA * ___conn_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___lobbyPlayer_1;
};
// UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers
struct ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9
{
public:
// System.Collections.Generic.List`1<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo> UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers::players
List_1_t87345ABE62C753FC4A3E06A0820A8CAF6DC8ACA8 * ___players_0;
public:
inline static int32_t get_offset_of_players_0() { return static_cast<int32_t>(offsetof(ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9, ___players_0)); }
inline List_1_t87345ABE62C753FC4A3E06A0820A8CAF6DC8ACA8 * get_players_0() const { return ___players_0; }
inline List_1_t87345ABE62C753FC4A3E06A0820A8CAF6DC8ACA8 ** get_address_of_players_0() { return &___players_0; }
inline void set_players_0(List_1_t87345ABE62C753FC4A3E06A0820A8CAF6DC8ACA8 * value)
{
___players_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___players_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers
struct ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9_marshaled_pinvoke
{
List_1_t87345ABE62C753FC4A3E06A0820A8CAF6DC8ACA8 * ___players_0;
};
// Native definition for COM marshalling of UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers
struct ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9_marshaled_com
{
List_1_t87345ABE62C753FC4A3E06A0820A8CAF6DC8ACA8 * ___players_0;
};
// UnityEngine.Networking.NetworkSceneId
struct NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340
{
public:
// System.UInt32 UnityEngine.Networking.NetworkSceneId::m_Value
uint32_t ___m_Value_0;
public:
inline static int32_t get_offset_of_m_Value_0() { return static_cast<int32_t>(offsetof(NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340, ___m_Value_0)); }
inline uint32_t get_m_Value_0() const { return ___m_Value_0; }
inline uint32_t* get_address_of_m_Value_0() { return &___m_Value_0; }
inline void set_m_Value_0(uint32_t value)
{
___m_Value_0 = value;
}
};
// UnityEngine.Networking.NetworkSystem.CRCMessageEntry
struct CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118
{
public:
// System.String UnityEngine.Networking.NetworkSystem.CRCMessageEntry::name
String_t* ___name_0;
// System.Byte UnityEngine.Networking.NetworkSystem.CRCMessageEntry::channel
uint8_t ___channel_1;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
}
inline static int32_t get_offset_of_channel_1() { return static_cast<int32_t>(offsetof(CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118, ___channel_1)); }
inline uint8_t get_channel_1() const { return ___channel_1; }
inline uint8_t* get_address_of_channel_1() { return &___channel_1; }
inline void set_channel_1(uint8_t value)
{
___channel_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.NetworkSystem.CRCMessageEntry
struct CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118_marshaled_pinvoke
{
char* ___name_0;
uint8_t ___channel_1;
};
// Native definition for COM marshalling of UnityEngine.Networking.NetworkSystem.CRCMessageEntry
struct CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118_marshaled_com
{
Il2CppChar* ___name_0;
uint8_t ___channel_1;
};
// UnityEngine.Quaternion
struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357
{
public:
// System.Single UnityEngine.Quaternion::x
float ___x_0;
// System.Single UnityEngine.Quaternion::y
float ___y_1;
// System.Single UnityEngine.Quaternion::z
float ___z_2;
// System.Single UnityEngine.Quaternion::w
float ___w_3;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___z_2)); }
inline float get_z_2() const { return ___z_2; }
inline float* get_address_of_z_2() { return &___z_2; }
inline void set_z_2(float value)
{
___z_2 = value;
}
inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___w_3)); }
inline float get_w_3() const { return ___w_3; }
inline float* get_address_of_w_3() { return &___w_3; }
inline void set_w_3(float value)
{
___w_3 = value;
}
};
struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields
{
public:
// UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___identityQuaternion_4;
public:
inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields, ___identityQuaternion_4)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_identityQuaternion_4() const { return ___identityQuaternion_4; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; }
inline void set_identityQuaternion_4(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___identityQuaternion_4 = value;
}
};
// UnityEngine.Rect
struct Rect_t35B976DE901B5423C11705E156938EA27AB402CE
{
public:
// System.Single UnityEngine.Rect::m_XMin
float ___m_XMin_0;
// System.Single UnityEngine.Rect::m_YMin
float ___m_YMin_1;
// System.Single UnityEngine.Rect::m_Width
float ___m_Width_2;
// System.Single UnityEngine.Rect::m_Height
float ___m_Height_3;
public:
inline static int32_t get_offset_of_m_XMin_0() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_XMin_0)); }
inline float get_m_XMin_0() const { return ___m_XMin_0; }
inline float* get_address_of_m_XMin_0() { return &___m_XMin_0; }
inline void set_m_XMin_0(float value)
{
___m_XMin_0 = value;
}
inline static int32_t get_offset_of_m_YMin_1() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_YMin_1)); }
inline float get_m_YMin_1() const { return ___m_YMin_1; }
inline float* get_address_of_m_YMin_1() { return &___m_YMin_1; }
inline void set_m_YMin_1(float value)
{
___m_YMin_1 = value;
}
inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_Width_2)); }
inline float get_m_Width_2() const { return ___m_Width_2; }
inline float* get_address_of_m_Width_2() { return &___m_Width_2; }
inline void set_m_Width_2(float value)
{
___m_Width_2 = value;
}
inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_Height_3)); }
inline float get_m_Height_3() const { return ___m_Height_3; }
inline float* get_address_of_m_Height_3() { return &___m_Height_3; }
inline void set_m_Height_3(float value)
{
___m_Height_3 = value;
}
};
// UnityEngine.Rendering.BatchVisibility
struct BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062
{
public:
// System.Int32 UnityEngine.Rendering.BatchVisibility::offset
int32_t ___offset_0;
// System.Int32 UnityEngine.Rendering.BatchVisibility::instancesCount
int32_t ___instancesCount_1;
// System.Int32 UnityEngine.Rendering.BatchVisibility::visibleCount
int32_t ___visibleCount_2;
public:
inline static int32_t get_offset_of_offset_0() { return static_cast<int32_t>(offsetof(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, ___offset_0)); }
inline int32_t get_offset_0() const { return ___offset_0; }
inline int32_t* get_address_of_offset_0() { return &___offset_0; }
inline void set_offset_0(int32_t value)
{
___offset_0 = value;
}
inline static int32_t get_offset_of_instancesCount_1() { return static_cast<int32_t>(offsetof(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, ___instancesCount_1)); }
inline int32_t get_instancesCount_1() const { return ___instancesCount_1; }
inline int32_t* get_address_of_instancesCount_1() { return &___instancesCount_1; }
inline void set_instancesCount_1(int32_t value)
{
___instancesCount_1 = value;
}
inline static int32_t get_offset_of_visibleCount_2() { return static_cast<int32_t>(offsetof(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, ___visibleCount_2)); }
inline int32_t get_visibleCount_2() const { return ___visibleCount_2; }
inline int32_t* get_address_of_visibleCount_2() { return &___visibleCount_2; }
inline void set_visibleCount_2(int32_t value)
{
___visibleCount_2 = value;
}
};
// UnityEngine.SendMouseEvents_HitInfo
struct HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746
{
public:
// UnityEngine.GameObject UnityEngine.SendMouseEvents_HitInfo::target
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0;
// UnityEngine.Camera UnityEngine.SendMouseEvents_HitInfo::camera
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1;
public:
inline static int32_t get_offset_of_target_0() { return static_cast<int32_t>(offsetof(HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746, ___target_0)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_target_0() const { return ___target_0; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_target_0() { return &___target_0; }
inline void set_target_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___target_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___target_0), (void*)value);
}
inline static int32_t get_offset_of_camera_1() { return static_cast<int32_t>(offsetof(HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746, ___camera_1)); }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * get_camera_1() const { return ___camera_1; }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** get_address_of_camera_1() { return &___camera_1; }
inline void set_camera_1(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value)
{
___camera_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___camera_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SendMouseEvents/HitInfo
struct HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_marshaled_pinvoke
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0;
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1;
};
// Native definition for COM marshalling of UnityEngine.SendMouseEvents/HitInfo
struct HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_marshaled_com
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0;
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1;
};
// UnityEngine.SocialPlatforms.GameCenter.GcAchievementData
struct GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55
{
public:
// System.String UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Identifier
String_t* ___m_Identifier_0;
// System.Double UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_PercentCompleted
double ___m_PercentCompleted_1;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Completed
int32_t ___m_Completed_2;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Hidden
int32_t ___m_Hidden_3;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_LastReportedDate
int32_t ___m_LastReportedDate_4;
public:
inline static int32_t get_offset_of_m_Identifier_0() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_Identifier_0)); }
inline String_t* get_m_Identifier_0() const { return ___m_Identifier_0; }
inline String_t** get_address_of_m_Identifier_0() { return &___m_Identifier_0; }
inline void set_m_Identifier_0(String_t* value)
{
___m_Identifier_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Identifier_0), (void*)value);
}
inline static int32_t get_offset_of_m_PercentCompleted_1() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_PercentCompleted_1)); }
inline double get_m_PercentCompleted_1() const { return ___m_PercentCompleted_1; }
inline double* get_address_of_m_PercentCompleted_1() { return &___m_PercentCompleted_1; }
inline void set_m_PercentCompleted_1(double value)
{
___m_PercentCompleted_1 = value;
}
inline static int32_t get_offset_of_m_Completed_2() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_Completed_2)); }
inline int32_t get_m_Completed_2() const { return ___m_Completed_2; }
inline int32_t* get_address_of_m_Completed_2() { return &___m_Completed_2; }
inline void set_m_Completed_2(int32_t value)
{
___m_Completed_2 = value;
}
inline static int32_t get_offset_of_m_Hidden_3() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_Hidden_3)); }
inline int32_t get_m_Hidden_3() const { return ___m_Hidden_3; }
inline int32_t* get_address_of_m_Hidden_3() { return &___m_Hidden_3; }
inline void set_m_Hidden_3(int32_t value)
{
___m_Hidden_3 = value;
}
inline static int32_t get_offset_of_m_LastReportedDate_4() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_LastReportedDate_4)); }
inline int32_t get_m_LastReportedDate_4() const { return ___m_LastReportedDate_4; }
inline int32_t* get_address_of_m_LastReportedDate_4() { return &___m_LastReportedDate_4; }
inline void set_m_LastReportedDate_4(int32_t value)
{
___m_LastReportedDate_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SocialPlatforms.GameCenter.GcAchievementData
struct GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_marshaled_pinvoke
{
char* ___m_Identifier_0;
double ___m_PercentCompleted_1;
int32_t ___m_Completed_2;
int32_t ___m_Hidden_3;
int32_t ___m_LastReportedDate_4;
};
// Native definition for COM marshalling of UnityEngine.SocialPlatforms.GameCenter.GcAchievementData
struct GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_marshaled_com
{
Il2CppChar* ___m_Identifier_0;
double ___m_PercentCompleted_1;
int32_t ___m_Completed_2;
int32_t ___m_Hidden_3;
int32_t ___m_LastReportedDate_4;
};
// UnityEngine.SocialPlatforms.GameCenter.GcScoreData
struct GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A
{
public:
// System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Category
String_t* ___m_Category_0;
// System.UInt32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_ValueLow
uint32_t ___m_ValueLow_1;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_ValueHigh
int32_t ___m_ValueHigh_2;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Date
int32_t ___m_Date_3;
// System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_FormattedValue
String_t* ___m_FormattedValue_4;
// System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_PlayerID
String_t* ___m_PlayerID_5;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Rank
int32_t ___m_Rank_6;
public:
inline static int32_t get_offset_of_m_Category_0() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_Category_0)); }
inline String_t* get_m_Category_0() const { return ___m_Category_0; }
inline String_t** get_address_of_m_Category_0() { return &___m_Category_0; }
inline void set_m_Category_0(String_t* value)
{
___m_Category_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Category_0), (void*)value);
}
inline static int32_t get_offset_of_m_ValueLow_1() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_ValueLow_1)); }
inline uint32_t get_m_ValueLow_1() const { return ___m_ValueLow_1; }
inline uint32_t* get_address_of_m_ValueLow_1() { return &___m_ValueLow_1; }
inline void set_m_ValueLow_1(uint32_t value)
{
___m_ValueLow_1 = value;
}
inline static int32_t get_offset_of_m_ValueHigh_2() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_ValueHigh_2)); }
inline int32_t get_m_ValueHigh_2() const { return ___m_ValueHigh_2; }
inline int32_t* get_address_of_m_ValueHigh_2() { return &___m_ValueHigh_2; }
inline void set_m_ValueHigh_2(int32_t value)
{
___m_ValueHigh_2 = value;
}
inline static int32_t get_offset_of_m_Date_3() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_Date_3)); }
inline int32_t get_m_Date_3() const { return ___m_Date_3; }
inline int32_t* get_address_of_m_Date_3() { return &___m_Date_3; }
inline void set_m_Date_3(int32_t value)
{
___m_Date_3 = value;
}
inline static int32_t get_offset_of_m_FormattedValue_4() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_FormattedValue_4)); }
inline String_t* get_m_FormattedValue_4() const { return ___m_FormattedValue_4; }
inline String_t** get_address_of_m_FormattedValue_4() { return &___m_FormattedValue_4; }
inline void set_m_FormattedValue_4(String_t* value)
{
___m_FormattedValue_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FormattedValue_4), (void*)value);
}
inline static int32_t get_offset_of_m_PlayerID_5() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_PlayerID_5)); }
inline String_t* get_m_PlayerID_5() const { return ___m_PlayerID_5; }
inline String_t** get_address_of_m_PlayerID_5() { return &___m_PlayerID_5; }
inline void set_m_PlayerID_5(String_t* value)
{
___m_PlayerID_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PlayerID_5), (void*)value);
}
inline static int32_t get_offset_of_m_Rank_6() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_Rank_6)); }
inline int32_t get_m_Rank_6() const { return ___m_Rank_6; }
inline int32_t* get_address_of_m_Rank_6() { return &___m_Rank_6; }
inline void set_m_Rank_6(int32_t value)
{
___m_Rank_6 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SocialPlatforms.GameCenter.GcScoreData
struct GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_marshaled_pinvoke
{
char* ___m_Category_0;
uint32_t ___m_ValueLow_1;
int32_t ___m_ValueHigh_2;
int32_t ___m_Date_3;
char* ___m_FormattedValue_4;
char* ___m_PlayerID_5;
int32_t ___m_Rank_6;
};
// Native definition for COM marshalling of UnityEngine.SocialPlatforms.GameCenter.GcScoreData
struct GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_marshaled_com
{
Il2CppChar* ___m_Category_0;
uint32_t ___m_ValueLow_1;
int32_t ___m_ValueHigh_2;
int32_t ___m_Date_3;
Il2CppChar* ___m_FormattedValue_4;
Il2CppChar* ___m_PlayerID_5;
int32_t ___m_Rank_6;
};
// UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A
{
public:
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_HighlightedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_PressedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_SelectedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_DisabledSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
public:
inline static int32_t get_offset_of_m_HighlightedSprite_0() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_HighlightedSprite_0)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_HighlightedSprite_0() const { return ___m_HighlightedSprite_0; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_HighlightedSprite_0() { return &___m_HighlightedSprite_0; }
inline void set_m_HighlightedSprite_0(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_HighlightedSprite_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HighlightedSprite_0), (void*)value);
}
inline static int32_t get_offset_of_m_PressedSprite_1() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_PressedSprite_1)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_PressedSprite_1() const { return ___m_PressedSprite_1; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_PressedSprite_1() { return &___m_PressedSprite_1; }
inline void set_m_PressedSprite_1(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_PressedSprite_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PressedSprite_1), (void*)value);
}
inline static int32_t get_offset_of_m_SelectedSprite_2() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_SelectedSprite_2)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_SelectedSprite_2() const { return ___m_SelectedSprite_2; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_SelectedSprite_2() { return &___m_SelectedSprite_2; }
inline void set_m_SelectedSprite_2(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_SelectedSprite_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectedSprite_2), (void*)value);
}
inline static int32_t get_offset_of_m_DisabledSprite_3() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_DisabledSprite_3)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_DisabledSprite_3() const { return ___m_DisabledSprite_3; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_DisabledSprite_3() { return &___m_DisabledSprite_3; }
inline void set_m_DisabledSprite_3(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_DisabledSprite_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DisabledSprite_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_marshaled_pinvoke
{
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
};
// Native definition for COM marshalling of UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_marshaled_com
{
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
};
// UnityEngine.UILineInfo
struct UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6
{
public:
// System.Int32 UnityEngine.UILineInfo::startCharIdx
int32_t ___startCharIdx_0;
// System.Int32 UnityEngine.UILineInfo::height
int32_t ___height_1;
// System.Single UnityEngine.UILineInfo::topY
float ___topY_2;
// System.Single UnityEngine.UILineInfo::leading
float ___leading_3;
public:
inline static int32_t get_offset_of_startCharIdx_0() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___startCharIdx_0)); }
inline int32_t get_startCharIdx_0() const { return ___startCharIdx_0; }
inline int32_t* get_address_of_startCharIdx_0() { return &___startCharIdx_0; }
inline void set_startCharIdx_0(int32_t value)
{
___startCharIdx_0 = value;
}
inline static int32_t get_offset_of_height_1() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___height_1)); }
inline int32_t get_height_1() const { return ___height_1; }
inline int32_t* get_address_of_height_1() { return &___height_1; }
inline void set_height_1(int32_t value)
{
___height_1 = value;
}
inline static int32_t get_offset_of_topY_2() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___topY_2)); }
inline float get_topY_2() const { return ___topY_2; }
inline float* get_address_of_topY_2() { return &___topY_2; }
inline void set_topY_2(float value)
{
___topY_2 = value;
}
inline static int32_t get_offset_of_leading_3() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___leading_3)); }
inline float get_leading_3() const { return ___leading_3; }
inline float* get_address_of_leading_3() { return &___leading_3; }
inline void set_leading_3(float value)
{
___leading_3 = value;
}
};
// UnityEngine.UnitySynchronizationContext_WorkRequest
struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94
{
public:
// System.Threading.SendOrPostCallback UnityEngine.UnitySynchronizationContext_WorkRequest::m_DelagateCallback
SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * ___m_DelagateCallback_0;
// System.Object UnityEngine.UnitySynchronizationContext_WorkRequest::m_DelagateState
RuntimeObject * ___m_DelagateState_1;
// System.Threading.ManualResetEvent UnityEngine.UnitySynchronizationContext_WorkRequest::m_WaitHandle
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2;
public:
inline static int32_t get_offset_of_m_DelagateCallback_0() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_DelagateCallback_0)); }
inline SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * get_m_DelagateCallback_0() const { return ___m_DelagateCallback_0; }
inline SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 ** get_address_of_m_DelagateCallback_0() { return &___m_DelagateCallback_0; }
inline void set_m_DelagateCallback_0(SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * value)
{
___m_DelagateCallback_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateCallback_0), (void*)value);
}
inline static int32_t get_offset_of_m_DelagateState_1() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_DelagateState_1)); }
inline RuntimeObject * get_m_DelagateState_1() const { return ___m_DelagateState_1; }
inline RuntimeObject ** get_address_of_m_DelagateState_1() { return &___m_DelagateState_1; }
inline void set_m_DelagateState_1(RuntimeObject * value)
{
___m_DelagateState_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateState_1), (void*)value);
}
inline static int32_t get_offset_of_m_WaitHandle_2() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_WaitHandle_2)); }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * get_m_WaitHandle_2() const { return ___m_WaitHandle_2; }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** get_address_of_m_WaitHandle_2() { return &___m_WaitHandle_2; }
inline void set_m_WaitHandle_2(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * value)
{
___m_WaitHandle_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_WaitHandle_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_marshaled_pinvoke
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2;
};
// Native definition for COM marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_marshaled_com
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2;
};
// UnityEngine.Vector2
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
};
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___zeroVector_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___oneVector_3)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___upVector_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_upVector_4() const { return ___upVector_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___downVector_5)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_downVector_5() const { return ___downVector_5; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___leftVector_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___rightVector_7)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___negativeInfinityVector_9 = value;
}
};
// UnityEngine.Vector3
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720
{
public:
// System.Single UnityEngine.Vector3::x
float ___x_2;
// System.Single UnityEngine.Vector3::y
float ___y_3;
// System.Single UnityEngine.Vector3::z
float ___z_4;
public:
inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___x_2)); }
inline float get_x_2() const { return ___x_2; }
inline float* get_address_of_x_2() { return &___x_2; }
inline void set_x_2(float value)
{
___x_2 = value;
}
inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___y_3)); }
inline float get_y_3() const { return ___y_3; }
inline float* get_address_of_y_3() { return &___y_3; }
inline void set_y_3(float value)
{
___y_3 = value;
}
inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___z_4)); }
inline float get_z_4() const { return ___z_4; }
inline float* get_address_of_z_4() { return &___z_4; }
inline void set_z_4(float value)
{
___z_4 = value;
}
};
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___zeroVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___oneVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___upVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___downVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___leftVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___rightVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___forwardVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___backVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___positiveInfinityVector_13;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___negativeInfinityVector_14;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___zeroVector_5)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___oneVector_6)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_oneVector_6() const { return ___oneVector_6; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___upVector_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_upVector_7() const { return ___upVector_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_upVector_7() { return &___upVector_7; }
inline void set_upVector_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___upVector_7 = value;
}
inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___downVector_8)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_downVector_8() const { return ___downVector_8; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_downVector_8() { return &___downVector_8; }
inline void set_downVector_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___downVector_8 = value;
}
inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___leftVector_9)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_leftVector_9() const { return ___leftVector_9; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_leftVector_9() { return &___leftVector_9; }
inline void set_leftVector_9(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___leftVector_9 = value;
}
inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___rightVector_10)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_rightVector_10() const { return ___rightVector_10; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_rightVector_10() { return &___rightVector_10; }
inline void set_rightVector_10(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___rightVector_10 = value;
}
inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___forwardVector_11)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_forwardVector_11() const { return ___forwardVector_11; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_forwardVector_11() { return &___forwardVector_11; }
inline void set_forwardVector_11(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___forwardVector_11 = value;
}
inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___backVector_12)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_backVector_12() const { return ___backVector_12; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_backVector_12() { return &___backVector_12; }
inline void set_backVector_12(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___backVector_12 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___positiveInfinityVector_13)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; }
inline void set_positiveInfinityVector_13(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___positiveInfinityVector_13 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___negativeInfinityVector_14)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; }
inline void set_negativeInfinityVector_14(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___negativeInfinityVector_14 = value;
}
};
// UnityEngine.Vector4
struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E
{
public:
// System.Single UnityEngine.Vector4::x
float ___x_1;
// System.Single UnityEngine.Vector4::y
float ___y_2;
// System.Single UnityEngine.Vector4::z
float ___z_3;
// System.Single UnityEngine.Vector4::w
float ___w_4;
public:
inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___x_1)); }
inline float get_x_1() const { return ___x_1; }
inline float* get_address_of_x_1() { return &___x_1; }
inline void set_x_1(float value)
{
___x_1 = value;
}
inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___y_2)); }
inline float get_y_2() const { return ___y_2; }
inline float* get_address_of_y_2() { return &___y_2; }
inline void set_y_2(float value)
{
___y_2 = value;
}
inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___z_3)); }
inline float get_z_3() const { return ___z_3; }
inline float* get_address_of_z_3() { return &___z_3; }
inline void set_z_3(float value)
{
___z_3 = value;
}
inline static int32_t get_offset_of_w_4() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___w_4)); }
inline float get_w_4() const { return ___w_4; }
inline float* get_address_of_w_4() { return &___w_4; }
inline void set_w_4(float value)
{
___w_4 = value;
}
};
struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields
{
public:
// UnityEngine.Vector4 UnityEngine.Vector4::zeroVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___zeroVector_5;
// UnityEngine.Vector4 UnityEngine.Vector4::oneVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___oneVector_6;
// UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___positiveInfinityVector_7;
// UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___negativeInfinityVector_8;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___zeroVector_5)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___oneVector_6)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_oneVector_6() const { return ___oneVector_6; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___positiveInfinityVector_7)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; }
inline void set_positiveInfinityVector_7(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___positiveInfinityVector_7 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___negativeInfinityVector_8)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; }
inline void set_negativeInfinityVector_8(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___negativeInfinityVector_8 = value;
}
};
// Facebook.Unity.ShareDialogMode
struct ShareDialogMode_t2618905CE057434FD18F3271C571D98D9A9BB687
{
public:
// System.Int32 Facebook.Unity.ShareDialogMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ShareDialogMode_t2618905CE057434FD18F3271C571D98D9A9BB687, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>
struct Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
int32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA, ___key_2)); }
inline int32_t get_key_2() const { return ___key_2; }
inline int32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(int32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA, ___value_3)); }
inline ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 get_value_3() const { return ___value_3; }
inline ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___players_0), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>
struct Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___value_3)); }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_3() const { return ___value_3; }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->____value_0), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>
struct Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E, ___value_3)); }
inline NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 get_value_3() const { return ___value_3; }
inline NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___serverAddress_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___broadcastData_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>
struct Entry_t8E09DFCC6D674230C233702F449DB762B53A2031
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t8E09DFCC6D674230C233702F449DB762B53A2031, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t8E09DFCC6D674230C233702F449DB762B53A2031, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t8E09DFCC6D674230C233702F449DB762B53A2031, ___key_2)); }
inline NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C get_key_2() const { return ___key_2; }
inline NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t8E09DFCC6D674230C233702F449DB762B53A2031, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>
struct Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A, ___key_2)); }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 get_key_2() const { return ___key_2; }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>
struct Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F, ___key_2)); }
inline NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 get_key_2() const { return ___key_2; }
inline NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.HashSet`1_Slot<UnityEngine.Networking.NetworkInstanceId>
struct Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE
{
public:
// System.Int32 System.Collections.Generic.HashSet`1_Slot::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.HashSet`1_Slot::next
int32_t ___next_1;
// T System.Collections.Generic.HashSet`1_Slot::value
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___value_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_value_2() { return static_cast<int32_t>(offsetof(Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE, ___value_2)); }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 get_value_2() const { return ___value_2; }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 * get_address_of_value_2() { return &___value_2; }
inline void set_value_2(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 value)
{
___value_2 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>
struct KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, ___key_0)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_key_0() const { return ___key_0; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>
struct KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Guid_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937, ___key_0)); }
inline Guid_t get_key_0() const { return ___key_0; }
inline Guid_t * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Guid_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>
struct KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Guid_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78, ___key_0)); }
inline Guid_t get_key_0() const { return ___key_0; }
inline Guid_t * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Guid_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>
struct KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF, ___key_0)); }
inline int32_t get_key_0() const { return ___key_0; }
inline int32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF, ___value_1)); }
inline ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 get_value_1() const { return ___value_1; }
inline ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___players_0), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>
struct KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___value_1)); }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_1() const { return ___value_1; }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->____value_0), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>
struct KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5, ___value_1)); }
inline NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 get_value_1() const { return ___value_1; }
inline NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___serverAddress_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___broadcastData_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkHash128,System.Object>
struct KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0, ___key_0)); }
inline NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C get_key_0() const { return ___key_0; }
inline NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkInstanceId,System.Object>
struct KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013, ___key_0)); }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 get_key_0() const { return ___key_0; }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkSceneId,System.Object>
struct KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8, ___key_0)); }
inline NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 get_key_0() const { return ___key_0; }
inline NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___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.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
// 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;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// 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;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// System.Diagnostics.Tracing.EventActivityOptions
struct EventActivityOptions_t929DC56692200C1AE8FD9194A2510B6149D69168
{
public:
// System.Int32 System.Diagnostics.Tracing.EventActivityOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventActivityOptions_t929DC56692200C1AE8FD9194A2510B6149D69168, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Diagnostics.Tracing.EventTags
struct EventTags_t886E6B89C75F05A5BA40FBC96790AA6C5F24A712
{
public:
// System.Int32 System.Diagnostics.Tracing.EventTags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventTags_t886E6B89C75F05A5BA40FBC96790AA6C5F24A712, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// 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_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15;
public:
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
inline String_t* get__className_1() const { return ____className_1; }
inline String_t** get_address_of__className_1() { return &____className_1; }
inline void set__className_1(String_t* value)
{
____className_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
}
};
// 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_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*INT*/* ___native_trace_ips_15;
};
// 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_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*INT*/* ___native_trace_ips_15;
};
// System.Int32Enum
struct Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD
{
public:
// System.Int32 System.Int32Enum::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Net.Sockets.Socket_WSABUF
struct WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE
{
public:
// System.Int32 System.Net.Sockets.Socket_WSABUF::len
int32_t ___len_0;
// System.IntPtr System.Net.Sockets.Socket_WSABUF::buf
intptr_t ___buf_1;
public:
inline static int32_t get_offset_of_len_0() { return static_cast<int32_t>(offsetof(WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE, ___len_0)); }
inline int32_t get_len_0() const { return ___len_0; }
inline int32_t* get_address_of_len_0() { return &___len_0; }
inline void set_len_0(int32_t value)
{
___len_0 = value;
}
inline static int32_t get_offset_of_buf_1() { return static_cast<int32_t>(offsetof(WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE, ___buf_1)); }
inline intptr_t get_buf_1() const { return ___buf_1; }
inline intptr_t* get_address_of_buf_1() { return &___buf_1; }
inline void set_buf_1(intptr_t value)
{
___buf_1 = value;
}
};
// System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E
{
public:
// System.Reflection.CustomAttributeTypedArgument System.Reflection.CustomAttributeNamedArgument::typedArgument
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 ___typedArgument_0;
// System.Reflection.MemberInfo System.Reflection.CustomAttributeNamedArgument::memberInfo
MemberInfo_t * ___memberInfo_1;
public:
inline static int32_t get_offset_of_typedArgument_0() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E, ___typedArgument_0)); }
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 get_typedArgument_0() const { return ___typedArgument_0; }
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 * get_address_of_typedArgument_0() { return &___typedArgument_0; }
inline void set_typedArgument_0(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 value)
{
___typedArgument_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_memberInfo_1() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E, ___memberInfo_1)); }
inline MemberInfo_t * get_memberInfo_1() const { return ___memberInfo_1; }
inline MemberInfo_t ** get_address_of_memberInfo_1() { return &___memberInfo_1; }
inline void set_memberInfo_1(MemberInfo_t * value)
{
___memberInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___memberInfo_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_marshaled_pinvoke
{
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_pinvoke ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_marshaled_com
{
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_com ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
// System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2
{
public:
// System.Threading.CancellationCallbackInfo System.Threading.CancellationTokenRegistration::m_callbackInfo
CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0;
// System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo> System.Threading.CancellationTokenRegistration::m_registrationInfo
SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1;
public:
inline static int32_t get_offset_of_m_callbackInfo_0() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2, ___m_callbackInfo_0)); }
inline CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * get_m_callbackInfo_0() const { return ___m_callbackInfo_0; }
inline CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 ** get_address_of_m_callbackInfo_0() { return &___m_callbackInfo_0; }
inline void set_m_callbackInfo_0(CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * value)
{
___m_callbackInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_callbackInfo_0), (void*)value);
}
inline static int32_t get_offset_of_m_registrationInfo_1() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2, ___m_registrationInfo_1)); }
inline SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE get_m_registrationInfo_1() const { return ___m_registrationInfo_1; }
inline SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE * get_address_of_m_registrationInfo_1() { return &___m_registrationInfo_1; }
inline void set_m_registrationInfo_1(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE value)
{
___m_registrationInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_registrationInfo_1))->___m_source_0), (void*)NULL);
}
};
// Native definition for P/Invoke marshalling of System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_marshaled_pinvoke
{
CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0;
SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1;
};
// Native definition for COM marshalling of System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_marshaled_com
{
CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0;
SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1;
};
// System.TimeSpan
struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4
{
public:
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_3;
public:
inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, ____ticks_3)); }
inline int64_t get__ticks_3() const { return ____ticks_3; }
inline int64_t* get_address_of__ticks_3() { return &____ticks_3; }
inline void set__ticks_3(int64_t value)
{
____ticks_3 = value;
}
};
struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields
{
public:
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___Zero_0;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MaxValue_1;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MinValue_2;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked
bool ____legacyConfigChecked_4;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode
bool ____legacyMode_5;
public:
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___Zero_0)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_Zero_0() const { return ___Zero_0; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___Zero_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MaxValue_1)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MaxValue_1() const { return ___MaxValue_1; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___MaxValue_1 = value;
}
inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MinValue_2)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MinValue_2() const { return ___MinValue_2; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MinValue_2() { return &___MinValue_2; }
inline void set_MinValue_2(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___MinValue_2 = value;
}
inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyConfigChecked_4)); }
inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; }
inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; }
inline void set__legacyConfigChecked_4(bool value)
{
____legacyConfigChecked_4 = value;
}
inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyMode_5)); }
inline bool get__legacyMode_5() const { return ____legacyMode_5; }
inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; }
inline void set__legacyMode_5(bool value)
{
____legacyMode_5 = value;
}
};
// System.UInt64Enum
struct UInt64Enum_tEAD217F175F60689A664303784384DEF759D24C8
{
public:
// System.UInt64 System.UInt64Enum::value__
uint64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UInt64Enum_tEAD217F175F60689A664303784384DEF759D24C8, ___value___2)); }
inline uint64_t get_value___2() const { return ___value___2; }
inline uint64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint64_t value)
{
___value___2 = value;
}
};
// UnityEngine.ContactPoint
struct ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515
{
public:
// UnityEngine.Vector3 UnityEngine.ContactPoint::m_Point
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Point_0;
// UnityEngine.Vector3 UnityEngine.ContactPoint::m_Normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_1;
// System.Int32 UnityEngine.ContactPoint::m_ThisColliderInstanceID
int32_t ___m_ThisColliderInstanceID_2;
// System.Int32 UnityEngine.ContactPoint::m_OtherColliderInstanceID
int32_t ___m_OtherColliderInstanceID_3;
// System.Single UnityEngine.ContactPoint::m_Separation
float ___m_Separation_4;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_Point_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Point_0() const { return ___m_Point_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_Normal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_ThisColliderInstanceID_2() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_ThisColliderInstanceID_2)); }
inline int32_t get_m_ThisColliderInstanceID_2() const { return ___m_ThisColliderInstanceID_2; }
inline int32_t* get_address_of_m_ThisColliderInstanceID_2() { return &___m_ThisColliderInstanceID_2; }
inline void set_m_ThisColliderInstanceID_2(int32_t value)
{
___m_ThisColliderInstanceID_2 = value;
}
inline static int32_t get_offset_of_m_OtherColliderInstanceID_3() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_OtherColliderInstanceID_3)); }
inline int32_t get_m_OtherColliderInstanceID_3() const { return ___m_OtherColliderInstanceID_3; }
inline int32_t* get_address_of_m_OtherColliderInstanceID_3() { return &___m_OtherColliderInstanceID_3; }
inline void set_m_OtherColliderInstanceID_3(int32_t value)
{
___m_OtherColliderInstanceID_3 = value;
}
inline static int32_t get_offset_of_m_Separation_4() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_Separation_4)); }
inline float get_m_Separation_4() const { return ___m_Separation_4; }
inline float* get_address_of_m_Separation_4() { return &___m_Separation_4; }
inline void set_m_Separation_4(float value)
{
___m_Separation_4 = value;
}
};
// UnityEngine.ContactPoint2D
struct ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0
{
public:
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_Point
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Point_0;
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_Normal
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Normal_1;
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_RelativeVelocity
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_RelativeVelocity_2;
// System.Single UnityEngine.ContactPoint2D::m_Separation
float ___m_Separation_3;
// System.Single UnityEngine.ContactPoint2D::m_NormalImpulse
float ___m_NormalImpulse_4;
// System.Single UnityEngine.ContactPoint2D::m_TangentImpulse
float ___m_TangentImpulse_5;
// System.Int32 UnityEngine.ContactPoint2D::m_Collider
int32_t ___m_Collider_6;
// System.Int32 UnityEngine.ContactPoint2D::m_OtherCollider
int32_t ___m_OtherCollider_7;
// System.Int32 UnityEngine.ContactPoint2D::m_Rigidbody
int32_t ___m_Rigidbody_8;
// System.Int32 UnityEngine.ContactPoint2D::m_OtherRigidbody
int32_t ___m_OtherRigidbody_9;
// System.Int32 UnityEngine.ContactPoint2D::m_Enabled
int32_t ___m_Enabled_10;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Point_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Point_0() const { return ___m_Point_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Normal_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_RelativeVelocity_2() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_RelativeVelocity_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_RelativeVelocity_2() const { return ___m_RelativeVelocity_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_RelativeVelocity_2() { return &___m_RelativeVelocity_2; }
inline void set_m_RelativeVelocity_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_RelativeVelocity_2 = value;
}
inline static int32_t get_offset_of_m_Separation_3() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Separation_3)); }
inline float get_m_Separation_3() const { return ___m_Separation_3; }
inline float* get_address_of_m_Separation_3() { return &___m_Separation_3; }
inline void set_m_Separation_3(float value)
{
___m_Separation_3 = value;
}
inline static int32_t get_offset_of_m_NormalImpulse_4() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_NormalImpulse_4)); }
inline float get_m_NormalImpulse_4() const { return ___m_NormalImpulse_4; }
inline float* get_address_of_m_NormalImpulse_4() { return &___m_NormalImpulse_4; }
inline void set_m_NormalImpulse_4(float value)
{
___m_NormalImpulse_4 = value;
}
inline static int32_t get_offset_of_m_TangentImpulse_5() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_TangentImpulse_5)); }
inline float get_m_TangentImpulse_5() const { return ___m_TangentImpulse_5; }
inline float* get_address_of_m_TangentImpulse_5() { return &___m_TangentImpulse_5; }
inline void set_m_TangentImpulse_5(float value)
{
___m_TangentImpulse_5 = value;
}
inline static int32_t get_offset_of_m_Collider_6() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Collider_6)); }
inline int32_t get_m_Collider_6() const { return ___m_Collider_6; }
inline int32_t* get_address_of_m_Collider_6() { return &___m_Collider_6; }
inline void set_m_Collider_6(int32_t value)
{
___m_Collider_6 = value;
}
inline static int32_t get_offset_of_m_OtherCollider_7() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_OtherCollider_7)); }
inline int32_t get_m_OtherCollider_7() const { return ___m_OtherCollider_7; }
inline int32_t* get_address_of_m_OtherCollider_7() { return &___m_OtherCollider_7; }
inline void set_m_OtherCollider_7(int32_t value)
{
___m_OtherCollider_7 = value;
}
inline static int32_t get_offset_of_m_Rigidbody_8() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Rigidbody_8)); }
inline int32_t get_m_Rigidbody_8() const { return ___m_Rigidbody_8; }
inline int32_t* get_address_of_m_Rigidbody_8() { return &___m_Rigidbody_8; }
inline void set_m_Rigidbody_8(int32_t value)
{
___m_Rigidbody_8 = value;
}
inline static int32_t get_offset_of_m_OtherRigidbody_9() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_OtherRigidbody_9)); }
inline int32_t get_m_OtherRigidbody_9() const { return ___m_OtherRigidbody_9; }
inline int32_t* get_address_of_m_OtherRigidbody_9() { return &___m_OtherRigidbody_9; }
inline void set_m_OtherRigidbody_9(int32_t value)
{
___m_OtherRigidbody_9 = value;
}
inline static int32_t get_offset_of_m_Enabled_10() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Enabled_10)); }
inline int32_t get_m_Enabled_10() const { return ___m_Enabled_10; }
inline int32_t* get_address_of_m_Enabled_10() { return &___m_Enabled_10; }
inline void set_m_Enabled_10(int32_t value)
{
___m_Enabled_10 = value;
}
};
// UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91
{
public:
// UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
// System.Single UnityEngine.EventSystems.RaycastResult::distance
float ___distance_2;
// System.Single UnityEngine.EventSystems.RaycastResult::index
float ___index_3;
// System.Int32 UnityEngine.EventSystems.RaycastResult::depth
int32_t ___depth_4;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingLayer
int32_t ___sortingLayer_5;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingOrder
int32_t ___sortingOrder_6;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldPosition
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
// UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
public:
inline static int32_t get_offset_of_m_GameObject_0() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___m_GameObject_0)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_GameObject_0() const { return ___m_GameObject_0; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_GameObject_0() { return &___m_GameObject_0; }
inline void set_m_GameObject_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_GameObject_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_GameObject_0), (void*)value);
}
inline static int32_t get_offset_of_module_1() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___module_1)); }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * get_module_1() const { return ___module_1; }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 ** get_address_of_module_1() { return &___module_1; }
inline void set_module_1(BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * value)
{
___module_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___module_1), (void*)value);
}
inline static int32_t get_offset_of_distance_2() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___distance_2)); }
inline float get_distance_2() const { return ___distance_2; }
inline float* get_address_of_distance_2() { return &___distance_2; }
inline void set_distance_2(float value)
{
___distance_2 = value;
}
inline static int32_t get_offset_of_index_3() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___index_3)); }
inline float get_index_3() const { return ___index_3; }
inline float* get_address_of_index_3() { return &___index_3; }
inline void set_index_3(float value)
{
___index_3 = value;
}
inline static int32_t get_offset_of_depth_4() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___depth_4)); }
inline int32_t get_depth_4() const { return ___depth_4; }
inline int32_t* get_address_of_depth_4() { return &___depth_4; }
inline void set_depth_4(int32_t value)
{
___depth_4 = value;
}
inline static int32_t get_offset_of_sortingLayer_5() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingLayer_5)); }
inline int32_t get_sortingLayer_5() const { return ___sortingLayer_5; }
inline int32_t* get_address_of_sortingLayer_5() { return &___sortingLayer_5; }
inline void set_sortingLayer_5(int32_t value)
{
___sortingLayer_5 = value;
}
inline static int32_t get_offset_of_sortingOrder_6() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingOrder_6)); }
inline int32_t get_sortingOrder_6() const { return ___sortingOrder_6; }
inline int32_t* get_address_of_sortingOrder_6() { return &___sortingOrder_6; }
inline void set_sortingOrder_6(int32_t value)
{
___sortingOrder_6 = value;
}
inline static int32_t get_offset_of_worldPosition_7() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldPosition_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldPosition_7() const { return ___worldPosition_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldPosition_7() { return &___worldPosition_7; }
inline void set_worldPosition_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___worldPosition_7 = value;
}
inline static int32_t get_offset_of_worldNormal_8() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldNormal_8)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldNormal_8() const { return ___worldNormal_8; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldNormal_8() { return &___worldNormal_8; }
inline void set_worldNormal_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___worldNormal_8 = value;
}
inline static int32_t get_offset_of_screenPosition_9() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___screenPosition_9)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_screenPosition_9() const { return ___screenPosition_9; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_screenPosition_9() { return &___screenPosition_9; }
inline void set_screenPosition_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___screenPosition_9 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_pinvoke
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
};
// Native definition for COM marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_com
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
};
// UnityEngine.Experimental.GlobalIllumination.FalloffType
struct FalloffType_t7875E80627449B25D89C044D11A2BA22AB4996E9
{
public:
// System.Byte UnityEngine.Experimental.GlobalIllumination.FalloffType::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FalloffType_t7875E80627449B25D89C044D11A2BA22AB4996E9, ___value___2)); }
inline uint8_t get_value___2() const { return ___value___2; }
inline uint8_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint8_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.GlobalIllumination.LightMode
struct LightMode_t2EFF26B7FB14FB7D2ACF550C591375B5A95A854A
{
public:
// System.Byte UnityEngine.Experimental.GlobalIllumination.LightMode::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LightMode_t2EFF26B7FB14FB7D2ACF550C591375B5A95A854A, ___value___2)); }
inline uint8_t get_value___2() const { return ___value___2; }
inline uint8_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint8_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.GlobalIllumination.LightType
struct LightType_t684FE1E4FB26D1A27EFCDB36446F55984C414E88
{
public:
// System.Byte UnityEngine.Experimental.GlobalIllumination.LightType::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LightType_t684FE1E4FB26D1A27EFCDB36446F55984C414E88, ___value___2)); }
inline uint8_t get_value___2() const { return ___value___2; }
inline uint8_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint8_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D
{
public:
// System.Type UnityEngine.Experimental.LowLevel.PlayerLoopSystem::type
Type_t * ___type_0;
// UnityEngine.Experimental.LowLevel.PlayerLoopSystem[] UnityEngine.Experimental.LowLevel.PlayerLoopSystem::subSystemList
PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2* ___subSystemList_1;
// UnityEngine.Experimental.LowLevel.PlayerLoopSystem_UpdateFunction UnityEngine.Experimental.LowLevel.PlayerLoopSystem::updateDelegate
UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8 * ___updateDelegate_2;
// System.IntPtr UnityEngine.Experimental.LowLevel.PlayerLoopSystem::updateFunction
intptr_t ___updateFunction_3;
// System.IntPtr UnityEngine.Experimental.LowLevel.PlayerLoopSystem::loopConditionFunction
intptr_t ___loopConditionFunction_4;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___type_0)); }
inline Type_t * get_type_0() const { return ___type_0; }
inline Type_t ** get_address_of_type_0() { return &___type_0; }
inline void set_type_0(Type_t * value)
{
___type_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_0), (void*)value);
}
inline static int32_t get_offset_of_subSystemList_1() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___subSystemList_1)); }
inline PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2* get_subSystemList_1() const { return ___subSystemList_1; }
inline PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2** get_address_of_subSystemList_1() { return &___subSystemList_1; }
inline void set_subSystemList_1(PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2* value)
{
___subSystemList_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___subSystemList_1), (void*)value);
}
inline static int32_t get_offset_of_updateDelegate_2() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___updateDelegate_2)); }
inline UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8 * get_updateDelegate_2() const { return ___updateDelegate_2; }
inline UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8 ** get_address_of_updateDelegate_2() { return &___updateDelegate_2; }
inline void set_updateDelegate_2(UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8 * value)
{
___updateDelegate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___updateDelegate_2), (void*)value);
}
inline static int32_t get_offset_of_updateFunction_3() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___updateFunction_3)); }
inline intptr_t get_updateFunction_3() const { return ___updateFunction_3; }
inline intptr_t* get_address_of_updateFunction_3() { return &___updateFunction_3; }
inline void set_updateFunction_3(intptr_t value)
{
___updateFunction_3 = value;
}
inline static int32_t get_offset_of_loopConditionFunction_4() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___loopConditionFunction_4)); }
inline intptr_t get_loopConditionFunction_4() const { return ___loopConditionFunction_4; }
inline intptr_t* get_address_of_loopConditionFunction_4() { return &___loopConditionFunction_4; }
inline void set_loopConditionFunction_4(intptr_t value)
{
___loopConditionFunction_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_pinvoke
{
Type_t * ___type_0;
PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_pinvoke* ___subSystemList_1;
Il2CppMethodPointer ___updateDelegate_2;
intptr_t ___updateFunction_3;
intptr_t ___loopConditionFunction_4;
};
// Native definition for COM marshalling of UnityEngine.Experimental.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_com
{
Type_t * ___type_0;
PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_com* ___subSystemList_1;
Il2CppMethodPointer ___updateDelegate_2;
intptr_t ___updateFunction_3;
intptr_t ___loopConditionFunction_4;
};
// UnityEngine.Networking.ClientScene_PendingOwner
struct PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369
{
public:
// UnityEngine.Networking.NetworkInstanceId UnityEngine.Networking.ClientScene_PendingOwner::netId
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___netId_0;
// System.Int16 UnityEngine.Networking.ClientScene_PendingOwner::playerControllerId
int16_t ___playerControllerId_1;
public:
inline static int32_t get_offset_of_netId_0() { return static_cast<int32_t>(offsetof(PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369, ___netId_0)); }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 get_netId_0() const { return ___netId_0; }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 * get_address_of_netId_0() { return &___netId_0; }
inline void set_netId_0(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 value)
{
___netId_0 = value;
}
inline static int32_t get_offset_of_playerControllerId_1() { return static_cast<int32_t>(offsetof(PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369, ___playerControllerId_1)); }
inline int16_t get_playerControllerId_1() const { return ___playerControllerId_1; }
inline int16_t* get_address_of_playerControllerId_1() { return &___playerControllerId_1; }
inline void set_playerControllerId_1(int16_t value)
{
___playerControllerId_1 = value;
}
};
// UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo
struct PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC
{
public:
// UnityEngine.Networking.NetworkInstanceId UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo::netId
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___netId_0;
// System.Int16 UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo::playerControllerId
int16_t ___playerControllerId_1;
// UnityEngine.GameObject UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo::obj
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___obj_2;
public:
inline static int32_t get_offset_of_netId_0() { return static_cast<int32_t>(offsetof(PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC, ___netId_0)); }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 get_netId_0() const { return ___netId_0; }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 * get_address_of_netId_0() { return &___netId_0; }
inline void set_netId_0(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 value)
{
___netId_0 = value;
}
inline static int32_t get_offset_of_playerControllerId_1() { return static_cast<int32_t>(offsetof(PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC, ___playerControllerId_1)); }
inline int16_t get_playerControllerId_1() const { return ___playerControllerId_1; }
inline int16_t* get_address_of_playerControllerId_1() { return &___playerControllerId_1; }
inline void set_playerControllerId_1(int16_t value)
{
___playerControllerId_1 = value;
}
inline static int32_t get_offset_of_obj_2() { return static_cast<int32_t>(offsetof(PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC, ___obj_2)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_obj_2() const { return ___obj_2; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_obj_2() { return &___obj_2; }
inline void set_obj_2(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___obj_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___obj_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.NetworkMigrationManager/PendingPlayerInfo
struct PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC_marshaled_pinvoke
{
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___netId_0;
int16_t ___playerControllerId_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___obj_2;
};
// Native definition for COM marshalling of UnityEngine.Networking.NetworkMigrationManager/PendingPlayerInfo
struct PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC_marshaled_com
{
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___netId_0;
int16_t ___playerControllerId_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___obj_2;
};
// UnityEngine.Networking.NetworkSystem.PeerInfoPlayer
struct PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B
{
public:
// UnityEngine.Networking.NetworkInstanceId UnityEngine.Networking.NetworkSystem.PeerInfoPlayer::netId
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 ___netId_0;
// System.Int16 UnityEngine.Networking.NetworkSystem.PeerInfoPlayer::playerControllerId
int16_t ___playerControllerId_1;
public:
inline static int32_t get_offset_of_netId_0() { return static_cast<int32_t>(offsetof(PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B, ___netId_0)); }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 get_netId_0() const { return ___netId_0; }
inline NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 * get_address_of_netId_0() { return &___netId_0; }
inline void set_netId_0(NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 value)
{
___netId_0 = value;
}
inline static int32_t get_offset_of_playerControllerId_1() { return static_cast<int32_t>(offsetof(PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B, ___playerControllerId_1)); }
inline int16_t get_playerControllerId_1() const { return ___playerControllerId_1; }
inline int16_t* get_address_of_playerControllerId_1() { return &___playerControllerId_1; }
inline void set_playerControllerId_1(int16_t value)
{
___playerControllerId_1 = value;
}
};
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.Plane
struct Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED
{
public:
// UnityEngine.Vector3 UnityEngine.Plane::m_Normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_0;
// System.Single UnityEngine.Plane::m_Distance
float ___m_Distance_1;
public:
inline static int32_t get_offset_of_m_Normal_0() { return static_cast<int32_t>(offsetof(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED, ___m_Normal_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_0() const { return ___m_Normal_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_0() { return &___m_Normal_0; }
inline void set_m_Normal_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Normal_0 = value;
}
inline static int32_t get_offset_of_m_Distance_1() { return static_cast<int32_t>(offsetof(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED, ___m_Distance_1)); }
inline float get_m_Distance_1() const { return ___m_Distance_1; }
inline float* get_address_of_m_Distance_1() { return &___m_Distance_1; }
inline void set_m_Distance_1(float value)
{
___m_Distance_1 = value;
}
};
// UnityEngine.RaycastHit
struct RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3
{
public:
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Point
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Point_0;
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_1;
// System.UInt32 UnityEngine.RaycastHit::m_FaceID
uint32_t ___m_FaceID_2;
// System.Single UnityEngine.RaycastHit::m_Distance
float ___m_Distance_3;
// UnityEngine.Vector2 UnityEngine.RaycastHit::m_UV
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_UV_4;
// System.Int32 UnityEngine.RaycastHit::m_Collider
int32_t ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Point_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Point_0() const { return ___m_Point_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Normal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_FaceID_2() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_FaceID_2)); }
inline uint32_t get_m_FaceID_2() const { return ___m_FaceID_2; }
inline uint32_t* get_address_of_m_FaceID_2() { return &___m_FaceID_2; }
inline void set_m_FaceID_2(uint32_t value)
{
___m_FaceID_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_UV_4() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_UV_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_UV_4() const { return ___m_UV_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_UV_4() { return &___m_UV_4; }
inline void set_m_UV_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_UV_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Collider_5)); }
inline int32_t get_m_Collider_5() const { return ___m_Collider_5; }
inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(int32_t value)
{
___m_Collider_5 = value;
}
};
// UnityEngine.RaycastHit2D
struct RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE
{
public:
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Centroid
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Centroid_0;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Point
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Point_1;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Normal
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Normal_2;
// System.Single UnityEngine.RaycastHit2D::m_Distance
float ___m_Distance_3;
// System.Single UnityEngine.RaycastHit2D::m_Fraction
float ___m_Fraction_4;
// System.Int32 UnityEngine.RaycastHit2D::m_Collider
int32_t ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Centroid_0() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Centroid_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Centroid_0() const { return ___m_Centroid_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Centroid_0() { return &___m_Centroid_0; }
inline void set_m_Centroid_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Centroid_0 = value;
}
inline static int32_t get_offset_of_m_Point_1() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Point_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Point_1() const { return ___m_Point_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Point_1() { return &___m_Point_1; }
inline void set_m_Point_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Point_1 = value;
}
inline static int32_t get_offset_of_m_Normal_2() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Normal_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Normal_2() const { return ___m_Normal_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Normal_2() { return &___m_Normal_2; }
inline void set_m_Normal_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Normal_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_Fraction_4() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Fraction_4)); }
inline float get_m_Fraction_4() const { return ___m_Fraction_4; }
inline float* get_address_of_m_Fraction_4() { return &___m_Fraction_4; }
inline void set_m_Fraction_4(float value)
{
___m_Fraction_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Collider_5)); }
inline int32_t get_m_Collider_5() const { return ___m_Collider_5; }
inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(int32_t value)
{
___m_Collider_5 = value;
}
};
// UnityEngine.TouchPhase
struct TouchPhase_t7E9CEC3DD059E32F847242513BD6CE30866AB2A6
{
public:
// System.Int32 UnityEngine.TouchPhase::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TouchPhase_t7E9CEC3DD059E32F847242513BD6CE30866AB2A6, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.TouchType
struct TouchType_tBBD83025576FC017B10484014B5C396613A02B8E
{
public:
// System.Int32 UnityEngine.TouchType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TouchType_tBBD83025576FC017B10484014B5C396613A02B8E, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.ColorBlock
struct ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA
{
public:
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_NormalColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_NormalColor_0;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_HighlightedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_HighlightedColor_1;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_PressedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_PressedColor_2;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_SelectedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_SelectedColor_3;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_DisabledColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_DisabledColor_4;
// System.Single UnityEngine.UI.ColorBlock::m_ColorMultiplier
float ___m_ColorMultiplier_5;
// System.Single UnityEngine.UI.ColorBlock::m_FadeDuration
float ___m_FadeDuration_6;
public:
inline static int32_t get_offset_of_m_NormalColor_0() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_NormalColor_0)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_NormalColor_0() const { return ___m_NormalColor_0; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_NormalColor_0() { return &___m_NormalColor_0; }
inline void set_m_NormalColor_0(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_NormalColor_0 = value;
}
inline static int32_t get_offset_of_m_HighlightedColor_1() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_HighlightedColor_1)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_HighlightedColor_1() const { return ___m_HighlightedColor_1; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_HighlightedColor_1() { return &___m_HighlightedColor_1; }
inline void set_m_HighlightedColor_1(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_HighlightedColor_1 = value;
}
inline static int32_t get_offset_of_m_PressedColor_2() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_PressedColor_2)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_PressedColor_2() const { return ___m_PressedColor_2; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_PressedColor_2() { return &___m_PressedColor_2; }
inline void set_m_PressedColor_2(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_PressedColor_2 = value;
}
inline static int32_t get_offset_of_m_SelectedColor_3() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_SelectedColor_3)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_SelectedColor_3() const { return ___m_SelectedColor_3; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_SelectedColor_3() { return &___m_SelectedColor_3; }
inline void set_m_SelectedColor_3(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_SelectedColor_3 = value;
}
inline static int32_t get_offset_of_m_DisabledColor_4() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_DisabledColor_4)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_DisabledColor_4() const { return ___m_DisabledColor_4; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_DisabledColor_4() { return &___m_DisabledColor_4; }
inline void set_m_DisabledColor_4(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_DisabledColor_4 = value;
}
inline static int32_t get_offset_of_m_ColorMultiplier_5() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_ColorMultiplier_5)); }
inline float get_m_ColorMultiplier_5() const { return ___m_ColorMultiplier_5; }
inline float* get_address_of_m_ColorMultiplier_5() { return &___m_ColorMultiplier_5; }
inline void set_m_ColorMultiplier_5(float value)
{
___m_ColorMultiplier_5 = value;
}
inline static int32_t get_offset_of_m_FadeDuration_6() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_FadeDuration_6)); }
inline float get_m_FadeDuration_6() const { return ___m_FadeDuration_6; }
inline float* get_address_of_m_FadeDuration_6() { return &___m_FadeDuration_6; }
inline void set_m_FadeDuration_6(float value)
{
___m_FadeDuration_6 = value;
}
};
// UnityEngine.UI.Navigation_Mode
struct Mode_t93F92BD50B147AE38D82BA33FA77FD247A59FE26
{
public:
// System.Int32 UnityEngine.UI.Navigation_Mode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Mode_t93F92BD50B147AE38D82BA33FA77FD247A59FE26, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UICharInfo
struct UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A
{
public:
// UnityEngine.Vector2 UnityEngine.UICharInfo::cursorPos
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___cursorPos_0;
// System.Single UnityEngine.UICharInfo::charWidth
float ___charWidth_1;
public:
inline static int32_t get_offset_of_cursorPos_0() { return static_cast<int32_t>(offsetof(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, ___cursorPos_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_cursorPos_0() const { return ___cursorPos_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_cursorPos_0() { return &___cursorPos_0; }
inline void set_cursorPos_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___cursorPos_0 = value;
}
inline static int32_t get_offset_of_charWidth_1() { return static_cast<int32_t>(offsetof(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, ___charWidth_1)); }
inline float get_charWidth_1() const { return ___charWidth_1; }
inline float* get_address_of_charWidth_1() { return &___charWidth_1; }
inline void set_charWidth_1(float value)
{
___charWidth_1 = value;
}
};
// UnityEngine.UIVertex
struct UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577
{
public:
// UnityEngine.Vector3 UnityEngine.UIVertex::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_0;
// UnityEngine.Vector3 UnityEngine.UIVertex::normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___normal_1;
// UnityEngine.Vector4 UnityEngine.UIVertex::tangent
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___tangent_2;
// UnityEngine.Color32 UnityEngine.UIVertex::color
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_3;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv0
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv0_4;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv1
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv1_5;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv2
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv2_6;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv3
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv3_7;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___position_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_0() const { return ___position_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_normal_1() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___normal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_normal_1() const { return ___normal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_normal_1() { return &___normal_1; }
inline void set_normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___normal_1 = value;
}
inline static int32_t get_offset_of_tangent_2() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___tangent_2)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_tangent_2() const { return ___tangent_2; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_tangent_2() { return &___tangent_2; }
inline void set_tangent_2(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___tangent_2 = value;
}
inline static int32_t get_offset_of_color_3() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___color_3)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_color_3() const { return ___color_3; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_color_3() { return &___color_3; }
inline void set_color_3(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___color_3 = value;
}
inline static int32_t get_offset_of_uv0_4() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv0_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv0_4() const { return ___uv0_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv0_4() { return &___uv0_4; }
inline void set_uv0_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv0_4 = value;
}
inline static int32_t get_offset_of_uv1_5() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv1_5)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv1_5() const { return ___uv1_5; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv1_5() { return &___uv1_5; }
inline void set_uv1_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv1_5 = value;
}
inline static int32_t get_offset_of_uv2_6() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv2_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv2_6() const { return ___uv2_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv2_6() { return &___uv2_6; }
inline void set_uv2_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv2_6 = value;
}
inline static int32_t get_offset_of_uv3_7() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv3_7)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv3_7() const { return ___uv3_7; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv3_7() { return &___uv3_7; }
inline void set_uv3_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv3_7 = value;
}
};
struct UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields
{
public:
// UnityEngine.Color32 UnityEngine.UIVertex::s_DefaultColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___s_DefaultColor_8;
// UnityEngine.Vector4 UnityEngine.UIVertex::s_DefaultTangent
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___s_DefaultTangent_9;
// UnityEngine.UIVertex UnityEngine.UIVertex::simpleVert
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___simpleVert_10;
public:
inline static int32_t get_offset_of_s_DefaultColor_8() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___s_DefaultColor_8)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_s_DefaultColor_8() const { return ___s_DefaultColor_8; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_s_DefaultColor_8() { return &___s_DefaultColor_8; }
inline void set_s_DefaultColor_8(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___s_DefaultColor_8 = value;
}
inline static int32_t get_offset_of_s_DefaultTangent_9() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___s_DefaultTangent_9)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_s_DefaultTangent_9() const { return ___s_DefaultTangent_9; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_s_DefaultTangent_9() { return &___s_DefaultTangent_9; }
inline void set_s_DefaultTangent_9(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___s_DefaultTangent_9 = value;
}
inline static int32_t get_offset_of_simpleVert_10() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___simpleVert_10)); }
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 get_simpleVert_10() const { return ___simpleVert_10; }
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 * get_address_of_simpleVert_10() { return &___simpleVert_10; }
inline void set_simpleVert_10(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 value)
{
___simpleVert_10 = value;
}
};
// UnityEngine.jvalue
struct jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Boolean UnityEngine.jvalue::z
bool ___z_0;
};
#pragma pack(pop, tp)
struct
{
bool ___z_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.SByte UnityEngine.jvalue::b
int8_t ___b_1;
};
#pragma pack(pop, tp)
struct
{
int8_t ___b_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Char UnityEngine.jvalue::c
Il2CppChar ___c_2;
};
#pragma pack(pop, tp)
struct
{
Il2CppChar ___c_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int16 UnityEngine.jvalue::s
int16_t ___s_3;
};
#pragma pack(pop, tp)
struct
{
int16_t ___s_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.jvalue::i
int32_t ___i_4;
};
#pragma pack(pop, tp)
struct
{
int32_t ___i_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int64 UnityEngine.jvalue::j
int64_t ___j_5;
};
#pragma pack(pop, tp)
struct
{
int64_t ___j_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Single UnityEngine.jvalue::f
float ___f_6;
};
#pragma pack(pop, tp)
struct
{
float ___f_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Double UnityEngine.jvalue::d
double ___d_7;
};
#pragma pack(pop, tp)
struct
{
double ___d_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.IntPtr UnityEngine.jvalue::l
intptr_t ___l_8;
};
#pragma pack(pop, tp)
struct
{
intptr_t ___l_8_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_z_0() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___z_0)); }
inline bool get_z_0() const { return ___z_0; }
inline bool* get_address_of_z_0() { return &___z_0; }
inline void set_z_0(bool value)
{
___z_0 = value;
}
inline static int32_t get_offset_of_b_1() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___b_1)); }
inline int8_t get_b_1() const { return ___b_1; }
inline int8_t* get_address_of_b_1() { return &___b_1; }
inline void set_b_1(int8_t value)
{
___b_1 = value;
}
inline static int32_t get_offset_of_c_2() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___c_2)); }
inline Il2CppChar get_c_2() const { return ___c_2; }
inline Il2CppChar* get_address_of_c_2() { return &___c_2; }
inline void set_c_2(Il2CppChar value)
{
___c_2 = value;
}
inline static int32_t get_offset_of_s_3() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___s_3)); }
inline int16_t get_s_3() const { return ___s_3; }
inline int16_t* get_address_of_s_3() { return &___s_3; }
inline void set_s_3(int16_t value)
{
___s_3 = value;
}
inline static int32_t get_offset_of_i_4() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___i_4)); }
inline int32_t get_i_4() const { return ___i_4; }
inline int32_t* get_address_of_i_4() { return &___i_4; }
inline void set_i_4(int32_t value)
{
___i_4 = value;
}
inline static int32_t get_offset_of_j_5() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___j_5)); }
inline int64_t get_j_5() const { return ___j_5; }
inline int64_t* get_address_of_j_5() { return &___j_5; }
inline void set_j_5(int64_t value)
{
___j_5 = value;
}
inline static int32_t get_offset_of_f_6() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___f_6)); }
inline float get_f_6() const { return ___f_6; }
inline float* get_address_of_f_6() { return &___f_6; }
inline void set_f_6(float value)
{
___f_6 = value;
}
inline static int32_t get_offset_of_d_7() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___d_7)); }
inline double get_d_7() const { return ___d_7; }
inline double* get_address_of_d_7() { return &___d_7; }
inline void set_d_7(double value)
{
___d_7 = value;
}
inline static int32_t get_offset_of_l_8() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___l_8)); }
inline intptr_t get_l_8() const { return ___l_8; }
inline intptr_t* get_address_of_l_8() { return &___l_8; }
inline void set_l_8(intptr_t value)
{
___l_8 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.jvalue
struct jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37_marshaled_pinvoke
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___z_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___z_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int8_t ___b_1;
};
#pragma pack(pop, tp)
struct
{
int8_t ___b_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
uint8_t ___c_2;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___c_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int16_t ___s_3;
};
#pragma pack(pop, tp)
struct
{
int16_t ___s_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int32_t ___i_4;
};
#pragma pack(pop, tp)
struct
{
int32_t ___i_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int64_t ___j_5;
};
#pragma pack(pop, tp)
struct
{
int64_t ___j_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
float ___f_6;
};
#pragma pack(pop, tp)
struct
{
float ___f_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
double ___d_7;
};
#pragma pack(pop, tp)
struct
{
double ___d_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
intptr_t ___l_8;
};
#pragma pack(pop, tp)
struct
{
intptr_t ___l_8_forAlignmentOnly;
};
};
};
// Native definition for COM marshalling of UnityEngine.jvalue
struct jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37_marshaled_com
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___z_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___z_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int8_t ___b_1;
};
#pragma pack(pop, tp)
struct
{
int8_t ___b_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
uint8_t ___c_2;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___c_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int16_t ___s_3;
};
#pragma pack(pop, tp)
struct
{
int16_t ___s_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int32_t ___i_4;
};
#pragma pack(pop, tp)
struct
{
int32_t ___i_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int64_t ___j_5;
};
#pragma pack(pop, tp)
struct
{
int64_t ___j_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
float ___f_6;
};
#pragma pack(pop, tp)
struct
{
float ___f_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
double ___d_7;
};
#pragma pack(pop, tp)
struct
{
double ___d_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
intptr_t ___l_8;
};
#pragma pack(pop, tp)
struct
{
intptr_t ___l_8_forAlignmentOnly;
};
};
};
// Facebook.Unity.Mobile.MobileFacebook
struct MobileFacebook_tD9B3B6E5194C10C72B42D0426C6D53E7D36B5D0F : public FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524
{
public:
// Facebook.Unity.ShareDialogMode Facebook.Unity.Mobile.MobileFacebook::shareDialogMode
int32_t ___shareDialogMode_3;
public:
inline static int32_t get_offset_of_shareDialogMode_3() { return static_cast<int32_t>(offsetof(MobileFacebook_tD9B3B6E5194C10C72B42D0426C6D53E7D36B5D0F, ___shareDialogMode_3)); }
inline int32_t get_shareDialogMode_3() const { return ___shareDialogMode_3; }
inline int32_t* get_address_of_shareDialogMode_3() { return &___shareDialogMode_3; }
inline void set_shareDialogMode_3(int32_t value)
{
___shareDialogMode_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>
struct Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
int32_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0, ___value_3)); }
inline int32_t get_value_3() const { return ___value_3; }
inline int32_t* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(int32_t value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>
struct Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
uint64_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91, ___key_2)); }
inline uint64_t get_key_2() const { return ___key_2; }
inline uint64_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(uint64_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>
struct KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt64Enum,System.Object>
struct KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint64_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA, ___key_0)); }
inline uint64_t get_key_0() const { return ___key_0; }
inline uint64_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(uint64_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Diagnostics.Tracing.EventSource_EventMetadata
struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B
{
public:
// System.Diagnostics.Tracing.EventDescriptor System.Diagnostics.Tracing.EventSource_EventMetadata::Descriptor
EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0;
// System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.EventSource_EventMetadata::Tags
int32_t ___Tags_1;
// System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::EnabledForAnyListener
bool ___EnabledForAnyListener_2;
// System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::EnabledForETW
bool ___EnabledForETW_3;
// System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::HasRelatedActivityID
bool ___HasRelatedActivityID_4;
// System.Byte System.Diagnostics.Tracing.EventSource_EventMetadata::TriggersActivityTracking
uint8_t ___TriggersActivityTracking_5;
// System.String System.Diagnostics.Tracing.EventSource_EventMetadata::Name
String_t* ___Name_6;
// System.String System.Diagnostics.Tracing.EventSource_EventMetadata::Message
String_t* ___Message_7;
// System.Reflection.ParameterInfo[] System.Diagnostics.Tracing.EventSource_EventMetadata::Parameters
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* ___Parameters_8;
// System.Diagnostics.Tracing.TraceLoggingEventTypes System.Diagnostics.Tracing.EventSource_EventMetadata::TraceLoggingEventTypes
TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9;
// System.Diagnostics.Tracing.EventActivityOptions System.Diagnostics.Tracing.EventSource_EventMetadata::ActivityOptions
int32_t ___ActivityOptions_10;
public:
inline static int32_t get_offset_of_Descriptor_0() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Descriptor_0)); }
inline EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E get_Descriptor_0() const { return ___Descriptor_0; }
inline EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E * get_address_of_Descriptor_0() { return &___Descriptor_0; }
inline void set_Descriptor_0(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E value)
{
___Descriptor_0 = value;
}
inline static int32_t get_offset_of_Tags_1() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Tags_1)); }
inline int32_t get_Tags_1() const { return ___Tags_1; }
inline int32_t* get_address_of_Tags_1() { return &___Tags_1; }
inline void set_Tags_1(int32_t value)
{
___Tags_1 = value;
}
inline static int32_t get_offset_of_EnabledForAnyListener_2() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___EnabledForAnyListener_2)); }
inline bool get_EnabledForAnyListener_2() const { return ___EnabledForAnyListener_2; }
inline bool* get_address_of_EnabledForAnyListener_2() { return &___EnabledForAnyListener_2; }
inline void set_EnabledForAnyListener_2(bool value)
{
___EnabledForAnyListener_2 = value;
}
inline static int32_t get_offset_of_EnabledForETW_3() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___EnabledForETW_3)); }
inline bool get_EnabledForETW_3() const { return ___EnabledForETW_3; }
inline bool* get_address_of_EnabledForETW_3() { return &___EnabledForETW_3; }
inline void set_EnabledForETW_3(bool value)
{
___EnabledForETW_3 = value;
}
inline static int32_t get_offset_of_HasRelatedActivityID_4() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___HasRelatedActivityID_4)); }
inline bool get_HasRelatedActivityID_4() const { return ___HasRelatedActivityID_4; }
inline bool* get_address_of_HasRelatedActivityID_4() { return &___HasRelatedActivityID_4; }
inline void set_HasRelatedActivityID_4(bool value)
{
___HasRelatedActivityID_4 = value;
}
inline static int32_t get_offset_of_TriggersActivityTracking_5() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___TriggersActivityTracking_5)); }
inline uint8_t get_TriggersActivityTracking_5() const { return ___TriggersActivityTracking_5; }
inline uint8_t* get_address_of_TriggersActivityTracking_5() { return &___TriggersActivityTracking_5; }
inline void set_TriggersActivityTracking_5(uint8_t value)
{
___TriggersActivityTracking_5 = value;
}
inline static int32_t get_offset_of_Name_6() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Name_6)); }
inline String_t* get_Name_6() const { return ___Name_6; }
inline String_t** get_address_of_Name_6() { return &___Name_6; }
inline void set_Name_6(String_t* value)
{
___Name_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Name_6), (void*)value);
}
inline static int32_t get_offset_of_Message_7() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Message_7)); }
inline String_t* get_Message_7() const { return ___Message_7; }
inline String_t** get_address_of_Message_7() { return &___Message_7; }
inline void set_Message_7(String_t* value)
{
___Message_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Message_7), (void*)value);
}
inline static int32_t get_offset_of_Parameters_8() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Parameters_8)); }
inline ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* get_Parameters_8() const { return ___Parameters_8; }
inline ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694** get_address_of_Parameters_8() { return &___Parameters_8; }
inline void set_Parameters_8(ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* value)
{
___Parameters_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Parameters_8), (void*)value);
}
inline static int32_t get_offset_of_TraceLoggingEventTypes_9() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___TraceLoggingEventTypes_9)); }
inline TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * get_TraceLoggingEventTypes_9() const { return ___TraceLoggingEventTypes_9; }
inline TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 ** get_address_of_TraceLoggingEventTypes_9() { return &___TraceLoggingEventTypes_9; }
inline void set_TraceLoggingEventTypes_9(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * value)
{
___TraceLoggingEventTypes_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TraceLoggingEventTypes_9), (void*)value);
}
inline static int32_t get_offset_of_ActivityOptions_10() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___ActivityOptions_10)); }
inline int32_t get_ActivityOptions_10() const { return ___ActivityOptions_10; }
inline int32_t* get_address_of_ActivityOptions_10() { return &___ActivityOptions_10; }
inline void set_ActivityOptions_10(int32_t value)
{
___ActivityOptions_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Diagnostics.Tracing.EventSource/EventMetadata
struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_pinvoke
{
EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0;
int32_t ___Tags_1;
int32_t ___EnabledForAnyListener_2;
int32_t ___EnabledForETW_3;
int32_t ___HasRelatedActivityID_4;
uint8_t ___TriggersActivityTracking_5;
char* ___Name_6;
char* ___Message_7;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke** ___Parameters_8;
TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9;
int32_t ___ActivityOptions_10;
};
// Native definition for COM marshalling of System.Diagnostics.Tracing.EventSource/EventMetadata
struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_com
{
EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0;
int32_t ___Tags_1;
int32_t ___EnabledForAnyListener_2;
int32_t ___EnabledForETW_3;
int32_t ___HasRelatedActivityID_4;
uint8_t ___TriggersActivityTracking_5;
Il2CppChar* ___Name_6;
Il2CppChar* ___Message_7;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com** ___Parameters_8;
TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9;
int32_t ___ActivityOptions_10;
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
{
public:
public:
};
// UnityEngine.Experimental.GlobalIllumination.LightDataGI
struct LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2
{
public:
// System.Int32 UnityEngine.Experimental.GlobalIllumination.LightDataGI::instanceID
int32_t ___instanceID_0;
// UnityEngine.Experimental.GlobalIllumination.LinearColor UnityEngine.Experimental.GlobalIllumination.LightDataGI::color
LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD ___color_1;
// UnityEngine.Experimental.GlobalIllumination.LinearColor UnityEngine.Experimental.GlobalIllumination.LightDataGI::indirectColor
LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD ___indirectColor_2;
// UnityEngine.Quaternion UnityEngine.Experimental.GlobalIllumination.LightDataGI::orientation
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___orientation_3;
// UnityEngine.Vector3 UnityEngine.Experimental.GlobalIllumination.LightDataGI::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_4;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::range
float ___range_5;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::coneAngle
float ___coneAngle_6;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::innerConeAngle
float ___innerConeAngle_7;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::shape0
float ___shape0_8;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::shape1
float ___shape1_9;
// UnityEngine.Experimental.GlobalIllumination.LightType UnityEngine.Experimental.GlobalIllumination.LightDataGI::type
uint8_t ___type_10;
// UnityEngine.Experimental.GlobalIllumination.LightMode UnityEngine.Experimental.GlobalIllumination.LightDataGI::mode
uint8_t ___mode_11;
// System.Byte UnityEngine.Experimental.GlobalIllumination.LightDataGI::shadow
uint8_t ___shadow_12;
// UnityEngine.Experimental.GlobalIllumination.FalloffType UnityEngine.Experimental.GlobalIllumination.LightDataGI::falloff
uint8_t ___falloff_13;
public:
inline static int32_t get_offset_of_instanceID_0() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___instanceID_0)); }
inline int32_t get_instanceID_0() const { return ___instanceID_0; }
inline int32_t* get_address_of_instanceID_0() { return &___instanceID_0; }
inline void set_instanceID_0(int32_t value)
{
___instanceID_0 = value;
}
inline static int32_t get_offset_of_color_1() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___color_1)); }
inline LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD get_color_1() const { return ___color_1; }
inline LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD * get_address_of_color_1() { return &___color_1; }
inline void set_color_1(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD value)
{
___color_1 = value;
}
inline static int32_t get_offset_of_indirectColor_2() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___indirectColor_2)); }
inline LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD get_indirectColor_2() const { return ___indirectColor_2; }
inline LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD * get_address_of_indirectColor_2() { return &___indirectColor_2; }
inline void set_indirectColor_2(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD value)
{
___indirectColor_2 = value;
}
inline static int32_t get_offset_of_orientation_3() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___orientation_3)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_orientation_3() const { return ___orientation_3; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_orientation_3() { return &___orientation_3; }
inline void set_orientation_3(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___orientation_3 = value;
}
inline static int32_t get_offset_of_position_4() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___position_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_4() const { return ___position_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_4() { return &___position_4; }
inline void set_position_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___position_4 = value;
}
inline static int32_t get_offset_of_range_5() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___range_5)); }
inline float get_range_5() const { return ___range_5; }
inline float* get_address_of_range_5() { return &___range_5; }
inline void set_range_5(float value)
{
___range_5 = value;
}
inline static int32_t get_offset_of_coneAngle_6() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___coneAngle_6)); }
inline float get_coneAngle_6() const { return ___coneAngle_6; }
inline float* get_address_of_coneAngle_6() { return &___coneAngle_6; }
inline void set_coneAngle_6(float value)
{
___coneAngle_6 = value;
}
inline static int32_t get_offset_of_innerConeAngle_7() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___innerConeAngle_7)); }
inline float get_innerConeAngle_7() const { return ___innerConeAngle_7; }
inline float* get_address_of_innerConeAngle_7() { return &___innerConeAngle_7; }
inline void set_innerConeAngle_7(float value)
{
___innerConeAngle_7 = value;
}
inline static int32_t get_offset_of_shape0_8() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___shape0_8)); }
inline float get_shape0_8() const { return ___shape0_8; }
inline float* get_address_of_shape0_8() { return &___shape0_8; }
inline void set_shape0_8(float value)
{
___shape0_8 = value;
}
inline static int32_t get_offset_of_shape1_9() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___shape1_9)); }
inline float get_shape1_9() const { return ___shape1_9; }
inline float* get_address_of_shape1_9() { return &___shape1_9; }
inline void set_shape1_9(float value)
{
___shape1_9 = value;
}
inline static int32_t get_offset_of_type_10() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___type_10)); }
inline uint8_t get_type_10() const { return ___type_10; }
inline uint8_t* get_address_of_type_10() { return &___type_10; }
inline void set_type_10(uint8_t value)
{
___type_10 = value;
}
inline static int32_t get_offset_of_mode_11() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___mode_11)); }
inline uint8_t get_mode_11() const { return ___mode_11; }
inline uint8_t* get_address_of_mode_11() { return &___mode_11; }
inline void set_mode_11(uint8_t value)
{
___mode_11 = value;
}
inline static int32_t get_offset_of_shadow_12() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___shadow_12)); }
inline uint8_t get_shadow_12() const { return ___shadow_12; }
inline uint8_t* get_address_of_shadow_12() { return &___shadow_12; }
inline void set_shadow_12(uint8_t value)
{
___shadow_12 = value;
}
inline static int32_t get_offset_of_falloff_13() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___falloff_13)); }
inline uint8_t get_falloff_13() const { return ___falloff_13; }
inline uint8_t* get_address_of_falloff_13() { return &___falloff_13; }
inline void set_falloff_13(uint8_t value)
{
___falloff_13 = value;
}
};
// UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8
{
public:
// System.String UnityEngine.Playables.PlayableBinding::m_StreamName
String_t* ___m_StreamName_0;
// UnityEngine.Object UnityEngine.Playables.PlayableBinding::m_SourceObject
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___m_SourceObject_1;
// System.Type UnityEngine.Playables.PlayableBinding::m_SourceBindingType
Type_t * ___m_SourceBindingType_2;
// UnityEngine.Playables.PlayableBinding_CreateOutputMethod UnityEngine.Playables.PlayableBinding::m_CreateOutputMethod
CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * ___m_CreateOutputMethod_3;
public:
inline static int32_t get_offset_of_m_StreamName_0() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_StreamName_0)); }
inline String_t* get_m_StreamName_0() const { return ___m_StreamName_0; }
inline String_t** get_address_of_m_StreamName_0() { return &___m_StreamName_0; }
inline void set_m_StreamName_0(String_t* value)
{
___m_StreamName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_StreamName_0), (void*)value);
}
inline static int32_t get_offset_of_m_SourceObject_1() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_SourceObject_1)); }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * get_m_SourceObject_1() const { return ___m_SourceObject_1; }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** get_address_of_m_SourceObject_1() { return &___m_SourceObject_1; }
inline void set_m_SourceObject_1(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value)
{
___m_SourceObject_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SourceObject_1), (void*)value);
}
inline static int32_t get_offset_of_m_SourceBindingType_2() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_SourceBindingType_2)); }
inline Type_t * get_m_SourceBindingType_2() const { return ___m_SourceBindingType_2; }
inline Type_t ** get_address_of_m_SourceBindingType_2() { return &___m_SourceBindingType_2; }
inline void set_m_SourceBindingType_2(Type_t * value)
{
___m_SourceBindingType_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SourceBindingType_2), (void*)value);
}
inline static int32_t get_offset_of_m_CreateOutputMethod_3() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_CreateOutputMethod_3)); }
inline CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * get_m_CreateOutputMethod_3() const { return ___m_CreateOutputMethod_3; }
inline CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 ** get_address_of_m_CreateOutputMethod_3() { return &___m_CreateOutputMethod_3; }
inline void set_m_CreateOutputMethod_3(CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * value)
{
___m_CreateOutputMethod_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CreateOutputMethod_3), (void*)value);
}
};
struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields
{
public:
// UnityEngine.Playables.PlayableBinding[] UnityEngine.Playables.PlayableBinding::None
PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* ___None_4;
// System.Double UnityEngine.Playables.PlayableBinding::DefaultDuration
double ___DefaultDuration_5;
public:
inline static int32_t get_offset_of_None_4() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields, ___None_4)); }
inline PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* get_None_4() const { return ___None_4; }
inline PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB** get_address_of_None_4() { return &___None_4; }
inline void set_None_4(PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* value)
{
___None_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___None_4), (void*)value);
}
inline static int32_t get_offset_of_DefaultDuration_5() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields, ___DefaultDuration_5)); }
inline double get_DefaultDuration_5() const { return ___DefaultDuration_5; }
inline double* get_address_of_DefaultDuration_5() { return &___DefaultDuration_5; }
inline void set_DefaultDuration_5(double value)
{
___DefaultDuration_5 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_marshaled_pinvoke
{
char* ___m_StreamName_0;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke ___m_SourceObject_1;
Type_t * ___m_SourceBindingType_2;
Il2CppMethodPointer ___m_CreateOutputMethod_3;
};
// Native definition for COM marshalling of UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_marshaled_com
{
Il2CppChar* ___m_StreamName_0;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com* ___m_SourceObject_1;
Type_t * ___m_SourceBindingType_2;
Il2CppMethodPointer ___m_CreateOutputMethod_3;
};
// UnityEngine.Touch
struct Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8
{
public:
// System.Int32 UnityEngine.Touch::m_FingerId
int32_t ___m_FingerId_0;
// UnityEngine.Vector2 UnityEngine.Touch::m_Position
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Position_1;
// UnityEngine.Vector2 UnityEngine.Touch::m_RawPosition
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_RawPosition_2;
// UnityEngine.Vector2 UnityEngine.Touch::m_PositionDelta
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_PositionDelta_3;
// System.Single UnityEngine.Touch::m_TimeDelta
float ___m_TimeDelta_4;
// System.Int32 UnityEngine.Touch::m_TapCount
int32_t ___m_TapCount_5;
// UnityEngine.TouchPhase UnityEngine.Touch::m_Phase
int32_t ___m_Phase_6;
// UnityEngine.TouchType UnityEngine.Touch::m_Type
int32_t ___m_Type_7;
// System.Single UnityEngine.Touch::m_Pressure
float ___m_Pressure_8;
// System.Single UnityEngine.Touch::m_maximumPossiblePressure
float ___m_maximumPossiblePressure_9;
// System.Single UnityEngine.Touch::m_Radius
float ___m_Radius_10;
// System.Single UnityEngine.Touch::m_RadiusVariance
float ___m_RadiusVariance_11;
// System.Single UnityEngine.Touch::m_AltitudeAngle
float ___m_AltitudeAngle_12;
// System.Single UnityEngine.Touch::m_AzimuthAngle
float ___m_AzimuthAngle_13;
public:
inline static int32_t get_offset_of_m_FingerId_0() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_FingerId_0)); }
inline int32_t get_m_FingerId_0() const { return ___m_FingerId_0; }
inline int32_t* get_address_of_m_FingerId_0() { return &___m_FingerId_0; }
inline void set_m_FingerId_0(int32_t value)
{
___m_FingerId_0 = value;
}
inline static int32_t get_offset_of_m_Position_1() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_Position_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Position_1() const { return ___m_Position_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Position_1() { return &___m_Position_1; }
inline void set_m_Position_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Position_1 = value;
}
inline static int32_t get_offset_of_m_RawPosition_2() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_RawPosition_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_RawPosition_2() const { return ___m_RawPosition_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_RawPosition_2() { return &___m_RawPosition_2; }
inline void set_m_RawPosition_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_RawPosition_2 = value;
}
inline static int32_t get_offset_of_m_PositionDelta_3() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_PositionDelta_3)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_PositionDelta_3() const { return ___m_PositionDelta_3; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_PositionDelta_3() { return &___m_PositionDelta_3; }
inline void set_m_PositionDelta_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_PositionDelta_3 = value;
}
inline static int32_t get_offset_of_m_TimeDelta_4() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_TimeDelta_4)); }
inline float get_m_TimeDelta_4() const { return ___m_TimeDelta_4; }
inline float* get_address_of_m_TimeDelta_4() { return &___m_TimeDelta_4; }
inline void set_m_TimeDelta_4(float value)
{
___m_TimeDelta_4 = value;
}
inline static int32_t get_offset_of_m_TapCount_5() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_TapCount_5)); }
inline int32_t get_m_TapCount_5() const { return ___m_TapCount_5; }
inline int32_t* get_address_of_m_TapCount_5() { return &___m_TapCount_5; }
inline void set_m_TapCount_5(int32_t value)
{
___m_TapCount_5 = value;
}
inline static int32_t get_offset_of_m_Phase_6() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_Phase_6)); }
inline int32_t get_m_Phase_6() const { return ___m_Phase_6; }
inline int32_t* get_address_of_m_Phase_6() { return &___m_Phase_6; }
inline void set_m_Phase_6(int32_t value)
{
___m_Phase_6 = value;
}
inline static int32_t get_offset_of_m_Type_7() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_Type_7)); }
inline int32_t get_m_Type_7() const { return ___m_Type_7; }
inline int32_t* get_address_of_m_Type_7() { return &___m_Type_7; }
inline void set_m_Type_7(int32_t value)
{
___m_Type_7 = value;
}
inline static int32_t get_offset_of_m_Pressure_8() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_Pressure_8)); }
inline float get_m_Pressure_8() const { return ___m_Pressure_8; }
inline float* get_address_of_m_Pressure_8() { return &___m_Pressure_8; }
inline void set_m_Pressure_8(float value)
{
___m_Pressure_8 = value;
}
inline static int32_t get_offset_of_m_maximumPossiblePressure_9() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_maximumPossiblePressure_9)); }
inline float get_m_maximumPossiblePressure_9() const { return ___m_maximumPossiblePressure_9; }
inline float* get_address_of_m_maximumPossiblePressure_9() { return &___m_maximumPossiblePressure_9; }
inline void set_m_maximumPossiblePressure_9(float value)
{
___m_maximumPossiblePressure_9 = value;
}
inline static int32_t get_offset_of_m_Radius_10() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_Radius_10)); }
inline float get_m_Radius_10() const { return ___m_Radius_10; }
inline float* get_address_of_m_Radius_10() { return &___m_Radius_10; }
inline void set_m_Radius_10(float value)
{
___m_Radius_10 = value;
}
inline static int32_t get_offset_of_m_RadiusVariance_11() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_RadiusVariance_11)); }
inline float get_m_RadiusVariance_11() const { return ___m_RadiusVariance_11; }
inline float* get_address_of_m_RadiusVariance_11() { return &___m_RadiusVariance_11; }
inline void set_m_RadiusVariance_11(float value)
{
___m_RadiusVariance_11 = value;
}
inline static int32_t get_offset_of_m_AltitudeAngle_12() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_AltitudeAngle_12)); }
inline float get_m_AltitudeAngle_12() const { return ___m_AltitudeAngle_12; }
inline float* get_address_of_m_AltitudeAngle_12() { return &___m_AltitudeAngle_12; }
inline void set_m_AltitudeAngle_12(float value)
{
___m_AltitudeAngle_12 = value;
}
inline static int32_t get_offset_of_m_AzimuthAngle_13() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_AzimuthAngle_13)); }
inline float get_m_AzimuthAngle_13() const { return ___m_AzimuthAngle_13; }
inline float* get_address_of_m_AzimuthAngle_13() { return &___m_AzimuthAngle_13; }
inline void set_m_AzimuthAngle_13(float value)
{
___m_AzimuthAngle_13 = value;
}
};
// UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07
{
public:
// UnityEngine.UI.Navigation_Mode UnityEngine.UI.Navigation::m_Mode
int32_t ___m_Mode_0;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnUp
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnDown
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnLeft
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnRight
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
public:
inline static int32_t get_offset_of_m_Mode_0() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_Mode_0)); }
inline int32_t get_m_Mode_0() const { return ___m_Mode_0; }
inline int32_t* get_address_of_m_Mode_0() { return &___m_Mode_0; }
inline void set_m_Mode_0(int32_t value)
{
___m_Mode_0 = value;
}
inline static int32_t get_offset_of_m_SelectOnUp_1() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnUp_1)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnUp_1() const { return ___m_SelectOnUp_1; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnUp_1() { return &___m_SelectOnUp_1; }
inline void set_m_SelectOnUp_1(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnUp_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnUp_1), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnDown_2() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnDown_2)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnDown_2() const { return ___m_SelectOnDown_2; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnDown_2() { return &___m_SelectOnDown_2; }
inline void set_m_SelectOnDown_2(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnDown_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnDown_2), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnLeft_3() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnLeft_3)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnLeft_3() const { return ___m_SelectOnLeft_3; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnLeft_3() { return &___m_SelectOnLeft_3; }
inline void set_m_SelectOnLeft_3(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnLeft_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnLeft_3), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnRight_4() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnRight_4)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnRight_4() const { return ___m_SelectOnRight_4; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnRight_4() { return &___m_SelectOnRight_4; }
inline void set_m_SelectOnRight_4(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnRight_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnRight_4), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_marshaled_pinvoke
{
int32_t ___m_Mode_0;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
};
// Native definition for COM marshalling of UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_marshaled_com
{
int32_t ___m_Mode_0;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
};
// Facebook.Unity.FacebookDelegate`1<System.Object>
struct FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA : public MulticastDelegate_t
{
public:
public:
};
// Facebook.Unity.Mobile.Android.AndroidFacebook
struct AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5 : public MobileFacebook_tD9B3B6E5194C10C72B42D0426C6D53E7D36B5D0F
{
public:
// System.Boolean Facebook.Unity.Mobile.Android.AndroidFacebook::limitEventUsage
bool ___limitEventUsage_4;
// Facebook.Unity.Mobile.Android.IAndroidWrapper Facebook.Unity.Mobile.Android.AndroidFacebook::androidWrapper
RuntimeObject* ___androidWrapper_5;
// System.String Facebook.Unity.Mobile.Android.AndroidFacebook::userID
String_t* ___userID_6;
// System.String Facebook.Unity.Mobile.Android.AndroidFacebook::<KeyHash>k__BackingField
String_t* ___U3CKeyHashU3Ek__BackingField_7;
public:
inline static int32_t get_offset_of_limitEventUsage_4() { return static_cast<int32_t>(offsetof(AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5, ___limitEventUsage_4)); }
inline bool get_limitEventUsage_4() const { return ___limitEventUsage_4; }
inline bool* get_address_of_limitEventUsage_4() { return &___limitEventUsage_4; }
inline void set_limitEventUsage_4(bool value)
{
___limitEventUsage_4 = value;
}
inline static int32_t get_offset_of_androidWrapper_5() { return static_cast<int32_t>(offsetof(AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5, ___androidWrapper_5)); }
inline RuntimeObject* get_androidWrapper_5() const { return ___androidWrapper_5; }
inline RuntimeObject** get_address_of_androidWrapper_5() { return &___androidWrapper_5; }
inline void set_androidWrapper_5(RuntimeObject* value)
{
___androidWrapper_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___androidWrapper_5), (void*)value);
}
inline static int32_t get_offset_of_userID_6() { return static_cast<int32_t>(offsetof(AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5, ___userID_6)); }
inline String_t* get_userID_6() const { return ___userID_6; }
inline String_t** get_address_of_userID_6() { return &___userID_6; }
inline void set_userID_6(String_t* value)
{
___userID_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___userID_6), (void*)value);
}
inline static int32_t get_offset_of_U3CKeyHashU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5, ___U3CKeyHashU3Ek__BackingField_7)); }
inline String_t* get_U3CKeyHashU3Ek__BackingField_7() const { return ___U3CKeyHashU3Ek__BackingField_7; }
inline String_t** get_address_of_U3CKeyHashU3Ek__BackingField_7() { return &___U3CKeyHashU3Ek__BackingField_7; }
inline void set_U3CKeyHashU3Ek__BackingField_7(String_t* value)
{
___U3CKeyHashU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CKeyHashU3Ek__BackingField_7), (void*)value);
}
};
// Facebook.Unity.Utilities_Callback`1<System.Object>
struct Callback_1_tC236E0C1DC51FBD8E73B1BC583F52DE679142177 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<System.Boolean>
struct Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<System.Byte>
struct Action_1_t7CCD21D1063A83C9B6E5A95BFCE022A6EB65C46A : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct Action_1_t0DEF774B03048897D0C95E1C3FDEC90E76AD66F6 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>
struct Action_1_t8C2E57068917ACE417DC9F9EE5C1B893777A9E26 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<System.Guid>
struct Action_1_t914484DED737548EE8FABFA959036371C8235942 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<System.Int32>
struct Action_1_t9B7C5376025AEF32439C13FB3BA4BFF8F0F0477B : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<System.Int32Enum>
struct Action_1_tABA1E3BFA092E3309A0ECC53722E4F9826DCE983 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<System.Object>
struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<System.Single>
struct Action_1_tCBF7F8C203F735692364E5850B0A960E0EABD03B : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>>
struct Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<System.UInt32>
struct Action_1_t6131F366126278D446E2FDDB6336343007AC2F72 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<System.UInt64>
struct Action_1_t871A401E6A572812A4A4A51F3A4CCE60BEC5CF17 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.BeforeRenderHelper_OrderBlock>
struct Action_1_tFEDD064D971126B0D10EFA0985118B241D1D1869 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.Color32>
struct Action_1_t82786770BFC5780C2E617DB25669143D9ED35825 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.EventSystems.RaycastResult>
struct Action_1_t6C5DB7139F66EB76956C49A23DE0D327DCA73C81 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.Networking.ChannelPacket>
struct Action_1_t9DDCD79769ABDA964DF387C3C5D72506D9E977CC : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.Networking.ClientScene_PendingOwner>
struct Action_1_t92AFDDED5402DAAADD42F33DBA39BA7B4BF1161A : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.Networking.LocalClient_InternalMsg>
struct Action_1_t8A86539005F88E0B73A9A5A4AD68222BFB77FEEB : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.Networking.NetworkLobbyManager_PendingPlayer>
struct Action_1_t1DC3DD76887A3DC0A423CE7BCBC7D8C5684DD33B : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo>
struct Action_1_tA52CEC15B4DC72F91013B30C153F16F5C5B257C8 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>
struct Action_1_t5B34751F83F8DA7DD4FCBAC4E4771BCFF6028C9F : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>
struct Action_1_t9067D73E0D49F5A367A0734CA77E72527B7CD313 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.RaycastHit2D>
struct Action_1_t163F662A723789B8BC371105BBD6022F26D9C6A6 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.UICharInfo>
struct Action_1_t4362622E084A551168772B92FB4DFEA74E07CDA5 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.UILineInfo>
struct Action_1_t7065A5D96364A7C750A7B180A2502537A82A9910 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.UIVertex>
struct Action_1_tE875D12E6922BF87BD02BA6C0FBD1096BCBB9426 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.UnitySynchronizationContext_WorkRequest>
struct Action_1_tD3557152EC38C36B3C25B7FA509B9EC992BEBED0 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.Vector2>
struct Action_1_t97B24A3F0ABA64DD934A3DA82A6C9EB77C813E25 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.Vector3>
struct Action_1_t08BAF0B9143320EA6FA33CF25A59B6F1641EA5B6 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.Vector4>
struct Action_1_t6289D638A9944C0743697466AAE4CAB276AF2F5A : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<System.Boolean,System.Object>
struct Action_2_t6C33D80670016FFA10F03F59FB542306FA60F1F3 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<System.Char,System.Object>
struct Action_2_t2F784F6A8F0E6D7B6C7C73DCA17B1CCA8D724E48 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<System.Int32,System.Int32>
struct Action_2_t7F48DB8D71AB14B1331B4BB8EE28580F28191ACE : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<System.Int32,System.Int64>
struct Action_2_tC52FA3FD223419FC0456E089309277012CCE38E8 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<System.Object,System.Boolean>
struct Action_2_t429E4750D84EBAC7EB494EB565EE0C8E1177C576 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<System.Object,System.Int32Enum>
struct Action_2_t4A92D51BAC0CF291CCBECDD41B622EDAE4E77D9F : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<System.Object,System.Object>
struct Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C : public MulticastDelegate_t
{
public:
public:
};
// System.Action`3<System.Boolean,System.Boolean,System.Int32>
struct Action_3_tEE1FB0623176AFA5109FAA9BA7E82293445CAE1E : public MulticastDelegate_t
{
public:
public:
};
// System.Action`3<System.Object,System.Object,System.Object>
struct Action_3_tCC14115B7178951118504E7198B7C872630643C5 : public MulticastDelegate_t
{
public:
public:
};
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t
{
public:
public:
};
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
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);
}
};
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Delegate_t * m_Items[1];
public:
inline Delegate_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Delegate_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, Delegate_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mB435979A4FC207D777BBBEDCBE6DBD47F06FC2D3_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m9FFA4290ED807AF40BD2E60F26023529593AA5A0_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m19B8C2E6A68876BE54C2C35DD948B7C496D98546_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC74FE1FCF522A51276B59B78AF8420D1E2F6AEA7_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6A7480B222C2ED4423DFA000737E0286A78A130_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mD489F3FD0B8FF67A021BAB47C1CCC51241701ED0_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mDA37FD740E9CAE8A79150115FA19413298721C1B_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m89873A96691C93DB17CA538DA4A8503B002C9F91_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91C3AC1FDB3E67F7FA04CD3422E6EF867CCC77C5_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m090B76D6E75BB1C16F84858717B553B4E4A6C37A_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Boolean>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mC6576DE9DFD26D645933F33DDFFF5C193BD2C64F_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Boolean>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mAA797BBD83F736868FA6A8E186371BEADFC9A7CA_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Boolean>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m5D14BBDC6E172C9CFF85357EDA146D2F493191EC_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Boolean>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mBF9C54BE8A4A3C352F42280C1B76AD173905241D_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m406897CA7EC01C35D90402E4AA916647716FB767_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Byte>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mCE5D4D9E3057660C094936737BA70F2ADE3646F9_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Byte>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mC32656E5117A66CF11FF1BEA4C941AA4034677AC_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Byte>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mBA8D7A7C9CD1D0771BB9638FB7A0A4D17F5F7F72_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Byte>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52D68F77094EDDD9016386AF3F5A5B5781C974D9_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m92570BB2C86AD0B6EB8845B78FF96396A458D6BE_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Char>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mA816E1C13D866A2558DA3C530799B1D3858F80EF_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Char>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mDCC22EFC517EA05A44E470F2DA1919EE5A58F9FA_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Char>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m3FAA847DFF670AFBF34878A1F45C9B29F5DD973C_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Char>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51B86411AC68CD7F9618FF2523FB1199AA56372E_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDEDC109FF80129362D85F9A7749B1540AFBD07B7_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mC0890A26F45EB3D0CE722AA211191F47A7D89CAE_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mC2FAA1D4D203A9339BBC1340D21F3ED010DDDBAC_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mCB1B8EAAF7F7CBAFAA5F7514553B6DC1038D4AC4_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB9F8EC8CBE7FD4FADFAB7F64A37B7A7508D691_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD1EDD7B929F2A9A91509082AEC0A70709B12CEF8_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int16,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m9DDC6A81CAF5C50720AA70F741AB0D12F2971D63_gshared (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int16,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m5AE097EDA71EB35E46D74AD02761EEBB76AB7224_gshared (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int16,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m206D9B5A43A417A87ECB6873667B355133C76AD6_gshared (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int16,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 InternalEnumerator_1_get_Current_m3A9DE2B954F50DF264A9CE67318E3E31A7115FCA_gshared (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int16,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3EEA7DE71D1A101CD8A92810E938B7B80C1C73DA_gshared (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int16,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m143863FBCFE0088136F8439973457F61A9DB5248_gshared (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m826AE3C40B8AFBE65F21024B99461A8E3435394E_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m1CBAB604EC0F2F4558305325B30BC790A0684D54_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m007FB57DED6F561D3EEC01BD59C68BFBD9FEA626_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC24466541138E727EBE50B0E0A22F6651161EB71_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9369158204F4280AA8C76BD2E47E8A91C9FDC053_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2528DC78CAC3A5C062239A07618339630C6D6262_gshared (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mAC2550F324C98BFFF30E79EEC260DB6C7F2D7854_gshared (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mB7F4DDC08966F77B6AFF2BE288DF6B08AE4DB08C_gshared (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA InternalEnumerator_1_get_Current_m1C0E1451A2D19F6FDD56E250C6480BE07691B8E8_gshared (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC5B66E8E8D96FEF41EB54D1DF22CA5E9D28C8424_gshared (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF1931616FD9BDC923A524B2380D1B8BA0EBFF651_gshared (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m56019387E27A8E3481BDF2669CDE33C7899A4ECB_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m1F2BED538F9A714FDD0663B4E12CEF6D82CD9459_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m47F7361F7276ED03BEF7B9E04EC7431ACAAE6906_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5D43D1F4D741863D821F9E78A4A608F58B2485DF_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1E60E687D9B216101D35FA36C1D0EF48FF5C5F27_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mCD4B916B60ED8E733E80DAFB53AFF0E26615B2E1_gshared (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m15F853A5A32BAFCA7B869DF5872C094BF494336A_gshared (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m23B255D78CE56C9745A561E3D5217F3521E0EA87_gshared (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_gshared (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2087A7A789D7AD625D90F79857979A8821B64E_gshared (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB7E808DE6EC1C864FEE5D7026B65B45FCBDF6271_gshared (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m51F3DA6A53425367DEED2F523CC1F1E5EF366BD9_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m0D2B670F0CD0A79ED287E68E6BA7DDC47687C224_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m3AB0694D7B4C7363E522EE175B1DA229B01D148D_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m44C63894AC907E6D89D64978E780E16ED053FCF8_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB9A0BC555012CD7E593417589EF96969588A3221_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1593CE384E20D884D915D8C63DB0063790B3A618_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m4836500B7FEA20ACA83183ECBE1D467826FCE670_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m48BA3A9AC0BA051915D58DFCA32B1AA5C09DE957_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9C6C41648ADC7B60E8AF51190EEA7BAA8FA93241_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1536DF98255D34522AB9DC5D47835095718FF3DA_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m41F1B4440445674E22696F369E1BE49F6B8B7325_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mEEFF36A65ACDF8534CC4A049CF142B6757C1BC98_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m1CCFAA43E5AEFCE61B8B581971072C0CE3D847C7_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m07F10BD620954A735C3091217347BBD9B523B1CB_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A449599FC893C43B822B70233F3E79FD26F6959_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m7E5A26F4C5617D6D1F10E6CAC00E3A9C057BF7A2_gshared (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m191A4C733E0662416F46AB0F7CA847EEFC228915_gshared (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m11AFEA80F744768F7B427D2905E3F629BBBB051A_gshared (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E InternalEnumerator_1_get_Current_m73CCDD94C855E7CE8895DB52181153038EAA8585_gshared (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1671BDAD918589A9C991AA1A78B304304B4A47C6_gshared (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4C444BAE7A7AEA76750AAEB40128DAA0A559D392_gshared (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m0BD0412D0302697F86E43B6F22BB445661F64C8F_gshared (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m63B89FFEB305B542ABA20AD4FA3B515603DF2F56_gshared (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m4462B2E5033D638D7F461862D3245ADC40CB5FFB_gshared (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 InternalEnumerator_1_get_Current_m902312010187A018147C6FDDC77113E4B125EC6C_gshared (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mAB47E5373DD3C694D393ECB5B841B38C1A908386_gshared (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCC02E335DAEB2C190189E5DA6C80C283CFF68D13_gshared (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64Enum,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m013A0A2B07C8AD94FF1283B44C962DCA04DF8D1C_gshared (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64Enum,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m2063A20119278A24DDA179F94E8A9A2DED00BB31_gshared (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64Enum,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m253D901ABDF353B1796046C1F9A1974841DDEF40_gshared (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64Enum,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 InternalEnumerator_1_get_Current_m8622106F95B7EE6B6B5B00AB6FDF5A5D4F404662_gshared (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64Enum,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m760ACE8B15B019E1238873F83594CC435DFF3B0B_gshared (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64Enum,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFAFC655DBF364B759A100DBAAB7D5B8A0B2F5683_gshared (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m5E40031E71229428712CA1C10D17B1B806B8AD01_gshared (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mE5A67C5BCA6C7CDCA44E2F718DB6160EDB2E1826_gshared (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mB0405CA2859F7BC1CF12AF6D5931196A73DA43B7_gshared (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 InternalEnumerator_1_get_Current_mA2BE834E18743D7A1F0FFF5F46626012F344DE86_gshared (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mD46DD47F4358E9E77BE6E7F343F104B384CC4693_gshared (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4F37D3F6D2081E419A2C3CF82B02B8677368E580_gshared (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m7939008D0ACDBB735C62E66A56A00D049AC21CFA_gshared (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mFFD8B5D9BB3320193A659BF714008C8F1A69495B_gshared (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mB4C863273B242695851BFA1E84FCB82F0732A9F8_gshared (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A InternalEnumerator_1_get_Current_mD4105F242FD3292C91E39969E215B61F2FEEE625_gshared (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m21034E1E2428EFCD57FACE4796AC29D2575E9548_gshared (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1B13FA9C9760756363EF1044824220733329E020_gshared (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m86F4CCC3223D641B8C0F4CBA1020F0870A8C5C02_gshared (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m05C298357AA5300328CB3D1EFE323A2EF2EF5422_gshared (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m4DF719D2C932D68E9E678D07135111215DA7E71D_gshared (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F InternalEnumerator_1_get_Current_m6DE8266180816AACFC7A2316D0972317F9776BAD_gshared (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mE074708B062F92FB9FCB6C8AA94AF72DEF2A4925_gshared (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m43536416625BECC0E0E4579FE8261189A7A7EDC2_gshared (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD (RuntimeObject* ___provider0, String_t* ___format1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, const RuntimeMethod* method);
// System.Void Facebook.Unity.MethodArguments::.ctor(Facebook.Unity.MethodArguments)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodArguments__ctor_mCD0FEAC74634F6FD43B4F6B5EB127ED7024FAAAD (MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * __this, MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * ___methodArgs0, const RuntimeMethod* method);
// System.Void Facebook.Unity.MethodArguments::AddString(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodArguments_AddString_m0AC2B248277E3BB0CD32BB2378B742FA1AF4901C (MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * __this, String_t* ___argumentName0, String_t* ___value1, const RuntimeMethod* method);
// Facebook.Unity.CallbackManager Facebook.Unity.FacebookBase::get_CallbackManager()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105 * FacebookBase_get_CallbackManager_mBB4EC92D8211AC4CAAFCB3823B901F75E24E537C_inline (FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 * __this, const RuntimeMethod* method);
// System.String Facebook.Unity.MethodArguments::ToJsonString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodArguments_ToJsonString_mB4678DBDEA648BEE531004BFA562EA532627A3DE (MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * __this, const RuntimeMethod* method);
// System.Void Facebook.Unity.MethodArguments::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodArguments__ctor_m553F1F675A365BD7EAEA407618085B1E85B86CF5 (MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * __this, const RuntimeMethod* method);
// System.Void Facebook.Unity.Mobile.Android.AndroidFacebook::CallFB(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidFacebook_CallFB_m944042FB6A254C92B893413CD86914CEDE97C6B5 (AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5 * __this, String_t* ___method0, String_t* ___args1, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mB435979A4FC207D777BBBEDCBE6DBD47F06FC2D3 (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mB435979A4FC207D777BBBEDCBE6DBD47F06FC2D3_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::Dispose()
inline void InternalEnumerator_1_Dispose_m9FFA4290ED807AF40BD2E60F26023529593AA5A0 (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m9FFA4290ED807AF40BD2E60F26023529593AA5A0_gshared)(__this, method);
}
// System.Int32 System.Array::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m19B8C2E6A68876BE54C2C35DD948B7C496D98546 (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m19B8C2E6A68876BE54C2C35DD948B7C496D98546_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::get_Current()
inline TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3 (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
return (( TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 (*) (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC74FE1FCF522A51276B59B78AF8420D1E2F6AEA7 (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC74FE1FCF522A51276B59B78AF8420D1E2F6AEA7_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6A7480B222C2ED4423DFA000737E0286A78A130 (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6A7480B222C2ED4423DFA000737E0286A78A130_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mD489F3FD0B8FF67A021BAB47C1CCC51241701ED0 (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mD489F3FD0B8FF67A021BAB47C1CCC51241701ED0_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::Dispose()
inline void InternalEnumerator_1_Dispose_mDA37FD740E9CAE8A79150115FA19413298721C1B (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mDA37FD740E9CAE8A79150115FA19413298721C1B_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m89873A96691C93DB17CA538DA4A8503B002C9F91 (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m89873A96691C93DB17CA538DA4A8503B002C9F91_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::get_Current()
inline ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237 (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
return (( ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA (*) (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91C3AC1FDB3E67F7FA04CD3422E6EF867CCC77C5 (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91C3AC1FDB3E67F7FA04CD3422E6EF867CCC77C5_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m090B76D6E75BB1C16F84858717B553B4E4A6C37A (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m090B76D6E75BB1C16F84858717B553B4E4A6C37A_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Boolean>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mC6576DE9DFD26D645933F33DDFFF5C193BD2C64F (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mC6576DE9DFD26D645933F33DDFFF5C193BD2C64F_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Boolean>::Dispose()
inline void InternalEnumerator_1_Dispose_mAA797BBD83F736868FA6A8E186371BEADFC9A7CA (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mAA797BBD83F736868FA6A8E186371BEADFC9A7CA_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Boolean>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m5D14BBDC6E172C9CFF85357EDA146D2F493191EC (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m5D14BBDC6E172C9CFF85357EDA146D2F493191EC_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Boolean>::get_Current()
inline bool InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mBF9C54BE8A4A3C352F42280C1B76AD173905241D (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mBF9C54BE8A4A3C352F42280C1B76AD173905241D_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m406897CA7EC01C35D90402E4AA916647716FB767 (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m406897CA7EC01C35D90402E4AA916647716FB767_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Byte>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mCE5D4D9E3057660C094936737BA70F2ADE3646F9 (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mCE5D4D9E3057660C094936737BA70F2ADE3646F9_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Byte>::Dispose()
inline void InternalEnumerator_1_Dispose_mC32656E5117A66CF11FF1BEA4C941AA4034677AC (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mC32656E5117A66CF11FF1BEA4C941AA4034677AC_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Byte>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mBA8D7A7C9CD1D0771BB9638FB7A0A4D17F5F7F72 (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mBA8D7A7C9CD1D0771BB9638FB7A0A4D17F5F7F72_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Byte>::get_Current()
inline uint8_t InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87 (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
return (( uint8_t (*) (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52D68F77094EDDD9016386AF3F5A5B5781C974D9 (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52D68F77094EDDD9016386AF3F5A5B5781C974D9_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m92570BB2C86AD0B6EB8845B78FF96396A458D6BE (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m92570BB2C86AD0B6EB8845B78FF96396A458D6BE_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Char>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mA816E1C13D866A2558DA3C530799B1D3858F80EF (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mA816E1C13D866A2558DA3C530799B1D3858F80EF_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Char>::Dispose()
inline void InternalEnumerator_1_Dispose_mDCC22EFC517EA05A44E470F2DA1919EE5A58F9FA (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mDCC22EFC517EA05A44E470F2DA1919EE5A58F9FA_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Char>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m3FAA847DFF670AFBF34878A1F45C9B29F5DD973C (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3FAA847DFF670AFBF34878A1F45C9B29F5DD973C_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Char>::get_Current()
inline Il2CppChar InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466 (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
return (( Il2CppChar (*) (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51B86411AC68CD7F9618FF2523FB1199AA56372E (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51B86411AC68CD7F9618FF2523FB1199AA56372E_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDEDC109FF80129362D85F9A7749B1540AFBD07B7 (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDEDC109FF80129362D85F9A7749B1540AFBD07B7_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mC0890A26F45EB3D0CE722AA211191F47A7D89CAE (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mC0890A26F45EB3D0CE722AA211191F47A7D89CAE_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::Dispose()
inline void InternalEnumerator_1_Dispose_mC2FAA1D4D203A9339BBC1340D21F3ED010DDDBAC (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mC2FAA1D4D203A9339BBC1340D21F3ED010DDDBAC_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mCB1B8EAAF7F7CBAFAA5F7514553B6DC1038D4AC4 (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mCB1B8EAAF7F7CBAFAA5F7514553B6DC1038D4AC4_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::get_Current()
inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
return (( DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (*) (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB9F8EC8CBE7FD4FADFAB7F64A37B7A7508D691 (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB9F8EC8CBE7FD4FADFAB7F64A37B7A7508D691_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD1EDD7B929F2A9A91509082AEC0A70709B12CEF8 (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD1EDD7B929F2A9A91509082AEC0A70709B12CEF8_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int16,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m9DDC6A81CAF5C50720AA70F741AB0D12F2971D63 (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m9DDC6A81CAF5C50720AA70F741AB0D12F2971D63_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int16,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m5AE097EDA71EB35E46D74AD02761EEBB76AB7224 (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m5AE097EDA71EB35E46D74AD02761EEBB76AB7224_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int16,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m206D9B5A43A417A87ECB6873667B355133C76AD6 (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m206D9B5A43A417A87ECB6873667B355133C76AD6_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int16,System.Object>>::get_Current()
inline Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 InternalEnumerator_1_get_Current_m3A9DE2B954F50DF264A9CE67318E3E31A7115FCA (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, const RuntimeMethod* method)
{
return (( Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 (*) (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3A9DE2B954F50DF264A9CE67318E3E31A7115FCA_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int16,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3EEA7DE71D1A101CD8A92810E938B7B80C1C73DA (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3EEA7DE71D1A101CD8A92810E938B7B80C1C73DA_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int16,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m143863FBCFE0088136F8439973457F61A9DB5248 (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m143863FBCFE0088136F8439973457F61A9DB5248_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m826AE3C40B8AFBE65F21024B99461A8E3435394E (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m826AE3C40B8AFBE65F21024B99461A8E3435394E_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m1CBAB604EC0F2F4558305325B30BC790A0684D54 (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m1CBAB604EC0F2F4558305325B30BC790A0684D54_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m007FB57DED6F561D3EEC01BD59C68BFBD9FEA626 (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m007FB57DED6F561D3EEC01BD59C68BFBD9FEA626_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::get_Current()
inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
return (( Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D (*) (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC24466541138E727EBE50B0E0A22F6651161EB71 (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC24466541138E727EBE50B0E0A22F6651161EB71_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9369158204F4280AA8C76BD2E47E8A91C9FDC053 (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9369158204F4280AA8C76BD2E47E8A91C9FDC053_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m2528DC78CAC3A5C062239A07618339630C6D6262 (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2528DC78CAC3A5C062239A07618339630C6D6262_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers>>::Dispose()
inline void InternalEnumerator_1_Dispose_mAC2550F324C98BFFF30E79EEC260DB6C7F2D7854 (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mAC2550F324C98BFFF30E79EEC260DB6C7F2D7854_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mB7F4DDC08966F77B6AFF2BE288DF6B08AE4DB08C (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mB7F4DDC08966F77B6AFF2BE288DF6B08AE4DB08C_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers>>::get_Current()
inline Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA InternalEnumerator_1_get_Current_m1C0E1451A2D19F6FDD56E250C6480BE07691B8E8 (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, const RuntimeMethod* method)
{
return (( Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA (*) (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1C0E1451A2D19F6FDD56E250C6480BE07691B8E8_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC5B66E8E8D96FEF41EB54D1DF22CA5E9D28C8424 (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC5B66E8E8D96FEF41EB54D1DF22CA5E9D28C8424_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager/ConnectionPendingPlayers>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF1931616FD9BDC923A524B2380D1B8BA0EBFF651 (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF1931616FD9BDC923A524B2380D1B8BA0EBFF651_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m56019387E27A8E3481BDF2669CDE33C7899A4ECB (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m56019387E27A8E3481BDF2669CDE33C7899A4ECB_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::Dispose()
inline void InternalEnumerator_1_Dispose_m1F2BED538F9A714FDD0663B4E12CEF6D82CD9459 (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m1F2BED538F9A714FDD0663B4E12CEF6D82CD9459_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m47F7361F7276ED03BEF7B9E04EC7431ACAAE6906 (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m47F7361F7276ED03BEF7B9E04EC7431ACAAE6906_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::get_Current()
inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
return (( Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE (*) (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5D43D1F4D741863D821F9E78A4A608F58B2485DF (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5D43D1F4D741863D821F9E78A4A608F58B2485DF_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1E60E687D9B216101D35FA36C1D0EF48FF5C5F27 (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1E60E687D9B216101D35FA36C1D0EF48FF5C5F27_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mCD4B916B60ED8E733E80DAFB53AFF0E26615B2E1 (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mCD4B916B60ED8E733E80DAFB53AFF0E26615B2E1_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::Dispose()
inline void InternalEnumerator_1_Dispose_m15F853A5A32BAFCA7B869DF5872C094BF494336A (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m15F853A5A32BAFCA7B869DF5872C094BF494336A_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m23B255D78CE56C9745A561E3D5217F3521E0EA87 (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m23B255D78CE56C9745A561E3D5217F3521E0EA87_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::get_Current()
inline Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, const RuntimeMethod* method)
{
return (( Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 (*) (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2087A7A789D7AD625D90F79857979A8821B64E (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2087A7A789D7AD625D90F79857979A8821B64E_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB7E808DE6EC1C864FEE5D7026B65B45FCBDF6271 (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB7E808DE6EC1C864FEE5D7026B65B45FCBDF6271_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m51F3DA6A53425367DEED2F523CC1F1E5EF366BD9 (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m51F3DA6A53425367DEED2F523CC1F1E5EF366BD9_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::Dispose()
inline void InternalEnumerator_1_Dispose_m0D2B670F0CD0A79ED287E68E6BA7DDC47687C224 (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m0D2B670F0CD0A79ED287E68E6BA7DDC47687C224_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m3AB0694D7B4C7363E522EE175B1DA229B01D148D (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3AB0694D7B4C7363E522EE175B1DA229B01D148D_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::get_Current()
inline Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
return (( Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 (*) (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m44C63894AC907E6D89D64978E780E16ED053FCF8 (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m44C63894AC907E6D89D64978E780E16ED053FCF8_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB9A0BC555012CD7E593417589EF96969588A3221 (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB9A0BC555012CD7E593417589EF96969588A3221_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m1593CE384E20D884D915D8C63DB0063790B3A618 (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1593CE384E20D884D915D8C63DB0063790B3A618_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m4836500B7FEA20ACA83183ECBE1D467826FCE670 (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m4836500B7FEA20ACA83183ECBE1D467826FCE670_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m48BA3A9AC0BA051915D58DFCA32B1AA5C09DE957 (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m48BA3A9AC0BA051915D58DFCA32B1AA5C09DE957_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::get_Current()
inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
return (( Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA (*) (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9C6C41648ADC7B60E8AF51190EEA7BAA8FA93241 (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9C6C41648ADC7B60E8AF51190EEA7BAA8FA93241_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1536DF98255D34522AB9DC5D47835095718FF3DA (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1536DF98255D34522AB9DC5D47835095718FF3DA_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m41F1B4440445674E22696F369E1BE49F6B8B7325 (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m41F1B4440445674E22696F369E1BE49F6B8B7325_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::Dispose()
inline void InternalEnumerator_1_Dispose_mEEFF36A65ACDF8534CC4A049CF142B6757C1BC98 (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mEEFF36A65ACDF8534CC4A049CF142B6757C1BC98_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m1CCFAA43E5AEFCE61B8B581971072C0CE3D847C7 (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1CCFAA43E5AEFCE61B8B581971072C0CE3D847C7_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::get_Current()
inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1 (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
return (( Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D (*) (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m07F10BD620954A735C3091217347BBD9B523B1CB (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m07F10BD620954A735C3091217347BBD9B523B1CB_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A449599FC893C43B822B70233F3E79FD26F6959 (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A449599FC893C43B822B70233F3E79FD26F6959_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m7E5A26F4C5617D6D1F10E6CAC00E3A9C057BF7A2 (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m7E5A26F4C5617D6D1F10E6CAC00E3A9C057BF7A2_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::Dispose()
inline void InternalEnumerator_1_Dispose_m191A4C733E0662416F46AB0F7CA847EEFC228915 (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m191A4C733E0662416F46AB0F7CA847EEFC228915_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m11AFEA80F744768F7B427D2905E3F629BBBB051A (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m11AFEA80F744768F7B427D2905E3F629BBBB051A_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::get_Current()
inline Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E InternalEnumerator_1_get_Current_m73CCDD94C855E7CE8895DB52181153038EAA8585 (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, const RuntimeMethod* method)
{
return (( Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E (*) (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m73CCDD94C855E7CE8895DB52181153038EAA8585_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1671BDAD918589A9C991AA1A78B304304B4A47C6 (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1671BDAD918589A9C991AA1A78B304304B4A47C6_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4C444BAE7A7AEA76750AAEB40128DAA0A559D392 (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4C444BAE7A7AEA76750AAEB40128DAA0A559D392_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m0BD0412D0302697F86E43B6F22BB445661F64C8F (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m0BD0412D0302697F86E43B6F22BB445661F64C8F_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m63B89FFEB305B542ABA20AD4FA3B515603DF2F56 (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m63B89FFEB305B542ABA20AD4FA3B515603DF2F56_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m4462B2E5033D638D7F461862D3245ADC40CB5FFB (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m4462B2E5033D638D7F461862D3245ADC40CB5FFB_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::get_Current()
inline Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 InternalEnumerator_1_get_Current_m902312010187A018147C6FDDC77113E4B125EC6C (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, const RuntimeMethod* method)
{
return (( Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 (*) (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m902312010187A018147C6FDDC77113E4B125EC6C_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mAB47E5373DD3C694D393ECB5B841B38C1A908386 (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mAB47E5373DD3C694D393ECB5B841B38C1A908386_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCC02E335DAEB2C190189E5DA6C80C283CFF68D13 (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCC02E335DAEB2C190189E5DA6C80C283CFF68D13_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64Enum,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m013A0A2B07C8AD94FF1283B44C962DCA04DF8D1C (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m013A0A2B07C8AD94FF1283B44C962DCA04DF8D1C_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64Enum,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m2063A20119278A24DDA179F94E8A9A2DED00BB31 (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m2063A20119278A24DDA179F94E8A9A2DED00BB31_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64Enum,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m253D901ABDF353B1796046C1F9A1974841DDEF40 (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m253D901ABDF353B1796046C1F9A1974841DDEF40_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64Enum,System.Object>>::get_Current()
inline Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 InternalEnumerator_1_get_Current_m8622106F95B7EE6B6B5B00AB6FDF5A5D4F404662 (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, const RuntimeMethod* method)
{
return (( Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 (*) (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m8622106F95B7EE6B6B5B00AB6FDF5A5D4F404662_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64Enum,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m760ACE8B15B019E1238873F83594CC435DFF3B0B (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m760ACE8B15B019E1238873F83594CC435DFF3B0B_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64Enum,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFAFC655DBF364B759A100DBAAB7D5B8A0B2F5683 (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFAFC655DBF364B759A100DBAAB7D5B8A0B2F5683_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m5E40031E71229428712CA1C10D17B1B806B8AD01 (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m5E40031E71229428712CA1C10D17B1B806B8AD01_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mE5A67C5BCA6C7CDCA44E2F718DB6160EDB2E1826 (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mE5A67C5BCA6C7CDCA44E2F718DB6160EDB2E1826_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mB0405CA2859F7BC1CF12AF6D5931196A73DA43B7 (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mB0405CA2859F7BC1CF12AF6D5931196A73DA43B7_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::get_Current()
inline Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 InternalEnumerator_1_get_Current_mA2BE834E18743D7A1F0FFF5F46626012F344DE86 (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, const RuntimeMethod* method)
{
return (( Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 (*) (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mA2BE834E18743D7A1F0FFF5F46626012F344DE86_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mD46DD47F4358E9E77BE6E7F343F104B384CC4693 (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mD46DD47F4358E9E77BE6E7F343F104B384CC4693_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4F37D3F6D2081E419A2C3CF82B02B8677368E580 (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4F37D3F6D2081E419A2C3CF82B02B8677368E580_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m7939008D0ACDBB735C62E66A56A00D049AC21CFA (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m7939008D0ACDBB735C62E66A56A00D049AC21CFA_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mFFD8B5D9BB3320193A659BF714008C8F1A69495B (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mFFD8B5D9BB3320193A659BF714008C8F1A69495B_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mB4C863273B242695851BFA1E84FCB82F0732A9F8 (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mB4C863273B242695851BFA1E84FCB82F0732A9F8_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::get_Current()
inline Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A InternalEnumerator_1_get_Current_mD4105F242FD3292C91E39969E215B61F2FEEE625 (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, const RuntimeMethod* method)
{
return (( Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A (*) (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mD4105F242FD3292C91E39969E215B61F2FEEE625_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m21034E1E2428EFCD57FACE4796AC29D2575E9548 (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m21034E1E2428EFCD57FACE4796AC29D2575E9548_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1B13FA9C9760756363EF1044824220733329E020 (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1B13FA9C9760756363EF1044824220733329E020_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m86F4CCC3223D641B8C0F4CBA1020F0870A8C5C02 (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m86F4CCC3223D641B8C0F4CBA1020F0870A8C5C02_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m05C298357AA5300328CB3D1EFE323A2EF2EF5422 (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m05C298357AA5300328CB3D1EFE323A2EF2EF5422_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m4DF719D2C932D68E9E678D07135111215DA7E71D (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m4DF719D2C932D68E9E678D07135111215DA7E71D_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::get_Current()
inline Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F InternalEnumerator_1_get_Current_m6DE8266180816AACFC7A2316D0972317F9776BAD (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, const RuntimeMethod* method)
{
return (( Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F (*) (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m6DE8266180816AACFC7A2316D0972317F9776BAD_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mE074708B062F92FB9FCB6C8AA94AF72DEF2A4925 (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mE074708B062F92FB9FCB6C8AA94AF72DEF2A4925_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m43536416625BECC0E0E4579FE8261189A7A7EDC2 (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m43536416625BECC0E0E4579FE8261189A7A7EDC2_gshared)(__this, method);
}
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void <>f__AnonymousType0`1<System.Object>::.ctor(<message>j__TPar)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ef__AnonymousType0_1__ctor_m57B3BC60E57AF443B4602955F02471392D756778_gshared (U3CU3Ef__AnonymousType0_1_t103DB909F3478F55EAABC0751EA7624561E5B35F * __this, RuntimeObject * ___message0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___message0;
__this->set_U3CmessageU3Ei__Field_0(L_0);
return;
}
}
// System.Boolean <>f__AnonymousType0`1<System.Object>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ef__AnonymousType0_1_Equals_m6ABC333479B91B05E8D5256B3BB24DB217487AAC_gshared (U3CU3Ef__AnonymousType0_1_t103DB909F3478F55EAABC0751EA7624561E5B35F * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
U3CU3Ef__AnonymousType0_1_t103DB909F3478F55EAABC0751EA7624561E5B35F * V_0 = NULL;
{
RuntimeObject * L_0 = ___value0;
V_0 = (U3CU3Ef__AnonymousType0_1_t103DB909F3478F55EAABC0751EA7624561E5B35F *)((U3CU3Ef__AnonymousType0_1_t103DB909F3478F55EAABC0751EA7624561E5B35F *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)));
U3CU3Ef__AnonymousType0_1_t103DB909F3478F55EAABC0751EA7624561E5B35F * L_1 = V_0;
if (!L_1)
{
goto IL_0021;
}
}
{
EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_2 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
RuntimeObject * L_3 = (RuntimeObject *)__this->get_U3CmessageU3Ei__Field_0();
U3CU3Ef__AnonymousType0_1_t103DB909F3478F55EAABC0751EA7624561E5B35F * L_4 = V_0;
NullCheck(L_4);
RuntimeObject * L_5 = (RuntimeObject *)L_4->get_U3CmessageU3Ei__Field_0();
NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_2);
bool L_6 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_2, (RuntimeObject *)L_3, (RuntimeObject *)L_5);
return L_6;
}
IL_0021:
{
return (bool)0;
}
}
// System.Int32 <>f__AnonymousType0`1<System.Object>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ef__AnonymousType0_1_GetHashCode_m79B85D1E42566EF3324E0B6239DB2BD523B4B79D_gshared (U3CU3Ef__AnonymousType0_1_t103DB909F3478F55EAABC0751EA7624561E5B35F * __this, const RuntimeMethod* method)
{
{
EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_0 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
RuntimeObject * L_1 = (RuntimeObject *)__this->get_U3CmessageU3Ei__Field_0();
NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_0);
int32_t L_2 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(9 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Object>::GetHashCode(T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_0, (RuntimeObject *)L_1);
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)-1089263382), (int32_t)((int32_t)-1521134295))), (int32_t)L_2));
}
}
// System.String <>f__AnonymousType0`1<System.Object>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ef__AnonymousType0_1_ToString_m1B1F29A3B1690D6AA429AF0A8405278664F94771_gshared (U3CU3Ef__AnonymousType0_1_t103DB909F3478F55EAABC0751EA7624561E5B35F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ef__AnonymousType0_1_ToString_m1B1F29A3B1690D6AA429AF0A8405278664F94771_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
RuntimeObject * V_1 = NULL;
RuntimeObject ** G_B3_0 = NULL;
int32_t G_B3_1 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B3_2 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B3_3 = NULL;
String_t* G_B3_4 = NULL;
RuntimeObject * G_B3_5 = NULL;
RuntimeObject ** G_B1_0 = NULL;
int32_t G_B1_1 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B1_2 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B1_3 = NULL;
String_t* G_B1_4 = NULL;
RuntimeObject * G_B1_5 = NULL;
RuntimeObject ** G_B2_0 = NULL;
int32_t G_B2_1 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B2_2 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B2_3 = NULL;
String_t* G_B2_4 = NULL;
RuntimeObject * G_B2_5 = NULL;
String_t* G_B4_0 = NULL;
int32_t G_B4_1 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B4_2 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B4_3 = NULL;
String_t* G_B4_4 = NULL;
RuntimeObject * G_B4_5 = NULL;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_0;
RuntimeObject * L_2 = (RuntimeObject *)__this->get_U3CmessageU3Ei__Field_0();
V_0 = (RuntimeObject *)L_2;
il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *));
RuntimeObject * L_3 = V_1;
G_B1_0 = (&V_0);
G_B1_1 = 0;
G_B1_2 = L_1;
G_B1_3 = L_1;
G_B1_4 = _stringLiteral5858A25A11472FD4CFA2597DDB1EFF89706B5707;
G_B1_5 = NULL;
if (L_3)
{
G_B3_0 = (&V_0);
G_B3_1 = 0;
G_B3_2 = L_1;
G_B3_3 = L_1;
G_B3_4 = _stringLiteral5858A25A11472FD4CFA2597DDB1EFF89706B5707;
G_B3_5 = NULL;
goto IL_003b;
}
}
{
RuntimeObject * L_4 = (*(RuntimeObject **)G_B1_0);
V_1 = (RuntimeObject *)L_4;
RuntimeObject * L_5 = V_1;
G_B2_0 = (&V_1);
G_B2_1 = G_B1_1;
G_B2_2 = G_B1_2;
G_B2_3 = G_B1_3;
G_B2_4 = G_B1_4;
G_B2_5 = G_B1_5;
if (L_5)
{
G_B3_0 = (&V_1);
G_B3_1 = G_B1_1;
G_B3_2 = G_B1_2;
G_B3_3 = G_B1_3;
G_B3_4 = G_B1_4;
G_B3_5 = G_B1_5;
goto IL_003b;
}
}
{
G_B4_0 = ((String_t*)(NULL));
G_B4_1 = G_B2_1;
G_B4_2 = G_B2_2;
G_B4_3 = G_B2_3;
G_B4_4 = G_B2_4;
G_B4_5 = G_B2_5;
goto IL_0046;
}
IL_003b:
{
NullCheck((RuntimeObject *)(*G_B3_0));
String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B3_0));
G_B4_0 = L_6;
G_B4_1 = G_B3_1;
G_B4_2 = G_B3_2;
G_B4_3 = G_B3_3;
G_B4_4 = G_B3_4;
G_B4_5 = G_B3_5;
}
IL_0046:
{
NullCheck(G_B4_2);
ArrayElementTypeCheck (G_B4_2, G_B4_0);
(G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (RuntimeObject *)G_B4_0);
String_t* L_7 = String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD((RuntimeObject*)G_B4_5, (String_t*)G_B4_4, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)G_B4_3, /*hidden argument*/NULL);
return L_7;
}
}
#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 Facebook.Unity.Canvas.CanvasFacebook_CanvasUIMethodCall`1<System.Object>::.ctor(Facebook.Unity.Canvas.CanvasFacebook,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasUIMethodCall_1__ctor_mA924A9780540ECAA7A8955C3145010CC8F00845A_gshared (CanvasUIMethodCall_1_tE38745DE6A2D71B417BD4CD0EBA247F66304816B * __this, CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB * ___canvasImpl0, String_t* ___methodName1, String_t* ___callbackMethod2, const RuntimeMethod* method)
{
{
CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB * L_0 = ___canvasImpl0;
String_t* L_1 = ___methodName1;
NullCheck((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this);
(( void (*) (MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *, FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 *, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this, (FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 *)L_0, (String_t*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB * L_2 = ___canvasImpl0;
__this->set_canvasImpl_4(L_2);
String_t* L_3 = ___callbackMethod2;
__this->set_callbackMethod_5(L_3);
return;
}
}
// System.Void Facebook.Unity.Canvas.CanvasFacebook_CanvasUIMethodCall`1<System.Object>::Call(Facebook.Unity.MethodArguments)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasUIMethodCall_1_Call_m3D2147BC23A9B2EF0C5D18D8306E2F1291229C19_gshared (CanvasUIMethodCall_1_tE38745DE6A2D71B417BD4CD0EBA247F66304816B * __this, MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * ___args0, const RuntimeMethod* method)
{
{
NullCheck((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this);
String_t* L_0 = (( String_t* (*) (MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * L_1 = ___args0;
NullCheck((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this);
FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * L_2 = (( FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * (*) (MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
NullCheck((CanvasUIMethodCall_1_tE38745DE6A2D71B417BD4CD0EBA247F66304816B *)__this);
(( void (*) (CanvasUIMethodCall_1_tE38745DE6A2D71B417BD4CD0EBA247F66304816B *, String_t*, MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *, FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((CanvasUIMethodCall_1_tE38745DE6A2D71B417BD4CD0EBA247F66304816B *)__this, (String_t*)L_0, (MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)L_1, (FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return;
}
}
// System.Void Facebook.Unity.Canvas.CanvasFacebook_CanvasUIMethodCall`1<System.Object>::UI(System.String,Facebook.Unity.MethodArguments,Facebook.Unity.FacebookDelegate`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasUIMethodCall_1_UI_m100584F83B7BFF46FC5EDFBE379F834FAC4CA1C1_gshared (CanvasUIMethodCall_1_tE38745DE6A2D71B417BD4CD0EBA247F66304816B * __this, String_t* ___method0, MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * ___args1, FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * ___callback2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUIMethodCall_1_UI_m100584F83B7BFF46FC5EDFBE379F834FAC4CA1C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * V_0 = NULL;
String_t* V_1 = NULL;
{
CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB * L_0 = (CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB *)__this->get_canvasImpl_4();
NullCheck(L_0);
RuntimeObject* L_1 = (RuntimeObject*)L_0->get_canvasJSWrapper_5();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(1 /* System.Void Facebook.Unity.Canvas.ICanvasJSWrapper::DisableFullScreen() */, ICanvasJSWrapper_t51DE9666E794B5A1312C40B574E4332A8C51C6F0_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * L_2 = ___args1;
MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * L_3 = (MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)il2cpp_codegen_object_new(MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A_il2cpp_TypeInfo_var);
MethodArguments__ctor_mCD0FEAC74634F6FD43B4F6B5EB127ED7024FAAAD(L_3, (MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)L_2, /*hidden argument*/NULL);
V_0 = (MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)L_3;
MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * L_4 = V_0;
CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB * L_5 = (CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB *)__this->get_canvasImpl_4();
NullCheck(L_5);
String_t* L_6 = (String_t*)L_5->get_appId_3();
NullCheck((MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)L_4);
MethodArguments_AddString_m0AC2B248277E3BB0CD32BB2378B742FA1AF4901C((MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)L_4, (String_t*)_stringLiteral9478629FC093D229DF09E560AEAA62C24EAF40E7, (String_t*)L_6, /*hidden argument*/NULL);
MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * L_7 = V_0;
String_t* L_8 = ___method0;
NullCheck((MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)L_7);
MethodArguments_AddString_m0AC2B248277E3BB0CD32BB2378B742FA1AF4901C((MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)L_7, (String_t*)_stringLiteralBFBAF8B2D1CDF92BF83857FE1748C0F68DE03D47, (String_t*)L_8, /*hidden argument*/NULL);
CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB * L_9 = (CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB *)__this->get_canvasImpl_4();
NullCheck((FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 *)L_9);
CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105 * L_10 = FacebookBase_get_CallbackManager_mBB4EC92D8211AC4CAAFCB3823B901F75E24E537C_inline((FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 *)L_9, /*hidden argument*/NULL);
FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * L_11 = ___callback2;
NullCheck((CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105 *)L_10);
String_t* L_12 = (( String_t* (*) (CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105 *, FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105 *)L_10, (FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
V_1 = (String_t*)L_12;
CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB * L_13 = (CanvasFacebook_t747444639C1C581019AD70E35D04A0041142D3EB *)__this->get_canvasImpl_4();
NullCheck(L_13);
RuntimeObject* L_14 = (RuntimeObject*)L_13->get_canvasJSWrapper_5();
MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * L_15 = V_0;
NullCheck((MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)L_15);
String_t* L_16 = MethodArguments_ToJsonString_mB4678DBDEA648BEE531004BFA562EA532627A3DE((MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)L_15, /*hidden argument*/NULL);
String_t* L_17 = V_1;
String_t* L_18 = (String_t*)__this->get_callbackMethod_5();
NullCheck((RuntimeObject*)L_14);
InterfaceActionInvoker3< String_t*, String_t*, String_t* >::Invoke(8 /* System.Void Facebook.Unity.Canvas.ICanvasJSWrapper::Ui(System.String,System.String,System.String) */, ICanvasJSWrapper_t51DE9666E794B5A1312C40B574E4332A8C51C6F0_il2cpp_TypeInfo_var, (RuntimeObject*)L_14, (String_t*)L_16, (String_t*)L_17, (String_t*)L_18);
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 Facebook.Unity.FacebookDelegate`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FacebookDelegate_1__ctor_m84766D774666FF72A1A870D04B4A031411762A79_gshared (FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void Facebook.Unity.FacebookDelegate`1<System.Object>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FacebookDelegate_1_Invoke_m07C0D29B2C947CC3F84FBECC700E42DDE23AA1B8_gshared (FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * __this, RuntimeObject * ___result0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___result0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___result0, targetMethod);
}
}
else if (___parameterCount != 1)
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker0::Invoke(targetMethod, ___result0);
else
GenericVirtActionInvoker0::Invoke(targetMethod, ___result0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___result0);
else
VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___result0);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___result0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___result0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___result0);
else
GenericVirtActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___result0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___result0);
else
VirtActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___result0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___result0, targetMethod);
}
}
}
}
// System.IAsyncResult Facebook.Unity.FacebookDelegate`1<System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* FacebookDelegate_1_BeginInvoke_m4F5CF7B083380269F632F32F4291AD2560350A97_gshared (FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * __this, RuntimeObject * ___result0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___result0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void Facebook.Unity.FacebookDelegate`1<System.Object>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FacebookDelegate_1_EndInvoke_mC6F98BAB611B3AD3DA26F6B5F0DE170C45DA180B_gshared (FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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 Facebook.Unity.MethodCall`1<System.Object>::.ctor(Facebook.Unity.FacebookBase,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_1__ctor_m802C6D1FAEE164DF53C5A87DF68AFE2C6720EA74_gshared (MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 * __this, FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 * ___facebookImpl0, String_t* ___methodName1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodCall_1__ctor_m802C6D1FAEE164DF53C5A87DF68AFE2C6720EA74_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * L_0 = (MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)il2cpp_codegen_object_new(MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A_il2cpp_TypeInfo_var);
MethodArguments__ctor_m553F1F675A365BD7EAEA407618085B1E85B86CF5(L_0, /*hidden argument*/NULL);
NullCheck((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this);
(( void (*) (MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *, MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this, (MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 * L_1 = ___facebookImpl0;
NullCheck((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this);
(( void (*) (MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *, FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this, (FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
String_t* L_2 = ___methodName1;
NullCheck((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this);
(( void (*) (MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this, (String_t*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return;
}
}
// System.String Facebook.Unity.MethodCall`1<System.Object>::get_MethodName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodCall_1_get_MethodName_m5CBEC5C534B5968899A72699A3F1965FDAB56AB4_gshared (MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = (String_t*)__this->get_U3CMethodNameU3Ek__BackingField_0();
return L_0;
}
}
// System.Void Facebook.Unity.MethodCall`1<System.Object>::set_MethodName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_1_set_MethodName_mB16292040A51768DEF5A17B7962A6B515FAF6336_gshared (MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CMethodNameU3Ek__BackingField_0(L_0);
return;
}
}
// Facebook.Unity.FacebookDelegate`1<T> Facebook.Unity.MethodCall`1<System.Object>::get_Callback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * MethodCall_1_get_Callback_m845CDA2B56AB9AD7ECECB3659A9B4C62CC326286_gshared (MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 * __this, const RuntimeMethod* method)
{
{
FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * L_0 = (FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA *)__this->get_U3CCallbackU3Ek__BackingField_1();
return L_0;
}
}
// System.Void Facebook.Unity.MethodCall`1<System.Object>::set_Callback(Facebook.Unity.FacebookDelegate`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_1_set_Callback_m44BEBF61D32464DA8D4C8EC903360C14D0DA9713_gshared (MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 * __this, FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * ___value0, const RuntimeMethod* method)
{
{
FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * L_0 = ___value0;
__this->set_U3CCallbackU3Ek__BackingField_1(L_0);
return;
}
}
// System.Void Facebook.Unity.MethodCall`1<System.Object>::set_FacebookImpl(Facebook.Unity.FacebookBase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_1_set_FacebookImpl_m4F5A29DC48C5E69BFE4EDBB0C94D68B362FB9B2F_gshared (MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 * __this, FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 * ___value0, const RuntimeMethod* method)
{
{
FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 * L_0 = ___value0;
__this->set_U3CFacebookImplU3Ek__BackingField_2(L_0);
return;
}
}
// System.Void Facebook.Unity.MethodCall`1<System.Object>::set_Parameters(Facebook.Unity.MethodArguments)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_1_set_Parameters_m2A1295D29D429343C9612CB20B4900EC9A95CE72_gshared (MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 * __this, MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * ___value0, const RuntimeMethod* method)
{
{
MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * L_0 = ___value0;
__this->set_U3CParametersU3Ek__BackingField_3(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 Facebook.Unity.Mobile.Android.AndroidFacebook_JavaMethodCall`1<System.Object>::.ctor(Facebook.Unity.Mobile.Android.AndroidFacebook,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JavaMethodCall_1__ctor_m06250F3E5ED8053C24DF9BF0B7C628788683A2A1_gshared (JavaMethodCall_1_tBA95102CDAA272A68B0E2BE48DA2462F6F3E486B * __this, AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5 * ___androidImpl0, String_t* ___methodName1, const RuntimeMethod* method)
{
{
AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5 * L_0 = ___androidImpl0;
String_t* L_1 = ___methodName1;
NullCheck((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this);
(( void (*) (MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *, FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 *, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this, (FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 *)L_0, (String_t*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5 * L_2 = ___androidImpl0;
__this->set_androidImpl_4(L_2);
return;
}
}
// System.Void Facebook.Unity.Mobile.Android.AndroidFacebook_JavaMethodCall`1<System.Object>::Call(Facebook.Unity.MethodArguments)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JavaMethodCall_1_Call_mA2B12085844B66E0C3169442E25BB9AE12494383_gshared (JavaMethodCall_1_tBA95102CDAA272A68B0E2BE48DA2462F6F3E486B * __this, MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JavaMethodCall_1_Call_mA2B12085844B66E0C3169442E25BB9AE12494383_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * V_0 = NULL;
{
MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * L_0 = ___args0;
if (L_0)
{
goto IL_000b;
}
}
{
MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * L_1 = (MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)il2cpp_codegen_object_new(MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A_il2cpp_TypeInfo_var);
MethodArguments__ctor_m553F1F675A365BD7EAEA407618085B1E85B86CF5(L_1, /*hidden argument*/NULL);
V_0 = (MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)L_1;
goto IL_0012;
}
IL_000b:
{
MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * L_2 = ___args0;
MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * L_3 = (MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)il2cpp_codegen_object_new(MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A_il2cpp_TypeInfo_var);
MethodArguments__ctor_mCD0FEAC74634F6FD43B4F6B5EB127ED7024FAAAD(L_3, (MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)L_2, /*hidden argument*/NULL);
V_0 = (MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)L_3;
}
IL_0012:
{
NullCheck((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this);
FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * L_4 = (( FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * (*) (MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
if (!L_4)
{
goto IL_003b;
}
}
{
MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * L_5 = V_0;
AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5 * L_6 = (AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5 *)__this->get_androidImpl_4();
NullCheck((FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 *)L_6);
CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105 * L_7 = FacebookBase_get_CallbackManager_mBB4EC92D8211AC4CAAFCB3823B901F75E24E537C_inline((FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 *)L_6, /*hidden argument*/NULL);
NullCheck((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this);
FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * L_8 = (( FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA * (*) (MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
NullCheck((CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105 *)L_7);
String_t* L_9 = (( String_t* (*) (CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105 *, FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105 *)L_7, (FacebookDelegate_1_tF53D25DBCBE445C6405B57800721BC755379D2EA *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
NullCheck((MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)L_5);
MethodArguments_AddString_m0AC2B248277E3BB0CD32BB2378B742FA1AF4901C((MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)L_5, (String_t*)_stringLiteral3120F6061B840C2605321DA394727175D2C81C4A, (String_t*)L_9, /*hidden argument*/NULL);
}
IL_003b:
{
AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5 * L_10 = (AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5 *)__this->get_androidImpl_4();
NullCheck((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this);
String_t* L_11 = (( String_t* (*) (MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((MethodCall_1_t46371F82EAEFC75289184BFFC8D0DAB53C1355B3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A * L_12 = V_0;
NullCheck((MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)L_12);
String_t* L_13 = MethodArguments_ToJsonString_mB4678DBDEA648BEE531004BFA562EA532627A3DE((MethodArguments_t9427771352496A3E7C8B8703E25C63EFC734013A *)L_12, /*hidden argument*/NULL);
NullCheck((AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5 *)L_10);
AndroidFacebook_CallFB_m944042FB6A254C92B893413CD86914CEDE97C6B5((AndroidFacebook_t69351339BB458B0CC178F87D7CE3B3C846A839C5 *)L_10, (String_t*)L_11, (String_t*)L_13, /*hidden argument*/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 Facebook.Unity.Utilities_Callback`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Callback_1__ctor_mAED1227D0448F0BD4EF6DA256D285E3C7E56D5AD_gshared (Callback_1_tC236E0C1DC51FBD8E73B1BC583F52DE679142177 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void Facebook.Unity.Utilities_Callback`1<System.Object>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Callback_1_Invoke_m0BB0564F8333B6190CF3804C0B879250E943A2EC_gshared (Callback_1_tC236E0C1DC51FBD8E73B1BC583F52DE679142177 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else if (___parameterCount != 1)
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker0::Invoke(targetMethod, ___obj0);
else
GenericVirtActionInvoker0::Invoke(targetMethod, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___obj0);
else
VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult Facebook.Unity.Utilities_Callback`1<System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Callback_1_BeginInvoke_mC1716AAFE15D389356A5CFDEE5003409D6ABB5C5_gshared (Callback_1_tC236E0C1DC51FBD8E73B1BC583F52DE679142177 * __this, RuntimeObject * ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___obj0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void Facebook.Unity.Utilities_Callback`1<System.Object>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Callback_1_EndInvoke_mDF9A57AF2A534F2547B601365D19DBD6C28F2231_gshared (Callback_1_tC236E0C1DC51FBD8E73B1BC583F52DE679142177 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<System.Boolean>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mAC998B8AD6A8D39434263D21FA7397949F39F244_gshared (Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<System.Boolean>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m45E8F9900F9DB395C48A868A7C6A83BDD7FC692F_gshared (Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * __this, bool ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< bool >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< bool >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<System.Boolean>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m10C6A956131CC7E0B40A82EF4973DB68378C7F11_gshared (Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * __this, bool ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m10C6A956131CC7E0B40A82EF4973DB68378C7F11_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<System.Boolean>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m015FBFB09F7184CC5F17647CA950DBC77D10A54A_gshared (Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<System.Byte>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m79D6B44D66130806746CEDFF5C17061C9D77CE10_gshared (Action_1_t7CCD21D1063A83C9B6E5A95BFCE022A6EB65C46A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<System.Byte>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m4CA3C565611C40259D904353017B4DA9EFE799C7_gshared (Action_1_t7CCD21D1063A83C9B6E5A95BFCE022A6EB65C46A * __this, uint8_t ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (uint8_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, uint8_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (uint8_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< uint8_t >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< uint8_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< uint8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< uint8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, uint8_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<System.Byte>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m06493A4A91EF5E0099535DF5E9D1CCA85F7519F6_gshared (Action_1_t7CCD21D1063A83C9B6E5A95BFCE022A6EB65C46A * __this, uint8_t ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m06493A4A91EF5E0099535DF5E9D1CCA85F7519F6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<System.Byte>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m0DA07977F085F74CAD3DC28D914D43C86B57C2D1_gshared (Action_1_t7CCD21D1063A83C9B6E5A95BFCE022A6EB65C46A * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mF1244F034C6849C76C89CC52AA7461D884E08BA5_gshared (Action_1_t0DEF774B03048897D0C95E1C3FDEC90E76AD66F6 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m1A0E605ED2664E7DF168EB141E0235B798655E79_gshared (Action_1_t0DEF774B03048897D0C95E1C3FDEC90E76AD66F6 * __this, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m02789A61A2C3829C117DD7793B1273498B3EB8E6_gshared (Action_1_t0DEF774B03048897D0C95E1C3FDEC90E76AD66F6 * __this, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m02789A61A2C3829C117DD7793B1273498B3EB8E6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_mCA6077E6DA920AFFEF1BBD0FCF5F621E71C59159_gshared (Action_1_t0DEF774B03048897D0C95E1C3FDEC90E76AD66F6 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m1FB5A50B7C3B11182DC98243A751DCCBE0E041C2_gshared (Action_1_t8C2E57068917ACE417DC9F9EE5C1B893777A9E26 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m8603CBD873C24664D8329437326A8FFA148436BA_gshared (Action_1_t8C2E57068917ACE417DC9F9EE5C1B893777A9E26 * __this, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m4A0C89BFD4F9ACA2EC33779E1FE47885A25D5063_gshared (Action_1_t8C2E57068917ACE417DC9F9EE5C1B893777A9E26 * __this, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m4A0C89BFD4F9ACA2EC33779E1FE47885A25D5063_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m285CCB45A987C95996681BB5C7C831B1478D2486_gshared (Action_1_t8C2E57068917ACE417DC9F9EE5C1B893777A9E26 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<System.Guid>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m1B1AAFACBBC63972A7B94AFDF7122B330CBE9EE8_gshared (Action_1_t914484DED737548EE8FABFA959036371C8235942 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<System.Guid>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m0A36AC4F2CACB1975B2716676ED3576FD82E20DA_gshared (Action_1_t914484DED737548EE8FABFA959036371C8235942 * __this, Guid_t ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (Guid_t , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, Guid_t , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (Guid_t , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< Guid_t >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< Guid_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< Guid_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< Guid_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, Guid_t , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<System.Guid>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m147EA0AF0B438620EBDA154160680EDFB8FDE786_gshared (Action_1_t914484DED737548EE8FABFA959036371C8235942 * __this, Guid_t ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m147EA0AF0B438620EBDA154160680EDFB8FDE786_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Guid_t_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<System.Guid>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m01A63BAFFC2B2B3DA4D9F1E316F90534ADE07962_gshared (Action_1_t914484DED737548EE8FABFA959036371C8235942 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<System.Int32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m2CDF7A9DFEDA8D59543C004CB97A89C47A0CDC3E_gshared (Action_1_t9B7C5376025AEF32439C13FB3BA4BFF8F0F0477B * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<System.Int32>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m236B4013FB31497A692E886DB7DC16D52BE79500_gshared (Action_1_t9B7C5376025AEF32439C13FB3BA4BFF8F0F0477B * __this, int32_t ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<System.Int32>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_mBCFE828824358B60CCF7516B3819DE3C6273488A_gshared (Action_1_t9B7C5376025AEF32439C13FB3BA4BFF8F0F0477B * __this, int32_t ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_mBCFE828824358B60CCF7516B3819DE3C6273488A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<System.Int32>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m9928383A4BF97F840C80D37A0751B01BDDB2AEAD_gshared (Action_1_t9B7C5376025AEF32439C13FB3BA4BFF8F0F0477B * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<System.Int32Enum>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mABA45A1E0D469C919BA3E91E52598F7CB38EDDE9_gshared (Action_1_tABA1E3BFA092E3309A0ECC53722E4F9826DCE983 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<System.Int32Enum>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m83B65885AF676046EB9CBBE78DA7A03D72B22AC3_gshared (Action_1_tABA1E3BFA092E3309A0ECC53722E4F9826DCE983 * __this, int32_t ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<System.Int32Enum>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m7BC329DB2132CBE9D7D92B0F80134971E5EDB976_gshared (Action_1_tABA1E3BFA092E3309A0ECC53722E4F9826DCE983 * __this, int32_t ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m7BC329DB2132CBE9D7D92B0F80134971E5EDB976_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<System.Int32Enum>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m8E9AAC4C2BBCB6DA3FB469B61C1924D0AAF3B04F_gshared (Action_1_tABA1E3BFA092E3309A0ECC53722E4F9826DCE983 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_gshared (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<System.Object>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_mB86FC1B303E77C41ED0E94FC3592A9CF8DA571D5_gshared (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else if (___parameterCount != 1)
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker0::Invoke(targetMethod, ___obj0);
else
GenericVirtActionInvoker0::Invoke(targetMethod, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___obj0);
else
VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m1D9F0AFC5864321DE96BED72F9B47CFB288907E9_gshared (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * __this, RuntimeObject * ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___obj0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<System.Object>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_mACF259F14B1B9C8DA5E54D0D3349F682C71952DE_gshared (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<System.Single>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mC691472CF73665CE1DE7A83F766830460F968176_gshared (Action_1_tCBF7F8C203F735692364E5850B0A960E0EABD03B * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<System.Single>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m3099B964730967137959EB1E40A9B670E6430E9F_gshared (Action_1_tCBF7F8C203F735692364E5850B0A960E0EABD03B * __this, float ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (float, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, float, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (float, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< float >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< float >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, float, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<System.Single>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m9180967E80D10A8E0F1D965A99D8AFDAFDB41B2F_gshared (Action_1_tCBF7F8C203F735692364E5850B0A960E0EABD03B * __this, float ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m9180967E80D10A8E0F1D965A99D8AFDAFDB41B2F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<System.Single>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m424C199EF47703478818C670633F7B3D7BCD3E7B_gshared (Action_1_tCBF7F8C203F735692364E5850B0A960E0EABD03B * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m09B6544493F7B95A7FA3A568D25489C5E3EEAFB6_gshared (Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m9353AD83FE03CCDD354D18BF22CFB6F19C4CF4D0_gshared (Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 * __this, AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m38D4DB74F04D419EB6A08DC496693915A0A3060D_gshared (Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 * __this, AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m38D4DB74F04D419EB6A08DC496693915A0A3060D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_mB5DE8FAC1ABE1A25A6D3EBC97D75FDD9D44A78B4_gshared (Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<System.UInt32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mE814C331AF2CD541B1C7F303CD33735BC6B60B54_gshared (Action_1_t6131F366126278D446E2FDDB6336343007AC2F72 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<System.UInt32>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_mFBA1525E8C2EA071F964AC15676FA03C0388A559_gshared (Action_1_t6131F366126278D446E2FDDB6336343007AC2F72 * __this, uint32_t ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (uint32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, uint32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (uint32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< uint32_t >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< uint32_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, uint32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<System.UInt32>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m1CD951C5C13C40C9041757E11FA70D942A302894_gshared (Action_1_t6131F366126278D446E2FDDB6336343007AC2F72 * __this, uint32_t ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m1CD951C5C13C40C9041757E11FA70D942A302894_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<System.UInt32>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m549EA6925D8939121FC75CDCE086C1C4694CC5F1_gshared (Action_1_t6131F366126278D446E2FDDB6336343007AC2F72 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<System.UInt64>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m13E08D12C9AF59A22AD30B10692570CABFA369BE_gshared (Action_1_t871A401E6A572812A4A4A51F3A4CCE60BEC5CF17 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<System.UInt64>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m2C8E8F622C77B88022785A800B16033A34C12C73_gshared (Action_1_t871A401E6A572812A4A4A51F3A4CCE60BEC5CF17 * __this, uint64_t ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (uint64_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, uint64_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (uint64_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< uint64_t >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< uint64_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, uint64_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<System.UInt64>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_mC98C5450437D4211B29891F16F31D1EEF56C1522_gshared (Action_1_t871A401E6A572812A4A4A51F3A4CCE60BEC5CF17 * __this, uint64_t ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_mC98C5450437D4211B29891F16F31D1EEF56C1522_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<System.UInt64>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m8C2955E6205C7753655CAC4C9AED6676DB5B959D_gshared (Action_1_t871A401E6A572812A4A4A51F3A4CCE60BEC5CF17 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.BeforeRenderHelper_OrderBlock>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m1AEA819C8C3073973ED2D30B85E0ACB116745B06_gshared (Action_1_tFEDD064D971126B0D10EFA0985118B241D1D1869 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.BeforeRenderHelper_OrderBlock>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m4F1D98310C1F7AE0C0469B98BC7380AA75669CD8_gshared (Action_1_tFEDD064D971126B0D10EFA0985118B241D1D1869 * __this, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.BeforeRenderHelper_OrderBlock>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m5CDBA15E106EF1422C06CA296C25DEB9F63315DD_gshared (Action_1_tFEDD064D971126B0D10EFA0985118B241D1D1869 * __this, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m5CDBA15E106EF1422C06CA296C25DEB9F63315DD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.BeforeRenderHelper_OrderBlock>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m4B0C81BC63C7F2CDB2369115A9F0D5E9E744BA39_gshared (Action_1_tFEDD064D971126B0D10EFA0985118B241D1D1869 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.Color32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m68119E007C82BBD95534D9A01AFB504B0CA30DA5_gshared (Action_1_t82786770BFC5780C2E617DB25669143D9ED35825 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.Color32>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m9DDE75DBEAF6037DFA29E3C5622028EC3889F2D9_gshared (Action_1_t82786770BFC5780C2E617DB25669143D9ED35825 * __this, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.Color32>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m35B0142A5389168177B0689FB5B5FB008A0F18D5_gshared (Action_1_t82786770BFC5780C2E617DB25669143D9ED35825 * __this, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m35B0142A5389168177B0689FB5B5FB008A0F18D5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.Color32>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m1D8A6BBE2C1A4068E8E9556FB75B9DB40E08B9B1_gshared (Action_1_t82786770BFC5780C2E617DB25669143D9ED35825 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m7A6116101BE8D1B83A5EF3A31F53FD0F468D971F_gshared (Action_1_t6C5DB7139F66EB76956C49A23DE0D327DCA73C81 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.EventSystems.RaycastResult>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m2EEB642F3E77239C6C09CBF0EA06C574DFDAD8C2_gshared (Action_1_t6C5DB7139F66EB76956C49A23DE0D327DCA73C81 * __this, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.EventSystems.RaycastResult>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_mE4313EF810BAC126BFC787D0F9A91B89564A5F78_gshared (Action_1_t6C5DB7139F66EB76956C49A23DE0D327DCA73C81 * __this, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_mE4313EF810BAC126BFC787D0F9A91B89564A5F78_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.EventSystems.RaycastResult>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m43AF66B5BCD4C69FBCB2474507BF27B72DC4ACBE_gshared (Action_1_t6C5DB7139F66EB76956C49A23DE0D327DCA73C81 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.Networking.ChannelPacket>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mCA545FF6D7EF12B7B5A3E0BCD476E1FDA5EDE723_gshared (Action_1_t9DDCD79769ABDA964DF387C3C5D72506D9E977CC * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.Networking.ChannelPacket>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_mBA44DA9CA74FA5384302469EAB89D74EA4CC7891_gshared (Action_1_t9DDCD79769ABDA964DF387C3C5D72506D9E977CC * __this, ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.Networking.ChannelPacket>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m5488FF7945512DE423E4E1BD75E44F289D423CE6_gshared (Action_1_t9DDCD79769ABDA964DF387C3C5D72506D9E977CC * __this, ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m5488FF7945512DE423E4E1BD75E44F289D423CE6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.Networking.ChannelPacket>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_mCE8D079F9629B8587398C40396F702E0DCCCDF3F_gshared (Action_1_t9DDCD79769ABDA964DF387C3C5D72506D9E977CC * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.Networking.ClientScene_PendingOwner>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mE369DC77713F173AA2063BF85AAE547CADF52AAC_gshared (Action_1_t92AFDDED5402DAAADD42F33DBA39BA7B4BF1161A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.Networking.ClientScene_PendingOwner>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m3354DF39EA50898C430977818415B4C8593FBD92_gshared (Action_1_t92AFDDED5402DAAADD42F33DBA39BA7B4BF1161A * __this, PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.Networking.ClientScene_PendingOwner>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_mB210360A28A9B4279D84FCA3CD3CF3278E73E6C1_gshared (Action_1_t92AFDDED5402DAAADD42F33DBA39BA7B4BF1161A * __this, PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_mB210360A28A9B4279D84FCA3CD3CF3278E73E6C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.Networking.ClientScene_PendingOwner>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_mE8516466E7F74363D401C3FBF014FF5C20C80027_gshared (Action_1_t92AFDDED5402DAAADD42F33DBA39BA7B4BF1161A * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.Networking.LocalClient_InternalMsg>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mC37A9A71CABD9C4C6ABC6A7BEE0CD23111861322_gshared (Action_1_t8A86539005F88E0B73A9A5A4AD68222BFB77FEEB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.Networking.LocalClient_InternalMsg>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_mE02A87E1DA30EE0357132115A65952A9E8B05BEE_gshared (Action_1_t8A86539005F88E0B73A9A5A4AD68222BFB77FEEB * __this, InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.Networking.LocalClient_InternalMsg>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m79E0B2D658D5B21C4C786744E6C6C377EC81DCFD_gshared (Action_1_t8A86539005F88E0B73A9A5A4AD68222BFB77FEEB * __this, InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m79E0B2D658D5B21C4C786744E6C6C377EC81DCFD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.Networking.LocalClient_InternalMsg>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_mBC2C8957B6B946879ED488353A64165A4DFEBB24_gshared (Action_1_t8A86539005F88E0B73A9A5A4AD68222BFB77FEEB * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.Networking.NetworkLobbyManager_PendingPlayer>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mFDD1FD5738777D98860372B4E682482A28950940_gshared (Action_1_t1DC3DD76887A3DC0A423CE7BCBC7D8C5684DD33B * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.Networking.NetworkLobbyManager_PendingPlayer>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_mA450514591E6EDF3D2C0CD280B05ADCDFE4DBF67_gshared (Action_1_t1DC3DD76887A3DC0A423CE7BCBC7D8C5684DD33B * __this, PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.Networking.NetworkLobbyManager_PendingPlayer>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_mE2C6ADDC899C849AD1E6CE1CF2D486717C034859_gshared (Action_1_t1DC3DD76887A3DC0A423CE7BCBC7D8C5684DD33B * __this, PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_mE2C6ADDC899C849AD1E6CE1CF2D486717C034859_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.Networking.NetworkLobbyManager_PendingPlayer>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m7ACB89CE75F1BE46DCE59E7E00BEA153A308E94B_gshared (Action_1_t1DC3DD76887A3DC0A423CE7BCBC7D8C5684DD33B * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mD44CE3873DF5CE6A79F7E0486E975F138FC09E37_gshared (Action_1_tA52CEC15B4DC72F91013B30C153F16F5C5B257C8 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m5D128C9A25A573C2917CE3E047282877BC4504ED_gshared (Action_1_tA52CEC15B4DC72F91013B30C153F16F5C5B257C8 * __this, PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_mFDF13B1129ED7ED32B43BC6BCE22F71DB594AA19_gshared (Action_1_tA52CEC15B4DC72F91013B30C153F16F5C5B257C8 * __this, PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_mFDF13B1129ED7ED32B43BC6BCE22F71DB594AA19_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m9BB033B241FEBE141C086CBBA36B2BABED6A1859_gshared (Action_1_tA52CEC15B4DC72F91013B30C153F16F5C5B257C8 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mAFBACB6075BD94834E0DB59072FD6944E49085E8_gshared (Action_1_t5B34751F83F8DA7DD4FCBAC4E4771BCFF6028C9F * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m4AB33306187198F4E9982B5780C2DC3AB3569A5D_gshared (Action_1_t5B34751F83F8DA7DD4FCBAC4E4771BCFF6028C9F * __this, CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_mA64DEDBDA72CAD53205F5BA2411A5BF5806242EC_gshared (Action_1_t5B34751F83F8DA7DD4FCBAC4E4771BCFF6028C9F * __this, CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_mA64DEDBDA72CAD53205F5BA2411A5BF5806242EC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m2C5C60180A38A4DD964D78573E53B989A1FB08E9_gshared (Action_1_t5B34751F83F8DA7DD4FCBAC4E4771BCFF6028C9F * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m4F5562D11476EE7E42613A2EB9579B0420D00212_gshared (Action_1_t9067D73E0D49F5A367A0734CA77E72527B7CD313 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_mFAE17CCF16B07682469B273B318727D500D58BBC_gshared (Action_1_t9067D73E0D49F5A367A0734CA77E72527B7CD313 * __this, PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m8440B6C337ED1E0854945DDEF0673A8372BA7F9E_gshared (Action_1_t9067D73E0D49F5A367A0734CA77E72527B7CD313 * __this, PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m8440B6C337ED1E0854945DDEF0673A8372BA7F9E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m457CDB43688DC31CF438E5000CCCD231629282DA_gshared (Action_1_t9067D73E0D49F5A367A0734CA77E72527B7CD313 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.RaycastHit2D>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m55F8DFA7F18AF976768C92F7E9BB1DD3FF3E6062_gshared (Action_1_t163F662A723789B8BC371105BBD6022F26D9C6A6 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.RaycastHit2D>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_mEC0CE174BDCA992BB6547F088BBAD9C158C7ABB3_gshared (Action_1_t163F662A723789B8BC371105BBD6022F26D9C6A6 * __this, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.RaycastHit2D>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_mC77F0EE59782F18A917A440DC2882C8B4B8AC6DF_gshared (Action_1_t163F662A723789B8BC371105BBD6022F26D9C6A6 * __this, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_mC77F0EE59782F18A917A440DC2882C8B4B8AC6DF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.RaycastHit2D>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m96C6EC2E11534B05081A71060600FE1CEE4BEA61_gshared (Action_1_t163F662A723789B8BC371105BBD6022F26D9C6A6 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.UICharInfo>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mF7204709533A559AD2360CE21C4E9132749448C2_gshared (Action_1_t4362622E084A551168772B92FB4DFEA74E07CDA5 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.UICharInfo>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_mE5D6CFA5513201963291139EAE4BA751E6BAA9E3_gshared (Action_1_t4362622E084A551168772B92FB4DFEA74E07CDA5 * __this, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.UICharInfo>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_mEB7D149E305B5161037D7B4EA53522C466DB64F0_gshared (Action_1_t4362622E084A551168772B92FB4DFEA74E07CDA5 * __this, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_mEB7D149E305B5161037D7B4EA53522C466DB64F0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.UICharInfo>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m8C1485409A75344C81D3B49484A8A98BA33BE1FD_gshared (Action_1_t4362622E084A551168772B92FB4DFEA74E07CDA5 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.UILineInfo>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mE0CCFE17BB10BDFCD8D07CA02BC0DFA560399FA7_gshared (Action_1_t7065A5D96364A7C750A7B180A2502537A82A9910 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.UILineInfo>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m4BF0EFA723AA159FF2AAC8C0242FDF00B68EE960_gshared (Action_1_t7065A5D96364A7C750A7B180A2502537A82A9910 * __this, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.UILineInfo>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_mD00742BE47DDC0E0C42E919A99410635BF60ED73_gshared (Action_1_t7065A5D96364A7C750A7B180A2502537A82A9910 * __this, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_mD00742BE47DDC0E0C42E919A99410635BF60ED73_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.UILineInfo>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_mF513AA8524CB0E18A8FFDBE60E3D76E03F82A012_gshared (Action_1_t7065A5D96364A7C750A7B180A2502537A82A9910 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.UIVertex>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m6505C49F955F69391EF444EB0908EB0D42FE9550_gshared (Action_1_tE875D12E6922BF87BD02BA6C0FBD1096BCBB9426 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.UIVertex>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m7C2DF2B9ABC27A45AA93CD1AFFE294D90117F7E8_gshared (Action_1_tE875D12E6922BF87BD02BA6C0FBD1096BCBB9426 * __this, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.UIVertex>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m4AF84490D9160024EE3E0848204F17DF364D0670_gshared (Action_1_tE875D12E6922BF87BD02BA6C0FBD1096BCBB9426 * __this, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m4AF84490D9160024EE3E0848204F17DF364D0670_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.UIVertex>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m18180130C331EC55CC4EA2B355844502FC01F805_gshared (Action_1_tE875D12E6922BF87BD02BA6C0FBD1096BCBB9426 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m67A4804AE910B8E1C9E63CBE2337026D7C97996D_gshared (Action_1_tD3557152EC38C36B3C25B7FA509B9EC992BEBED0 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_mA9936F7D0BFFA208E6E8980985D512EC43CB2634_gshared (Action_1_tD3557152EC38C36B3C25B7FA509B9EC992BEBED0 * __this, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_mFD2A2F356CD808B55B916C0DD2D9F0DE63B33F0D_gshared (Action_1_tD3557152EC38C36B3C25B7FA509B9EC992BEBED0 * __this, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_mFD2A2F356CD808B55B916C0DD2D9F0DE63B33F0D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_mC476BFB9DE2778ED8150DE12373D9A14D7007FF8_gshared (Action_1_tD3557152EC38C36B3C25B7FA509B9EC992BEBED0 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.Vector2>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mF36F999AF26B709D679B51ABE299AC26652C2018_gshared (Action_1_t97B24A3F0ABA64DD934A3DA82A6C9EB77C813E25 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.Vector2>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m674AE591E31E21CBE94BD41AAF0519868413C863_gshared (Action_1_t97B24A3F0ABA64DD934A3DA82A6C9EB77C813E25 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.Vector2>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m4606EE7147EF7F25AA23990FA44B7402D66175FD_gshared (Action_1_t97B24A3F0ABA64DD934A3DA82A6C9EB77C813E25 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m4606EE7147EF7F25AA23990FA44B7402D66175FD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.Vector2>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_mB3F04205E72ECDC9CEEE7E3B695FE580FADE16D1_gshared (Action_1_t97B24A3F0ABA64DD934A3DA82A6C9EB77C813E25 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.Vector3>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m197B29E727EEBB746017E6EBB5FC98EEE3CCF6A0_gshared (Action_1_t08BAF0B9143320EA6FA33CF25A59B6F1641EA5B6 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.Vector3>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m01066F9AC01095564C1DF560C4F274BFCE2E6979_gshared (Action_1_t08BAF0B9143320EA6FA33CF25A59B6F1641EA5B6 * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.Vector3>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_m4567A97BF77F30EC35B138E04CE92FDC0BDC9EA9_gshared (Action_1_t08BAF0B9143320EA6FA33CF25A59B6F1641EA5B6 * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m4567A97BF77F30EC35B138E04CE92FDC0BDC9EA9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.Vector3>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_mE6DCDFF015BC0B96D386AC04A6F75C89FEDC67A5_gshared (Action_1_t08BAF0B9143320EA6FA33CF25A59B6F1641EA5B6 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`1<UnityEngine.Vector4>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m53D22EB5B431DC2741DFD57307FC48C532D2D1B8_gshared (Action_1_t6289D638A9944C0743697466AAE4CAB276AF2F5A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<UnityEngine.Vector4>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m1284EB19343CD9DB32F2C8EE9EFF55999DA89881_gshared (Action_1_t6289D638A9944C0743697466AAE4CAB276AF2F5A * __this, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___obj0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E >::Invoke(targetMethod, targetThis, ___obj0);
else
GenericVirtActionInvoker1< Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
VirtActionInvoker1< Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`1<UnityEngine.Vector4>::BeginInvoke(T,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_1_BeginInvoke_mC47E6E9D12041F47B283B476BA584D82A76007CA_gshared (Action_1_t6289D638A9944C0743697466AAE4CAB276AF2F5A * __this, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_mC47E6E9D12041F47B283B476BA584D82A76007CA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.Action`1<UnityEngine.Vector4>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_EndInvoke_m43BC7861ACBF73E05B023007359954B5414F7DFF_gshared (Action_1_t6289D638A9944C0743697466AAE4CAB276AF2F5A * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`2<System.Boolean,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m554B24ED5873B2CD7DF609F61D2D11CC35DF6AE7_gshared (Action_2_t6C33D80670016FFA10F03F59FB542306FA60F1F3 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`2<System.Boolean,System.Object>::Invoke(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_Invoke_mA21ADF47E3138BEEB6A3E0015B2587A341D9FC36_gshared (Action_2_t6C33D80670016FFA10F03F59FB542306FA60F1F3 * __this, bool ___arg10, RuntimeObject * ___arg21, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 2)
{
// open
typedef void (*FunctionPointerType) (bool, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, bool, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (bool, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< bool, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg10, ___arg21);
else
GenericVirtActionInvoker2< bool, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg10, ___arg21);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< bool, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg10, ___arg21);
else
VirtActionInvoker2< bool, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg10, ___arg21);
}
}
else
{
typedef void (*FunctionPointerType) (void*, bool, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`2<System.Boolean,System.Object>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_2_BeginInvoke_m4F9434B4D9C00487F3304FDB70D3303596AD3081_gshared (Action_2_t6C33D80670016FFA10F03F59FB542306FA60F1F3 * __this, bool ___arg10, RuntimeObject * ___arg21, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_2_BeginInvoke_m4F9434B4D9C00487F3304FDB70D3303596AD3081_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &___arg10);
__d_args[1] = ___arg21;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void System.Action`2<System.Boolean,System.Object>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_EndInvoke_mAFE67979FF5DB345AFA6B5CEEC790EB620C12E99_gshared (Action_2_t6C33D80670016FFA10F03F59FB542306FA60F1F3 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`2<System.Char,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mA2639DB159E3B05930C6A2D4ADA031412CCFB1A0_gshared (Action_2_t2F784F6A8F0E6D7B6C7C73DCA17B1CCA8D724E48 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`2<System.Char,System.Object>::Invoke(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_Invoke_mB35D966442076362FBEEAD952988680900A4B476_gshared (Action_2_t2F784F6A8F0E6D7B6C7C73DCA17B1CCA8D724E48 * __this, Il2CppChar ___arg10, RuntimeObject * ___arg21, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 2)
{
// open
typedef void (*FunctionPointerType) (Il2CppChar, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, Il2CppChar, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (Il2CppChar, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< Il2CppChar, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg10, ___arg21);
else
GenericVirtActionInvoker2< Il2CppChar, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg10, ___arg21);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< Il2CppChar, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg10, ___arg21);
else
VirtActionInvoker2< Il2CppChar, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg10, ___arg21);
}
}
else
{
typedef void (*FunctionPointerType) (void*, Il2CppChar, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`2<System.Char,System.Object>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_2_BeginInvoke_m00BD43B0496F386EBA85D9FD7BF8480F6B2C1E13_gshared (Action_2_t2F784F6A8F0E6D7B6C7C73DCA17B1CCA8D724E48 * __this, Il2CppChar ___arg10, RuntimeObject * ___arg21, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_2_BeginInvoke_m00BD43B0496F386EBA85D9FD7BF8480F6B2C1E13_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &___arg10);
__d_args[1] = ___arg21;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void System.Action`2<System.Char,System.Object>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_EndInvoke_m314FF98D07323AB25B265AD9CF765812747A22FC_gshared (Action_2_t2F784F6A8F0E6D7B6C7C73DCA17B1CCA8D724E48 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`2<System.Int32,System.Int32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m4048F6E9D3C32BED328AD8C327950293062BB0EC_gshared (Action_2_t7F48DB8D71AB14B1331B4BB8EE28580F28191ACE * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`2<System.Int32,System.Int32>::Invoke(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_Invoke_mE6F0F8331921DED8D2AC7959CAAA28B26371EE97_gshared (Action_2_t7F48DB8D71AB14B1331B4BB8EE28580F28191ACE * __this, int32_t ___arg10, int32_t ___arg21, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 2)
{
// open
typedef void (*FunctionPointerType) (int32_t, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, int32_t, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (int32_t, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< int32_t, int32_t >::Invoke(targetMethod, targetThis, ___arg10, ___arg21);
else
GenericVirtActionInvoker2< int32_t, int32_t >::Invoke(targetMethod, targetThis, ___arg10, ___arg21);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< int32_t, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg10, ___arg21);
else
VirtActionInvoker2< int32_t, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg10, ___arg21);
}
}
else
{
typedef void (*FunctionPointerType) (void*, int32_t, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`2<System.Int32,System.Int32>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_2_BeginInvoke_m6896AF87BCD908F449DE142BACD2A924D9C1869C_gshared (Action_2_t7F48DB8D71AB14B1331B4BB8EE28580F28191ACE * __this, int32_t ___arg10, int32_t ___arg21, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_2_BeginInvoke_m6896AF87BCD908F449DE142BACD2A924D9C1869C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &___arg10);
__d_args[1] = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &___arg21);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void System.Action`2<System.Int32,System.Int32>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_EndInvoke_mE38ACAF24479F20B0C465A6EFF3DD349A1BE10F9_gshared (Action_2_t7F48DB8D71AB14B1331B4BB8EE28580F28191ACE * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`2<System.Int32,System.Int64>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m9C040F19BDAD892FF07CCF43ECF57026B3D9851C_gshared (Action_2_tC52FA3FD223419FC0456E089309277012CCE38E8 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`2<System.Int32,System.Int64>::Invoke(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_Invoke_m4CA8B2E800895A188FD0F7981737F367C5916FC7_gshared (Action_2_tC52FA3FD223419FC0456E089309277012CCE38E8 * __this, int32_t ___arg10, int64_t ___arg21, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 2)
{
// open
typedef void (*FunctionPointerType) (int32_t, int64_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, int32_t, int64_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (int32_t, int64_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< int32_t, int64_t >::Invoke(targetMethod, targetThis, ___arg10, ___arg21);
else
GenericVirtActionInvoker2< int32_t, int64_t >::Invoke(targetMethod, targetThis, ___arg10, ___arg21);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< int32_t, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg10, ___arg21);
else
VirtActionInvoker2< int32_t, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg10, ___arg21);
}
}
else
{
typedef void (*FunctionPointerType) (void*, int32_t, int64_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`2<System.Int32,System.Int64>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_2_BeginInvoke_m1A2023AD69CC33FE7360200C4E77F16B840BCCBB_gshared (Action_2_tC52FA3FD223419FC0456E089309277012CCE38E8 * __this, int32_t ___arg10, int64_t ___arg21, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_2_BeginInvoke_m1A2023AD69CC33FE7360200C4E77F16B840BCCBB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &___arg10);
__d_args[1] = Box(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var, &___arg21);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void System.Action`2<System.Int32,System.Int64>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_EndInvoke_m57B49839A4E216265C8247977CFB0361F32730D3_gshared (Action_2_tC52FA3FD223419FC0456E089309277012CCE38E8 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`2<System.Object,System.Boolean>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m657B1B0C1E9AC8EB5EBD8CF1E13727FDACB91441_gshared (Action_2_t429E4750D84EBAC7EB494EB565EE0C8E1177C576 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`2<System.Object,System.Boolean>::Invoke(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_Invoke_m7A04B203A571345E2BAEF8243CCC59E208EB189E_gshared (Action_2_t429E4750D84EBAC7EB494EB565EE0C8E1177C576 * __this, RuntimeObject * ___arg10, bool ___arg21, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 2)
{
// open
typedef void (*FunctionPointerType) (RuntimeObject *, bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RuntimeObject *, bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, targetMethod);
}
}
else if (___parameterCount != 2)
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< bool >::Invoke(targetMethod, ___arg10, ___arg21);
else
GenericVirtActionInvoker1< bool >::Invoke(targetMethod, ___arg10, ___arg21);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg10, ___arg21);
else
VirtActionInvoker1< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg10, ___arg21);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject *, bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< RuntimeObject *, bool >::Invoke(targetMethod, targetThis, ___arg10, ___arg21);
else
GenericVirtActionInvoker2< RuntimeObject *, bool >::Invoke(targetMethod, targetThis, ___arg10, ___arg21);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< RuntimeObject *, bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg10, ___arg21);
else
VirtActionInvoker2< RuntimeObject *, bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg10, ___arg21);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`2<System.Object,System.Boolean>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_2_BeginInvoke_m90CE2E30BF265027DA651AF5A3946F6E1C2404E7_gshared (Action_2_t429E4750D84EBAC7EB494EB565EE0C8E1177C576 * __this, RuntimeObject * ___arg10, bool ___arg21, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_2_BeginInvoke_m90CE2E30BF265027DA651AF5A3946F6E1C2404E7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = ___arg10;
__d_args[1] = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &___arg21);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void System.Action`2<System.Object,System.Boolean>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_EndInvoke_m42B557D898D05509759CA1113E3D28BA935CF1B8_gshared (Action_2_t429E4750D84EBAC7EB494EB565EE0C8E1177C576 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`2<System.Object,System.Int32Enum>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m11C09FEBBF4BEC8CAF47DAF048B54ED68F75D8DB_gshared (Action_2_t4A92D51BAC0CF291CCBECDD41B622EDAE4E77D9F * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`2<System.Object,System.Int32Enum>::Invoke(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_Invoke_m99868E8D293BF895026CEE7BD216A5AD7480826D_gshared (Action_2_t4A92D51BAC0CF291CCBECDD41B622EDAE4E77D9F * __this, RuntimeObject * ___arg10, int32_t ___arg21, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 2)
{
// open
typedef void (*FunctionPointerType) (RuntimeObject *, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RuntimeObject *, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, targetMethod);
}
}
else if (___parameterCount != 2)
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< int32_t >::Invoke(targetMethod, ___arg10, ___arg21);
else
GenericVirtActionInvoker1< int32_t >::Invoke(targetMethod, ___arg10, ___arg21);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg10, ___arg21);
else
VirtActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg10, ___arg21);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject *, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< RuntimeObject *, int32_t >::Invoke(targetMethod, targetThis, ___arg10, ___arg21);
else
GenericVirtActionInvoker2< RuntimeObject *, int32_t >::Invoke(targetMethod, targetThis, ___arg10, ___arg21);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< RuntimeObject *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg10, ___arg21);
else
VirtActionInvoker2< RuntimeObject *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg10, ___arg21);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`2<System.Object,System.Int32Enum>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_2_BeginInvoke_m701B18451EA00B7A907C490C88AD8DA88992B8CC_gshared (Action_2_t4A92D51BAC0CF291CCBECDD41B622EDAE4E77D9F * __this, RuntimeObject * ___arg10, int32_t ___arg21, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_2_BeginInvoke_m701B18451EA00B7A907C490C88AD8DA88992B8CC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = ___arg10;
__d_args[1] = Box(Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_il2cpp_TypeInfo_var, &___arg21);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void System.Action`2<System.Object,System.Int32Enum>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_EndInvoke_mA6DA71CAB733365347DE2FAC719EA046A9EE4DAD_gshared (Action_2_t4A92D51BAC0CF291CCBECDD41B622EDAE4E77D9F * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mB83B0C1C61CED5B54803D334FFC7187881D32EFB_gshared (Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`2<System.Object,System.Object>::Invoke(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_Invoke_m1738FFAE74BE5E599FD42520FA2BEF69D1AC4709_gshared (Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 2)
{
// open
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, targetMethod);
}
}
else if (___parameterCount != 2)
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< RuntimeObject * >::Invoke(targetMethod, ___arg10, ___arg21);
else
GenericVirtActionInvoker1< RuntimeObject * >::Invoke(targetMethod, ___arg10, ___arg21);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg10, ___arg21);
else
VirtActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg10, ___arg21);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg10, ___arg21);
else
GenericVirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg10, ___arg21);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg10, ___arg21);
else
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg10, ___arg21);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`2<System.Object,System.Object>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_2_BeginInvoke_mD0FF883616A21651A83167C74B2DDA0AC1389A4C_gshared (Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___arg10;
__d_args[1] = ___arg21;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void System.Action`2<System.Object,System.Object>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_EndInvoke_m571D4054E4D4C22830424759ECF29B004D7C78D0_gshared (Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`3<System.Boolean,System.Boolean,System.Int32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_3__ctor_m0692C3BDFF8CAA4CE6EC716E12127AECC7BF0366_gshared (Action_3_tEE1FB0623176AFA5109FAA9BA7E82293445CAE1E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`3<System.Boolean,System.Boolean,System.Int32>::Invoke(T1,T2,T3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_3_Invoke_m8A4240174E60397816F6EACC65FE1E27F4275FA5_gshared (Action_3_tEE1FB0623176AFA5109FAA9BA7E82293445CAE1E * __this, bool ___arg10, bool ___arg21, int32_t ___arg32, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 3)
{
// open
typedef void (*FunctionPointerType) (bool, bool, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, ___arg32, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, bool, bool, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, ___arg32, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (bool, bool, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, ___arg32, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker3< bool, bool, int32_t >::Invoke(targetMethod, targetThis, ___arg10, ___arg21, ___arg32);
else
GenericVirtActionInvoker3< bool, bool, int32_t >::Invoke(targetMethod, targetThis, ___arg10, ___arg21, ___arg32);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker3< bool, bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg10, ___arg21, ___arg32);
else
VirtActionInvoker3< bool, bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg10, ___arg21, ___arg32);
}
}
else
{
typedef void (*FunctionPointerType) (void*, bool, bool, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, ___arg32, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`3<System.Boolean,System.Boolean,System.Int32>::BeginInvoke(T1,T2,T3,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_3_BeginInvoke_m5615B0091F5F4D1AE791FAF33F8F86E309430DCE_gshared (Action_3_tEE1FB0623176AFA5109FAA9BA7E82293445CAE1E * __this, bool ___arg10, bool ___arg21, int32_t ___arg32, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_3_BeginInvoke_m5615B0091F5F4D1AE791FAF33F8F86E309430DCE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[4] = {0};
__d_args[0] = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &___arg10);
__d_args[1] = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &___arg21);
__d_args[2] = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &___arg32);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4);
}
// System.Void System.Action`3<System.Boolean,System.Boolean,System.Int32>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_3_EndInvoke_mB965708AE5786BCEB325A67CE31972BFD7ABA874_gshared (Action_3_tEE1FB0623176AFA5109FAA9BA7E82293445CAE1E * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Action`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_3__ctor_m25A724612A54C1E14CFA77D23347E46330066B07_gshared (Action_3_tCC14115B7178951118504E7198B7C872630643C5 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`3<System.Object,System.Object,System.Object>::Invoke(T1,T2,T3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_3_Invoke_mD5A124763BAD82556A8D306185AD34536508013B_gshared (Action_3_tCC14115B7178951118504E7198B7C872630643C5 * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, RuntimeObject * ___arg32, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 3)
{
// open
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, ___arg32, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, ___arg32, targetMethod);
}
}
else if (___parameterCount != 3)
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg10, ___arg21, ___arg32);
else
GenericVirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg10, ___arg21, ___arg32);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg10, ___arg21, ___arg32);
else
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg10, ___arg21, ___arg32);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, ___arg32, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg10, ___arg21, ___arg32, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg10, ___arg21, ___arg32);
else
GenericVirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg10, ___arg21, ___arg32);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg10, ___arg21, ___arg32);
else
VirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg10, ___arg21, ___arg32);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg10, ___arg21, ___arg32, targetMethod);
}
}
}
}
// System.IAsyncResult System.Action`3<System.Object,System.Object,System.Object>::BeginInvoke(T1,T2,T3,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Action_3_BeginInvoke_mB7C2A7A582F5FDE5A43E718EEDCADA5AF24C67A5_gshared (Action_3_tCC14115B7178951118504E7198B7C872630643C5 * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, RuntimeObject * ___arg32, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method)
{
void *__d_args[4] = {0};
__d_args[0] = ___arg10;
__d_args[1] = ___arg21;
__d_args[2] = ___arg32;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4);
}
// System.Void System.Action`3<System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_3_EndInvoke_m1AB06047C37C4249AE68BDE6F900F3AD86821A8D_gshared (Action_3_tCC14115B7178951118504E7198B7C872630643C5 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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.Array_EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer_TableRange>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m215D1405D67CC92D7E62FEE78CB443E47E344A6E_gshared (EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer_TableRange>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m897312AE3CCDDC3226A9BBE9258A4977EBEA5B0D_gshared (EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer_TableRange>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 EmptyInternalEnumerator_1_get_Current_m293B9C3C02900945171CC48486B75790594968C4_gshared (EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m293B9C3C02900945171CC48486B75790594968C4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m293B9C3C02900945171CC48486B75790594968C4_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer_TableRange>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF0986CF525A4682BB1723F6EFE6B97264C64B7EC_gshared (EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F *)__this);
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_0 = (( TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 (*) (EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer_TableRange>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m7E92DB01F9D86DF179CD299C623378D585732E7C_gshared (EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer_TableRange>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mEB80F6F0A53A9C18840EEEC6F33DCAEA3473AA69_gshared (EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer_TableRange>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m6D42B4A27555171E65D9E6E9963676DDDC949483_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F * L_0 = (EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t0E2DD3C6D716A5F267DF9CFDF5DF37DE08990B1F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC810EEE0A79EFB509570614209EF13A6D3C10070_gshared (EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF5EE695464890E75B31CD20A78F02C5E96533E41_gshared (EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA EmptyInternalEnumerator_1_get_Current_m43CEF72B27A72848C3DFB1353CE9DF1A565B1E1F_gshared (EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m43CEF72B27A72848C3DFB1353CE9DF1A565B1E1F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m43CEF72B27A72848C3DFB1353CE9DF1A565B1E1F_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFA0867F034614AC267445CB7FBEB2815EB2ECDDB_gshared (EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0 *)__this);
ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA L_0 = (( ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA (*) (EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mE13189C69D06DD2CDB6EAA1983EABA93A61B1D0A_gshared (EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m89349B9595C11B22BEE09C53C248EC4FA0DAA6ED_gshared (EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB555E71D7EC43D7EE41487161045D2B43869F046_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0 * L_0 = (EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t899B5C1B3F1641DC613355F6DDD16F72FE3FA6A0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Boolean>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m8885A418B4EEB6672F0BFFF9C6E05F20055417F5_gshared (EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Boolean>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m74B68C92611D878CE644F51C85D39C50F2DC77F9_gshared (EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Boolean>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_get_Current_m43159AC3B73F8C7B43D68F731301DAAF9660A0FF_gshared (EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m43159AC3B73F8C7B43D68F731301DAAF9660A0FF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m43159AC3B73F8C7B43D68F731301DAAF9660A0FF_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3FC589A0727ED9F77EB60F0DD110207E323783BC_gshared (EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8 *)__this);
bool L_0 = (( bool (*) (EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
bool L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mBA3C9890B11409AB3860F36DF7560FF65D0E1009_gshared (EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Boolean>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC5F3543A1E024A9563861BC69DCB5D60EC234A0C_gshared (EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Boolean>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m5B6D9DB2A4B771FAD1E24248F0869DE42E66C883_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8 * L_0 = (EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tFA86E51CE1C2DDFA8FB9C480D56A2503217488A8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Byte>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m713A719776A78FB091BCFCD6FB8583C8AD4F3DE0_gshared (EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Byte>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m5ABFA67ED2DE271F9BD57C6C26CDE5DC2AF9CFC3_gshared (EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Byte>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EmptyInternalEnumerator_1_get_Current_m420EE01A411C337671037356ED272F11275F1CB5_gshared (EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m420EE01A411C337671037356ED272F11275F1CB5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m420EE01A411C337671037356ED272F11275F1CB5_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4F30997E76A261D5A7048B78E39D6953567A0963_gshared (EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A *)__this);
uint8_t L_0 = (( uint8_t (*) (EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
uint8_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m7AEDD5F60C2AE0B62EAF2E3AAE0A889FB9ABBFD9_gshared (EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Byte>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mBDAB36790D0E5860EE1FBC7308700969603B4390_gshared (EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Byte>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC4DD0B4E33508AB63EAB5D0656FE32A7C50BE06C_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A * L_0 = (EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t8990DCB2ED70C2D8F091563F66E63289500B6D4A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Char>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m3F6A0B5AB03FAB7CD877B3ED8FD2FD556DAE6864_gshared (EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Char>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mE0C713EE39303B29BF69C5DCE85AD3498D5AD4F3_gshared (EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Char>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar EmptyInternalEnumerator_1_get_Current_m7BC4D764094154DE60F8FB6C4201D3E091D5BFE5_gshared (EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m7BC4D764094154DE60F8FB6C4201D3E091D5BFE5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m7BC4D764094154DE60F8FB6C4201D3E091D5BFE5_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Char>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m52A65B323390709429FEA901950D6C34BAA97FC0_gshared (EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD *)__this);
Il2CppChar L_0 = (( Il2CppChar (*) (EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Il2CppChar L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Char>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mC6FBFAA069FA70AE8FC086EBD55B0B8EBF3CBB07_gshared (EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Char>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mF3D2B81FAABE5627D18FCA6A9554426ABB540523_gshared (EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Char>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mDD3882014B3DCD4EEA30C94447AB18D08B3E0395_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD * L_0 = (EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC42BBE2DCC3BF9978E5C3A47D7CB6AFE67FB9DDD_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF26FE9262BC4A24D324C756544CDF58ECF07B364_gshared (EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mD078E2D4C0D3C0DC580A042ADE90C552B40062AD_gshared (EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 EmptyInternalEnumerator_1_get_Current_m8D775E44C86196D9A8E7493AE45BB5274764C46A_gshared (EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m8D775E44C86196D9A8E7493AE45BB5274764C46A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m8D775E44C86196D9A8E7493AE45BB5274764C46A_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m88FBF9A650DFC8C09EE8382F6B90F7EC799B204E_gshared (EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE *)__this);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_0 = (( DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (*) (EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m8E52F01C3C20D71E35ECC54B344F5DBD93829FB1_gshared (EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE87CC8EF989DF064366EC5E3B2359CB0C059C96B_gshared (EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m953F54256C552508DA94EAD36B6CABFA687CD731_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE * L_0 = (EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t8AAEA1F7532F0059C00E3B37C926F0D465636BAE_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m6B53EA11401EB37FAB9DAE091D37CE83888D0F11_gshared (EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m33A41311CCB1D8F9A2A5B78C2DA8924AA3D940E4_gshared (EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 EmptyInternalEnumerator_1_get_Current_m2E0E999E9F84B2C679BFF6FE68A0A0883F5EA3B4_gshared (EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m2E0E999E9F84B2C679BFF6FE68A0A0883F5EA3B4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m2E0E999E9F84B2C679BFF6FE68A0A0883F5EA3B4_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBF1F1E703E8C23BD49BA31AAE1E9319DC456886E_gshared (EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74 *)__this);
Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 L_0 = (( Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 (*) (EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mC17E0B4C0D4F89133080A8ED474082418900B46B_gshared (EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mA3E3C59E6B4E2EADD5191893E3226DFA1BA36143_gshared (EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mE5E41DE6598EB049C8F40CBDFED9D356BACD583E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74 * L_0 = (EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tA3CB2E1B03908FD6F083BDDB4E02B31191535B74_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m03E8852482C7F42B15C49AE663784DCA10EF4EF4_gshared (EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m1C015DEE133648D1FC057467CFE0CA7368D71D2F_gshared (EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D EmptyInternalEnumerator_1_get_Current_m68884E7F37A82001ECE18FF1AB9E0807E71EEB14_gshared (EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m68884E7F37A82001ECE18FF1AB9E0807E71EEB14_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m68884E7F37A82001ECE18FF1AB9E0807E71EEB14_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDBFE5EE2C4B9D552AF016D8F9A7B39B0B5CF6A64_gshared (EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796 *)__this);
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_0 = (( Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D (*) (EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m0398EA0E7B145009AE5AA2D593F1A14BAA8A113F_gshared (EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m8EE19BC8D9F59BA6F9791590C62A04C1E69F8FFF_gshared (EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m50F30A6AE7EA622F80BA600CE193EF01BD18BAB5_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796 * L_0 = (EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t38E20B961E244B042F99E10B7AD0C7485F2A9796_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m6DEEFD08CAFB5585133E3C76D567D6B895B10103_gshared (EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8036001407E3B79336736165C53F07E69AEDCA6C_gshared (EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA EmptyInternalEnumerator_1_get_Current_m87A6AFA112463A8339ABA2E4B097327D46019B15_gshared (EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m87A6AFA112463A8339ABA2E4B097327D46019B15_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m87A6AFA112463A8339ABA2E4B097327D46019B15_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m203CDAB83AE82390DD8B49EB071BBE8A57509A39_gshared (EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6 *)__this);
Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA L_0 = (( Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA (*) (EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mBACE32D6846B53E155057D95617A56FEE6D6987F_gshared (EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m019F3A0A2197B5A558B41897B010C486643BDB0A_gshared (EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m99C6688F860B043874E6FCE2924640D99D481E4D_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6 * L_0 = (EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t42AEF483482AD2BD7779834FF5C56D82B43686D6_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m8D1AF638B114BC37E0A94ED8D8B3100B4A705283_gshared (EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mEDD4C2E8719C60F73919863F06486DF697EA48A8_gshared (EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE EmptyInternalEnumerator_1_get_Current_m48F65C072D4CD934C97FB2CB5DF62922B52C9970_gshared (EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m48F65C072D4CD934C97FB2CB5DF62922B52C9970_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m48F65C072D4CD934C97FB2CB5DF62922B52C9970_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m61B960CEB01F9048939923E7BD41436DEF182209_gshared (EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85 *)__this);
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_0 = (( Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE (*) (EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m39B9D591DF5FFCF6A8295F761ADB35B4DC551A1E_gshared (EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m58FB8B7CE73530E50092FF783A99051CDF8668E8_gshared (EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mCDBFC4B22DE4463540100BDAC78F665EEE0E7D4A_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85 * L_0 = (EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC5CD0680EDF58D3BEF5C9866DC3334C745352E85_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC7EE44CEE962F4F83A33CEBBADA11FD69E8C421A_gshared (EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mFD1D3964D061571E6DBE6F1303C453B94D3DC4B0_gshared (EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 EmptyInternalEnumerator_1_get_Current_m3A2F0EF9E1E044B1D2AC784755D3A61BA961BE9C_gshared (EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m3A2F0EF9E1E044B1D2AC784755D3A61BA961BE9C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m3A2F0EF9E1E044B1D2AC784755D3A61BA961BE9C_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m36A59163A06ABCBD5312BC1C17131EF4D47EF08A_gshared (EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4 *)__this);
Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 L_0 = (( Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 (*) (EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA40AF29C6E750D623EF633C3615DF9C6D5DB3C58_gshared (EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m47DD12D4A817D59CCE960524C7F4E62FCB712E6B_gshared (EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mEFFD8B3E1C49A6E8947A6378595010D5F30581B5_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4 * L_0 = (EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tF0738A20DBEDB9E74E32090755471DCFB1C799C4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m1ECCD0A78D81DD982B49BEEA72B3E149B5A3CCA5_gshared (EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m498CDAD3430A8F6C661AEB736E1AF35127130161_gshared (EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 EmptyInternalEnumerator_1_get_Current_mEEA6BE494FBC6DF13FD4358FDD46705AAE7C10CB_gshared (EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mEEA6BE494FBC6DF13FD4358FDD46705AAE7C10CB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mEEA6BE494FBC6DF13FD4358FDD46705AAE7C10CB_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m520BA29431F72DF0F744EA69D9F549099DEF5EA2_gshared (EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC *)__this);
Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 L_0 = (( Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 (*) (EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m5729EFFE4203234E0FF004483B052707CC7BCBE6_gshared (EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mFACFF17813A4AF09C0C58EBEB4A0FFC5ABDAB862_gshared (EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m19B7C78B298469B79A9D028CA73B6418254277E1_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC * L_0 = (EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t07FB6D77B5CEC30BB532258A40225D69D8DC5FEC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA9FD0226081FB3EF26FE2FAF62E31FC950796A75_gshared (EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8EF6A87940BF455E4D15564DD31AA2D32D2FC2D1_gshared (EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA EmptyInternalEnumerator_1_get_Current_m0CABA4EE26CC086C7D8C239B67A07B4890E7C8EC_gshared (EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m0CABA4EE26CC086C7D8C239B67A07B4890E7C8EC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m0CABA4EE26CC086C7D8C239B67A07B4890E7C8EC_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m608E61D81FF69DC904AF0BAC3B7AC59809D9EC03_gshared (EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99 *)__this);
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_0 = (( Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA (*) (EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m895BB0FCE49D32C8BAC301ED58A981CF893E714D_gshared (EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m6934B42A8606FB0F18FD689D3E50CD6FE034E817_gshared (EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mCC861504224003003CACF83A945DA71124C6F44C_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99 * L_0 = (EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tEFE3D5037437A38A17C1DBF1A284E08F2C694A99_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m98260EC8E0010AF3FBF3A894025E56B50F4DBCE8_gshared (EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF37D8F8F6D87B47882D38BAB30E97F8EE4717306_gshared (EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D EmptyInternalEnumerator_1_get_Current_m74F78B949FE0A28B76A17D74BD70A9ED83FD0864_gshared (EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m74F78B949FE0A28B76A17D74BD70A9ED83FD0864_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m74F78B949FE0A28B76A17D74BD70A9ED83FD0864_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m6BFFED128F043A38F93E3925FCF4B59C86852F04_gshared (EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504 *)__this);
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_0 = (( Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D (*) (EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mF1B9BD4212BAF527BC9AC6E26D92158FC54F908E_gshared (EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m8DE8682FFB11A9732C6A919FE54C97CFA41F24EC_gshared (EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m83468D0994ED99116E8B0673DA6451A767A61A60_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504 * L_0 = (EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBB474592B4A12738A3119A0D4EDDA29DE6ADE504_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m64664E406C2BFC0438DC40E89176BA28DD2729F0_gshared (EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m7922797679327A86FFB59749DBFE13AD50653CA7_gshared (EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E EmptyInternalEnumerator_1_get_Current_mEF898D1DEDB1095AC9E1556AE74B0BABD3B4B031_gshared (EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mEF898D1DEDB1095AC9E1556AE74B0BABD3B4B031_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mEF898D1DEDB1095AC9E1556AE74B0BABD3B4B031_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA70A0233F543E470321424025A955CCC421E271A_gshared (EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B *)__this);
Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E L_0 = (( Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E (*) (EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mC7BF7106C602F3117562550A4C812EA3BD2DCEFE_gshared (EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m6388A209880496DDC0371A07DE96D66920698BD0_gshared (EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m986C637D7C4FFD86D296F52B4ECE5340CB0B8B80_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B * L_0 = (EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t2C5B56480D559BAE85FA03546210901D0132894B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mFFD90AB25BC8631AC14E7D738827C7E3E35200C0_gshared (EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m30AA775C4ABA275FDE8FCC3B19E3BE4CEEFAF83D_gshared (EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 EmptyInternalEnumerator_1_get_Current_m4D75CAE0763650D9067F695B43181AD1167219BC_gshared (EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m4D75CAE0763650D9067F695B43181AD1167219BC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m4D75CAE0763650D9067F695B43181AD1167219BC_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m49BBCEF3E262C27531074F1DC719133745603469_gshared (EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975 *)__this);
Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 L_0 = (( Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 (*) (EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m98EE0F81826F89F7A1F60A3FC3FC392ECAAA3F6F_gshared (EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mBD749F36DBB171E6D8177002F748EE6F38C873BC_gshared (EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m4950DABBB6B20F01832A418DDFBC3F566FF5735E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975 * L_0 = (EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t213F805CEA647960A7DC4797E2107CE28CC8A975_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m915B4263F616F3895BCFD8B1887EB19ED0659794_gshared (EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m2EAE886E88F5A4CCF080C541587274418FEF6ED3_gshared (EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 EmptyInternalEnumerator_1_get_Current_mA85AAC77C98F6DBC4911612F3436BC77E597EA86_gshared (EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mA85AAC77C98F6DBC4911612F3436BC77E597EA86_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mA85AAC77C98F6DBC4911612F3436BC77E597EA86_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBA5064F0AD4C053B1B3409FF8937C4DB47029268_gshared (EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4 *)__this);
Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 L_0 = (( Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 (*) (EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m91E4E665E61EF5A6D0E1C30E2FD3517E83F44C4B_gshared (EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mCF6D8EB922C24EC16E4A0B8A2B7A442C6DFCC47A_gshared (EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m902DE2751357DBE7F5E0FC8134A82C143135634C_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4 * L_0 = (EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t2012E2E861FE15752B525582935620E889F6F4D4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m369F26591D3E8DD4FB16BD453FF1B7642F152277_gshared (EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mA8789AEFF017DFE7D0B2D1498A49B679D5599E1E_gshared (EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 EmptyInternalEnumerator_1_get_Current_m422E28F501E2CD8CC9E2E4A95DF026BA47C92725_gshared (EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m422E28F501E2CD8CC9E2E4A95DF026BA47C92725_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m422E28F501E2CD8CC9E2E4A95DF026BA47C92725_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m6A3BF700346F5D84BD7BF457D4C2E6CC06BEC0E3_gshared (EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB *)__this);
Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 L_0 = (( Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 (*) (EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mF369DCADF35E36C95327D41F59CADD6EF24B18BF_gshared (EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m6811649A89117D79EB4D4130E9A63DB9A459EB73_gshared (EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mFBB44CBEFCA6F3890BB06CC8C8C7E8EFC73B16CF_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB * L_0 = (EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t5768604E1E038EBA53E0AC77445CF3C20A71DFBB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mB8946A11240CFCFDCCA39B9A7672056E93EF2E8A_gshared (EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mCEFB7CFDA064E155A5BE2B00BCF2A26AB45C8AFD_gshared (EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A EmptyInternalEnumerator_1_get_Current_m22CE8CF3548E568A359E9E09B9DF71C392A2E32C_gshared (EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m22CE8CF3548E568A359E9E09B9DF71C392A2E32C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m22CE8CF3548E568A359E9E09B9DF71C392A2E32C_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m39A56A8F07F8359356BC803634F460E37EDF6458_gshared (EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2 *)__this);
Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A L_0 = (( Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A (*) (EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m65F044F22A64FB9BC23CB1C322302617E90C0EE7_gshared (EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mCF2315BF82EB92CA21E23A13DAE0E186348F215F_gshared (EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mBC29F0FB4B363824921A010EA34109E995192543_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2 * L_0 = (EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB3BB8357CC0F5D3A81B6B4B125E081EDD29719D2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD231376742FC906FF6028BCDC76EA4BD5AED2166_gshared (EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m48D575B0C5115E314DFD09386777107875FA7112_gshared (EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F EmptyInternalEnumerator_1_get_Current_m9FBAC2C4DDB28B317C4D36405B1901B3A98E0F0B_gshared (EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m9FBAC2C4DDB28B317C4D36405B1901B3A98E0F0B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m9FBAC2C4DDB28B317C4D36405B1901B3A98E0F0B_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m404E868D3D3E056220BDB02BD09B2396D411DF6F_gshared (EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336 *)__this);
Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F L_0 = (( Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F (*) (EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m2B5ED7E69D68DC3B0FB6C40A6321D624389DD21A_gshared (EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m0F20CECD29F4A80D2E1E938E22D7F4492C31DCAC_gshared (EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m014C80863AE99A9BD1E9F86DAB2525B194264BC7_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336 * L_0 = (EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t803FF87F41C4CE88CDB68DACE1308F4D0695C336_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m348E072B8D8E2918A515ADF7D2C48B7CE78D87D5_gshared (EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m23FED7DEF6A38A4AB7D3EFF2EFC2867C13ED817E_gshared (EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 EmptyInternalEnumerator_1_get_Current_mB025B8AAA29152B54E5AEE534D9402B39A6BED7F_gshared (EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mB025B8AAA29152B54E5AEE534D9402B39A6BED7F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mB025B8AAA29152B54E5AEE534D9402B39A6BED7F_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA2E229E60371800BA0FACB3DCA35286E3116236D_gshared (EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A *)__this);
Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 L_0 = (( Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 (*) (EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mFD7D941784DB6D0A559192CA73E841F31F5835B2_gshared (EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m79587CEB75FE2C05A1A865D2082D2A6ADAE6DAFC_gshared (EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<System.Int32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m224F1A3CC043CB5AF62F736F6B5EB8BCD372E97D_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A * L_0 = (EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tDF19FF79BC946D9EC372B73E2426C20873FCE31A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0DB2025107C7B43E6DEDE0359A908AE2DC05B1F3_gshared (EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m0C9D27DA78AB212D8726A3B16A19045DCD85C361_gshared (EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 EmptyInternalEnumerator_1_get_Current_mEEEA3BB14A06103E355C424A371C59B0968ABC51_gshared (EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mEEEA3BB14A06103E355C424A371C59B0968ABC51_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mEEEA3BB14A06103E355C424A371C59B0968ABC51_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC1F16AD49455952D4E5C4D9E4ABFE4034541EFB6_gshared (EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F *)__this);
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 L_0 = (( Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 (*) (EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m34AE36DA0ACCD8C380F3D41891935031BE385E59_gshared (EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m22F2B4E966FC9E29F9635DB057F233A131CB581E_gshared (EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA9527356D056AB215B05E0B9B67C080DA6AE2163_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F * L_0 = (EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t887606F29B8A919FD373602FC5DFD84927B4450F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<UnityEngine.Networking.NetworkInstanceId>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m2CC05BE6841D52A9B873C368A894F5EF3E25BA94_gshared (EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<UnityEngine.Networking.NetworkInstanceId>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m9EDD921A2A6036A6747428AD6B469952554D3382_gshared (EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<UnityEngine.Networking.NetworkInstanceId>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE EmptyInternalEnumerator_1_get_Current_m5B0E70936064DD8DBD9F90F842D80D0BE3C2F4AE_gshared (EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m5B0E70936064DD8DBD9F90F842D80D0BE3C2F4AE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m5B0E70936064DD8DBD9F90F842D80D0BE3C2F4AE_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<UnityEngine.Networking.NetworkInstanceId>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF324B87FF235FB6C27F8CC984797D7D0AE195164_gshared (EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E *)__this);
Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE L_0 = (( Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE (*) (EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Slot_t8BF561AE3B5605E77F60F4477EC198ABAB87A1AE L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<UnityEngine.Networking.NetworkInstanceId>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m3548F188AEDD907DD90F4ED581F6499FD8CAF8FE_gshared (EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<UnityEngine.Networking.NetworkInstanceId>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mAE2D8EFDE26B721A732804B0E0B4CF8367200ECB_gshared (EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1_Slot<UnityEngine.Networking.NetworkInstanceId>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB65EEA22DE424A1EF42D3A4A7C415AE57B1CCB65_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E * L_0 = (EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t3CE8BF616C2C9598EAD2D4528AABCFB73F6A982E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m9790D04C1C74F7E3BB0E34A8F7CC19BC6CC50F80_gshared (EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m22CB6BB798E7B60A3668F721D80DC4D7BF22E479_gshared (EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B EmptyInternalEnumerator_1_get_Current_m2B71AC61E1D5E112E4E40B79E0FC768F981AF275_gshared (EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m2B71AC61E1D5E112E4E40B79E0FC768F981AF275_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m2B71AC61E1D5E112E4E40B79E0FC768F981AF275_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4FB36B4F4141E8B682553EFEB167283B44682F71_gshared (EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3 *)__this);
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_0 = (( KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B (*) (EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m79F6A2AE06BC11D1CCC850749FFFC676DA79C7F9_gshared (EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m83A136CDB94F993520C41B1BDD8F242510F7CE68_gshared (EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB9BA58884EE5DAEFE4BFFA8B8347E24F2DFFB16E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3 * L_0 = (EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tE770A5A971D8DBE3EB3E7066ED8C431CB1D464D3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mBAC811406162E511BB6FBA469A78464D60D4C885_gshared (EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mD43D3E2A26415BF62D1BB67CCB59ACEB935AAF05_gshared (EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 EmptyInternalEnumerator_1_get_Current_mE2016AE72E368C527141CFB7657D9644FEF1561E_gshared (EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mE2016AE72E368C527141CFB7657D9644FEF1561E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mE2016AE72E368C527141CFB7657D9644FEF1561E_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF6D596124B49066D34A81973DB0BF3112BFAA033_gshared (EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C *)__this);
KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 L_0 = (( KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 (*) (EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA27096B3C2B591D72DC4FF15263A7BB500302F84_gshared (EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m2E73FA28D003EE5186766A37A54098269B52AE8A_gshared (EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mDF3079E1CF640347E2236D6C9B4C5EEC66AB3548_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C * L_0 = (EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t9CD8E7F09750488F359F33930F12FBEDDB2E644C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m9389082DAF0E3CB824835F1DC409A89E8F71D272_gshared (EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mC5E58C3866BDEF32662C067C9FFDFA1641D7A33D_gshared (EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 EmptyInternalEnumerator_1_get_Current_mBEC4557EDCDBE1BCFE4279943CFC23E51EE664A0_gshared (EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mBEC4557EDCDBE1BCFE4279943CFC23E51EE664A0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mBEC4557EDCDBE1BCFE4279943CFC23E51EE664A0_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m84FF33FDBBD84B95894623A46A5ABFFA1192A3D9_gshared (EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF *)__this);
KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_0 = (( KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 (*) (EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mC669CF4FC2E974BBE380249612CA412A695DCF67_gshared (EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC584F4CF9DCA8449232DF19F6646B096CB407B62_gshared (EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m86224F3203FEB3B985181961D794C9ACD8727EAE_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF * L_0 = (EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t2DBCF4BC76913CA103209337C0694038F3124ACF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int16,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m85C4FB3362E4B3E914BAD6E609739D135AE46269_gshared (EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int16,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m76068E2E0E6A889474AEF5A3B23436DACB93C9EF_gshared (EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int16,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03 EmptyInternalEnumerator_1_get_Current_m8C9BFDE7C62F98D575E82E0AAC2AE297B745FBC9_gshared (EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m8C9BFDE7C62F98D575E82E0AAC2AE297B745FBC9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m8C9BFDE7C62F98D575E82E0AAC2AE297B745FBC9_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int16,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m443AFFB8534277946FD09BA9DEC17B18E11448F0_gshared (EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94 *)__this);
KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03 L_0 = (( KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03 (*) (EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t6DE163165C8ABD301B1807D046BC699380D9BD03 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int16,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m01E40CFF74E70695ACE632753D19CCC19D8CCECE_gshared (EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int16,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC3A94C4E45EBC771BE57525227D01C8CFBD6CD27_gshared (EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int16,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m24661CFAE43B84CA380B8F7EBDF29325AD5490C3_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94 * L_0 = (EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC6851D5A1790D20279F412112ED8374D29ABEB94_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0D4FE3FAEDF8F1ABED5BD3382BBFFDC1AB395E63_gshared (EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m12530971797535AF076AA6A2F31030F9D391F328_gshared (EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 EmptyInternalEnumerator_1_get_Current_m952BF74D0CB1544321A6EC1605BF7919CAFF0896_gshared (EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m952BF74D0CB1544321A6EC1605BF7919CAFF0896_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m952BF74D0CB1544321A6EC1605BF7919CAFF0896_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m81BC7A7A219CB2B171DF4D58B5FED48D07DCDA5C_gshared (EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0 *)__this);
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 L_0 = (( KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 (*) (EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mBF1B3FB2F69FDED48E930D87FDA48AFC26D88FD3_gshared (EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m4FADA0916D87B3F6358D74464FA3BE85B9152B62_gshared (EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m7C7281E9EA139788448FD90B46ED53F6D90A1F4F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0 * L_0 = (EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t564FCD0B08A92565DEF37CF013F5398CA6C5F1E0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m8BDABB2FE51E0B1F639F0A7C56FAB9C4C3F2F5F3_gshared (EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m042DF1E0D47D9FFC2C80A16C563E46B6DBADB430_gshared (EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF EmptyInternalEnumerator_1_get_Current_m8C8A1B00836A4D0437A7FF24D1532C211E45E393_gshared (EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m8C8A1B00836A4D0437A7FF24D1532C211E45E393_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m8C8A1B00836A4D0437A7FF24D1532C211E45E393_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m26D94BC0FA604E7A854C385A8D4DF88D14D06676_gshared (EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829 *)__this);
KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF L_0 = (( KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF (*) (EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t21D5EE3B0965DAD47DF023D62641AC57B3CD61CF L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m4F5EF833F12AC127A31B38ADF9A8F4FB36A87342_gshared (EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m8F9C613798640564B5CB8B087811316D736E8A5D_gshared (EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m741060086604E58CF7101A2EAB2685029CE35EA1_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829 * L_0 = (EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tD2B73BF4BA056B0C4F3814DE3FB00ACA929BA829_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC12462868A20F4231399264FDC2E34FF14AE1801_gshared (EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m6DBEDF354752FFB5E53B18B63CC0ABCFED142AB7_gshared (EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E EmptyInternalEnumerator_1_get_Current_mA09E0C78D8EF2892E5C4EF4F2DCFBF8DBEFDD8FB_gshared (EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mA09E0C78D8EF2892E5C4EF4F2DCFBF8DBEFDD8FB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mA09E0C78D8EF2892E5C4EF4F2DCFBF8DBEFDD8FB_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m6191E40A0A0E783576D1FC4E48B58465FBBB6C6B_gshared (EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF *)__this);
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_0 = (( KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E (*) (EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m2933ED45C484E07AC0891B019E207876E725597D_gshared (EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m9394C74AE58AC4B155E505C6FB99CD4066C8C170_gshared (EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF63350E961183A69E1FF526AC7554CA38CA4C54B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF * L_0 = (EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB7E6E303FAA41561FF7826C9C9FD89D704C4AFAF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF48BB025C9285B5D6F977FCC90876636C6EA29AA_gshared (EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m3B25364B3971810F24FE8927C14AD552983B3708_gshared (EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 EmptyInternalEnumerator_1_get_Current_m69493094FDA55EF6716614CB6073AD3E81F5D74C_gshared (EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m69493094FDA55EF6716614CB6073AD3E81F5D74C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m69493094FDA55EF6716614CB6073AD3E81F5D74C_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF3D3D703D1E666F50368A56D6C19CC03CCB48D9C_gshared (EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D *)__this);
KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 L_0 = (( KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 (*) (EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA9255063D8864A60232CC6CFA2059C5F85D09D68_gshared (EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m3863C215A233180C89AF696D5DDEDB4FFFB22100_gshared (EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m9BF61697984E4FBF0DE975047A54325FD73B1788_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D * L_0 = (EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t4C463DF5F3D60D043D5C021C92B7C8A616ECD64D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mE0B864A2DFA5BB75E3B743ED06A1DB97A7F7F95E_gshared (EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mDC522C7685636F50B7623E5746F623CFAF1EF291_gshared (EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 EmptyInternalEnumerator_1_get_Current_mD6E60B22341F7E8C8EFE02DC34C603A14B59F376_gshared (EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mD6E60B22341F7E8C8EFE02DC34C603A14B59F376_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mD6E60B22341F7E8C8EFE02DC34C603A14B59F376_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m86EF62E19C22B288A29F32CC40C67092C729D8EC_gshared (EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D *)__this);
KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 L_0 = (( KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 (*) (EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m2E66EB5A36CFBFC16027D1F7E06696C800ED2B3D_gshared (EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m27848F2BDC56A00F2B5D4BC7724797EF82AB6485_gshared (EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mFD4DD01396BAA1753432F2B62DF273D7F3290F88_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D * L_0 = (EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t6C6CC97FDCAA557A3D0A2DA30CBD539A2C25659D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m5D2644643A158EA7A7AE3B2F9FCFA4A6EDB506C9_gshared (EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m2A3CE970E9D40CD4C5A76C84DFB034D4A9C8E4A5_gshared (EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE EmptyInternalEnumerator_1_get_Current_m2D99D91E76466691A4182B87F18C0507601C08C8_gshared (EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m2D99D91E76466691A4182B87F18C0507601C08C8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m2D99D91E76466691A4182B87F18C0507601C08C8_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBDB69BAF9EE37F2721B5AD3A3811CB8CF2D5ACEA_gshared (EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687 *)__this);
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_0 = (( KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE (*) (EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m1B7A894AB0B9C965A31DCDBA0545217219A4D624_gshared (EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m484DB995ED0D7DDF7EA6CAFC065726903923DE6E_gshared (EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m842779DEB332E5E709AD1B6D15087094D6D3C7D3_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687 * L_0 = (EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t077D57541F9916A746A2F0220661FFD69717F687_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m84EB9D6CBE9A1FA2F085C27CD808FD0AD2D00723_gshared (EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m091F18477680715F913802535CB538B87F5EBAE6_gshared (EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 EmptyInternalEnumerator_1_get_Current_m6E9F5FEA95891488995D987661B9DDDFFA7E2EA4_gshared (EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m6E9F5FEA95891488995D987661B9DDDFFA7E2EA4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m6E9F5FEA95891488995D987661B9DDDFFA7E2EA4_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5DF9A865043C8742470DD94C7C3BC56A87B47D96_gshared (EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA *)__this);
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_0 = (( KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 (*) (EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA87153CEF10D5E0151751F1426826A46299595F7_gshared (EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mFDE880DC824FEAE7DE941D9492BF2D174764DD9D_gshared (EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m9D8D00AE0F180E5F43A63CBC0FE09B8CCF1BA359_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA * L_0 = (EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tA71F937821A1B8CEABC6503D7D2AAC14AE3708DA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m005CB74FC6DAA525A522CDE4CCE4DCDF18F0384F_gshared (EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m7A642C5D31A5590254D8A6B203D058DFF5B313D8_gshared (EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 EmptyInternalEnumerator_1_get_Current_m99A910FCF4C1B8533C8F7C8F36C066F0B715C745_gshared (EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m99A910FCF4C1B8533C8F7C8F36C066F0B715C745_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m99A910FCF4C1B8533C8F7C8F36C066F0B715C745_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m35B49DC5EFAE5F162641BBF97225FB8C91A34C40_gshared (EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C *)__this);
KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 L_0 = (( KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 (*) (EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tEEE5D97FEDF0773DC62B0EA18708DF47B9935BD5 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mC9059168F924043EB8706F43F7932572E130FC12_gshared (EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m91C3977DD8B31302B44A0C2E69B0472249E7B56A_gshared (EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mEC05167925F751828EF50D939E811B3ECA1F96DE_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C * L_0 = (EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tD3115ECF491C55DC942C0FD01F04B209FE55B08C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m52FB452823E6AE559D5C8009C7EAA52C09D702D3_gshared (EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m7CD4A1E44E9AAFF2BDF163D2C97BBD26E40A573C_gshared (EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 EmptyInternalEnumerator_1_get_Current_mC1C0DF442F32344DCEA7D870E1301FA676A78DF9_gshared (EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mC1C0DF442F32344DCEA7D870E1301FA676A78DF9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mC1C0DF442F32344DCEA7D870E1301FA676A78DF9_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB9338A42EAE09A1AE704D86DE8BD359433276299_gshared (EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007 *)__this);
KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 L_0 = (( KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 (*) (EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m58201AA8DCFD47E8753799302450A8E740AC1422_gshared (EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mA60873ECA364751B5539DAAA767C67B7EB32433C_gshared (EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m3999CEC6566BC6F452212952194940C3F20EE53E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007 * L_0 = (EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t832C80CDA9343F7DC75E208EA114220A85B4F007_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64Enum,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m55966AE46FE9462E1431DDBB841AC1D4AE705B59_gshared (EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64Enum,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m0A3D2E03FB47B24BE62828D106F169E0A0EFF3EC_gshared (EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64Enum,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA EmptyInternalEnumerator_1_get_Current_m4F977D95275083EDFDF6E640938606098826C030_gshared (EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m4F977D95275083EDFDF6E640938606098826C030_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m4F977D95275083EDFDF6E640938606098826C030_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64Enum,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3568D8EA71E493153C5EFA1D7DAE9EE6D411D260_gshared (EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC *)__this);
KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA L_0 = (( KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA (*) (EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tC2481980FC6F680E2EE753FFD69687A1DF0A34BA L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64Enum,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mFFC5964D02174EF6B50B3DDC7EAE0AE87788F4E8_gshared (EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64Enum,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m1E77070899D2D19F001DECEBBAE2DCCA7727D62B_gshared (EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64Enum,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mD0A5F30794E19B8275D1F105312B1B00E3F33E37_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC * L_0 = (EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB6FA52023DF4174AF15A312C66E752790E8DBAFC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkHash128,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mDC14BF22C6F891A2A49A011988756B39F9603AE7_gshared (EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkHash128,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8A9ED2F625D109C09BE4B968C71AB576F6CDDFA5_gshared (EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkHash128,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0 EmptyInternalEnumerator_1_get_Current_mFFD1CDBBF16EBBF275A7CB059C2C838A6CA5A492_gshared (EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mFFD1CDBBF16EBBF275A7CB059C2C838A6CA5A492_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mFFD1CDBBF16EBBF275A7CB059C2C838A6CA5A492_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkHash128,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m214FE1F364420621222EA0D1BDE6E4797E0E189F_gshared (EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3 *)__this);
KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0 L_0 = (( KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0 (*) (EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t0CE0707A94BF4AE177AB7E1BFEDC040515FA94C0 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkHash128,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m65722050F409FD44AF8D922962EA1AF7E219D5D3_gshared (EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkHash128,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m96A2871D3D88D93F0D7C4B1B87796156A167EBE6_gshared (EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkHash128,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB8BCDC00E1E8C02CEBB3C3CF1EE748A4EDCC8CCC_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3 * L_0 = (EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t6AE3AADA6AC1FBCB18FDA1A9D1BC964271BA02E3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkInstanceId,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mB85DED4C8F55A3EDF3A99F7C472FA25A3FDD5E3B_gshared (EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkInstanceId,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mC3513889EF0B17B3A452995717C6202448D4B0CB_gshared (EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkInstanceId,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013 EmptyInternalEnumerator_1_get_Current_m15EEEC43BE6688879498CA44467AB0E4ECD39A10_gshared (EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m15EEEC43BE6688879498CA44467AB0E4ECD39A10_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m15EEEC43BE6688879498CA44467AB0E4ECD39A10_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkInstanceId,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3548403D5BA8137BE0F2895404BD1BB96EA6E275_gshared (EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789 *)__this);
KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013 L_0 = (( KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013 (*) (EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t69925B80A7ABE4984BCEE157E46E4EF60E47E013 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkInstanceId,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m07C088A3CF5926374A7B4D38417FC388E9C02D36_gshared (EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkInstanceId,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mEACB62CF90C75F5CBF97283A5F1C916C60520101_gshared (EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkInstanceId,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mDA047BDCB750F7D63DCB83EEEC8773867C56F718_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789 * L_0 = (EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tED073C76A1F06D8112DA6E8DC72CEA0B15B49789_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkSceneId,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m9D003F452854D08F6971A5B634A469FE54F8E1A5_gshared (EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkSceneId,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m91152A05C8ACC8160A5EE1DFF8658E44A2727AD2_gshared (EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkSceneId,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8 EmptyInternalEnumerator_1_get_Current_m435FB1A1E27D78606C760DC791CE33F06A5EAE03_gshared (EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m435FB1A1E27D78606C760DC791CE33F06A5EAE03_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m435FB1A1E27D78606C760DC791CE33F06A5EAE03_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkSceneId,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAFBE88068B363477A73AEF34838F6BF148CCA6DA_gshared (EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93 *)__this);
KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8 L_0 = (( KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8 (*) (EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t05C741A74CC41DEDD67E3EAB33756917CFC6AFE8 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkSceneId,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mE9A473744121F47E2560D26E5D439D5A8DEC48E7_gshared (EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkSceneId,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE4DE297EF1B7502E6EFC8DFAC045F2832760D8F4_gshared (EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Networking.NetworkSceneId,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA11AA2DF4B36FBA51FE05DABB1963C8B236C7242_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93 * L_0 = (EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t0D94120E04AECEE86708F708C5D4673D52217B93_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Collections.Hashtable_bucket>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m9C4F1A4B99D101028A52EDC81598C2A238AD9905_gshared (EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Collections.Hashtable_bucket>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m76F6C44B14791D87CD5FBF5850B3C422AA95623D_gshared (EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Collections.Hashtable_bucket>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 EmptyInternalEnumerator_1_get_Current_mADF4703A99D76C5A2AE37C4DC95E3958DBE9E99C_gshared (EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mADF4703A99D76C5A2AE37C4DC95E3958DBE9E99C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mADF4703A99D76C5A2AE37C4DC95E3958DBE9E99C_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Collections.Hashtable_bucket>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAA451D7A4D98CE4675C171D70BEEB3A27E12F972_gshared (EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F *)__this);
bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_0 = (( bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 (*) (EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Hashtable_bucket>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m5626BEE6800A064F9A431337F13F6132068AE810_gshared (EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Hashtable_bucket>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m3A7FD2038E4BE92B25520B5A0171686BDD775DE7_gshared (EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Collections.Hashtable_bucket>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m7B921A5209D6E18FB6586E50B850F7647F6C49E4_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F * L_0 = (EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBB1E649DE3148205055E45B25E7ECE390764A10F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.DateTime>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m975F78C3EE48B9E7B06878D23EC9C281B4A952AC_gshared (EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.DateTime>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m49CE8A52CF86E073FFA5CA0E20E6B8197A901785_gshared (EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.DateTime>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 EmptyInternalEnumerator_1_get_Current_mB020239A7A0F12907B4A51FA17738728687ADE59_gshared (EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mB020239A7A0F12907B4A51FA17738728687ADE59_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mB020239A7A0F12907B4A51FA17738728687ADE59_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m34E5C3FC9F9182A729A5531D266CF00AB61C167C_gshared (EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0 *)__this);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = (( DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*) (EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m34F72582F6B042A07E4D1BA9D9F31879088C74ED_gshared (EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.DateTime>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m49A85B4E3A5570A5A60ED2DBB5357AC1D1113B9D_gshared (EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.DateTime>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m71ABF55994EBEAA11671E0691C86306AAD454754_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0 * L_0 = (EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t5337A7DE1FBF48A20C3D2750BB0C129C428A17C0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Decimal>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m74B143B630B6C36DF654498F2534349A05B3004E_gshared (EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Decimal>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m7CB2B00524CF6698989F3ADAB76AC6679EC60013_gshared (EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Decimal>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 EmptyInternalEnumerator_1_get_Current_m1868AC47033FE9A5533D64C53CBF30CCF4F13274_gshared (EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m1868AC47033FE9A5533D64C53CBF30CCF4F13274_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m1868AC47033FE9A5533D64C53CBF30CCF4F13274_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB386A641CE39D3CF5600D4115EC07CCDD350EC58_gshared (EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29 *)__this);
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_0 = (( Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (*) (EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m5FAF648AAB4ACDDE88EFEE53CB73D671E12DF935_gshared (EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Decimal>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m9DCE943E2CD1719B3B188A672F03301E287EBB3E_gshared (EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Decimal>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m3F50D238678973046FFC8D3F92CEE670DED2839F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29 * L_0 = (EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t4A8CA4001312FA90E581C8E03A6CAAEBC1D32C29_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF422EB08C95CBB7E56B2648B94274BBB9ADEC923_gshared (EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m19B13AFE66AC4D37AB059EE36B83C8657EBEEED6_gshared (EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A EmptyInternalEnumerator_1_get_Current_mE05BEAE26B082F795117C94E65C14D2930BA5E29_gshared (EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mE05BEAE26B082F795117C94E65C14D2930BA5E29_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mE05BEAE26B082F795117C94E65C14D2930BA5E29_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m56B74078A22B39EF53B454C0F7C652108DC2C510_gshared (EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB *)__this);
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_0 = (( SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A (*) (EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mBF28CDAE5349C086F422C3BB883C21D3A9C76831_gshared (EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m2C7924F345DD08C8CFA859314649B122B6317B6F_gshared (EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m3C69F1B9EE615A8075407A47945FB09B35C872B6_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB * L_0 = (EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t946CC412A8A003281BFB44D643BDF4684842F5AB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventSource_EventMetadata>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0C7712208EE9DD0000B8AE464E2AC460534CE28A_gshared (EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventSource_EventMetadata>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m3852B10A84EF40D4521BDCBDD8705F23D5904DBD_gshared (EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventSource_EventMetadata>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B EmptyInternalEnumerator_1_get_Current_mB9F9A8521DE3F36A78F934BB06A77280EC38BC9B_gshared (EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mB9F9A8521DE3F36A78F934BB06A77280EC38BC9B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mB9F9A8521DE3F36A78F934BB06A77280EC38BC9B_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventSource_EventMetadata>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m20A263F1DEB37F9E88EFB033AB9912B0A2F60FAF_gshared (EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82 *)__this);
EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B L_0 = (( EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B (*) (EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventSource_EventMetadata>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m04A8893C4880A2791A1E082C883295D8FB78C921_gshared (EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventSource_EventMetadata>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m2A5F86F454FD5385E94AB22531EF53BCD076F95B_gshared (EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Diagnostics.Tracing.EventSource_EventMetadata>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m9A70DAC84E1885339CF7C98D20D114022C450387_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82 * L_0 = (EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tEBEEF8B0DC83CA288488AC54FD824640F3264A82_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Double>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m1C0F296370DC4C0DF620181D7C59BCC92FE6F903_gshared (EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Double>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mEACDFE5BD8963A37D7FEAA17901996A233F1F7DA_gshared (EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Double>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double EmptyInternalEnumerator_1_get_Current_m07E77FDBFD58E5EE65287D586B1E09E258371140_gshared (EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m07E77FDBFD58E5EE65287D586B1E09E258371140_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m07E77FDBFD58E5EE65287D586B1E09E258371140_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Double>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m18C7CFE384FF9F4BAEA300DAFC89B2BE87DACB98_gshared (EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0 *)__this);
double L_0 = (( double (*) (EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
double L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Double>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mEA95CAC0536C3620551EDBA9448E936897527EFF_gshared (EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Double>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mDE144228ED4141B446339E6CE8EBE02278951F17_gshared (EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Double>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m1558EF6C3F3653977F5B82895A7791BEE6C36F31_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0 * L_0 = (EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBFC2F27BAD352268BE31DBCAE2A1FBA80E2047F0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mFFCD87519DAAA0E1D1C378EB81351A3248C365FB_gshared (EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mD6D9768D85D2A48B7B0DC8EEB4DEBB6FCD398B07_gshared (EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 EmptyInternalEnumerator_1_get_Current_m04B5C2FD10B42EA5CD3BBE88C3B8E1AF021CD27D_gshared (EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m04B5C2FD10B42EA5CD3BBE88C3B8E1AF021CD27D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m04B5C2FD10B42EA5CD3BBE88C3B8E1AF021CD27D_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD153CDC2F2A5EEFDB3912C153D9C64C1E5BDCB4D_gshared (EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81 *)__this);
InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 L_0 = (( InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 (*) (EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mEEAD8DA77E8B7917629A8A2768AF63AFB93C17B9_gshared (EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC24B334D9BBF2578D7D7E9E23EB7C1EAC95E98FA_gshared (EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mFF306DC5119BA67FC8BCBE24361235BC1B56B3A4_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81 * L_0 = (EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t7FB466162AB5F00DC0B1C7825701867F65859A81_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m2A376DA133E83DE513AD758D1A692C99DBB0D338_gshared (EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mA4911432D49E92E2F00FA61E960B2BCE9F65F658_gshared (EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 EmptyInternalEnumerator_1_get_Current_mC1B00DC8F54756D285CE951065DCB3583FA60DBF_gshared (EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mC1B00DC8F54756D285CE951065DCB3583FA60DBF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mC1B00DC8F54756D285CE951065DCB3583FA60DBF_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA511963ED3808D5623C40F15FFEAC135F5EC3598_gshared (EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3 *)__this);
InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 L_0 = (( InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 (*) (EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA4D30D5A1392D7F4CB9923A74533BB6DA735E29D_gshared (EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mEB624A9D5DA3CF1821513643AFB11A8F204F07B8_gshared (EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mE38D1D7D353975A0E63AE949E9A37B0DF89E49B3_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3 * L_0 = (EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tF8CDE0C1B66F1501559647ADF80E7D103DCA2FD3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Guid>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD79A1CF5BF73D904F707C603193EF24B74C59F18_gshared (EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Guid>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m484BBE995C3D8765B5CBE445F663D6CB2E82BB47_gshared (EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Guid>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t EmptyInternalEnumerator_1_get_Current_m74C53F2B3DCAF7CA8A55FD1A12A8A27D6D9A540E_gshared (EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m74C53F2B3DCAF7CA8A55FD1A12A8A27D6D9A540E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m74C53F2B3DCAF7CA8A55FD1A12A8A27D6D9A540E_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Guid>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF43C2E837BD04546189B0A6E3F935CB779B789C0_gshared (EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455 *)__this);
Guid_t L_0 = (( Guid_t (*) (EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Guid_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Guid>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD666B381F45757E4643A903B7E182CB625D5BD0F_gshared (EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Guid>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mCA8038D1FA9E62BC93D666BA375CFF3C22A03C01_gshared (EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Guid>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB77BDE9FF54E0D09403B746D50A9D60DF831CF5E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455 * L_0 = (EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tF1F358CDFFF57063D716BBE06BECEA9E84F78455_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Int16>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mB711FF68B7807A073FDCED9586CB57B759363DCD_gshared (EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Int16>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mEE41BFDC3186C969183BF06BF18CA3900F985375_gshared (EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Int16>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EmptyInternalEnumerator_1_get_Current_mBA694D08EB8FDE2B47454EDE7A07F687ED317CCF_gshared (EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mBA694D08EB8FDE2B47454EDE7A07F687ED317CCF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mBA694D08EB8FDE2B47454EDE7A07F687ED317CCF_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m898CFEA6236CCECC7462F1CB3E9945FDA7BEEC02_gshared (EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611 *)__this);
int16_t L_0 = (( int16_t (*) (EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
int16_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m13BEC353607837CB5721A58FA80B78224FE37C6D_gshared (EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Int16>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m50CCBF558BB052DAC2E4EB38DC4B11AB9C5CE7F2_gshared (EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Int16>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m1F6CD9AEFD2F9BC53E4D955ED432DA1113748A1E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611 * L_0 = (EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC1A3B279783B25BFE2686093FFF42D64AAFE8611_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Int32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m7292CC4C927081F48ED8CC8A3C8A41367968A307_gshared (EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Int32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF4B9304B42ECFF7DEE8C0B2A5FA551D32B732837_gshared (EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Int32>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EmptyInternalEnumerator_1_get_Current_m688871A0D97BDF5D132509D3C505A14475EF10FA_gshared (EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m688871A0D97BDF5D132509D3C505A14475EF10FA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m688871A0D97BDF5D132509D3C505A14475EF10FA_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m664EB7637F7E249052B18081B5F64276892D60A9_gshared (EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89 *)__this);
int32_t L_0 = (( int32_t (*) (EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
int32_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m330C90101EA19EEAB0101BFF4317D0D2E4BC55FE_gshared (EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Int32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m60CD6D74833DD9D0D52BC9095A7C5B2DC0B21BC3_gshared (EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Int32>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m1DD9A2C42CEE1458C54C0E241EBA127FFF05F201_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89 * L_0 = (EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t729665C599EE7F164A3DCEE6E240514C599BEC89_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Int32Enum>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m2995BFE86A1262608010E0401A910CEB7F668DFC_gshared (EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Int32Enum>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mB471ADE71828B3672FD73EF6205D3DEA915E6BEF_gshared (EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Int32Enum>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EmptyInternalEnumerator_1_get_Current_m630AF63B3207B43E2ED4C1B2D919B2E336C6859F_gshared (EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m630AF63B3207B43E2ED4C1B2D919B2E336C6859F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m630AF63B3207B43E2ED4C1B2D919B2E336C6859F_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Int32Enum>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m57D1B50F5EC33382477DD521E620315D280C75E4_gshared (EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B *)__this);
int32_t L_0 = (( int32_t (*) (EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
int32_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Int32Enum>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mAAAE4E7225469FD4E7C249FD32C013C588513F8B_gshared (EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Int32Enum>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC7805C0B9061658AE316B55E06A030CA835FE8BC_gshared (EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Int32Enum>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mDC9545877D9D593AD36F40F11BAB2C7317D11930_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B * L_0 = (EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t0B1844861F38476142804739BC8C6F811DEB1F5B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Int64>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m1A41F88BF9675BB680CC6D64C730FA987EB75EAE_gshared (EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Int64>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m9E2F9114A4381D11736A1452993EC66D853A9B56_gshared (EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Int64>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EmptyInternalEnumerator_1_get_Current_m43D211386BFACB64619122C4508DE298757FFDF0_gshared (EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m43D211386BFACB64619122C4508DE298757FFDF0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m43D211386BFACB64619122C4508DE298757FFDF0_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC6C65778DCCCA9EA9A48368903E938803A4C0D06_gshared (EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0 *)__this);
int64_t L_0 = (( int64_t (*) (EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
int64_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m8D362B0F83085C58322BFDC9B04C0EB159724A48_gshared (EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Int64>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m03F1E5FF6364909760D254D05EE910DEC4C60216_gshared (EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Int64>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m23B8F76B9C601B074B9E795B46638E8F8F093EE3_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0 * L_0 = (EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t83A5517792A4655DCCF74DB780A55428D6BD99C0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.IntPtr>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m97E901092BE9E349BE25866734C0BEDA2F41D0D9_gshared (EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.IntPtr>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mB83C70306150B7BFE954F93CEFFBE85A16E9DDD6_gshared (EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.IntPtr>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t EmptyInternalEnumerator_1_get_Current_m4BBE2ED9520467529E070DEDE2D4EA9BC34FFF46_gshared (EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m4BBE2ED9520467529E070DEDE2D4EA9BC34FFF46_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m4BBE2ED9520467529E070DEDE2D4EA9BC34FFF46_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8038D877021A2E00404158479786046C8A82C073_gshared (EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C *)__this);
intptr_t L_0 = (( intptr_t (*) (EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
intptr_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m4560BB47417D6F4D9C102D832963D4C39692E7E7_gshared (EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.IntPtr>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m2F8B2EEDFE912D30F92DB900599D751457025323_gshared (EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.IntPtr>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m6C648011298A150BEF13DF2B554A1E69BE319C13_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C * L_0 = (EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tCAAD164E9986CAAAFCCE77752536C6A5408E536C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Net.Sockets.Socket_WSABUF>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mEAC0F2B3EAC340083E33E378F9275F50401B36E5_gshared (EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Net.Sockets.Socket_WSABUF>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8D173498060EDB0D008A3CACD1A8BC213D18794C_gshared (EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Net.Sockets.Socket_WSABUF>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE EmptyInternalEnumerator_1_get_Current_mFA7801C41A4209BB9CFA5AE6C151A6E1CEA5879F_gshared (EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mFA7801C41A4209BB9CFA5AE6C151A6E1CEA5879F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mFA7801C41A4209BB9CFA5AE6C151A6E1CEA5879F_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Net.Sockets.Socket_WSABUF>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m76E9A16837AFA6F14934E6CBCC175CF846FDA5CE_gshared (EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F *)__this);
WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE L_0 = (( WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE (*) (EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Net.Sockets.Socket_WSABUF>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m411F39B626A725F3519439E097CA1D37C500B32C_gshared (EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Net.Sockets.Socket_WSABUF>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mAF872F10C6E887AC5D64BA1DFC8D8938D71C1821_gshared (EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Net.Sockets.Socket_WSABUF>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mEBEF53D9A81FEDDB5BDD9C0B93481F9D924C564F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F * L_0 = (EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tCFE7B6944C5266620CCF5F7A0F9EF8351CBA0B5F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m5DDD72FE1ECEE850FECBE4B27400C628BF3F41A5_gshared (EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m02AF092F3FCAE014A2392BFFDFEEE5DAD0139C57_gshared (EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Object>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_get_Current_m1CE82E4289FB0185AFB66AE7C7EF92511DC7017E_gshared (EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m1CE82E4289FB0185AFB66AE7C7EF92511DC7017E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m1CE82E4289FB0185AFB66AE7C7EF92511DC7017E_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD06E915DEC8A96CABFC5E9A34F2D4FDB43C36D7F_gshared (EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A *)__this);
RuntimeObject * L_0 = (( RuntimeObject * (*) (EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
return L_0;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m9DF4386FCA8A390A1303DA29B991AA5C1D570E5F_gshared (EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m9B50232A3995677B96B51942B7F65624125C4AAD_gshared (EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Object>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m9F5D8779E996E9EE7EDDCFDADE4C5C39774D0ECC_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A * L_0 = (EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC611D530FCDA1D5D02613D1AF4E7EB8586C38F8A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.ParameterizedStrings_FormatParam>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m441772CFD292DD5953CB8364A2236B1419350DAA_gshared (EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.ParameterizedStrings_FormatParam>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mA9477055A4431B44AFE21712985DF8056AD1045E_gshared (EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.ParameterizedStrings_FormatParam>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 EmptyInternalEnumerator_1_get_Current_m60F72696ADBA60FCDF548CC21844A3852BAA9820_gshared (EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m60F72696ADBA60FCDF548CC21844A3852BAA9820_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m60F72696ADBA60FCDF548CC21844A3852BAA9820_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.ParameterizedStrings_FormatParam>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD7530BE948BFCF516829E9304C36C4D29EDFC125_gshared (EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C *)__this);
FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 L_0 = (( FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 (*) (EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.ParameterizedStrings_FormatParam>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA889F3E24706BA241B0F0D42A3CEC7AE6FA3D422_gshared (EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.ParameterizedStrings_FormatParam>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m5287028BC617C3AA25DF8A8AA6D5D21CFA2447DE_gshared (EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.ParameterizedStrings_FormatParam>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m7ABE7C642DEFC4520AF31BFC99A9D917A9E1C50F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C * L_0 = (EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tE5866FC28F0D62774BA658B76D6F92361E32099C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m8D8FC0F059B7393E1A4C306D817C27ED89D85E2B_gshared (EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mA9B8AD39B672406823F09CD2BF9B327D5F7C1CC2_gshared (EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E EmptyInternalEnumerator_1_get_Current_m89E994B29B5FB68A2E132D5BE44DED295944AC41_gshared (EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m89E994B29B5FB68A2E132D5BE44DED295944AC41_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m89E994B29B5FB68A2E132D5BE44DED295944AC41_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFE50386806D49B77808CF194AD20EE00399ED3CC_gshared (EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666 *)__this);
CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E L_0 = (( CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E (*) (EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m220D0C4F58A2ABCC1B633CC3F0095E9F4A92D9B8_gshared (EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mA8EB4A322B4F31788B53CF662BE36F903B338EDA_gshared (EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m9D737FF318402F186F2BE855B5332EC5053D2223_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666 * L_0 = (EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t65DD578801F5765D9E2625DBA180E2CD486F4666_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mFA405C9CB4846946BEE698D5B014337722FE00F7_gshared (EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m56399366FAC0B9B554D0EE6E6244484E277E732C_gshared (EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 EmptyInternalEnumerator_1_get_Current_m4A4EFA8829A60E09FE4E94105F12D16C78230B77_gshared (EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m4A4EFA8829A60E09FE4E94105F12D16C78230B77_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m4A4EFA8829A60E09FE4E94105F12D16C78230B77_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m06EEF4E303692988303BFE577EE6395F114022DA_gshared (EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B *)__this);
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 L_0 = (( CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 (*) (EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m7DCDCFC7252441CA8EDF6EEDE6A2B86FE1C8BA69_gshared (EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mF1C4F421743F87F2DB45A735373B7CC290086DB5_gshared (EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m75641F964606EFF81FABADA7427F17FC33DC4AAB_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B * L_0 = (EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t57745FDC4DBB0CA2E07FA62544800AB60AF24A2B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD73E8B2E2FABBDAEE43E1E8638A8A0D7F4BECEC1_gshared (EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m11235498B567F993814259E23F34B40AA38718A5_gshared (EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E EmptyInternalEnumerator_1_get_Current_mF477BCDFC6FB221532EC3FBD8F1711E6D55C1F10_gshared (EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mF477BCDFC6FB221532EC3FBD8F1711E6D55C1F10_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mF477BCDFC6FB221532EC3FBD8F1711E6D55C1F10_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m6A9BA918B8ABB3DA6490CFF3B5CA1F0C4B805FBA_gshared (EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00 *)__this);
ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E L_0 = (( ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E (*) (EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m011919ED29CA6DE5DEC842FC0183A7DFF765352B_gshared (EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE59F2CCFBC15FC6FB230B7031D44C34222FC3BD9_gshared (EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF1FD2EEA06572C3233D0B2978A370C5D130D9281_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00 * L_0 = (EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t6BADE6B1CE77B3257D90F11B80E5DF6B58283C00_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mCF7AF21651160BE181FAF7DB14DA32B2B0A75283_gshared (EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m10A78C0EE239A779FD3F364BF5F17EFDD3D57B30_gshared (EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C EmptyInternalEnumerator_1_get_Current_m8AFD620D0B3BD3A1F968761903831952C731B3A2_gshared (EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m8AFD620D0B3BD3A1F968761903831952C731B3A2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m8AFD620D0B3BD3A1F968761903831952C731B3A2_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD42C3A72403ADD3B7FD102409DD57180712E369A_gshared (EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551 *)__this);
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_0 = (( ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C (*) (EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m4C1A01C24797A9E858CD97E4D0C551FBC3ACAFAA_gshared (EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE50E4B7364CB268A00FBB810CB3DEDDE6D5D2D99_gshared (EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC1863DE0E63768542BC713004EEDEF3EFD3B4F00_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551 * L_0 = (EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t45249F06BBEB21350E1E707D989AD13C07894551_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA5FA6EF1DB76C24912D4B0BC7006195D1A12AF79_gshared (EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m7868AA7B880A1C98361C1FDE7B505638785EC5AD_gshared (EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA EmptyInternalEnumerator_1_get_Current_m83FBD6CF2834CFCAD3D84A8215C40BCC028353A8_gshared (EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m83FBD6CF2834CFCAD3D84A8215C40BCC028353A8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m83FBD6CF2834CFCAD3D84A8215C40BCC028353A8_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE8B2CEA54D056374FD4904575AD2780469381883_gshared (EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38 *)__this);
Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA L_0 = (( Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA (*) (EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m7D6398EF70A977FB6CF6A0ED22B6216BDD97F9B2_gshared (EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC47D4F41979BAF1369935FA501C701DBD8065031_gshared (EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m06CEC1DC1C62E9979D0AFD4012DB1E8821F1844C_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38 * L_0 = (EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t783010AC2AF12E1BB5E623633CB9D3D38C3ABE38_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m929359D49D15A9B72BF0275E0A4359ECC950940E_gshared (EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m37C312D9DCB42EB99A8819097C6E3159DAB8AB48_gshared (EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 EmptyInternalEnumerator_1_get_Current_m7FF157DCF930FD6D8E3448441F2EE79E8CB462A9_gshared (EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m7FF157DCF930FD6D8E3448441F2EE79E8CB462A9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m7FF157DCF930FD6D8E3448441F2EE79E8CB462A9_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m878CA1568C9CB36A2967C10125E5533EBBAC8C66_gshared (EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC *)__this);
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_0 = (( GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 (*) (EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m5E31D2837C571363ABBC356253FC068C01DA00A1_gshared (EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mAC4B71B2FC0FC26A1EFC35E80D20493407C61123_gshared (EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m3CE1AE3DC0E3429F16A121B536321551B07A675C_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC * L_0 = (EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t7685E0CCF75EEA996509C5A0D38065C6C661D7EC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.SByte>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m92769464B9E318B2D2BE51066CF5FEDD797DAA63_gshared (EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.SByte>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m3988F41B37EA8413C34455B9DFC58B0072C3F3D9_gshared (EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.SByte>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EmptyInternalEnumerator_1_get_Current_m17E39F6C3ADB920CA93850D89890D0E47C36592D_gshared (EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m17E39F6C3ADB920CA93850D89890D0E47C36592D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m17E39F6C3ADB920CA93850D89890D0E47C36592D_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m08AB2122386BCCD1CCA73D499D5EC5C306C26310_gshared (EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343 *)__this);
int8_t L_0 = (( int8_t (*) (EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
int8_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m68A83D70C3E991DACD60D4EAF0C76DDDE6B66C7A_gshared (EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.SByte>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB6EDCDD22B46C09071F14F451BF267F40380212B_gshared (EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.SByte>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF27674DCEA543E4BD5A3CE5A66C17FA54E309849_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343 * L_0 = (EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t005672573596D5BBD3713D146144FEDC47BE4343_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Single>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mE8CEAC8C1A93C4B3DCEA53C0F5AE5760A5347C68_gshared (EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Single>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mFC8B73E5C1546F6C1CFAE705FDD87920025CB5E2_gshared (EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Single>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float EmptyInternalEnumerator_1_get_Current_m0C60BE6EA74588A46F15051C3259341BDCB8F58A_gshared (EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m0C60BE6EA74588A46F15051C3259341BDCB8F58A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m0C60BE6EA74588A46F15051C3259341BDCB8F58A_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Single>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m52A35AF4CA92C48B879F46AF3E81969816AFCA52_gshared (EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236 *)__this);
float L_0 = (( float (*) (EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
float L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Single>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mED2110BDB992BC200A62AF4C8917D21E6E42246B_gshared (EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Single>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mDCB2F8754EF95F26BFD283F67F73FC77EB2DCEFE_gshared (EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Single>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m0903AA99F17F7060D0CAE1DAC5764E5A823019FA_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236 * L_0 = (EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t87A675C433A2B9B9F8220668E8384DD97CAB0236_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mB1989E973B04D909CCD84550E48B494158BA6D72_gshared (EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m0DC0693ADE7BF7DC3569B2560EC5060DFBC30971_gshared (EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B EmptyInternalEnumerator_1_get_Current_m0FB286FD156C69E50C98EDD6ADF037DC6A46D771_gshared (EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m0FB286FD156C69E50C98EDD6ADF037DC6A46D771_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m0FB286FD156C69E50C98EDD6ADF037DC6A46D771_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDFDD30A1EF486B0DC2A8BE5409CC0FE4114BFD45_gshared (EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4 *)__this);
LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B L_0 = (( LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B (*) (EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m4D83E50ED4BA17341EBEB8C0F7EDA7CE86AD5C77_gshared (EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m61BFA33258B94F937D42F23CF00F895B10E0956A_gshared (EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB74DE222A903C2FDBFABA115C5C87128C46C4070_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4 * L_0 = (EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t2A0A894D345933AB61AD8BECDA3EDFE5904667A4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m61A49321507F1A6B1497216A3CBD67067B95DCDF_gshared (EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8089246C330463EC937724A966327647A013EC34_gshared (EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 EmptyInternalEnumerator_1_get_Current_mB55E0808A4D77A4946F44A0F47F8BE914C329D45_gshared (EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mB55E0808A4D77A4946F44A0F47F8BE914C329D45_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mB55E0808A4D77A4946F44A0F47F8BE914C329D45_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m21EBF0699D602278D4F4D3669390B0DC2D646120_gshared (EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF *)__this);
CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 L_0 = (( CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 (*) (EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m557F5AE91B32EFBD8862833899CC8854E349A548_gshared (EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m7EB18C34EFA4724AAF644A47E5A92596C1E7F476_gshared (EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mBBF3E1257C06D7CE5D4E5A1207F45271716C295D_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF * L_0 = (EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tAE64537C086E6499A6C90F36760061CC92775EDF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.TimeSpan>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mE2BFB736F6C48245F81862824D489F53A069ABD3_gshared (EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.TimeSpan>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m25DE39443E5D946CA0D720A28189C914C9D8D53F_gshared (EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.TimeSpan>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 EmptyInternalEnumerator_1_get_Current_mEA3554A434E127BEB53A50C0B937A0FDC4155661_gshared (EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mEA3554A434E127BEB53A50C0B937A0FDC4155661_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mEA3554A434E127BEB53A50C0B937A0FDC4155661_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m40418EE331910769FCB1D3865C652CB962B17055_gshared (EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6 *)__this);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = (( TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*) (EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mFF789313488DA8B08D17A05F2D2025F4005E2F88_gshared (EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.TimeSpan>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC75783E910FB954AFB3129A3FAC3425DF406D46A_gshared (EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.TimeSpan>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m8ED04926F7336AEEE9032A9CED5AC0F5B3547F1F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6 * L_0 = (EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t25122E9D49E64133A93E64AB344FCF4333D20BC6_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.UInt16>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m1F6DCDE72D63C52768DDF25B8B452D29EE8EEF3E_gshared (EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.UInt16>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m542E99F8CC7A8A3BF4EBF0463134548A15E87D6A_gshared (EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.UInt16>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EmptyInternalEnumerator_1_get_Current_mB4538F08D37C1AF8ED2E5A8542368184F34E58E7_gshared (EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mB4538F08D37C1AF8ED2E5A8542368184F34E58E7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mB4538F08D37C1AF8ED2E5A8542368184F34E58E7_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBDEBFFB0845BEDF6280941C51465BE41B528EEF8_gshared (EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611 *)__this);
uint16_t L_0 = (( uint16_t (*) (EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
uint16_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m674E8477DDF4231D46FC0032374D5ADE0BF87F6A_gshared (EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.UInt16>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m23CD02FF0B8E4587E2E951E8C981DF53FB6567D7_gshared (EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.UInt16>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m127AB814BCF4AAF710A2889828B556C98693C2A8_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611 * L_0 = (EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t0061E530BB230C919151C3A857CE0A02B62F6611_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.UInt32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mE48E2F7CD9B23BB8E1FC86D3657BE275130B11FF_gshared (EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.UInt32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mC78BC71CDB2F9319F454BF452BFABC3803D4411E_gshared (EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.UInt32>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EmptyInternalEnumerator_1_get_Current_mD41BD65921AA0AFAA9025BD7FBEEE634BF58E633_gshared (EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mD41BD65921AA0AFAA9025BD7FBEEE634BF58E633_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mD41BD65921AA0AFAA9025BD7FBEEE634BF58E633_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8A3A315ADA83D45DB83B7691646ADECA204E1E00_gshared (EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6 *)__this);
uint32_t L_0 = (( uint32_t (*) (EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
uint32_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD39CEE2F8588570226A037B2B670B033C1E13FB2_gshared (EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.UInt32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mD5870B223A3C785AD75AC3A49A44A5C8E2982945_gshared (EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.UInt32>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m656B8F6066A0269AD9B2FF16BCF6BB7A49F2F335_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6 * L_0 = (EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t90D8A1E77B94C9D4D71DE84AC8DEAA7378A0A9D6_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.UInt64>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF93061EF26F11A7B6827498E9B65EB8780F9174B_gshared (EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.UInt64>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mBAA6AB3D0E3D3645B0EB602CFFDFD468F96F97B8_gshared (EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.UInt64>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EmptyInternalEnumerator_1_get_Current_mC07B792B936AADB3124956F37200AD20909E051B_gshared (EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mC07B792B936AADB3124956F37200AD20909E051B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mC07B792B936AADB3124956F37200AD20909E051B_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m55BCE35E2E8E03016DAD3C422B89118129C990E1_gshared (EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD *)__this);
uint64_t L_0 = (( uint64_t (*) (EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
uint64_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mDA09B90E5062B10E8F60264A5D97CB26A200A744_gshared (EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.UInt64>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m1473E1DA482E76444D08B85FA234FC1AE628C471_gshared (EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.UInt64>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m2EE48BDC2247B38F84502C4370EEB1C352023CD4_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD * L_0 = (EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t0B626AE0A07388A9459977AE9C635AC9E47271AD_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.UInt64Enum>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m3833FD231F8CB826E39C979F5B58276FB7E0D7A7_gshared (EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.UInt64Enum>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m0A84C46E7C29EEF3966C502D4F185CB4B1194AAA_gshared (EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.UInt64Enum>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EmptyInternalEnumerator_1_get_Current_m1A73F71E135FF1DE7F950848A02B1C40221B2F72_gshared (EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m1A73F71E135FF1DE7F950848A02B1C40221B2F72_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m1A73F71E135FF1DE7F950848A02B1C40221B2F72_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.UInt64Enum>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCD2D4B314A3FA6831708EABCFCE8401B67676295_gshared (EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32 *)__this);
uint64_t L_0 = (( uint64_t (*) (EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
uint64_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.UInt64Enum>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA6F1129A9796AAF0910DDEA9AAB975E4217D7495_gshared (EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.UInt64Enum>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m48A0540212E25952E6096D52D6F48E0C48B35365_gshared (EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.UInt64Enum>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m49949D30EB2D7EAFB3CF9C1274A39F52BE0F60AD_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32 * L_0 = (EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t28E42BD633182F686E249DFFAEF6D29AA0F6ED32_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<System.UIntPtr>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mED029235FDB81A71BB681B636C1A8A2A1D33FAC1_gshared (EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<System.UIntPtr>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF326BDA3667029CF1704F08E7658D9DF2F295EB5_gshared (EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<System.UIntPtr>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uintptr_t EmptyInternalEnumerator_1_get_Current_mDB789AF8B347AAB5B9C449C7519E95F969E9DE87_gshared (EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mDB789AF8B347AAB5B9C449C7519E95F969E9DE87_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mDB789AF8B347AAB5B9C449C7519E95F969E9DE87_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<System.UIntPtr>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m730520F019D9F52A5B5AAB5FD42BAF4DB4CCD155_gshared (EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D *)__this);
uintptr_t L_0 = (( uintptr_t (*) (EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
uintptr_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.UIntPtr>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m2A3E40E0585E435811425F71F532DE7C41C72DA0_gshared (EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.UIntPtr>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m3D0B7F30B9A5E786C36F084E451266F1575F3A53_gshared (EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<System.UIntPtr>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m99A33F3C6B804BEB1499D7A73945ED8CD44FC99C_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D * L_0 = (EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t4D6EB06155FE8AD2FE6D46284E70229D7797BE3D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper_OrderBlock>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF889C0BB40E631D83C0A913DB5C4C91E28B4D821_gshared (EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper_OrderBlock>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mBACD1B9B7D28926773388C5303D845AE5742E199_gshared (EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper_OrderBlock>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 EmptyInternalEnumerator_1_get_Current_m247079442CEC480662FA971CAD91C5A1ED937A9A_gshared (EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m247079442CEC480662FA971CAD91C5A1ED937A9A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m247079442CEC480662FA971CAD91C5A1ED937A9A_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper_OrderBlock>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m66ECEC23E1A7A97334CE7CCBE0E4454AF18C2BAE_gshared (EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E *)__this);
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_0 = (( OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 (*) (EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper_OrderBlock>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m54FCF5AEDE4FA8E5164D5E65C1E97725DF5AB2CC_gshared (EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper_OrderBlock>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mCEFEC6C53E4AD8ACCAC1B22C0852979CC66514F2_gshared (EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper_OrderBlock>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA1FA71B0BE9000F8F8AB60F0E05CBE5234EE1E82_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E * L_0 = (EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tFA4A0C7AAD0B7F6528EB1BF0CA3F81453756410E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Color32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mDC28D662574EB6015EBA8AA31C3DBCEBD99F2350_gshared (EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Color32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mCC7719AFE4981E35BDA348E5685964B929C2D75A_gshared (EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Color32>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 EmptyInternalEnumerator_1_get_Current_mC2B8B3B80264600FD8E7FBA9DEBA4BA6FA287810_gshared (EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mC2B8B3B80264600FD8E7FBA9DEBA4BA6FA287810_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mC2B8B3B80264600FD8E7FBA9DEBA4BA6FA287810_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Color32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m25E2E081957C0CCC50CCDDF6DC8995CD517BA383_gshared (EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771 *)__this);
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_0 = (( Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 (*) (EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Color32>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m0C94A199B7DDD1C14ECC2DB403D8B5A6E58E32BB_gshared (EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Color32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m16A6A1272029A4A1E3F8DC74E347D0C676C5027B_gshared (EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Color32>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m249DB96D73BB8FEF2FB61DFA482CBC4FE22FADD0_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771 * L_0 = (EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tCF7FFC75412DBAE45894E509AF5800A8594BC771_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.ContactPoint2D>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m26514AA2CF7154B31585837FBE8611B214EF9D38_gshared (EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.ContactPoint2D>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m952C535DCEED43DF4972585132CED496C524F9D3_gshared (EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.ContactPoint2D>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 EmptyInternalEnumerator_1_get_Current_mA64B6077FDD555F75AF944CE2FFA1EC4E671F294_gshared (EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mA64B6077FDD555F75AF944CE2FFA1EC4E671F294_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mA64B6077FDD555F75AF944CE2FFA1EC4E671F294_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.ContactPoint2D>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC9D7EC2EADCB5AE891AC3A93BFE3FD88F2C2A3BA_gshared (EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F *)__this);
ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 L_0 = (( ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 (*) (EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.ContactPoint2D>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m6C202C427CD686EB06F9626CD70973AB57DEE2F1_gshared (EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.ContactPoint2D>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE9681D02AD32770D0CDFFECF4AC5B44ADFD18716_gshared (EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.ContactPoint2D>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC94F08A131B604E7E99C6AF82120E91B5BEFACD0_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F * L_0 = (EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t86D32F88378208AA9F271158083DA6F2E7625F9F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mBE760F807C4A3424CA5B9DF1B4282DAF76042D7A_gshared (EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mFF0C32719B4C6A23EAA212A84DA95E7E0B4626FB_gshared (EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 EmptyInternalEnumerator_1_get_Current_mFF2DE9B159D4CFDCA29671017D05A5FCC4E7F7FB_gshared (EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mFF2DE9B159D4CFDCA29671017D05A5FCC4E7F7FB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mFF2DE9B159D4CFDCA29671017D05A5FCC4E7F7FB_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1DC45C6D27F14A9813F02C5B269BF5DAAF66A23E_gshared (EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E *)__this);
ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 L_0 = (( ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 (*) (EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m67C0AAD24FF50C6B3E66367552AA54D7B701E91D_gshared (EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m8A1D351683BE9EE93A96EFC2411B195C4A9E1DE9_gshared (EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m45FE04D20EE39C2944DE65E00436E875C1880DB1_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E * L_0 = (EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tFEA5CEE4BA6CF9F940131CE205F903C0A2C5249E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mFCF59055E1D9E77A0548C3EBCA7EF988CECBAF0F_gshared (EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8A12271C10136D1CB66B94725DFEDAF012D40C57_gshared (EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 EmptyInternalEnumerator_1_get_Current_m165DF603BD5CC24DD7D73981775AAEE1DF235094_gshared (EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m165DF603BD5CC24DD7D73981775AAEE1DF235094_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m165DF603BD5CC24DD7D73981775AAEE1DF235094_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC5CD09E851C77737BB0AF82BE676D9BE8DCD8677_gshared (EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 *)__this);
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_0 = (( RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 (*) (EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD9BCF0DABC2033B5DBB6F0855CD899DD55C743F2_gshared (EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mBFFCEADC6259C4E8B1289A8CDDEB08D1D1B4213A_gshared (EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m8E6BAAF356A43BAE15755AE0F36D26ED1F7931E2_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 * L_0 = (EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t6DCD390055BE921752E3C4A1ED7B3FCA57681A05_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m4F4A3E1734266A2A48649A6D24796CECFEBEF148_gshared (EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m5121451D280F4DEA78057C971EC15AE0D6BC249D_gshared (EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 EmptyInternalEnumerator_1_get_Current_mEA48A914AC1EA8AA2BA4D469555F9A904465F31D_gshared (EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mEA48A914AC1EA8AA2BA4D469555F9A904465F31D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mEA48A914AC1EA8AA2BA4D469555F9A904465F31D_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m12FE30A8CC333F770010C09F646C8AECD286FF90_gshared (EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8 *)__this);
LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 L_0 = (( LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 (*) (EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m277371BF346155C92165BBD1F7B9F6338128A170_gshared (EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m574812D52490C7A51600ED17A6EC64C41C5709ED_gshared (EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m63A3C2F2023FEE342DA2C1407C7D2AF73184F612_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8 * L_0 = (EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t3D028B13E2B831E3F628FD368EBBE3A968AE02F8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mE13A7B744EAB5B038F1029A442153E77E71769EB_gshared (EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8CD9246A302DC08BCB90EA3A1EBC9DC7CB34F2DB_gshared (EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D EmptyInternalEnumerator_1_get_Current_m12FF3DE66B0E5D028C2B6FFC51BB812BF1687D1E_gshared (EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m12FF3DE66B0E5D028C2B6FFC51BB812BF1687D1E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m12FF3DE66B0E5D028C2B6FFC51BB812BF1687D1E_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m335C63E69615F50B61124AE00D2C5912AE61E79D_gshared (EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485 *)__this);
PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D L_0 = (( PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D (*) (EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m89112B43979BD71CC96321869513520D7894591C_gshared (EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m89B798B85A615E97D93BFAC73141501A0406BFC1_gshared (EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m11640872C33E9D17B66B185AB3ED07AAEB91CDF4_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485 * L_0 = (EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t08F8E5BCE16EAB24C2691069F592278758A54485_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Keyframe>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m5E969110A961C4AD5CA4652F5F4A96D5DBA66D43_gshared (EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Keyframe>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mDA21E7F19FD2FA932A2831486BECDEFF15C7AD4F_gshared (EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Keyframe>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 EmptyInternalEnumerator_1_get_Current_m5E5746A2F739063EB4AAD252A5755542C93CE3DC_gshared (EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m5E5746A2F739063EB4AAD252A5755542C93CE3DC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m5E5746A2F739063EB4AAD252A5755542C93CE3DC_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAE60631B2FAAD9126B2771CB5B7446D6736AD230_gshared (EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601 *)__this);
Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 L_0 = (( Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 (*) (EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m870C7907DA9B476EE95D7C0DF61BA67C89A430D0_gshared (EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Keyframe>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m5CE5171F083ECE4819D41BF1D86FBB8443CBF3A2_gshared (EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Keyframe>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF6AC13A53ECFB7C980913F83142C4D0BA2956033_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601 * L_0 = (EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t60A3DBECA041DD4E7C8E7C5971821F01C31A6601_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.ChannelPacket>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m8582C7FF562D13E856DC4CE0D7F8054C815840C8_gshared (EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.ChannelPacket>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m9F21C2FFA8D26F40BC61220A5C7C9024F94F05C8_gshared (EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.ChannelPacket>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D EmptyInternalEnumerator_1_get_Current_m9954484CD3A432A536BB55D687E86A360268B80C_gshared (EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m9954484CD3A432A536BB55D687E86A360268B80C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m9954484CD3A432A536BB55D687E86A360268B80C_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.ChannelPacket>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF696DA0275843E824A4FA3E7F0C7168E079AEFCA_gshared (EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906 *)__this);
ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D L_0 = (( ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D (*) (EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ChannelPacket_t666A32E3B50CF1DC7E3DAB739AC2D3A90F764C5D L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.ChannelPacket>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m20E37D745E255EC72FB3C3EA391ADDC29DF756E5_gshared (EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.ChannelPacket>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC5CB051011A405151AD6042062570F76310F88C7_gshared (EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.ChannelPacket>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB08C31AA45E755A8794C4549B0BDC260C6098430_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906 * L_0 = (EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t00B2DB02990DC5F582DDBAF2C3EC6B95C10DB906_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.ClientScene_PendingOwner>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mCE84127679AC855388EAC9CC766E4688F461397F_gshared (EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.ClientScene_PendingOwner>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m9A26AF78A1CF92EB9C692DC0939EC5D0998EB5BC_gshared (EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.ClientScene_PendingOwner>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 EmptyInternalEnumerator_1_get_Current_mED751D30B6A22442CB49EB4072CD97081F8583A2_gshared (EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mED751D30B6A22442CB49EB4072CD97081F8583A2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mED751D30B6A22442CB49EB4072CD97081F8583A2_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.ClientScene_PendingOwner>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5946DF470113168DCE47CBA1D570CC1077F0D82D_gshared (EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1 *)__this);
PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 L_0 = (( PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 (*) (EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
PendingOwner_t95DCF7756771019ED79F4CD192D11BA19AD2F369 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.ClientScene_PendingOwner>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m0CE429CA3E807D8AD0C6B0072194FFF7BE2D93EC_gshared (EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.ClientScene_PendingOwner>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m770693513A8B84E7343AAAE1173AA869235CC93A_gshared (EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.ClientScene_PendingOwner>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m94A69FB7F80BC783712F6C56982595559834F391_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1 * L_0 = (EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tA37FE510BEAAAF16FE798DCD40D07841CC6C5BA1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.LocalClient_InternalMsg>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0D4E044716CCD9CC76D56979FAA9478C4FE28FBA_gshared (EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.LocalClient_InternalMsg>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mB7EC8E055C7B6CF46C99AB97F06BE01AB24158F5_gshared (EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.LocalClient_InternalMsg>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 EmptyInternalEnumerator_1_get_Current_m9A6B6CBC5D424C044BF445F2CD69EA3986F61834_gshared (EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m9A6B6CBC5D424C044BF445F2CD69EA3986F61834_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m9A6B6CBC5D424C044BF445F2CD69EA3986F61834_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.LocalClient_InternalMsg>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD141D9A2CA2CA877093EA603F7551575DE40F211_gshared (EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA *)__this);
InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 L_0 = (( InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 (*) (EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
InternalMsg_t35216173725E87B2FEAB326E27B5EDA09996C1B0 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.LocalClient_InternalMsg>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m8105B2E90601EBC61DF70C4FF4F626457865DA6D_gshared (EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.LocalClient_InternalMsg>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m17A74249A8591E3B9D89FAE6739F20D9205EAC7A_gshared (EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.LocalClient_InternalMsg>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m8BD7F32175AC74235FA172326E5FCACB0C8B838B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA * L_0 = (EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tCE3C96EB06C8DFA812AB2AF786E6D15744FE57BA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkBroadcastResult>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mCE6DD9E2F10CC2C13BF784DDA4281B6C04C0F53B_gshared (EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkBroadcastResult>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mE41A5456656946021856917ECA3AB9133E4A124A_gshared (EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkBroadcastResult>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 EmptyInternalEnumerator_1_get_Current_m8001F356CF3EF205D9D1585C4A8013E0BC3EEE44_gshared (EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m8001F356CF3EF205D9D1585C4A8013E0BC3EEE44_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m8001F356CF3EF205D9D1585C4A8013E0BC3EEE44_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m16A976844B3962D04BF9C10C171654E380486791_gshared (EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818 *)__this);
NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_0 = (( NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 (*) (EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NetworkBroadcastResult_t599AC2C31A6DA16DA91A5FF3F6B5E9AC11B39BD6 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkBroadcastResult>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m3863FF9AB8C25AC6B7D9E38ED23A074748289946_gshared (EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkBroadcastResult>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m634AB65EAC772A393FCC0830EB4B2F1E59ACC7AD_gshared (EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkBroadcastResult>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m320563E4C2AF6286EBBD7A15C33776257F20B7FB_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818 * L_0 = (EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t883D69D7DE297AAD0D507CBF2AFD34659C47D818_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkHash128>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC49C3F3D78650BCF26277C178AA83219B60D2874_gshared (EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkHash128>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mB2F6BA994A7D9AFFF53DD00798C80BCEC27AD0B2_gshared (EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkHash128>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C EmptyInternalEnumerator_1_get_Current_m5AB6DA521489CB4F468BB376B073E910DEBDE64F_gshared (EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m5AB6DA521489CB4F468BB376B073E910DEBDE64F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m5AB6DA521489CB4F468BB376B073E910DEBDE64F_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkHash128>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m480BC12B411E14EA5E538C8C738A42C60366E9E5_gshared (EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1 *)__this);
NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C L_0 = (( NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C (*) (EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NetworkHash128_t157C5C14B16832B67D8F519C11ABA013695AF28C L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkHash128>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m7EE136CC77879B1C0BF4E7956BD5A90A27BDB916_gshared (EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkHash128>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m66AA8124C73A42C2E53B563C78B2632A928A5123_gshared (EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkHash128>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m7138F5532CE622BF9A060DA0CA6366820E5EB413_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1 * L_0 = (EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tE4C9A75E8784125665462042A0DFA449DCED41A1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkInstanceId>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m486C2BED1106C2390A8C247F54DE53DAA7FA1CEB_gshared (EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkInstanceId>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mA6D93CFEECC0660DD2364AF479DF8711F7CAB630_gshared (EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkInstanceId>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 EmptyInternalEnumerator_1_get_Current_m91850009EDCB6BD94A45C13901DADD42E470A99E_gshared (EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m91850009EDCB6BD94A45C13901DADD42E470A99E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m91850009EDCB6BD94A45C13901DADD42E470A99E_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkInstanceId>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE42459F92F67E8BC7CE904837B749F69301FBC82_gshared (EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1 *)__this);
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 L_0 = (( NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 (*) (EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NetworkInstanceId_tB6492FD2B3B2062582F787801BF7C0457271F615 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkInstanceId>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD22009B314081AD7E95B9359C49623E5D15F3A96_gshared (EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkInstanceId>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m28E11EFE3C2D0610504A4B867C938075047326A9_gshared (EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkInstanceId>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m42877B785D3611432D18B7B25E85100F1E53033B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1 * L_0 = (EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tCB5A73674C57922695A6F47ED133639FCDB19DD1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkLobbyManager_PendingPlayer>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mB60FDDD016FFC51F5DFB650DC2E5AF8B513FE62E_gshared (EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkLobbyManager_PendingPlayer>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF048F675FF2EB9C43B4D5DAF3D0603850504EBDF_gshared (EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkLobbyManager_PendingPlayer>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 EmptyInternalEnumerator_1_get_Current_m671C6AAB39CBDF5F6C64F45C4C8E5A7FCE5CE47B_gshared (EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m671C6AAB39CBDF5F6C64F45C4C8E5A7FCE5CE47B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m671C6AAB39CBDF5F6C64F45C4C8E5A7FCE5CE47B_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkLobbyManager_PendingPlayer>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m68E39C46DA390AD45A96C5BB467044062D5D2B4E_gshared (EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204 *)__this);
PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 L_0 = (( PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 (*) (EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
PendingPlayer_tA92AA0F5B2169DE9048A3BBE4DF24831D6612090 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkLobbyManager_PendingPlayer>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m8BE75439BE5681E2B4A1BDE80EF0F478C6D2FE20_gshared (EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkLobbyManager_PendingPlayer>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m1ABFED2ED1140F35BF196F95DDF3852A1BE68285_gshared (EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkLobbyManager_PendingPlayer>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA84791676CB69CDBC7D52D530573C5B92307E8E7_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204 * L_0 = (EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB83FDBA35F563CFBA2206C778487CCBED903D204_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m40BF1217AF8EF9548B44A77DDB4085C427EBC626_gshared (EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m3C955AD35E9FE9933C5215963F98DED4FE9C3986_gshared (EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 EmptyInternalEnumerator_1_get_Current_mC5C010E3A881F0C79192B7A183E954E8D01A5218_gshared (EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mC5C010E3A881F0C79192B7A183E954E8D01A5218_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mC5C010E3A881F0C79192B7A183E954E8D01A5218_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE37698D9D24396E3BFC4DE3EAEDEF1A4B048BD60_gshared (EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D *)__this);
ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 L_0 = (( ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 (*) (EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ConnectionPendingPlayers_tEA84820BF38A8A20EA5B00AB82AA35E324C891A9 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m06C70E9D5E480A4AC66D5F00AD4FE55FCF5F2803_gshared (EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mBF76D39EB24DA53DB8A253B7345E07E1AF1B5F9E_gshared (EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m6219D7050E04FE294B443C7C5EE0A5875062B278_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D * L_0 = (EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t8BD59BD5C93CC536B9EF328D13E60EB54FC4203D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF27D3D52AABE6D627415BD6D3FC2AE7C2FACE3B9_gshared (EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m4097BAA87E060503840DD578577CDAA4679F992F_gshared (EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC EmptyInternalEnumerator_1_get_Current_m8147DED7E4B10DF28749C2BE6EAD0B6493C1D777_gshared (EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m8147DED7E4B10DF28749C2BE6EAD0B6493C1D777_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m8147DED7E4B10DF28749C2BE6EAD0B6493C1D777_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m38A92191CE0E44C05502674B8B11713742D7C12A_gshared (EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D *)__this);
PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC L_0 = (( PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC (*) (EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
PendingPlayerInfo_tC9529109B25EF055BADAAB402676495F67D39DBC L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m42DBB30799C49BF999F47DA514C742BFF339C402_gshared (EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m905A1410A2E8A195AD6D61AD9EDFF4B49DD0CD16_gshared (EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkMigrationManager_PendingPlayerInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC2624C6A32101D63E7A9F12BD97924A83C7E4723_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D * L_0 = (EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tDE1D20799A7C9F58B7E658E90FC76D140D30460D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSceneId>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m66289EC5F361D59EA6BC2E80EBFB118EFAB47CE4_gshared (EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSceneId>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m1EFA63C44BB6B31CF0D57F782D62B2073F81FE68_gshared (EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSceneId>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 EmptyInternalEnumerator_1_get_Current_m1A92D15354A59955497E01D6224CE5BD444A9DB2_gshared (EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m1A92D15354A59955497E01D6224CE5BD444A9DB2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m1A92D15354A59955497E01D6224CE5BD444A9DB2_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSceneId>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m6962F54B2EC3C91D48B8CC84AB1BE29697A3701F_gshared (EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127 *)__this);
NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 L_0 = (( NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 (*) (EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NetworkSceneId_t462EC62A23A1B7AF60637C48CD916A09BC493340 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSceneId>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m875DB79AFEE751C6B906D69BF7407E792322506F_gshared (EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSceneId>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m9C915480DBDC6E46C1A5770823819F5F2FF9E494_gshared (EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSceneId>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m0C45FC55D9AE4838D8A6906F77C0814219DD571C_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127 * L_0 = (EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t761601DA5920A345F840E33AE570C1CF1FC34127_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC6C2A85CC73D63F5F63B8D8483D4FCF2F6DBD82B_gshared (EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF5503FF805EDB0764DA8B637A200A15DB508ABB7_gshared (EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 EmptyInternalEnumerator_1_get_Current_m7A31C09586169FF920385A27391AA816E8F6F3B3_gshared (EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m7A31C09586169FF920385A27391AA816E8F6F3B3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m7A31C09586169FF920385A27391AA816E8F6F3B3_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mEC4993779321B52B6E25BB1778B7BD1ECCD94B70_gshared (EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54 *)__this);
CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 L_0 = (( CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 (*) (EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
CRCMessageEntry_t7EDFC0B08924104688EF94226798EC1918D83118 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m97E7530BCE2E4A84C6ABE65F10753B1E358C07C8_gshared (EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m26986E93923D8A51C5C1D6EA17A9131FCF8870EC_gshared (EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.CRCMessageEntry>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA7B329A0A0137682BCCCCC0467D67DEAE31001CF_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54 * L_0 = (EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tAF57B44D89E62833E7CF2D46629F76D00B018A54_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mBB4479842D30EE6B9A263979C8AAA7CE36C09E40_gshared (EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8B301A73651CEAC713B01B89BF74948DBF687B73_gshared (EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B EmptyInternalEnumerator_1_get_Current_mDB0FD89433C0DDE4EFD63DD246B7F970C1542321_gshared (EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mDB0FD89433C0DDE4EFD63DD246B7F970C1542321_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mDB0FD89433C0DDE4EFD63DD246B7F970C1542321_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m51E23BEBD4DE63E8DF8A2CB02B8FB676461F993C_gshared (EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B *)__this);
PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B L_0 = (( PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B (*) (EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
PeerInfoPlayer_t95CC821E9B5181F20A0F3F08CF9F8006B054624B L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mDE2129621D2E823DD437EF250B6908BA6651DAA7_gshared (EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m184AC48BA25172B6D8ADD056F0135DA056E4856A_gshared (EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Networking.NetworkSystem.PeerInfoPlayer>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m755E50B0E81744ADA24C50FABEE1C9DC56CA0D06_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B * L_0 = (EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBF4BF18636F7A844DB88C584D0C0E245CC17564B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Plane>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m4639984F7FB9AF9DFBD94B973EF06090BAA526C8_gshared (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Plane>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m34C54A48D7CA9035A9D9C8224FAFA42EE59D82E7_gshared (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Plane>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED EmptyInternalEnumerator_1_get_Current_m2E3532B82D1C6D2AE0835E096591EC98D0982AB2_gshared (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m2E3532B82D1C6D2AE0835E096591EC98D0982AB2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m2E3532B82D1C6D2AE0835E096591EC98D0982AB2_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Plane>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m7E9FDBEC2B66E828FB85BC86BE36F05DBD0C336D_gshared (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 *)__this);
Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED L_0 = (( Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED (*) (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Plane>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA20AACA735C464030C168F6F3C8F6597F4E16A23_gshared (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Plane>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE6CE21D6A8F692AC74A7E153E8ECC51F2AC9186F_gshared (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Plane>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m7F4B5140C0AD8C0F6A698EAAAE8CC8ACC04FA940_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * L_0 = (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC2D7C4F4E1AB5AC2EFE2DDA58E85160CCC5184B3_gshared (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mB49376D3580CF2B883BA0F59956E89FA85A53C73_gshared (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 EmptyInternalEnumerator_1_get_Current_mF50B58F842124158245C98B1F976703224B89103_gshared (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mF50B58F842124158245C98B1F976703224B89103_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mF50B58F842124158245C98B1F976703224B89103_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE96F397F5E3F956987DB1726EDAEF0CEDE6886CB_gshared (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED *)__this);
PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 L_0 = (( PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 (*) (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD0A39576869A94C55893779A20436AAC0D8F5426_gshared (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m32777A50CC818414A073CD50A482FA6338EE7183_gshared (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA0CEA862475C2EBE9B7663507A628B92DFF26A71_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * L_0 = (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA60D398C5FCAD7F6DB1B570EA917D34D960BA076_gshared (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mB13BF1E5D5054D54B30E468CD6684585031F4E6F_gshared (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE EmptyInternalEnumerator_1_get_Current_m80A2ACBC3B0046EDE292A4DDE0674EEE5ED4861B_gshared (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m80A2ACBC3B0046EDE292A4DDE0674EEE5ED4861B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m80A2ACBC3B0046EDE292A4DDE0674EEE5ED4861B_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m15293AC84EF6DD80C8451975DECFFB24F4D3BE9A_gshared (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 *)__this);
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE L_0 = (( RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (*) (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m9FA1E94720E8678E41518A8D88AE4DFE6D8ED9D1_gshared (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m95A5540D91754F0CF053172ED218FA10D3F2F2A4_gshared (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mD6936AC2FBC1BEEC1DDB8F10EDF6E43E1E8CD316_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * L_0 = (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD154522A22B564DD7D9DEC4AD0382BA1A2AC0705_gshared (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mA6051A48AF41564224349DD3EC6C3E9C063950A5_gshared (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 EmptyInternalEnumerator_1_get_Current_m7724FEA10A3B810C3543323AE7A1F3B663972FF5_gshared (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m7724FEA10A3B810C3543323AE7A1F3B663972FF5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m7724FEA10A3B810C3543323AE7A1F3B663972FF5_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCBF1F83496AC548766D0710769F4EA774F2C1924_gshared (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E *)__this);
RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 L_0 = (( RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 (*) (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m7017F8B6F4D0497F6B2E0F002555DD4294DED08B_gshared (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m93CD212DC63D0C56FFAA8BEE7DF2E77C687AD8CE_gshared (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m27F83D3D2B619EC057667741684C7DE3BA6B2007_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * L_0 = (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Rect>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA5782918F213F8174F5C7C061FF230BF5AAAA25C_gshared (EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Rect>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m940C6FBE8D25DFF133B34DDC11903CEFDC31B841_gshared (EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Rect>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_t35B976DE901B5423C11705E156938EA27AB402CE EmptyInternalEnumerator_1_get_Current_m33DDE84CA6AB4BC7DC1F65D83ED0DDA363D512AB_gshared (EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m33DDE84CA6AB4BC7DC1F65D83ED0DDA363D512AB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m33DDE84CA6AB4BC7DC1F65D83ED0DDA363D512AB_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Rect>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mABFF8371E375DF5D760CFB1E0848EBDDD9287E16_gshared (EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41 *)__this);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_0 = (( Rect_t35B976DE901B5423C11705E156938EA27AB402CE (*) (EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Rect>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mC4390905E90C162E10B43520260BD60CB053C123_gshared (EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Rect>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m73724409781B0C52808AA9B2AA9724BAA511DCAD_gshared (EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Rect>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mE8396E12F7E69B6AF238CFBC89A63BDDE91FE7F2_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41 * L_0 = (EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t6F4E774500F1A1517618BF6A7A8F59C6474DFB41_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD809CD69C4E0C6AD2903063961C5AE9D109351BA_gshared (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m2120DE7E8B001DB150477C35D3196427A06EF1F5_gshared (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 EmptyInternalEnumerator_1_get_Current_m2AF423D17198E438C0EFC65B276D2C53E684A093_gshared (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m2AF423D17198E438C0EFC65B276D2C53E684A093_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m2AF423D17198E438C0EFC65B276D2C53E684A093_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5E8900A484192CF525FA0829C0323F61271B1060_gshared (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 *)__this);
BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 L_0 = (( BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 (*) (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m73F4B8A7A83124B7F5D62FB5FEE4BEDD0B7F0DA4_gshared (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m65832E639D346AB1500FFC26711CCE75A759E07E_gshared (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m71221674A967AD07588656CEF06743508A32882C_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * L_0 = (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents_HitInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m2D59EFCD6394C975399962A2ACBA104CF16F8ACD_gshared (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents_HitInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m2E81D1FFC0A8D6330BD65C4E1D7D2FC265CEEB4D_gshared (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents_HitInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 EmptyInternalEnumerator_1_get_Current_m8D6D84541FA8C039CE3800A657E8640AFFCD1063_gshared (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m8D6D84541FA8C039CE3800A657E8640AFFCD1063_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m8D6D84541FA8C039CE3800A657E8640AFFCD1063_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents_HitInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m324D1F09EE7EEBCF76F96C9290C9C407DE6A3C14_gshared (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 *)__this);
HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 L_0 = (( HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 (*) (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents_HitInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m2CD701F011AB4442D5845718E38F62BCED2E37EF_gshared (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents_HitInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m36B68EDEE8A066C41C7791C8975965B5712BDDAE_gshared (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents_HitInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m000007BA65CB152CE3BCBA982041FB872CD9D6CA_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * L_0 = (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mE3EB6A5C71C6D4FBA96CD38F3B988360409E67C2_gshared (EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF159BEF7794646909777D4F1B54CBF1697E3DD17_gshared (EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 EmptyInternalEnumerator_1_get_Current_m70740947394191A6C9D5A4BE101FBE4AB834E6E5_gshared (EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m70740947394191A6C9D5A4BE101FBE4AB834E6E5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m70740947394191A6C9D5A4BE101FBE4AB834E6E5_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m90843AFDDD00C0724E6768A982A1CF0EFAF83D19_gshared (EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1 *)__this);
GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 L_0 = (( GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 (*) (EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m4374CC9E188CAE587AABCDD5F43F99DB91CCBF20_gshared (EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mCE60CE4251CA95993C6CF793B2B27A828E421580_gshared (EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m1B39B2ECEB6DAFA0417E08E43193682646E4680F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1 * L_0 = (EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t6DF1AE9241018683052636BDD6C611206198DAB1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mE3E21EABD5A77312A3322D88D918666F0EDA2175_gshared (EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m5A4E87ED74B179A1EFDC5D6DF519ECEA84021C2B_gshared (EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A EmptyInternalEnumerator_1_get_Current_m596FBD0FF13E8AC079AF1E3FCBF59FD8BFF0076E_gshared (EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m596FBD0FF13E8AC079AF1E3FCBF59FD8BFF0076E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m596FBD0FF13E8AC079AF1E3FCBF59FD8BFF0076E_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9B295B7477FC68CE4382358204C4BFB21DA6CEE5_gshared (EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16 *)__this);
GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A L_0 = (( GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A (*) (EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mBEDB4687B0C614A5A6613D57379E97376714D7B6_gshared (EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m2489F693B934921C994DFF347375396C1212E2E2_gshared (EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m1CC69DE5944E84C6835DA7E65794E04262E6CF2A_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16 * L_0 = (EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB5352BD3258DAE704E86C7E32009BF95F1614D16_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Touch>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m9E4170F8012372703C885BECB1B97D39FB74CEF0_gshared (EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Touch>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mE073C1B43FAA42A1D9B6F8038711920D37F28D21_gshared (EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Touch>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 EmptyInternalEnumerator_1_get_Current_mF4F3FA2899CCD060317877FE1AE7645E060E5B58_gshared (EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mF4F3FA2899CCD060317877FE1AE7645E060E5B58_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mF4F3FA2899CCD060317877FE1AE7645E060E5B58_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Touch>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m20937ED6A4D4F8E5E7966F74D986524EA70836A3_gshared (EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07 *)__this);
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 L_0 = (( Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 (*) (EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Touch>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m1D0816AD42BFD36A00123D30B3AA6E02078D1221_gshared (EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Touch>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m8DFA2737705A06A1518CBC3A349B3828C9B17E15_gshared (EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Touch>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m26CB25C9EC61B36D975DC8DD12AF36F1AC64FA24_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07 * L_0 = (EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t0C4F88C0ED3CDF93CA64FE24BFA9C2857D01FF07_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mEC0B0B037FEB3A747AA545783A19018B6918A9E7_gshared (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m107CE608E39FEA15CC9FED01D3C7E0D75A8E0763_gshared (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA EmptyInternalEnumerator_1_get_Current_mA8EDB09064057A0786F373AD65D2D1BD26181070_gshared (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mA8EDB09064057A0786F373AD65D2D1BD26181070_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mA8EDB09064057A0786F373AD65D2D1BD26181070_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1322C9A3E19F32A024AE02C0785822BA47608AEF_gshared (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D *)__this);
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_0 = (( ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA (*) (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m32F7D8F10009CC3759968D782C4CC3D8F1517D72_gshared (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC1CE5D504042E680AF89CF74DE5B2DB6BF6E391E_gshared (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m4C04A5B89B3D6DD863E6520C5259ABCEA51E26C7_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * L_0 = (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m41ABEB9B453A3631FFFDFA368CCD18C1E48A5616_gshared (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mDBCE008DCEE28982E617169E16410FC5E544893E_gshared (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 EmptyInternalEnumerator_1_get_Current_mD62451B7245670D9AC8F19B55DD0D3E70E56CD3A_gshared (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mD62451B7245670D9AC8F19B55DD0D3E70E56CD3A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mD62451B7245670D9AC8F19B55DD0D3E70E56CD3A_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m467173561A9CB7439293AF7BAD944F2181CCCD73_gshared (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 *)__this);
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 L_0 = (( Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 (*) (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mCF96FACFC89D4D345EDB66A885EB8F8587C8CCDE_gshared (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB29799154A0BFDB882BB9434C4F69F689926EE02_gshared (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mBBDB3F8A0ABB291EAC510E359A4456514761568E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * L_0 = (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m7D2B94488217A9131D90E3048E751DD940752CD5_gshared (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mBAC08A40A7B32AB9B51EF67E528C4020AB15FC29_gshared (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A EmptyInternalEnumerator_1_get_Current_m5A7A5AF62CCF46153A47CEF59A43C83C6D92BB56_gshared (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m5A7A5AF62CCF46153A47CEF59A43C83C6D92BB56_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m5A7A5AF62CCF46153A47CEF59A43C83C6D92BB56_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8F8F3B4D9E5959D60DE8DE95C4A5E430530AEC89_gshared (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA *)__this);
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A L_0 = (( SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A (*) (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m46F118A087114EE97720896A55D134D7562DEBA3_gshared (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m53BF3EFF9BAA97530331F890B89A1B543019C058_gshared (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m35A500252094AACCA194CB4E61D60F3AA2BE1A9A_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * L_0 = (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA5E45F8E7E2AB481C787CFE3810E9282AF433078_gshared (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mD3D59ABF98B2DBE693895AE4685E0E4536704262_gshared (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A EmptyInternalEnumerator_1_get_Current_m6B46980E651EA5A3FDFDF0E11A514D4392774364_gshared (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m6B46980E651EA5A3FDFDF0E11A514D4392774364_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m6B46980E651EA5A3FDFDF0E11A514D4392774364_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m7E272A2E2D1A0AC2E9454F33224FE45C30C1536F_gshared (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 *)__this);
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A L_0 = (( UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A (*) (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m36FB135E48B17756356587E52E6767C5411EF34E_gshared (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m30CC63200217E1CBA09844CEBFE3DD1D9331A271_gshared (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m2A21B9878AEC9BD4BB3C18303FEB004E9CC76882_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * L_0 = (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mB4F4B74EE9A6165236D0F30AC4536F76AF1DF72F_gshared (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m6B27B17FBDB5E24F612E6426D8E84DC1EA97CB04_gshared (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 EmptyInternalEnumerator_1_get_Current_mDA9F64CC2753664296C3D3E7AA3AB26DEDDCA164_gshared (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mDA9F64CC2753664296C3D3E7AA3AB26DEDDCA164_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mDA9F64CC2753664296C3D3E7AA3AB26DEDDCA164_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1419B3FB87D09532CD363F704B6DCAAA0834581B_gshared (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B *)__this);
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 L_0 = (( UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 (*) (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m86C8E4CA416DD50F25D7711A40B91F23D899BB89_gshared (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m262BE510CF58740852EA27C45D493E7E6393D6F4_gshared (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m72B71364B1DA4A7C8DD66E4DE5F7A834C01AE5D2_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * L_0 = (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.UIVertex>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m25AC9141B70EF7672E761857483778957F937C5F_gshared (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.UIVertex>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m4BEDAD1CEBC6798AC2481EFDC220F815AF7DDA63_gshared (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.UIVertex>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 EmptyInternalEnumerator_1_get_Current_m8444FDF54FEBD602CA48F528EC463DB1AC8082E6_gshared (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m8444FDF54FEBD602CA48F528EC463DB1AC8082E6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m8444FDF54FEBD602CA48F528EC463DB1AC8082E6_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m04456036D4A0F0FE1A06B9BF5D2B14A434C297E1_gshared (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 *)__this);
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 L_0 = (( UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 (*) (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m98E6B2CC5A357F3731721AC692C339070CA7FF1D_gshared (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UIVertex>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m785F57F33D62D0F08630E6A38620E3D58EBC064D_gshared (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UIVertex>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF55ED7B3F99A86314E3F7D73BDDB7500C0BA2DCF_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * L_0 = (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA76C8463791EBDF7F0D7F27473F43E56F926E159_gshared (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m013BA51DE1474366B9A3E4D10A15085A668393C2_gshared (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 EmptyInternalEnumerator_1_get_Current_mA06904B635841F0E7F80D2F769DE07A6ED082B01_gshared (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mA06904B635841F0E7F80D2F769DE07A6ED082B01_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mA06904B635841F0E7F80D2F769DE07A6ED082B01_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5DAD4EDC5BE8A90F7BC0351132C5625302924E49_gshared (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 *)__this);
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_0 = (( WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 (*) (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m9286D4A4CC7DBEDEB07EFC8394DE5D8120191BF7_gshared (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m4EECC4BE2811165D38A56F56F2D51B58358FBE79_gshared (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m26E59A8A745C59DDD69BE53431366D5B97127938_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * L_0 = (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Vector2>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m3658448E0B5767985C528AFF6C4DE5AD782A14CD_gshared (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector2>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mBBA5FCF8F4C0842ED73416B0DA2B86C4B5D1A2D6_gshared (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector2>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D EmptyInternalEnumerator_1_get_Current_m6F736FA9A64A4731F43C0EB684DEC9FC7827B12F_gshared (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m6F736FA9A64A4731F43C0EB684DEC9FC7827B12F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m6F736FA9A64A4731F43C0EB684DEC9FC7827B12F_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5A3BE141AF235708EF642F4DA946ADE56B387964_gshared (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 *)__this);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = (( Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*) (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m286BB7385593F5EB5ADF542E3A2A5800F92E3BF7_gshared (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector2>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB88144101A59F21B94E25E998F0ED4FACF57FB6D_gshared (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector2>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m786657A71FD55FF1E723B8C57B80DAE99B0160ED_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * L_0 = (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Vector3>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0B302018A1FEC194A7C5554790F64292FB1CA62F_gshared (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector3>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m72526770163050DACA7D336D671C66CE8DB8B7A4_gshared (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector3>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 EmptyInternalEnumerator_1_get_Current_mA4E7989BC90D09B31EEDA1BDF04507D72F72A2A8_gshared (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mA4E7989BC90D09B31EEDA1BDF04507D72F72A2A8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mA4E7989BC90D09B31EEDA1BDF04507D72F72A2A8_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m10838E3814D876DC0A829116CD5958BAFBF091FC_gshared (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC *)__this);
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_0 = (( Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*) (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m85653A4F0E6C0A3EA92D4B3A81A36AD950D46B36_gshared (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector3>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC22C9AA8A5BA65322686E45BFBEE278014A4BF8D_gshared (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector3>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m79E766FE359516E0865E69FD5694C230ABBAC28C_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * L_0 = (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.Vector4>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD1F7828EE1D2F1A60110B261CC2D3EF84A78709B_gshared (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector4>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mC99C5CCA7A63ECA71EADACB69E4F7CA7CC86E2C8_gshared (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector4>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E EmptyInternalEnumerator_1_get_Current_mC5BA4F2C682C18C4A01CECEDC74DE8D4FEAAD27C_gshared (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mC5BA4F2C682C18C4A01CECEDC74DE8D4FEAAD27C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_mC5BA4F2C682C18C4A01CECEDC74DE8D4FEAAD27C_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD97F089B0C34998A140AABD701FEA5EBB48F35EB_gshared (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 *)__this);
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_0 = (( Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (*) (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m3F3D068D4CDEA13B23EA421AB7438DC892192A3F_gshared (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector4>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m79BCD40B26B6FDA4F75DBFDF0CE8729A91432FAA_gshared (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.Vector4>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB74D19CC5CF30C4BC49340C67BB7E20A08AAB2AC_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * L_0 = (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_EmptyInternalEnumerator`1<UnityEngine.jvalue>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mE5235DAAE7EE7FA30DD86FFE7FC9916D05114CB8_gshared (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array_EmptyInternalEnumerator`1<UnityEngine.jvalue>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m7742321345A2699D7862290EB8CDBAC2CB7D05E9_gshared (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array_EmptyInternalEnumerator`1<UnityEngine.jvalue>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 EmptyInternalEnumerator_1_get_Current_m80A7206A59DAB66B4057C520F2A17432A094A3FE_gshared (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m80A7206A59DAB66B4057C520F2A17432A094A3FE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyInternalEnumerator_1_get_Current_m80A7206A59DAB66B4057C520F2A17432A094A3FE_RuntimeMethod_var);
}
}
// System.Object System.Array_EmptyInternalEnumerator`1<UnityEngine.jvalue>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFF88A91703B1CC4C0E072654D91B842A28794C87_gshared (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E *)__this);
jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 L_0 = (( jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 (*) (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.jvalue>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD525BBE88D6584F8FF9D7350C2C593FBDCFCDA67_gshared (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.jvalue>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mAF47EC0296C04E4CF4571834ADBD193B8688BC01_gshared (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array_EmptyInternalEnumerator`1<UnityEngine.jvalue>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m5995FD01F99D390226A6C6FDA9AD712578883A27_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * L_0 = (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(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.Array_InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer_TableRange>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mB435979A4FC207D777BBBEDCBE6DBD47F06FC2D3_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mB435979A4FC207D777BBBEDCBE6DBD47F06FC2D3_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *>(__this + 1);
InternalEnumerator_1__ctor_mB435979A4FC207D777BBBEDCBE6DBD47F06FC2D3(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer_TableRange>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m9FFA4290ED807AF40BD2E60F26023529593AA5A0_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m9FFA4290ED807AF40BD2E60F26023529593AA5A0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *>(__this + 1);
InternalEnumerator_1_Dispose_m9FFA4290ED807AF40BD2E60F26023529593AA5A0(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer_TableRange>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m19B8C2E6A68876BE54C2C35DD948B7C496D98546_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m19B8C2E6A68876BE54C2C35DD948B7C496D98546_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *>(__this + 1);
return InternalEnumerator_1_MoveNext_m19B8C2E6A68876BE54C2C35DD948B7C496D98546(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer_TableRange>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_8 = (( TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *>(__this + 1);
return InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer_TableRange>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC74FE1FCF522A51276B59B78AF8420D1E2F6AEA7_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC74FE1FCF522A51276B59B78AF8420D1E2F6AEA7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC74FE1FCF522A51276B59B78AF8420D1E2F6AEA7(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer_TableRange>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6A7480B222C2ED4423DFA000737E0286A78A130_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
{
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_0 = InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3((InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *)(InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6A7480B222C2ED4423DFA000737E0286A78A130_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6A7480B222C2ED4423DFA000737E0286A78A130(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mD489F3FD0B8FF67A021BAB47C1CCC51241701ED0_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mD489F3FD0B8FF67A021BAB47C1CCC51241701ED0_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *>(__this + 1);
InternalEnumerator_1__ctor_mD489F3FD0B8FF67A021BAB47C1CCC51241701ED0(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mDA37FD740E9CAE8A79150115FA19413298721C1B_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mDA37FD740E9CAE8A79150115FA19413298721C1B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *>(__this + 1);
InternalEnumerator_1_Dispose_mDA37FD740E9CAE8A79150115FA19413298721C1B(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m89873A96691C93DB17CA538DA4A8503B002C9F91_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m89873A96691C93DB17CA538DA4A8503B002C9F91_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m89873A96691C93DB17CA538DA4A8503B002C9F91(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA L_8 = (( ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *>(__this + 1);
return InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91C3AC1FDB3E67F7FA04CD3422E6EF867CCC77C5_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91C3AC1FDB3E67F7FA04CD3422E6EF867CCC77C5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91C3AC1FDB3E67F7FA04CD3422E6EF867CCC77C5(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m090B76D6E75BB1C16F84858717B553B4E4A6C37A_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
{
ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA L_0 = InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237((InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *)(InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m090B76D6E75BB1C16F84858717B553B4E4A6C37A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m090B76D6E75BB1C16F84858717B553B4E4A6C37A(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Boolean>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mC6576DE9DFD26D645933F33DDFFF5C193BD2C64F_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mC6576DE9DFD26D645933F33DDFFF5C193BD2C64F_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *>(__this + 1);
InternalEnumerator_1__ctor_mC6576DE9DFD26D645933F33DDFFF5C193BD2C64F(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Boolean>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mAA797BBD83F736868FA6A8E186371BEADFC9A7CA_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mAA797BBD83F736868FA6A8E186371BEADFC9A7CA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *>(__this + 1);
InternalEnumerator_1_Dispose_mAA797BBD83F736868FA6A8E186371BEADFC9A7CA(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Boolean>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m5D14BBDC6E172C9CFF85357EDA146D2F493191EC_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m5D14BBDC6E172C9CFF85357EDA146D2F493191EC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m5D14BBDC6E172C9CFF85357EDA146D2F493191EC(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Boolean>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
bool L_8 = (( bool (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *>(__this + 1);
return InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mBF9C54BE8A4A3C352F42280C1B76AD173905241D_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mBF9C54BE8A4A3C352F42280C1B76AD173905241D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mBF9C54BE8A4A3C352F42280C1B76AD173905241D(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m406897CA7EC01C35D90402E4AA916647716FB767_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
{
bool L_0 = InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE((InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *)(InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
bool L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m406897CA7EC01C35D90402E4AA916647716FB767_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m406897CA7EC01C35D90402E4AA916647716FB767(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Byte>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mCE5D4D9E3057660C094936737BA70F2ADE3646F9_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mCE5D4D9E3057660C094936737BA70F2ADE3646F9_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *>(__this + 1);
InternalEnumerator_1__ctor_mCE5D4D9E3057660C094936737BA70F2ADE3646F9(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Byte>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mC32656E5117A66CF11FF1BEA4C941AA4034677AC_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mC32656E5117A66CF11FF1BEA4C941AA4034677AC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *>(__this + 1);
InternalEnumerator_1_Dispose_mC32656E5117A66CF11FF1BEA4C941AA4034677AC(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Byte>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mBA8D7A7C9CD1D0771BB9638FB7A0A4D17F5F7F72_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mBA8D7A7C9CD1D0771BB9638FB7A0A4D17F5F7F72_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *>(__this + 1);
return InternalEnumerator_1_MoveNext_mBA8D7A7C9CD1D0771BB9638FB7A0A4D17F5F7F72(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Byte>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
uint8_t L_8 = (( uint8_t (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C uint8_t InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *>(__this + 1);
return InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52D68F77094EDDD9016386AF3F5A5B5781C974D9_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52D68F77094EDDD9016386AF3F5A5B5781C974D9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52D68F77094EDDD9016386AF3F5A5B5781C974D9(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m92570BB2C86AD0B6EB8845B78FF96396A458D6BE_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
{
uint8_t L_0 = InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87((InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *)(InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
uint8_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m92570BB2C86AD0B6EB8845B78FF96396A458D6BE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m92570BB2C86AD0B6EB8845B78FF96396A458D6BE(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Char>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mA816E1C13D866A2558DA3C530799B1D3858F80EF_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mA816E1C13D866A2558DA3C530799B1D3858F80EF_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *>(__this + 1);
InternalEnumerator_1__ctor_mA816E1C13D866A2558DA3C530799B1D3858F80EF(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Char>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mDCC22EFC517EA05A44E470F2DA1919EE5A58F9FA_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mDCC22EFC517EA05A44E470F2DA1919EE5A58F9FA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *>(__this + 1);
InternalEnumerator_1_Dispose_mDCC22EFC517EA05A44E470F2DA1919EE5A58F9FA(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Char>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m3FAA847DFF670AFBF34878A1F45C9B29F5DD973C_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m3FAA847DFF670AFBF34878A1F45C9B29F5DD973C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3FAA847DFF670AFBF34878A1F45C9B29F5DD973C(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Char>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Il2CppChar L_8 = (( Il2CppChar (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C Il2CppChar InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *>(__this + 1);
return InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51B86411AC68CD7F9618FF2523FB1199AA56372E_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51B86411AC68CD7F9618FF2523FB1199AA56372E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51B86411AC68CD7F9618FF2523FB1199AA56372E(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDEDC109FF80129362D85F9A7749B1540AFBD07B7_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466((InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *)(InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Il2CppChar L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDEDC109FF80129362D85F9A7749B1540AFBD07B7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDEDC109FF80129362D85F9A7749B1540AFBD07B7(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mC0890A26F45EB3D0CE722AA211191F47A7D89CAE_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mC0890A26F45EB3D0CE722AA211191F47A7D89CAE_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *>(__this + 1);
InternalEnumerator_1__ctor_mC0890A26F45EB3D0CE722AA211191F47A7D89CAE(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.DictionaryEntry>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mC2FAA1D4D203A9339BBC1340D21F3ED010DDDBAC_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mC2FAA1D4D203A9339BBC1340D21F3ED010DDDBAC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *>(__this + 1);
InternalEnumerator_1_Dispose_mC2FAA1D4D203A9339BBC1340D21F3ED010DDDBAC(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Collections.DictionaryEntry>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mCB1B8EAAF7F7CBAFAA5F7514553B6DC1038D4AC4_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mCB1B8EAAF7F7CBAFAA5F7514553B6DC1038D4AC4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *>(__this + 1);
return InternalEnumerator_1_MoveNext_mCB1B8EAAF7F7CBAFAA5F7514553B6DC1038D4AC4(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Collections.DictionaryEntry>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_8 = (( DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *>(__this + 1);
return InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB9F8EC8CBE7FD4FADFAB7F64A37B7A7508D691_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB9F8EC8CBE7FD4FADFAB7F64A37B7A7508D691_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB9F8EC8CBE7FD4FADFAB7F64A37B7A7508D691(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD1EDD7B929F2A9A91509082AEC0A70709B12CEF8_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
{
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_0 = InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E((InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *)(InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD1EDD7B929F2A9A91509082AEC0A70709B12CEF8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD1EDD7B929F2A9A91509082AEC0A70709B12CEF8(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m9DDC6A81CAF5C50720AA70F741AB0D12F2971D63_gshared (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m9DDC6A81CAF5C50720AA70F741AB0D12F2971D63_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 *>(__this + 1);
InternalEnumerator_1__ctor_m9DDC6A81CAF5C50720AA70F741AB0D12F2971D63(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m5AE097EDA71EB35E46D74AD02761EEBB76AB7224_gshared (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m5AE097EDA71EB35E46D74AD02761EEBB76AB7224_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 *>(__this + 1);
InternalEnumerator_1_Dispose_m5AE097EDA71EB35E46D74AD02761EEBB76AB7224(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m206D9B5A43A417A87ECB6873667B355133C76AD6_gshared (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m206D9B5A43A417A87ECB6873667B355133C76AD6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m206D9B5A43A417A87ECB6873667B355133C76AD6(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 InternalEnumerator_1_get_Current_m3A9DE2B954F50DF264A9CE67318E3E31A7115FCA_gshared (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3A9DE2B954F50DF264A9CE67318E3E31A7115FCA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m3A9DE2B954F50DF264A9CE67318E3E31A7115FCA_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m3A9DE2B954F50DF264A9CE67318E3E31A7115FCA_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 L_8 = (( Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 InternalEnumerator_1_get_Current_m3A9DE2B954F50DF264A9CE67318E3E31A7115FCA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 *>(__this + 1);
return InternalEnumerator_1_get_Current_m3A9DE2B954F50DF264A9CE67318E3E31A7115FCA(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3EEA7DE71D1A101CD8A92810E938B7B80C1C73DA_gshared (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3EEA7DE71D1A101CD8A92810E938B7B80C1C73DA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3EEA7DE71D1A101CD8A92810E938B7B80C1C73DA(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int16,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m143863FBCFE0088136F8439973457F61A9DB5248_gshared (InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * __this, const RuntimeMethod* method)
{
{
Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 L_0 = InternalEnumerator_1_get_Current_m3A9DE2B954F50DF264A9CE67318E3E31A7115FCA((InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 *)(InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_tFB337B5FFD4FD7DC50EF315BC1F3E7C9461D28E3 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m143863FBCFE0088136F8439973457F61A9DB5248_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t128D4D340CDAF14119E79E496F6439C68EC98059 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m143863FBCFE0088136F8439973457F61A9DB5248(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m826AE3C40B8AFBE65F21024B99461A8E3435394E_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m826AE3C40B8AFBE65F21024B99461A8E3435394E_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *>(__this + 1);
InternalEnumerator_1__ctor_m826AE3C40B8AFBE65F21024B99461A8E3435394E(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m1CBAB604EC0F2F4558305325B30BC790A0684D54_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m1CBAB604EC0F2F4558305325B30BC790A0684D54_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *>(__this + 1);
InternalEnumerator_1_Dispose_m1CBAB604EC0F2F4558305325B30BC790A0684D54(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m007FB57DED6F561D3EEC01BD59C68BFBD9FEA626_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m007FB57DED6F561D3EEC01BD59C68BFBD9FEA626_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m007FB57DED6F561D3EEC01BD59C68BFBD9FEA626(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_8 = (( Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *>(__this + 1);
return InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC24466541138E727EBE50B0E0A22F6651161EB71_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC24466541138E727EBE50B0E0A22F6651161EB71_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC24466541138E727EBE50B0E0A22F6651161EB71(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9369158204F4280AA8C76BD2E47E8A91C9FDC053_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
{
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_0 = InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F((InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *)(InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9369158204F4280AA8C76BD2E47E8A91C9FDC053_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9369158204F4280AA8C76BD2E47E8A91C9FDC053(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2528DC78CAC3A5C062239A07618339630C6D6262_gshared (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m2528DC78CAC3A5C062239A07618339630C6D6262_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E *>(__this + 1);
InternalEnumerator_1__ctor_m2528DC78CAC3A5C062239A07618339630C6D6262(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mAC2550F324C98BFFF30E79EEC260DB6C7F2D7854_gshared (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mAC2550F324C98BFFF30E79EEC260DB6C7F2D7854_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E *>(__this + 1);
InternalEnumerator_1_Dispose_mAC2550F324C98BFFF30E79EEC260DB6C7F2D7854(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mB7F4DDC08966F77B6AFF2BE288DF6B08AE4DB08C_gshared (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mB7F4DDC08966F77B6AFF2BE288DF6B08AE4DB08C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E *>(__this + 1);
return InternalEnumerator_1_MoveNext_mB7F4DDC08966F77B6AFF2BE288DF6B08AE4DB08C(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA InternalEnumerator_1_get_Current_m1C0E1451A2D19F6FDD56E250C6480BE07691B8E8_gshared (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1C0E1451A2D19F6FDD56E250C6480BE07691B8E8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m1C0E1451A2D19F6FDD56E250C6480BE07691B8E8_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m1C0E1451A2D19F6FDD56E250C6480BE07691B8E8_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA L_8 = (( Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA InternalEnumerator_1_get_Current_m1C0E1451A2D19F6FDD56E250C6480BE07691B8E8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E *>(__this + 1);
return InternalEnumerator_1_get_Current_m1C0E1451A2D19F6FDD56E250C6480BE07691B8E8(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC5B66E8E8D96FEF41EB54D1DF22CA5E9D28C8424_gshared (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC5B66E8E8D96FEF41EB54D1DF22CA5E9D28C8424_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC5B66E8E8D96FEF41EB54D1DF22CA5E9D28C8424(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Int32,UnityEngine.Networking.NetworkMigrationManager_ConnectionPendingPlayers>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF1931616FD9BDC923A524B2380D1B8BA0EBFF651_gshared (InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * __this, const RuntimeMethod* method)
{
{
Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA L_0 = InternalEnumerator_1_get_Current_m1C0E1451A2D19F6FDD56E250C6480BE07691B8E8((InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E *)(InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_tDD9F9F04A536C7B61F1C13B5A6AC40EEBF52F3DA L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF1931616FD9BDC923A524B2380D1B8BA0EBFF651_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1C8A6CBD9295DFBC7CCFDA347A05AD9AC7C6650E *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF1931616FD9BDC923A524B2380D1B8BA0EBFF651(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m56019387E27A8E3481BDF2669CDE33C7899A4ECB_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m56019387E27A8E3481BDF2669CDE33C7899A4ECB_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *>(__this + 1);
InternalEnumerator_1__ctor_m56019387E27A8E3481BDF2669CDE33C7899A4ECB(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m1F2BED538F9A714FDD0663B4E12CEF6D82CD9459_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m1F2BED538F9A714FDD0663B4E12CEF6D82CD9459_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *>(__this + 1);
InternalEnumerator_1_Dispose_m1F2BED538F9A714FDD0663B4E12CEF6D82CD9459(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m47F7361F7276ED03BEF7B9E04EC7431ACAAE6906_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m47F7361F7276ED03BEF7B9E04EC7431ACAAE6906_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m47F7361F7276ED03BEF7B9E04EC7431ACAAE6906(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_8 = (( Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *>(__this + 1);
return InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5D43D1F4D741863D821F9E78A4A608F58B2485DF_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5D43D1F4D741863D821F9E78A4A608F58B2485DF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5D43D1F4D741863D821F9E78A4A608F58B2485DF(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1E60E687D9B216101D35FA36C1D0EF48FF5C5F27_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
{
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_0 = InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B((InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *)(InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1E60E687D9B216101D35FA36C1D0EF48FF5C5F27_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1E60E687D9B216101D35FA36C1D0EF48FF5C5F27(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mCD4B916B60ED8E733E80DAFB53AFF0E26615B2E1_gshared (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mCD4B916B60ED8E733E80DAFB53AFF0E26615B2E1_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F *>(__this + 1);
InternalEnumerator_1__ctor_mCD4B916B60ED8E733E80DAFB53AFF0E26615B2E1(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m15F853A5A32BAFCA7B869DF5872C094BF494336A_gshared (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m15F853A5A32BAFCA7B869DF5872C094BF494336A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F *>(__this + 1);
InternalEnumerator_1_Dispose_m15F853A5A32BAFCA7B869DF5872C094BF494336A(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m23B255D78CE56C9745A561E3D5217F3521E0EA87_gshared (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m23B255D78CE56C9745A561E3D5217F3521E0EA87_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F *>(__this + 1);
return InternalEnumerator_1_MoveNext_m23B255D78CE56C9745A561E3D5217F3521E0EA87(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_gshared (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 L_8 = (( Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F *>(__this + 1);
return InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2087A7A789D7AD625D90F79857979A8821B64E_gshared (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2087A7A789D7AD625D90F79857979A8821B64E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2087A7A789D7AD625D90F79857979A8821B64E(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB7E808DE6EC1C864FEE5D7026B65B45FCBDF6271_gshared (InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * __this, const RuntimeMethod* method)
{
{
Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 L_0 = InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA((InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F *)(InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB7E808DE6EC1C864FEE5D7026B65B45FCBDF6271_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t67A4ABC39138F095EAACBFD47A9D79D0C99B517F *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB7E808DE6EC1C864FEE5D7026B65B45FCBDF6271(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m51F3DA6A53425367DEED2F523CC1F1E5EF366BD9_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m51F3DA6A53425367DEED2F523CC1F1E5EF366BD9_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *>(__this + 1);
InternalEnumerator_1__ctor_m51F3DA6A53425367DEED2F523CC1F1E5EF366BD9(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m0D2B670F0CD0A79ED287E68E6BA7DDC47687C224_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m0D2B670F0CD0A79ED287E68E6BA7DDC47687C224_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *>(__this + 1);
InternalEnumerator_1_Dispose_m0D2B670F0CD0A79ED287E68E6BA7DDC47687C224(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m3AB0694D7B4C7363E522EE175B1DA229B01D148D_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m3AB0694D7B4C7363E522EE175B1DA229B01D148D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3AB0694D7B4C7363E522EE175B1DA229B01D148D(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 L_8 = (( Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *>(__this + 1);
return InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m44C63894AC907E6D89D64978E780E16ED053FCF8_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m44C63894AC907E6D89D64978E780E16ED053FCF8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m44C63894AC907E6D89D64978E780E16ED053FCF8(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB9A0BC555012CD7E593417589EF96969588A3221_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
{
Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 L_0 = InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F((InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *)(InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB9A0BC555012CD7E593417589EF96969588A3221_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB9A0BC555012CD7E593417589EF96969588A3221(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1593CE384E20D884D915D8C63DB0063790B3A618_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m1593CE384E20D884D915D8C63DB0063790B3A618_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *>(__this + 1);
InternalEnumerator_1__ctor_m1593CE384E20D884D915D8C63DB0063790B3A618(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m4836500B7FEA20ACA83183ECBE1D467826FCE670_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m4836500B7FEA20ACA83183ECBE1D467826FCE670_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *>(__this + 1);
InternalEnumerator_1_Dispose_m4836500B7FEA20ACA83183ECBE1D467826FCE670(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m48BA3A9AC0BA051915D58DFCA32B1AA5C09DE957_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m48BA3A9AC0BA051915D58DFCA32B1AA5C09DE957_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *>(__this + 1);
return InternalEnumerator_1_MoveNext_m48BA3A9AC0BA051915D58DFCA32B1AA5C09DE957(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_8 = (( Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *>(__this + 1);
return InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9C6C41648ADC7B60E8AF51190EEA7BAA8FA93241_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9C6C41648ADC7B60E8AF51190EEA7BAA8FA93241_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9C6C41648ADC7B60E8AF51190EEA7BAA8FA93241(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1536DF98255D34522AB9DC5D47835095718FF3DA_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
{
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_0 = InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A((InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *)(InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1536DF98255D34522AB9DC5D47835095718FF3DA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1536DF98255D34522AB9DC5D47835095718FF3DA(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m41F1B4440445674E22696F369E1BE49F6B8B7325_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m41F1B4440445674E22696F369E1BE49F6B8B7325_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *>(__this + 1);
InternalEnumerator_1__ctor_m41F1B4440445674E22696F369E1BE49F6B8B7325(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mEEFF36A65ACDF8534CC4A049CF142B6757C1BC98_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mEEFF36A65ACDF8534CC4A049CF142B6757C1BC98_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *>(__this + 1);
InternalEnumerator_1_Dispose_mEEFF36A65ACDF8534CC4A049CF142B6757C1BC98(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m1CCFAA43E5AEFCE61B8B581971072C0CE3D847C7_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m1CCFAA43E5AEFCE61B8B581971072C0CE3D847C7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1CCFAA43E5AEFCE61B8B581971072C0CE3D847C7(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_8 = (( Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *>(__this + 1);
return InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m07F10BD620954A735C3091217347BBD9B523B1CB_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m07F10BD620954A735C3091217347BBD9B523B1CB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m07F10BD620954A735C3091217347BBD9B523B1CB(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A449599FC893C43B822B70233F3E79FD26F6959_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
{
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_0 = InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1((InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *)(InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A449599FC893C43B822B70233F3E79FD26F6959_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A449599FC893C43B822B70233F3E79FD26F6959(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m7E5A26F4C5617D6D1F10E6CAC00E3A9C057BF7A2_gshared (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m7E5A26F4C5617D6D1F10E6CAC00E3A9C057BF7A2_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D *>(__this + 1);
InternalEnumerator_1__ctor_m7E5A26F4C5617D6D1F10E6CAC00E3A9C057BF7A2(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m191A4C733E0662416F46AB0F7CA847EEFC228915_gshared (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m191A4C733E0662416F46AB0F7CA847EEFC228915_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D *>(__this + 1);
InternalEnumerator_1_Dispose_m191A4C733E0662416F46AB0F7CA847EEFC228915(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m11AFEA80F744768F7B427D2905E3F629BBBB051A_gshared (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m11AFEA80F744768F7B427D2905E3F629BBBB051A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D *>(__this + 1);
return InternalEnumerator_1_MoveNext_m11AFEA80F744768F7B427D2905E3F629BBBB051A(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E InternalEnumerator_1_get_Current_m73CCDD94C855E7CE8895DB52181153038EAA8585_gshared (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m73CCDD94C855E7CE8895DB52181153038EAA8585_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m73CCDD94C855E7CE8895DB52181153038EAA8585_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m73CCDD94C855E7CE8895DB52181153038EAA8585_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E L_8 = (( Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E InternalEnumerator_1_get_Current_m73CCDD94C855E7CE8895DB52181153038EAA8585_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D *>(__this + 1);
return InternalEnumerator_1_get_Current_m73CCDD94C855E7CE8895DB52181153038EAA8585(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1671BDAD918589A9C991AA1A78B304304B4A47C6_gshared (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1671BDAD918589A9C991AA1A78B304304B4A47C6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1671BDAD918589A9C991AA1A78B304304B4A47C6(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Networking.NetworkBroadcastResult>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4C444BAE7A7AEA76750AAEB40128DAA0A559D392_gshared (InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * __this, const RuntimeMethod* method)
{
{
Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E L_0 = InternalEnumerator_1_get_Current_m73CCDD94C855E7CE8895DB52181153038EAA8585((InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D *)(InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t199B9164AC346CAFF297C44D6DF2326A3634773E L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4C444BAE7A7AEA76750AAEB40128DAA0A559D392_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3F57183B752E70AA80C5BF21B8262394A1F3254D *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4C444BAE7A7AEA76750AAEB40128DAA0A559D392(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m0BD0412D0302697F86E43B6F22BB445661F64C8F_gshared (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m0BD0412D0302697F86E43B6F22BB445661F64C8F_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E *>(__this + 1);
InternalEnumerator_1__ctor_m0BD0412D0302697F86E43B6F22BB445661F64C8F(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m63B89FFEB305B542ABA20AD4FA3B515603DF2F56_gshared (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m63B89FFEB305B542ABA20AD4FA3B515603DF2F56_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E *>(__this + 1);
InternalEnumerator_1_Dispose_m63B89FFEB305B542ABA20AD4FA3B515603DF2F56(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m4462B2E5033D638D7F461862D3245ADC40CB5FFB_gshared (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m4462B2E5033D638D7F461862D3245ADC40CB5FFB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E *>(__this + 1);
return InternalEnumerator_1_MoveNext_m4462B2E5033D638D7F461862D3245ADC40CB5FFB(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 InternalEnumerator_1_get_Current_m902312010187A018147C6FDDC77113E4B125EC6C_gshared (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m902312010187A018147C6FDDC77113E4B125EC6C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m902312010187A018147C6FDDC77113E4B125EC6C_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m902312010187A018147C6FDDC77113E4B125EC6C_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 L_8 = (( Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 InternalEnumerator_1_get_Current_m902312010187A018147C6FDDC77113E4B125EC6C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E *>(__this + 1);
return InternalEnumerator_1_get_Current_m902312010187A018147C6FDDC77113E4B125EC6C(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mAB47E5373DD3C694D393ECB5B841B38C1A908386_gshared (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mAB47E5373DD3C694D393ECB5B841B38C1A908386_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mAB47E5373DD3C694D393ECB5B841B38C1A908386(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCC02E335DAEB2C190189E5DA6C80C283CFF68D13_gshared (InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * __this, const RuntimeMethod* method)
{
{
Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 L_0 = InternalEnumerator_1_get_Current_m902312010187A018147C6FDDC77113E4B125EC6C((InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E *)(InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCC02E335DAEB2C190189E5DA6C80C283CFF68D13_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC14609DE239C2027BC899ECE2E9BC7179D275E4E *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCC02E335DAEB2C190189E5DA6C80C283CFF68D13(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m013A0A2B07C8AD94FF1283B44C962DCA04DF8D1C_gshared (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m013A0A2B07C8AD94FF1283B44C962DCA04DF8D1C_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D *>(__this + 1);
InternalEnumerator_1__ctor_m013A0A2B07C8AD94FF1283B44C962DCA04DF8D1C(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m2063A20119278A24DDA179F94E8A9A2DED00BB31_gshared (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m2063A20119278A24DDA179F94E8A9A2DED00BB31_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D *>(__this + 1);
InternalEnumerator_1_Dispose_m2063A20119278A24DDA179F94E8A9A2DED00BB31(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m253D901ABDF353B1796046C1F9A1974841DDEF40_gshared (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m253D901ABDF353B1796046C1F9A1974841DDEF40_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D *>(__this + 1);
return InternalEnumerator_1_MoveNext_m253D901ABDF353B1796046C1F9A1974841DDEF40(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 InternalEnumerator_1_get_Current_m8622106F95B7EE6B6B5B00AB6FDF5A5D4F404662_gshared (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m8622106F95B7EE6B6B5B00AB6FDF5A5D4F404662_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m8622106F95B7EE6B6B5B00AB6FDF5A5D4F404662_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m8622106F95B7EE6B6B5B00AB6FDF5A5D4F404662_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 L_8 = (( Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 InternalEnumerator_1_get_Current_m8622106F95B7EE6B6B5B00AB6FDF5A5D4F404662_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D *>(__this + 1);
return InternalEnumerator_1_get_Current_m8622106F95B7EE6B6B5B00AB6FDF5A5D4F404662(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m760ACE8B15B019E1238873F83594CC435DFF3B0B_gshared (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m760ACE8B15B019E1238873F83594CC435DFF3B0B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m760ACE8B15B019E1238873F83594CC435DFF3B0B(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<System.UInt64Enum,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFAFC655DBF364B759A100DBAAB7D5B8A0B2F5683_gshared (InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * __this, const RuntimeMethod* method)
{
{
Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 L_0 = InternalEnumerator_1_get_Current_m8622106F95B7EE6B6B5B00AB6FDF5A5D4F404662((InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D *)(InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_tB17A20FF297E1D4E33181E36238F550A443DFD91 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFAFC655DBF364B759A100DBAAB7D5B8A0B2F5683_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB64CDA5F633669FB4E30D76B78DC23408CFCC5D *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFAFC655DBF364B759A100DBAAB7D5B8A0B2F5683(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m5E40031E71229428712CA1C10D17B1B806B8AD01_gshared (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m5E40031E71229428712CA1C10D17B1B806B8AD01_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E *>(__this + 1);
InternalEnumerator_1__ctor_m5E40031E71229428712CA1C10D17B1B806B8AD01(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mE5A67C5BCA6C7CDCA44E2F718DB6160EDB2E1826_gshared (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mE5A67C5BCA6C7CDCA44E2F718DB6160EDB2E1826_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E *>(__this + 1);
InternalEnumerator_1_Dispose_mE5A67C5BCA6C7CDCA44E2F718DB6160EDB2E1826(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mB0405CA2859F7BC1CF12AF6D5931196A73DA43B7_gshared (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mB0405CA2859F7BC1CF12AF6D5931196A73DA43B7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E *>(__this + 1);
return InternalEnumerator_1_MoveNext_mB0405CA2859F7BC1CF12AF6D5931196A73DA43B7(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 InternalEnumerator_1_get_Current_mA2BE834E18743D7A1F0FFF5F46626012F344DE86_gshared (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mA2BE834E18743D7A1F0FFF5F46626012F344DE86_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_mA2BE834E18743D7A1F0FFF5F46626012F344DE86_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_mA2BE834E18743D7A1F0FFF5F46626012F344DE86_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 L_8 = (( Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 InternalEnumerator_1_get_Current_mA2BE834E18743D7A1F0FFF5F46626012F344DE86_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E *>(__this + 1);
return InternalEnumerator_1_get_Current_mA2BE834E18743D7A1F0FFF5F46626012F344DE86(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mD46DD47F4358E9E77BE6E7F343F104B384CC4693_gshared (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mD46DD47F4358E9E77BE6E7F343F104B384CC4693_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mD46DD47F4358E9E77BE6E7F343F104B384CC4693(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkHash128,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4F37D3F6D2081E419A2C3CF82B02B8677368E580_gshared (InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * __this, const RuntimeMethod* method)
{
{
Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 L_0 = InternalEnumerator_1_get_Current_mA2BE834E18743D7A1F0FFF5F46626012F344DE86((InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E *)(InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t8E09DFCC6D674230C233702F449DB762B53A2031 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4F37D3F6D2081E419A2C3CF82B02B8677368E580_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t85DB1BB046BBCF649BA66D4E0FE3C7E8B72C9E6E *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4F37D3F6D2081E419A2C3CF82B02B8677368E580(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m7939008D0ACDBB735C62E66A56A00D049AC21CFA_gshared (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m7939008D0ACDBB735C62E66A56A00D049AC21CFA_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 *>(__this + 1);
InternalEnumerator_1__ctor_m7939008D0ACDBB735C62E66A56A00D049AC21CFA(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mFFD8B5D9BB3320193A659BF714008C8F1A69495B_gshared (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mFFD8B5D9BB3320193A659BF714008C8F1A69495B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 *>(__this + 1);
InternalEnumerator_1_Dispose_mFFD8B5D9BB3320193A659BF714008C8F1A69495B(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mB4C863273B242695851BFA1E84FCB82F0732A9F8_gshared (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mB4C863273B242695851BFA1E84FCB82F0732A9F8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 *>(__this + 1);
return InternalEnumerator_1_MoveNext_mB4C863273B242695851BFA1E84FCB82F0732A9F8(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A InternalEnumerator_1_get_Current_mD4105F242FD3292C91E39969E215B61F2FEEE625_gshared (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mD4105F242FD3292C91E39969E215B61F2FEEE625_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_mD4105F242FD3292C91E39969E215B61F2FEEE625_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_mD4105F242FD3292C91E39969E215B61F2FEEE625_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A L_8 = (( Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A InternalEnumerator_1_get_Current_mD4105F242FD3292C91E39969E215B61F2FEEE625_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 *>(__this + 1);
return InternalEnumerator_1_get_Current_mD4105F242FD3292C91E39969E215B61F2FEEE625(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m21034E1E2428EFCD57FACE4796AC29D2575E9548_gshared (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m21034E1E2428EFCD57FACE4796AC29D2575E9548_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m21034E1E2428EFCD57FACE4796AC29D2575E9548(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkInstanceId,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1B13FA9C9760756363EF1044824220733329E020_gshared (InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * __this, const RuntimeMethod* method)
{
{
Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A L_0 = InternalEnumerator_1_get_Current_mD4105F242FD3292C91E39969E215B61F2FEEE625((InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 *)(InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t9F85316B8FFAA9529E4303216E5E0D18CF13C51A L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1B13FA9C9760756363EF1044824220733329E020_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8B97E30B981C28A2B508993D44233A4AE3E72469 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1B13FA9C9760756363EF1044824220733329E020(_thisAdjusted, method);
}
#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.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m86F4CCC3223D641B8C0F4CBA1020F0870A8C5C02_gshared (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m86F4CCC3223D641B8C0F4CBA1020F0870A8C5C02_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 *>(__this + 1);
InternalEnumerator_1__ctor_m86F4CCC3223D641B8C0F4CBA1020F0870A8C5C02(_thisAdjusted, ___array0, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m05C298357AA5300328CB3D1EFE323A2EF2EF5422_gshared (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m05C298357AA5300328CB3D1EFE323A2EF2EF5422_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 *>(__this + 1);
InternalEnumerator_1_Dispose_m05C298357AA5300328CB3D1EFE323A2EF2EF5422(_thisAdjusted, method);
}
// System.Boolean System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m4DF719D2C932D68E9E678D07135111215DA7E71D_gshared (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m4DF719D2C932D68E9E678D07135111215DA7E71D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m4DF719D2C932D68E9E678D07135111215DA7E71D(_thisAdjusted, method);
}
// T System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F InternalEnumerator_1_get_Current_m6DE8266180816AACFC7A2316D0972317F9776BAD_gshared (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m6DE8266180816AACFC7A2316D0972317F9776BAD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, InternalEnumerator_1_get_Current_m6DE8266180816AACFC7A2316D0972317F9776BAD_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, InternalEnumerator_1_get_Current_m6DE8266180816AACFC7A2316D0972317F9776BAD_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F L_8 = (( Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return L_8;
}
}
IL2CPP_EXTERN_C Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F InternalEnumerator_1_get_Current_m6DE8266180816AACFC7A2316D0972317F9776BAD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 *>(__this + 1);
return InternalEnumerator_1_get_Current_m6DE8266180816AACFC7A2316D0972317F9776BAD(_thisAdjusted, method);
}
// System.Void System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mE074708B062F92FB9FCB6C8AA94AF72DEF2A4925_gshared (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mE074708B062F92FB9FCB6C8AA94AF72DEF2A4925_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mE074708B062F92FB9FCB6C8AA94AF72DEF2A4925(_thisAdjusted, method);
}
// System.Object System.Array_InternalEnumerator`1<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Networking.NetworkSceneId,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m43536416625BECC0E0E4579FE8261189A7A7EDC2_gshared (InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * __this, const RuntimeMethod* method)
{
{
Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F L_0 = InternalEnumerator_1_get_Current_m6DE8266180816AACFC7A2316D0972317F9776BAD((InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 *)(InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t80F0FD13BD16E0A381F42AEF24A569CC6FA5F55F L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m43536416625BECC0E0E4579FE8261189A7A7EDC2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC67B64E69237E2E9D5A0EA17352895D661C215D2 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m43536416625BECC0E0E4579FE8261189A7A7EDC2(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105 * FacebookBase_get_CallbackManager_mBB4EC92D8211AC4CAAFCB3823B901F75E24E537C_inline (FacebookBase_t3294A08C9121937BB4A73C082E468DD00CF66524 * __this, const RuntimeMethod* method)
{
{
CallbackManager_tDF06E2AE9B036A8E196511BF95C7425C9E75E105 * L_0 = __this->get_U3CCallbackManagerU3Ek__BackingField_2();
return L_0;
}
}
| [
"ducpv@caerux.com"
] | ducpv@caerux.com |
d0c5b5c300ac904c01f72b01a778c0e0b4275e23 | ba264147470fc1b53ede7f7543abde20f7f9dabe | /GP1_Coursework1.2/cGameStuVer.cpp | 8c48890103687146fd5b75a470d7474f3341b291 | [] | no_license | euanbr1/Coursework1.1 | 7d7d8dcd85d78a7f009a6e11dad80dce876b739d | 9cd178a18f30f0a7dd49111fdebc27947c8315c1 | refs/heads/master | 2020-04-09T12:02:18.347257 | 2018-12-19T09:56:51 | 2018-12-19T09:56:51 | 160,333,505 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 31,469 | cpp | /*
==================================================================================
cGame.cpp
==================================================================================
*/
#include "cGame.h"
#include <chrono>
#include <thread>
cGame* cGame::pInstance = NULL;
static cTextureMgr* theTextureMgr = cTextureMgr::getInstance();
static cFontMgr* theFontMgr = cFontMgr::getInstance();
static cSoundMgr* theSoundMgr = cSoundMgr::getInstance();
static cButtonMgr* theButtonMgr = cButtonMgr::getInstance();
/*
=================================================================================
Constructor
=================================================================================
*/
cGame::cGame()
{
}
/*
=================================================================================
Singleton Design Pattern
=================================================================================
*/
cGame* cGame::getInstance()
{
if (pInstance == NULL)
{
pInstance = new cGame();
}
return cGame::pInstance;
}
void cGame::initialise(SDL_Window* theSDLWND, SDL_Renderer* theRenderer)
{
// Get width and height of render context
SDL_GetRendererOutputSize(theRenderer, &renderWidth, &renderHeight);
this->m_lastTime = high_resolution_clock::now();
// Clear the buffer with a black background
SDL_SetRenderDrawColor(theRenderer, 0, 0, 0, 255);
SDL_RenderPresent(theRenderer);
/* Let the computer pick a random number */
random_device rd; // non-deterministic engine
mt19937 gen{ rd() }; // deterministic engine. For most common uses, std::mersenne_twister_engine, fast and high-quality.
uniform_int_distribution<> EnemyDis{ -5, 5 };
theTextureMgr->setRenderer(theRenderer);
theFontMgr->initFontLib();
theSoundMgr->initMixer();
pointsCollected = 0;
theAreaClicked = { 0, 0 };
// Store the textures
textureName = { "snow", "bauble", "santa","enemy","theBackground", "candy", "OpeningScreen", "ClosingScreen", "explosion"};
texturesToUse = { "Images/Sprites/Snow.png", "Images/Sprites/pBauble.png", "Images/Sprites/Santa.png", "Images/Sprites/Enemy1.png","Images/Bkg/Bkgnd.png", "Images/Sprites/Bullet.png", "Images/Bkg/MainMenu.png", "Images/Bkg/endGame.png", "Images/Sprites/explosion.png" };
for (unsigned int tCount = 0; tCount < textureName.size(); tCount++)
{
theTextureMgr->addTexture(textureName[tCount], texturesToUse[tCount]);
}
tempTextTexture = theTextureMgr->getTexture("snow");
aRect = { 0, 0, tempTextTexture->getTextureRect().w, tempTextTexture->getTextureRect().h };
aColour = { 228, 213, 238, 255 };
// Store the textures
btnNameList = { "exit_btn", "instructions_btn", "load_btn", "menu_btn", "play_btn", "save_btn", "settings_btn", "hs_btn" };
btnTexturesToUse = { "Images/Buttons/Quit.png", "Images/Buttons/button_instructions.png", "Images/Buttons/button_load.png", "Images/Buttons/Menu.png", "Images/Buttons/Start.png", "Images/Buttons/button_save.png", "Images/Buttons/button_settings.png", "Images/Buttons/hScore.png" };
btnPos = { { 400, 475 }, { 400, 300 }, { 400, 300 }, { 500, 900 }, { 400, 200 }, { 740, 500 }, { 400, 300 }, { 400, 500 } };
for (unsigned int bCount = 0; bCount < btnNameList.size(); bCount++)
{
theTextureMgr->addTexture(btnNameList[bCount], btnTexturesToUse[bCount]);
}
for (unsigned int bCount = 0; bCount < btnNameList.size(); bCount++)
{
cButton * newBtn = new cButton();
newBtn->setTexture(theTextureMgr->getTexture(btnNameList[bCount]));
newBtn->setSpritePos(btnPos[bCount]);
newBtn->setSpriteDimensions(theTextureMgr->getTexture(btnNameList[bCount])->getTWidth(), theTextureMgr->getTexture(btnNameList[bCount])->getTHeight());
theButtonMgr->add(btnNameList[bCount], newBtn);
}
theGameState = gameState::menu;
theBtnType = btnTypes::exit;
// Create textures for Game Dialogue (text)
fontList = { "xmas1", "xmas2" };
fontsToUse = { "Fonts/Otto.ttf", "Fonts/Otto.ttf" };
for (unsigned int fonts = 0; fonts < fontList.size(); fonts++)
{
if (fonts == 0)
{
theFontMgr->addFont(fontList[fonts], fontsToUse[fonts], 125);
}
else
{
theFontMgr->addFont(fontList[fonts], fontsToUse[fonts], 70);
}
}
// Create text Textures
gameTextNames = { "TitleTxt", "CollectTxt", "InstructTxt", "InstructTxt2", "ThanksTxt", "SeeYouTxt","PointCount","HSTable","HScore"};
gameTextList = { "Protect Christmas", "Save the Elves with Santa's magic Candy!", "Use 'W' and 'S' to navigate the map.", "Use Spacebar to fire Santa's Candy-Canes", "Thanks for playing!", "See you again soon!", "Points: ", "", "High Score"};
for (unsigned int text = 0; text < gameTextNames.size(); text++)
{
if (text == 0 || text == gameTextNames.size()-1)
{
theTextureMgr->addTexture(gameTextNames[text], theFontMgr->getFont("xmas1")->createTextTexture(theRenderer, gameTextList[text], textType::solid, { 0, 0, 0, 0 }, { 0, 255, 0, 255 }));
}
else
{
theTextureMgr->addTexture(gameTextNames[text], theFontMgr->getFont("xmas2")->createTextTexture(theRenderer, gameTextList[text], textType::solid, { 0, 0, 0, 0 }, { 0, 255, 0, 255 }));
}
}
// Load game sounds
soundList = { "theme", "click", "points", "santa", "explosion", "button" };
soundTypes = { soundType::music, soundType::sfx, soundType::sfx, soundType::sfx, soundType::sfx, soundType::sfx };
soundsToUse = { "Audio/Theme/theme.wav", "Audio/SFX/ClickOn.wav", "Audio/SFX/Points.wav", "Audio/SFX/Santa.wav", "Audio/SFX/explosion.wav", "Audio/SFX/buttonClick.wav" };
for (unsigned int sounds = 0; sounds < soundList.size(); sounds++)
{
theSoundMgr->add(soundList[sounds], soundsToUse[sounds], soundTypes[sounds]);
}
theSoundMgr->getSnd("theme")->play(-1);
spriteBkgd.setSpritePos({ 0, 0 });
spriteBkgd.setTexture(theTextureMgr->getTexture("OpeningScreen"));
spriteBkgd.setSpriteDimensions(theTextureMgr->getTexture("OpeningScreen")->getTWidth(), theTextureMgr->getTexture("OpeningScreen")->getTHeight());
theTileMap.setMapStartXY({ 150, 100 });
pointsCollected = 0;
strScore = gameTextList[6];
strScore += to_string(pointsCollected).c_str();
theTextureMgr->deleteTexture("PointCount");
/*numTableItems = 0;
theHSTable.loadFromFile("Data/HighScore.dat");
theHighScoreTable = gameTextList[6];
theHSTableSize = theHSTable.getTableSize();
highScoreTextures = { "score1","score2","score3","score4","score5","score6","score7","score8","score9","score10" };*/
// Create vector array of textures
/*for (int elf = 0; elf < 5; elf++)
{
thePirates.push_back(new cEnemy);
thePirates[elf]->setMapPosition(1, 0);
thePirates[elf]->setSpriteTranslation({ 100, -50 });
thePirates[elf]->setTexture(theTextureMgr->getTexture("enemy"));
thePirates[elf]->setSpriteDimensions(theTextureMgr->getTexture("enemy")->getTWidth(), theTextureMgr->getTexture("enemy")->getTHeight());
thePirates[elf]->setEnemyVelocity(200);
thePirates[elf]->setActive(true);
}*/
/*for (int item = 0; item < theHSTableSize; item++)
{
string entry = "";
entry += theHSTable.getItem(item).Name + " " + to_string(theHSTable.getItem(item).score);
theTextureMgr->addTexture(highScoreTextures[item], theFontMgr->getFont("xmas2")->createTextTexture(theRenderer, entry.c_str(), textType::solid, { 0, 0, 0, 0 }, { 0, 255, 0, 255 }));
}*/
timer = 0;
gameOver = false;
}
void cGame::run(SDL_Window* theSDLWND, SDL_Renderer* theRenderer)
{
loop = true;
while (loop)
{
//We get the time that passed since the last frame
double elapsedTime = this->getElapsedSeconds();
loop = this->getInput(loop);
this->update(elapsedTime);
this->render(theSDLWND, theRenderer);
}
}
void cGame::render(SDL_Window* theSDLWND, SDL_Renderer* theRenderer)
{
SDL_RenderClear(theRenderer);
switch (theGameState)
{
case gameState::menu:
{
spriteBkgd.setTexture(theTextureMgr->getTexture("OpeningScreen"));
spriteBkgd.setSpriteDimensions(theTextureMgr->getTexture("OpeningScreen")->getTWidth(), theTextureMgr->getTexture("OpeningScreen")->getTHeight());
spriteBkgd.render(theRenderer, NULL, NULL, spriteBkgd.getSpriteScale());
// Render the Title
tempTextTexture = theTextureMgr->getTexture("TitleTxt");
pos = { 10, 8, tempTextTexture->getTextureRect().w, tempTextTexture->getTextureRect().h };
scale = { 1, 1 };
tempTextTexture->renderTexture(theRenderer, tempTextTexture->getTexture(), &tempTextTexture->getTextureRect(), &pos, scale);
tempTextTexture = theTextureMgr->getTexture("CollectTxt");
pos = { 325, 125, tempTextTexture->getTextureRect().w, tempTextTexture->getTextureRect().h };
tempTextTexture->renderTexture(theRenderer, tempTextTexture->getTexture(), &tempTextTexture->getTextureRect(), &pos, scale);
tempTextTexture = theTextureMgr->getTexture("InstructTxt");
pos = { 325, 175, tempTextTexture->getTextureRect().w, tempTextTexture->getTextureRect().h };
tempTextTexture->renderTexture(theRenderer, tempTextTexture->getTexture(), &tempTextTexture->getTextureRect(), &pos, scale);
tempTextTexture = theTextureMgr->getTexture("InstructTxt2");
pos = { 325, 225, tempTextTexture->getTextureRect().w, tempTextTexture->getTextureRect().h };
tempTextTexture->renderTexture(theRenderer, tempTextTexture->getTexture(), &tempTextTexture->getTextureRect(), &pos, scale);
// Render Button
theButtonMgr->getBtn("play_btn")->setSpritePos({ 500, 275});
theButtonMgr->getBtn("play_btn")->render(theRenderer, &theButtonMgr->getBtn("play_btn")->getSpriteDimensions(), &theButtonMgr->getBtn("play_btn")->getSpritePos(), theButtonMgr->getBtn("play_btn")->getSpriteScale());
/*theButtonMgr->getBtn("hs_btn")->setSpritePos({ 460, 375 });
theButtonMgr->getBtn("hs_btn")->render(theRenderer, &theButtonMgr->getBtn("hs_btn")->getSpriteDimensions(), &theButtonMgr->getBtn("hs_btn")->getSpritePos(), theButtonMgr->getBtn("hs_btn")->getSpriteScale());*/
theButtonMgr->getBtn("exit_btn")->setSpritePos({ 500, 475 });
theButtonMgr->getBtn("exit_btn")->render(theRenderer, &theButtonMgr->getBtn("exit_btn")->getSpriteDimensions(), &theButtonMgr->getBtn("exit_btn")->getSpritePos(), theButtonMgr->getBtn("exit_btn")->getSpriteScale());
}
break;
case gameState::playing:
{
spriteBkgd.setTexture(theTextureMgr->getTexture("OpeningScreen"));
spriteBkgd.setSpriteDimensions(theTextureMgr->getTexture("OpeningScreen")->getTWidth(), theTextureMgr->getTexture("OpeningScreen")->getTHeight());
spriteBkgd.render(theRenderer, NULL, NULL, spriteBkgd.getSpriteScale());
tempTextTexture = theTextureMgr->getTexture("TitleTxt");
pos = { 2, 2, tempTextTexture->getTextureRect().w, tempTextTexture->getTextureRect().h };
tempTextTexture->renderTexture(theRenderer, tempTextTexture->getTexture(), &tempTextTexture->getTextureRect(), &pos, scale);
theTextureMgr->addTexture("PointCount", theFontMgr->getFont("xmas1")->createTextTexture(theRenderer, strScore.c_str(), textType::solid, { 0, 0, 0, 0 }, { 0, 255, 0, 255 }));
tempTextTexture = theTextureMgr->getTexture("PointCount");
pos = { 600, 10, tempTextTexture->getTextureRect().w, tempTextTexture->getTextureRect().h };
tempTextTexture->renderTexture(theRenderer, tempTextTexture->getTexture(), &tempTextTexture->getTextureRect(), &pos, scale);
theTileMap.render(theSDLWND, theRenderer, theTextureMgr, textureName);
theTileMap.renderGridLines(theRenderer, aRect, aColour);
theButtonMgr->getBtn("exit_btn")->setSpritePos({ 750, 600 });
theButtonMgr->getBtn("exit_btn")->render(theRenderer, &theButtonMgr->getBtn("exit_btn")->getSpriteDimensions(), &theButtonMgr->getBtn("exit_btn")->getSpritePos(), theButtonMgr->getBtn("exit_btn")->getSpriteScale());
// Render each asteroid in the vector array
/*for (int draw = 0; draw < (int)thePirates.size(); draw++)
{
thePirates[draw]->render(theRenderer, &thePirates[draw]->getSpriteDimensions(), &thePirates[draw]->getMapPosition(), thePirates[draw]->getSpriteRotAngle(), &thePirates[draw]->getSpriteCentre(), thePirates[draw]->getSpriteScale());
}
*/
// Render each bullet in the vector array
for (int draw = 0; draw < (int)theBullets.size(); draw++)
{
theBullets[draw]->render(theRenderer, &theBullets[draw]->getSpriteDimensions(), &theBullets[draw]->getSpritePos(), theBullets[draw]->getSpriteRotAngle(), &theBullets[draw]->getSpriteCentre(), theBullets[draw]->getSpriteScale());
}
//render updatedScore
if (updateScore)
{
theTextureMgr->deleteTexture("PointCount");
theTextureMgr->addTexture("PointCount", theFontMgr->getFont("xmas1")->createTextTexture(theRenderer, strScore.c_str(), textType::solid, { 0, 0, 0, 0 }, { 0, 255, 0, 255 }));
updateScore = false;
}
}
break;
case gameState::end:
{
spriteBkgd.setTexture(theTextureMgr->getTexture("ClosingScreen"));
spriteBkgd.setSpriteDimensions(theTextureMgr->getTexture("ClosingScreen")->getTWidth(), theTextureMgr->getTexture("OpeningScreen")->getTHeight());
spriteBkgd.render(theRenderer, NULL, NULL, spriteBkgd.getSpriteScale());
tempTextTexture = theTextureMgr->getTexture("TitleTxt");
pos = { 10, 10, tempTextTexture->getTextureRect().w, tempTextTexture->getTextureRect().h };
tempTextTexture->renderTexture(theRenderer, tempTextTexture->getTexture(), &tempTextTexture->getTextureRect(), &pos, scale);
tempTextTexture = theTextureMgr->getTexture("ThanksTxt");
pos = { 50, 100, tempTextTexture->getTextureRect().w, tempTextTexture->getTextureRect().h };
tempTextTexture->renderTexture(theRenderer, tempTextTexture->getTexture(), &tempTextTexture->getTextureRect(), &pos, scale);
tempTextTexture = theTextureMgr->getTexture("SeeYouTxt");
pos = { 50, 175, tempTextTexture->getTextureRect().w, tempTextTexture->getTextureRect().h };
tempTextTexture = theTextureMgr->getTexture("PointCount");
theButtonMgr->getBtn("menu_btn")->setSpritePos({ 700, 225 });
theButtonMgr->getBtn("menu_btn")->render(theRenderer, &theButtonMgr->getBtn("menu_btn")->getSpriteDimensions(), &theButtonMgr->getBtn("menu_btn")->getSpritePos(), theButtonMgr->getBtn("menu_btn")->getSpriteScale());
theButtonMgr->getBtn("exit_btn")->setSpritePos({ 700, 350});
theButtonMgr->getBtn("exit_btn")->render(theRenderer, &theButtonMgr->getBtn("exit_btn")->getSpriteDimensions(), &theButtonMgr->getBtn("exit_btn")->getSpritePos(), theButtonMgr->getBtn("exit_btn")->getSpriteScale());
//render Score
cTexture* tempTextTexture = theTextureMgr->getTexture("PointCount");
SDL_Rect pos = { 50, 175, tempTextTexture->getTextureRect().w, tempTextTexture->getTextureRect().h };
FPoint scale = { 1, 1 };
tempTextTexture->renderTexture(theRenderer, tempTextTexture->getTexture(), &tempTextTexture->getTextureRect(), &pos, scale);
}
break;
//case gameState::highscore:
//{
// spriteBkgd.render(theRenderer, NULL, NULL, spriteBkgd.getSpriteScale());
// // Render the Title
// tempTextTexture = theTextureMgr->getTexture("HScore");
// pos = { 220, 125, tempTextTexture->getTextureRect().w, tempTextTexture->getTextureRect().h };
// scale = { 1, 1 };
// tempTextTexture->renderTexture(theRenderer, tempTextTexture->getTexture(), &tempTextTexture->getTextureRect(), &pos, scale);
// pos = { 220, 200, tempTextTexture->getTextureRect().w, tempTextTexture->getTextureRect().h };
// for (int item = 0; item < theHSTableSize; item++)
// {
// tempTextTexture = theTextureMgr->getTexture(highScoreTextures[item]);
// tempTextTexture->renderTexture(theRenderer, tempTextTexture->getTexture(), &tempTextTexture->getTextureRect(), &pos, scale);
// pos = { 220, 200 + (50 * item), tempTextTexture->getTextureRect().w, tempTextTexture->getTextureRect().h };
// }
// // Render Button
// theButtonMgr->getBtn("play_btn")->setSpritePos({ 700, 350 });
// theButtonMgr->getBtn("play_btn")->render(theRenderer, &theButtonMgr->getBtn("play_btn")->getSpriteDimensions(), &theButtonMgr->getBtn("play_btn")->getSpritePos(), theButtonMgr->getBtn("play_btn")->getSpriteScale());
// theButtonMgr->getBtn("menu_btn")->setSpritePos({ 700, 450 });
// theButtonMgr->getBtn("menu_btn")->render(theRenderer, &theButtonMgr->getBtn("menu_btn")->getSpriteDimensions(), &theButtonMgr->getBtn("menu_btn")->getSpritePos(), theButtonMgr->getBtn("menu_btn")->getSpriteScale());
//}
//break;
case gameState::quit:
{
loop = false;
}
break;
default:
break;
}
SDL_RenderPresent(theRenderer);
}
void cGame::render(SDL_Window* theSDLWND, SDL_Renderer* theRenderer, double rotAngle, SDL_Point* spriteCentre)
{
SDL_RenderPresent(theRenderer);
}
void cGame::update()
{
}
void cGame::update(double deltaTime)
{
timer += deltaTime;
// CHeck Button clicked and change state
if (theGameState == gameState::menu || theGameState == gameState::end)
{
theGameState = theButtonMgr->getBtn("exit_btn")->update(theGameState, gameState::quit, theAreaClicked);
theSoundMgr->getSnd("button")->play(0);
}
else
{
theGameState = theButtonMgr->getBtn("exit_btn")->update(theGameState, gameState::end, theAreaClicked);
theSoundMgr->getSnd("button")->play(0);
}
/*if (theGameState == gameState::highscore)
{
spriteBkgd.setTexture(theTextureMgr->getTexture("HScoreScreen"));
spriteBkgd.setSpriteDimensions(theTextureMgr->getTexture("HScoreScreen")->getTWidth(), theTextureMgr->getTexture("OpeningScreen")->getTHeight());
theGameState = theButtonMgr->getBtn("play_btn")->update(theGameState, gameState::playing, theAreaClicked);
theSoundMgr->getSnd("button")->play(1);
theGameState = theButtonMgr->getBtn("menu_btn")->update(theGameState, gameState::menu, theAreaClicked);
theSoundMgr->getSnd("button")->play(1);
}*/
if (theGameState == gameState::menu)
{
theGameState = theButtonMgr->getBtn("play_btn")->update(theGameState, gameState::playing, theAreaClicked);
theSoundMgr->getSnd("button")->play(0);
gameOver = false;
theElves.clear();
theBullets.clear();
pointsCollected = 0;
strScore = gameTextList[6];
strScore += to_string(pointsCollected).c_str();
updateScore = true;
if (theGameState == gameState::playing && gameOver == false)
{
theTileMap.update(thePlayer.getMapPosition(), 1, 0.0f);
theTileMap.update(theBauble.getMapPosition(), 1, 0.0f);
theTileMap.update(theElf.getMapPosition(), 1, 0.0f);
thePlayer.setMapPosition(5, 8);
theBauble.setMapPosition(4, 0);
//thePirate.setMapPosition(1, 0);
theElves.push_back(new cEnemy);
int numElves = theElves.size() - 1;
theElves[numElves]->setMapPosition(1, 0);
SDL_Point enemyPos = { (theElves[numElves]->getMapPosition().C * 64) + 150, (theElves[numElves]->getMapPosition().R * 64) + 100 };
theElves[numElves]->setSpritePos({ enemyPos.x, enemyPos.y });
theElves[numElves]->setSpriteTranslation({ 50, 1 });
theElves[numElves]->setTexture(theTextureMgr->getTexture("enemy"));
theElves[numElves]->setSpriteDimensions(theTextureMgr->getTexture("enemy")->getTWidth(), theTextureMgr->getTexture("enemy")->getTHeight());
theElves[numElves]->setActive(true);
cout << "Bullet added to Vector at position - x: " << thePlayer.getBoundingRect().x << " y: " << thePlayer.getBoundingRect().y << endl;
// Lab Code goes here
theTileMap.update(thePlayer.getMapPosition(), 3, thePlayer.getPlayerRotation());
theTileMap.update(theBauble.getMapPosition(), 2, theBauble.getBaubleRotation());
theTileMap.update(theElves[numElves]->getMapPosition(), 4, theElves[numElves]->getEnemyRotation());
// Lab Code goes here
pointsCollected = 0;
/*if (theElf.getMapPosition().R >= 8)
{
gameOver = true;
cout << "Wall Hit!!" << endl;
}*/
}
}
if (theGameState == gameState::end)
{
theElves.clear();
theBullets.clear();
frames = 1;
}
theGameState = theButtonMgr->getBtn("menu_btn")->update(theGameState, gameState::menu, theAreaClicked);
//theGameState = theButtonMgr->getBtn("hs_btn")->update(theGameState, gameState::highscore, theAreaClicked);
if (theGameState == gameState::playing)
{
if (frames % 1000)
{
theElves.push_back(new cEnemy);
int numPirates = theElves.size() - 1;
theElves[numPirates]->setMapPosition(spriteRandom(gen), 0);
SDL_Point enemyPos = { (theElves[numPirates]->getMapPosition().C * 64) + 150, (theElves[numPirates]->getMapPosition().R * 64) + 100 };
theElves[numPirates]->setSpritePos({ enemyPos.x, enemyPos.y });
theElves[numPirates]->setBoundingRect({ enemyPos.x, enemyPos.y, enemyPos.x+64, enemyPos.y+64});
theElves[numPirates]->setSpriteTranslation({ 50, 1 });
theElves[numPirates]->setTexture(theTextureMgr->getTexture("enemy"));
theElves[numPirates]->setSpriteDimensions(theTextureMgr->getTexture("enemy")->getTWidth(), theTextureMgr->getTexture("enemy")->getTHeight());
theElves[numPirates]->setActive(true);
theTileMap.update(theElves[numPirates]->getMapPosition(), 4, theElves[numPirates]->getEnemyRotation());
}
/*if (thePirate.getMapPosition().R >= 7)
{
cout << "Enemy Hit wall " << endl;
theGameState = gameState::end;
}*/
vector<cEnemy*>::iterator ElfIterator = theElves.begin();
while (ElfIterator != theElves.end())
{
if ((*ElfIterator)->isActive() == false)
{
ElfIterator = theElves.erase(ElfIterator);
}
else
{
if ((*ElfIterator)->getMapPosition().C < 10) //Restrict enemy movement
{
if (frames % 85 == 0)
{
SDL_Point elfPos = { ((*ElfIterator)->getMapPosition().C * 64) + 150, ((*ElfIterator)->getMapPosition().R * 64) + 100 };
(*ElfIterator)->setSpritePos({ elfPos.x, elfPos.y });
(*ElfIterator)->update(deltaTime);
(*ElfIterator)->setEnemyRotation(0.0f);
theTileMap.update((*ElfIterator)->getMapPosition(), 1, 0.0f);
(*ElfIterator)->update((*ElfIterator)->getMapPosition().C + 1, (*ElfIterator)->getMapPosition().R);
theTileMap.update((*ElfIterator)->getMapPosition(), 4, (*ElfIterator)->getEnemyRotation());
cout << "Elf Pos: " << elfPos.x << "," << elfPos.y << endl;
}
if ((*ElfIterator)->getMapPosition().C == 8)
{
theGameState = gameState::end;
}
++ElfIterator;
}
else
{
(*ElfIterator)->setActive(false);
theTileMap.update((*ElfIterator)->getMapPosition(), 1, 0.0f);
}
}
}
//}
// Update the visibility and position of each bullet
vector<cBullet*>::iterator bulletIterartor = theBullets.begin();
while (bulletIterartor != theBullets.end())
{
if ((*bulletIterartor)->isActive() == false)
{
bulletIterartor = theBullets.erase(bulletIterartor);
}
else
{
(*bulletIterartor)->update(deltaTime);
++bulletIterartor;
}
}
// Update the visibility and position of each explosion
vector<cSprite*>::iterator expIterartor = theExplosions.begin();
while (expIterartor != theExplosions.end())
{
if ((*expIterartor)->isActive() == false)
{
expIterartor = theExplosions.erase(expIterartor);
}
else
{
(*expIterartor)->animate(deltaTime);
++expIterartor;
}
}
/*
==============================================================
| Check for collisions
==============================================================
*/
for (vector<cBullet*>::iterator caneIter = theBullets.begin(); caneIter != theBullets.end(); ++caneIter)
{
//(*bulletIterartor)->update(deltaTime);
for (vector<cEnemy*>::iterator ElfIterator = theElves.begin(); ElfIterator != theElves.end(); ++ElfIterator)
{
if ((*ElfIterator)->collidedWith(&(*ElfIterator)->getBoundingRect(), &(*caneIter)->getBoundingRect()))
{
// if a collision set the bullet and elf to false
(*ElfIterator)->setActive(false);
(*caneIter)->setActive(false);
theTileMap.update((*ElfIterator)->getMapPosition(), 1, 0.0f);
theExplosions.push_back(new cSprite);
int index = theExplosions.size() - 1;
theExplosions[index]->setSpriteTranslation({ 0, 0 });
theExplosions[index]->setActive(true);
theExplosions[index]->setNoFrames(16);
theExplosions[index]->setTexture(theTextureMgr->getTexture("explosion"));
theExplosions[index]->setSpriteDimensions(theTextureMgr->getTexture("explosion")->getTWidth() / theExplosions[index]->getNoFrames(), theTextureMgr->getTexture("explosion")->getTHeight());
theExplosions[index]->setSpritePos({ (*ElfIterator)->getSpritePos().x + (int)((*ElfIterator)->getSpritePos().w / 2), (*ElfIterator)->getSpritePos().y + (int)((*ElfIterator)->getSpritePos().h / 2) });
pointsCollected += 50;
strScore = gameTextList[6];
strScore += to_string(pointsCollected).c_str();
updateScore = true;
theSoundMgr->getSnd("explosion")->play(0);
}
}
}
//if ((int)timer % 4 == 0)
//{
// thePirate.genRandomPos(theShip.getMapPosition(), theBottle.getMapPosition());
// theTileMap.update(thePirate.getMapPosition(), 4, thePirate.getEnemyRotation());
//}
//if (theGameState == gameState::playing && thePirate.getMapPosition().C <7) //Restrict enemy movement
//{
//thePirate.setEnemyRotation(0.0f);
//if (frames % 25 == 0)
//{
// theTileMap.update(thePirate.getMapPosition(), 1, 0.0f);
// thePirate.update(thePirate.getMapPosition().C + 1, thePirate.getMapPosition().R);
// theTileMap.update(thePirate.getMapPosition(), 4, thePirate.getEnemyRotation());
//}
//Sleep(900);
//}
// Check if santa has collided with the bauble
if (thePlayer.getMapPosition() == theBauble.getMapPosition())
{
theBauble.genRandomPos(thePlayer.getMapPosition().R, thePlayer.getMapPosition().C);
theTileMap.update(theBauble.getMapPosition(), 2, theBauble.getBaubleRotation());
//Create Updated bauble count
pointsCollected += 100;
theSoundMgr->getSnd("points")->play(0);
strScore = gameTextList[6];
strScore += to_string(pointsCollected).c_str();
theTextureMgr->deleteTexture("PointCount");
}
if (theGameState == gameState::playing && theBauble.getMapPosition().R < 8, theBauble.getMapPosition().C < 8) //Restrict Bottle movement
{
theBauble.setBaubleRotation(0.0f);
theTileMap.update(theBauble.getMapPosition(), 1, 0.0f);
if (frames % 15 == 0)
{
theBauble.update(theBauble.getMapPosition().C + 1, theBauble.getMapPosition().R);
}
theTileMap.update(theBauble.getMapPosition(), 2, theBauble.getBaubleRotation());
}
// Check if Pirate has collided with the ship
if (gameOver)
{
theGameState = gameState::quit;
theElves.clear();
updateScore = true;
cout << "Wall Hit!!" << endl;
}
//if (thePirate.getMapPosition().R >= 7)
//{
// cout << "Enemy Hit wall " << endl;
// theGameState = gameState::end;
//}
frames++;
}
}
bool cGame::getInput(bool theLoop)
{
SDL_Event event;
while (SDL_PollEvent(&event))
{
if (event.type == SDL_QUIT)
{
theLoop = false;
}
switch (event.type)
{
case SDL_MOUSEBUTTONDOWN:
switch (event.button.button)
{
case SDL_BUTTON_LEFT:
{
theAreaClicked = { event.motion.x, event.motion.y };
//if (theGameState == gameState::playing)
//{
// theTilePicker.update(theAreaClicked);
// if (theTilePicker.getTilePicked() > -1)
// {
// dragTile.setSpritePos(theAreaClicked);
// dragTile.setTexture(theTextureMgr->getTexture(textureName[theTilePicker.getTilePicked() - 1]));
// dragTile.setSpriteDimensions(theTextureMgr->getTexture(textureName[theTilePicker.getTilePicked() - 1])->getTWidth(), theTextureMgr->getTexture(textureName[theTilePicker.getTilePicked() - 1])->getTHeight());
// }
//}
}
break;
case SDL_BUTTON_RIGHT:
break;
default:
break;
}
break;
case SDL_MOUSEBUTTONUP:
switch (event.button.button)
{
case SDL_BUTTON_LEFT:
{
//if (theGameState == gameState::playing)
//{
// theAreaClicked = { event.motion.x, event.motion.y };
// theTileMap.update(theAreaClicked, theTilePicker.getTilePicked());
// theTilePicker.setTilePicked(-1);
//}
}
break;
case SDL_BUTTON_RIGHT:
break;
default:
break;
}
break;
case SDL_MOUSEMOTION:
{
dragTile.setSpritePos({ event.motion.x, event.motion.y });
}
break;
case SDL_KEYDOWN:
switch (event.key.keysym.sym)
{
case SDLK_ESCAPE:
theLoop = false;
break;
case SDLK_s:
{
if (theGameState == gameState::playing && thePlayer.getMapPosition().R < 9)
{
thePlayer.setPlayerRotation(0.0f);
theTileMap.update(thePlayer.getMapPosition(), 1, 0.0f);
thePlayer.update(thePlayer.getMapPosition().C, thePlayer.getMapPosition().R + 1);
theTileMap.update(thePlayer.getMapPosition(), 3, thePlayer.getPlayerRotation());
// Lab Code goes here
}
}
break;
case SDLK_w:
{
if (theGameState == gameState::playing && thePlayer.getMapPosition().R > 0)
{
thePlayer.setPlayerRotation(0.0f);
theTileMap.update(thePlayer.getMapPosition(), 1, 0.0f);
thePlayer.update(thePlayer.getMapPosition().C, thePlayer.getMapPosition().R - 1);
theTileMap.update(thePlayer.getMapPosition(), 3, thePlayer.getPlayerRotation());
// Lab Code goes here
}
}
break;
//case SDLK_RIGHT:
//{
// if (theGameState == gameState::playing && theShip.getMapPosition().C < 9)
// {
// theShip.setShipRotation(270.0f);
// theTileMap.update(theShip.getMapPosition(), 1, 0.0f);
// theShip.update(theShip.getMapPosition().C + 1, theShip.getMapPosition().R);
// theTileMap.update(theShip.getMapPosition(), 3, theShip.getShipRotation());
// // Lab Code goes here
// }
//}
//break;
//case SDLK_LEFT:
//{
// if (theGameState == gameState::playing && theShip.getMapPosition().C > 0)
// {
// theShip.setShipRotation(90.0f);
// theTileMap.update(theShip.getMapPosition(), 1, 0.0f);
// theShip.update(theShip.getMapPosition().C - 1, theShip.getMapPosition().R);
// theTileMap.update(theShip.getMapPosition(), 3, theShip.getShipRotation());
// // Lab Code goes here
// }
//}
break;
case SDLK_SPACE:
{
//if (frames % 4 == 0)
//{
theBullets.push_back(new cBullet);
int numBullets = theBullets.size() - 1;
SDL_Point bulletPos = { (thePlayer.getMapPosition().C * 64) + 150, (thePlayer.getMapPosition().R * 64) + 100 };
theBullets[numBullets]->setSpritePos({ bulletPos.x, bulletPos.y });
theBullets[numBullets]->setSpriteTranslation({ 50, 1 });
theBullets[numBullets]->setTexture(theTextureMgr->getTexture("candy"));
theBullets[numBullets]->setSpriteDimensions(theTextureMgr->getTexture("candy")->getTWidth(), theTextureMgr->getTexture("candy")->getTHeight());
theBullets[numBullets]->setBulletVelocity(50);
theBullets[numBullets]->setSpriteRotAngle(thePlayer.getSpriteRotAngle());
theBullets[numBullets]->setActive(true);
cout << "Bullet added to Vector at position - x: " << thePlayer.getBoundingRect().x << " y: " << thePlayer.getBoundingRect().y << endl;
theSoundMgr->getSnd("santa")->play(0);
//}
}
break;
default:
break;
}
default:
break;
}
}
return theLoop;
}
double cGame::getElapsedSeconds()
{
this->m_CurrentTime = high_resolution_clock::now();
this->deltaTime = (this->m_CurrentTime - this->m_lastTime);
this->m_lastTime = this->m_CurrentTime;
return deltaTime.count();
}
void cGame::cleanUp(SDL_Window* theSDLWND)
{
// Delete our OpengL context
SDL_GL_DeleteContext(theSDLWND);
// Destroy the window
SDL_DestroyWindow(theSDLWND);
//Quit FONT system
TTF_Quit();
// Quit IMG system
IMG_Quit();
// Shutdown SDL 2
SDL_Quit();
}
| [
"euanbr1@aol.com"
] | euanbr1@aol.com |
2e3c26ea34a2dc72cd90ea69f2a3173292980d92 | b99e3109c4f1830e7755f2e8029a713eef9d3978 | /src/models/PileType.hpp | 2756ce70e9ed7dc5aec4270abab184e53529717d | [] | no_license | vrcordoba/Klondike | 01d632c0681cbd675ce965be1fd0035074ee2dc6 | 108d2b4232c0106b824adba3f70aab635b403d2a | refs/heads/master | 2021-01-11T02:14:45.289106 | 2016-05-07T14:29:14 | 2016-05-07T14:29:14 | 71,004,256 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 207 | hpp | #ifndef MODELS_PILETYPE_HPP_
#define MODELS_PILETYPE_HPP_
#include <cstdint>
namespace Models
{
struct PileType
{
enum
{
DECK,
WASTE,
FOUNDATION,
TABLEAU
};
};
}
#endif
| [
"vrcordoba@gmail.com"
] | vrcordoba@gmail.com |
f8c6b5f49b52d994280fca5d0319a45c46c88055 | ac1c9fbc1f1019efb19d0a8f3a088e8889f1e83c | /out/release/gen/v8/torque-generated/src/builtins/string-endswith-tq-csa.h | 42aca595e7a57cd6dc456fc03639566b89990af7 | [
"BSD-3-Clause"
] | permissive | xueqiya/chromium_src | 5d20b4d3a2a0251c063a7fb9952195cda6d29e34 | d4aa7a8f0e07cfaa448fcad8c12b29242a615103 | refs/heads/main | 2022-07-30T03:15:14.818330 | 2021-01-16T16:47:22 | 2021-01-16T16:47:22 | 330,115,551 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 771 | h | #ifndef V8_GEN_TORQUE_GENERATED_SRC_BUILTINS_STRING_ENDSWITH_TQ_H_
#define V8_GEN_TORQUE_GENERATED_SRC_BUILTINS_STRING_ENDSWITH_TQ_H_
#include "src/builtins/builtins-promise.h"
#include "src/compiler/code-assembler.h"
#include "src/codegen/code-stub-assembler.h"
#include "src/utils/utils.h"
#include "torque-generated/field-offsets-tq.h"
#include "torque-generated/csa-types-tq.h"
namespace v8 {
namespace internal {
TNode<Oddball> TryFastStringCompareSequence_0(compiler::CodeAssemblerState* state_, TNode<String> p_string, TNode<String> p_searchStr, TNode<UintPtrT> p_start, TNode<UintPtrT> p_searchLength, compiler::CodeAssemblerLabel* label_Slow);
} // namespace internal
} // namespace v8
#endif // V8_GEN_TORQUE_GENERATED_SRC_BUILTINS_STRING_ENDSWITH_TQ_H_
| [
"xueqi@zjmedia.net"
] | xueqi@zjmedia.net |
16aeaa11bf87118e38955ccd6ca5699a2c22b48e | 11111216d72b941f5907a8ebba7b463ededb1e55 | /omnetpp-5.1.1/src/qtenv/submoduleitem.h | 6060700eb175620da8ad4c3580a515f1d5149d60 | [] | no_license | kevinc-303/Final-Year-Project | 4b1e40af0773bb53e8ffa78cdd55dd42ed1a579d | 18f4b57bfba8f7638385d694c6ec34d2f74f6b55 | refs/heads/main | 2023-04-14T01:34:57.714629 | 2021-04-27T21:34:38 | 2021-04-27T21:34:38 | 362,257,257 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,680 | h | //==========================================================================
// SUBMODULEITEM.H - part of
//
// OMNeT++/OMNEST
// Discrete System Simulation in C++
//
//==========================================================================
/*--------------------------------------------------------------*
Copyright (C) 1992-2017 Andras Varga
Copyright (C) 2006-2017 OpenSim Ltd.
This file is distributed WITHOUT ANY WARRANTY. See the file
`license' for details on this and other legal matters.
*--------------------------------------------------------------*/
#ifndef __OMNETPP_QTENV_SUBMODULEITEM_H
#define __OMNETPP_QTENV_SUBMODULEITEM_H
#include <QGraphicsColorizeEffect>
#include <QGraphicsObject>
#include <QAbstractGraphicsShapeItem>
#include "qtenvdefs.h"
namespace omnetpp {
class cModule;
class cDisplayString;
namespace qtenv {
class OutlinedTextItem;
class GraphicsLayer;
class SubmoduleItem;
class QTENV_API SubmoduleItemUtil {
public:
static void setupFromDisplayString(SubmoduleItem *si, cModule *mod);
};
class QTENV_API SubmoduleItem : public QGraphicsObject
{
Q_OBJECT
// if the bounding rectangle of the shape and the image would be
// smaller than this in any dimension, this is used instead
static constexpr double minimumRectSize = 10;
protected:
cModule *module;
// Sets the text of the name item, appending the
// vector index to it if any, and center-aligns it.
void updateNameItem();
// Realigns the queue length label, the info text, and the
// decoration icon. Call this every time after the size
// of the image or shape changes. Also updates the name.
void realignAnchoredItems();
void updateShapeItem();
void adjustRangeItem(int i);
// whichever is bigger in each direction, has a minimum size, see above.
// assumed to be always centered around the origin.
QRectF shapeImageBoundingRect() const;
protected slots:
void onPositionChanged(); // keeping the range items underneath ourselves
public:
static const char *const DEFAULT_ICON;
enum Shape {
SHAPE_NONE,
SHAPE_OVAL,
SHAPE_RECT
};
enum TextPos {
TEXTPOS_LEFT,
TEXTPOS_RIGHT,
TEXTPOS_TOP
};
struct RangeData {
double radius;
double outlineWidth;
QColor fillColor; // this will get appied with halved alpha, no need to correct it here
QColor outlineColor;
};
protected:
double zoomFactor = 1;
double imageSizeFactor = 1;
QString name;
int vectorIndex = -1; // if < 0, not displayed
Shape shape = SHAPE_NONE;
double shapeWidth = 0; // zero if unspec
double shapeHeight = 0; // zero if unspec
QColor shapeFillColor;
QColor shapeOutlineColor;
double shapeOutlineWidth = 2;
QString text;
TextPos textPos = TEXTPOS_TOP;
QColor textColor;
QString queueText;
QList<RangeData> ranges; // these two lists must be in sync at all times
QList<QGraphicsEllipseItem *> rangeItems;
QAbstractGraphicsShapeItem *shapeItem = nullptr;
QGraphicsPixmapItem *imageItem = nullptr;
QGraphicsPixmapItem *decoratorImageItem = nullptr;
OutlinedTextItem *nameItem = nullptr; // includes the vector index
OutlinedTextItem *textItem = nullptr;
OutlinedTextItem *queueItem = nullptr;
GraphicsLayer *rangeLayer = nullptr;
public:
SubmoduleItem(cModule *mod, GraphicsLayer *rangeLayer);
virtual ~SubmoduleItem();
void setZoomFactor(double zoom);
void setImageSizeFactor(double imageSize);
void setShape(Shape shape);
void setWidth(double width);
void setHeight(double height);
void setFillColor(const QColor &color);
void setOutlineColor(const QColor &color);
void setOutlineWidth(double width);
void setIcon(QPixmap icon);
void setDecoratorIcon(QPixmap icon);
void setName(const QString &text);
void setNameVisible(bool visible);
void setVectorIndex(int index);
void setQueueText(const QString &queueText);
void setInfoText(const QString &text, TextPos pos, const QColor &color);
void setRangeLayer(GraphicsLayer *layer);
// these return the index of the newly created range, for future reference
int addRangeItem(double radius, double outlineWidth, const QColor &fillColor, const QColor &outlineColor);
int addRangeItem(const RangeData &data);
void clearRangeItems();
QRectF boundingRect() const;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
};
} // namespace qtenv
} // namespace omnetpp
#endif // __OMNETPP_QTENV_SUBMODULEITEM_H
| [
"kevinodonovan970@gmail.com"
] | kevinodonovan970@gmail.com |
b01fb808e3b624871b396ccf68c9a24ea3b3723d | e52e323cfcf1369d87a2b3b23c1a871ed46141de | /src/dolphin/bitboard.cpp | 68c8836bd7e65968d21e927c9ac25434c4940280 | [] | no_license | shines77/Dolphin | dd9c247113b7da0600ec26ce36016156bf7d0141 | dee36c192fbf2b57890bb4354cd20d86ed33a7cd | refs/heads/master | 2020-05-30T18:51:31.121942 | 2017-09-10T05:40:37 | 2017-09-10T05:40:37 | 6,711,123 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,307 | cpp | /*
Copyright 2005-2011 Intel Corporation. All Rights Reserved.
This file is part of Threading Building Blocks.
Threading Building Blocks is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public License
version 2 as published by the Free Software Foundation.
Threading Building Blocks is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied warranty
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Threading Building Blocks; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
As a special exception, you may use this file as part of a free software
library without restriction. Specifically, if other files instantiate
templates or use macros or inline functions from this file, or you compile
this file and link it with other files to produce an executable, this
file does not by itself cause the resulting executable to be covered by
the GNU General Public License. This exception does not however
invalidate any other reasons why the executable file might be covered by
the GNU General Public License.
*/
#include <dolphin/bitboard.h>
namespace dolphin {
namespace internal {
class no_name3 {
int i;
};
}
BitBoard bitboard::square_mask[64];
///////////////////////////////////////////////////////////////
// bitbaord
///////////////////////////////////////////////////////////////
bitboard::bitboard(void)
{
/* do nothing! */
}
bitboard::bitboard(uint32 _low, uint32 _high)
{
init(_low, _high);
}
bitboard::bitboard(uint64 _bits)
{
init(_bits);
}
bitboard::bitboard(const BitBoard &b)
{
init(b.low, b.high);
}
bitboard::bitboard(int32 _low)
{
init((uint32)_low, 0);
}
bitboard::bitboard(uint32 _low)
{
init(_low, 0);
}
bitboard &bitboard::operator =(const bitboard &src)
{
low = src.low;
high = src.high;
return *this;
}
bitboard::~bitboard(void)
{
/* do nothing! */
}
///////////////////////////////////////////////////////////////
} // namespace dolphin
| [
"gz_shines@msn.com"
] | gz_shines@msn.com |
113abffd0a2cb033593d5ff56ea482ab93097c50 | fa77912986eb09889d5aade7fca2581a3c2c6a09 | /modules/pseudoclients/hostserv.cpp | e51fb428cf0bce453be1c789e2246de2de2654c6 | [] | no_license | nask0/anope | 516d8e61fdc1f517b2e3fc4f97f49c181b9db472 | dfc18db1dd3d18a977b3b1cb073c6b99a17e15f6 | refs/heads/2.0 | 2021-01-21T16:21:49.403916 | 2015-07-23T12:25:28 | 2015-07-23T12:25:28 | 39,887,951 | 1 | 0 | null | 2015-07-29T10:35:38 | 2015-07-29T10:35:38 | null | UTF-8 | C++ | false | false | 3,353 | cpp | /* HostServ core functions
*
* (C) 2003-2014 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*
* Based on the original code of Epona by Lara.
* Based on the original code of Services by Andy Church.
*/
#include "module.h"
class HostServCore : public Module
{
Reference<BotInfo> HostServ;
public:
HostServCore(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, PSEUDOCLIENT | VENDOR)
{
if (!IRCD || !IRCD->CanSetVHost)
throw ModuleException("Your IRCd does not support vhosts");
}
void OnReload(Configuration::Conf *conf) anope_override
{
const Anope::string &hsnick = conf->GetModule(this)->Get<const Anope::string>("client");
if (hsnick.empty())
throw ConfigException(Module::name + ": <client> must be defined");
BotInfo *bi = BotInfo::Find(hsnick, true);
if (!bi)
throw ConfigException(Module::name + ": no bot named " + hsnick);
HostServ = bi;
}
void OnUserLogin(User *u) anope_override
{
if (!IRCD->CanSetVHost)
return;
const NickAlias *na = NickAlias::Find(u->nick);
if (!na || na->nc != u->Account() || !na->HasVhost())
na = NickAlias::Find(u->Account()->display);
if (!na || !na->HasVhost())
return;
if (u->vhost.empty() || !u->vhost.equals_cs(na->GetVhostHost()) || (!na->GetVhostIdent().empty() && !u->GetVIdent().equals_cs(na->GetVhostIdent())))
{
IRCD->SendVhost(u, na->GetVhostIdent(), na->GetVhostHost());
u->vhost = na->GetVhostHost();
u->UpdateHost();
if (IRCD->CanSetVIdent && !na->GetVhostIdent().empty())
u->SetVIdent(na->GetVhostIdent());
if (HostServ)
{
if (!na->GetVhostIdent().empty())
u->SendMessage(HostServ, _("Your vhost of \002%s\002@\002%s\002 is now activated."), na->GetVhostIdent().c_str(), na->GetVhostHost().c_str());
else
u->SendMessage(HostServ, _("Your vhost of \002%s\002 is now activated."), na->GetVhostHost().c_str());
}
}
}
void OnNickUpdate(User *u) anope_override
{
this->OnUserLogin(u);
}
EventReturn OnPreHelp(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override
{
if (!params.empty() || source.c || source.service != *HostServ)
return EVENT_CONTINUE;
source.Reply(_("%s commands:"), HostServ->nick.c_str());
return EVENT_CONTINUE;
}
void OnSetVhost(NickAlias *na) anope_override
{
if (Config->GetModule(this)->Get<bool>("activate_on_set"))
{
User *u = User::Find(na->nick);
if (u && u->Account() == na->nc)
{
IRCD->SendVhost(u, na->GetVhostIdent(), na->GetVhostHost());
u->vhost = na->GetVhostHost();
u->UpdateHost();
if (IRCD->CanSetVIdent && !na->GetVhostIdent().empty())
u->SetVIdent(na->GetVhostIdent());
if (HostServ)
{
if (!na->GetVhostIdent().empty())
u->SendMessage(HostServ, _("Your vhost of \002%s\002@\002%s\002 is now activated."), na->GetVhostIdent().c_str(), na->GetVhostHost().c_str());
else
u->SendMessage(HostServ, _("Your vhost of \002%s\002 is now activated."), na->GetVhostHost().c_str());
}
}
}
}
void OnDeleteVhost(NickAlias *na) anope_override
{
if (Config->GetModule(this)->Get<bool>("activate_on_set"))
{
User *u = User::Find(na->nick);
if (u && u->Account() == na->nc)
IRCD->SendVhostDel(u);
}
}
};
MODULE_INIT(HostServCore)
| [
"Adam@anope.org"
] | Adam@anope.org |
ce51a481fc056f01a0e9e700461835e0661c4185 | cf8ddfc720bf6451c4ef4fa01684327431db1919 | /SDK/ARKSurvivalEvolved_ProjArrow_CupidArrow_Tranq_functions.cpp | a366aa6a61ba26df3fab62f5dd0dee0362e92317 | [
"MIT"
] | permissive | git-Charlie/ARK-SDK | 75337684b11e7b9f668da1f15e8054052a3b600f | c38ca9925309516b2093ad8c3a70ed9489e1d573 | refs/heads/master | 2023-06-20T06:30:33.550123 | 2021-07-11T13:41:45 | 2021-07-11T13:41:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,205 | cpp | // ARKSurvivalEvolved (329.9) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "ARKSurvivalEvolved_ProjArrow_CupidArrow_Tranq_parameters.hpp"
namespace sdk
{
//---------------------------------------------------------------------------
//Functions
//---------------------------------------------------------------------------
// Function ProjArrow_CupidArrow_Tranq.ProjArrow_CupidArrow_Tranq_C.OnExplode
// ()
// Parameters:
// struct FHitResult Result (Parm, OutParm, ReferenceParm)
void AProjArrow_CupidArrow_Tranq_C::OnExplode(struct FHitResult* Result)
{
static auto fn = UObject::FindObject<UFunction>("Function ProjArrow_CupidArrow_Tranq.ProjArrow_CupidArrow_Tranq_C.OnExplode");
AProjArrow_CupidArrow_Tranq_C_OnExplode_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
if (Result != nullptr)
*Result = params.Result;
}
// Function ProjArrow_CupidArrow_Tranq.ProjArrow_CupidArrow_Tranq_C.UserConstructionScript
// ()
void AProjArrow_CupidArrow_Tranq_C::UserConstructionScript()
{
static auto fn = UObject::FindObject<UFunction>("Function ProjArrow_CupidArrow_Tranq.ProjArrow_CupidArrow_Tranq_C.UserConstructionScript");
AProjArrow_CupidArrow_Tranq_C_UserConstructionScript_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function ProjArrow_CupidArrow_Tranq.ProjArrow_CupidArrow_Tranq_C.ExecuteUbergraph_ProjArrow_CupidArrow_Tranq
// ()
// Parameters:
// int EntryPoint (Parm, ZeroConstructor, IsPlainOldData)
void AProjArrow_CupidArrow_Tranq_C::ExecuteUbergraph_ProjArrow_CupidArrow_Tranq(int EntryPoint)
{
static auto fn = UObject::FindObject<UFunction>("Function ProjArrow_CupidArrow_Tranq.ProjArrow_CupidArrow_Tranq_C.ExecuteUbergraph_ProjArrow_CupidArrow_Tranq");
AProjArrow_CupidArrow_Tranq_C_ExecuteUbergraph_ProjArrow_CupidArrow_Tranq_Params params;
params.EntryPoint = EntryPoint;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"sergey.2bite@gmail.com"
] | sergey.2bite@gmail.com |
7be6f3cec47f480f7b1e790d3c29c836083cc779 | d73cf4af65fffc16c2326281fb7de3344566d6a1 | /TVMBRH/BRHMessage.h | e95b5161ac1cba92f3204425784676dff6299576 | [] | no_license | yongchaohu/WH_DEVICE | c3299ddd63ff15ca5ba3fa476cb90eee01ddb541 | 5212d3b15dfcf5a542c0936ebf0e72ed66b85d05 | refs/heads/master | 2020-05-27T20:38:35.562316 | 2019-06-24T03:02:29 | 2019-06-24T03:02:29 | 188,782,571 | 0 | 0 | null | 2019-05-27T06:18:48 | 2019-05-27T06:18:48 | null | GB18030 | C++ | false | false | 8,076 | h | #pragma once
#include "BRHExp.h"
#include "BRHDef.h"
#include "Command.h"
#include "BNCApi.h"
void BRH_API BRH_SetStopAcceptFlag(bool flag);
void BRH_API BRH_SetAcceptFlag(bool flag);
//////////////////////////纸币循环设备命令////////////////////////////////////////////////////////////
/**
@brief BRH打开命令
*/
class BRH_API CBRHOpen : public CCommand
{
public:
CBRHOpen(int port, int BaudRate, CString logPath, CString logName);
~CBRHOpen(void);
long ExecuteCommand();
long IsValidCommand();
private:
int m_port;
int m_BaudRate;
CString m_logPath;
CString m_logName;
};
/**
@brief BRH关闭命令
*/
class BRH_API CBRHClose : public CCommand
{
public:
CBRHClose();
~CBRHClose(void);
long IsValidCommand();
long ExecuteCommand();
};
/**
@brief BRH复位命令
*/
class BRH_API CBRHReset : public CCommand
{
public:
CBRHReset(int iMode, int iRetryTimes, tBncInitNumInfo* pNumInfo,tBncDevReturn* p_psStatus);
~CBRHReset(void);
long ExecuteCommand();
long IsValidCommand();
private:
int m_iMode;
int m_iRetryTimes;
tBncInitNumInfo m_pNumInfo;
tBncDevReturn m_psStatus;
};
/**
@brief BRH重启命令
*/
class BRH_API CBRHReboot : public CCommand
{
public:
CBRHReboot();
~CBRHReboot(void);
long ExecuteCommand();
long IsValidCommand();
};
/**
@brief BRH获取状态命令
*/
class BRH_API CBRHGetStatus : public CCommand
{
public:
CBRHGetStatus();
~CBRHGetStatus(void);
long ExecuteCommand();
long IsValidCommand();
void GetBRHResponse(tBncDevReturn* status);
private:
tBncDevReturn m_status;
};
/**
@brief BRH获取详细状态命令
*/
class BRH_API CBRHGetSystemStatus : public CCommand
{
public:
CBRHGetSystemStatus();
~CBRHGetSystemStatus(void);
long ExecuteCommand();
long IsValidCommand();
void GetBRHResponse(tBncSysDevStatus* status);
private:
tBncSysDevStatus m_status;
};
/**
@brief BRH取消操作命令
*/
class BRH_API CBRHCancel : public CCommand
{
public:
CBRHCancel();
~CBRHCancel(void);
long ExecuteCommand();
long IsValidCommand();
};
/**
@brief BRH清空循环找零箱或补币箱命令
*/
class BRH_API CBRHEmpty : public CCommand
{
public:
CBRHEmpty(char* pcuName, BOOL toFloat);
~CBRHEmpty(void);
long ExecuteCommand();
long IsValidCommand();
void GetResponse(tBncChangeNum* result);
private:
char m_pcuName[256];
BOOL m_toFloat;
tBncChangeNum m_result;
};
/**
@brief BRH清空暂存中的钞票到循环找零箱或钱箱命令
*/
class BRH_API CBRHReject : public CCommand
{
public:
CBRHReject();
~CBRHReject(void);
long ExecuteCommand();
long IsValidCommand();
void GetBRHResponse(UINT32* amount);
private:
UINT32 m_amount;
};
/**
@brief BRH自检
*/
class BRH_API CBRHSelfTest : public CCommand
{
public:
CBRHSelfTest();
~CBRHSelfTest(void);
long ExecuteCommand();
long IsValidCommand();
};
/**
@brief BRH预备所有模块,使可卸下
*/
class BRH_API CBRHPark : public CCommand
{
public:
CBRHPark();
~CBRHPark(void);
long ExecuteCommand();
long IsValidCommand();
};
/**
@brief BRH取消等待用户取走钞票
*/
class BRH_API CBRHCancelWaitingCashTaken : public CCommand
{
public:
CBRHCancelWaitingCashTaken();
~CBRHCancelWaitingCashTaken(void);
long ExecuteCommand();
long IsValidCommand();
};
/**
@brief BRH开始接收钞票
*/
class BRH_API CBRHCashInStart : public CCommand
{
public:
CBRHCashInStart();
~CBRHCashInStart(void);
long ExecuteCommand();
long IsValidCommand();
private:
tBncDevReturn m_psStatus;
};
/**
@brief BRH接受钞票,移动到暂存
*/
class BRH_API CBRHCashIn : public CCommand
{
public:
CBRHCashIn();
~CBRHCashIn(void);
long ExecuteCommand();
long IsValidCommand();
void GetBRHResponse(tBncCashInfo *p_psCashInfo,tBncDevReturn *p_psStatus);
private:
tBncCashInfo m_CashInfo;
tBncDevReturn m_Return;
};
/**
@brief BRH退出本次接受的所有钞票
*/
class BRH_API CBRHCashInRollback : public CCommand
{
public:
CBRHCashInRollback();
~CBRHCashInRollback(void);
long ExecuteCommand();
long IsValidCommand();
void GetBRHResponse(UINT32* amount);
private:
UINT32 m_amount;
};
/**
@brief BRH结束接受钞票
*/
class BRH_API CBRHCashInEnd : public CCommand
{
public:
CBRHCashInEnd();
~CBRHCashInEnd(void);
long ExecuteCommand();
long IsValidCommand();
void GetBRHResponse(tBncEnCashInfo* intoInfo);
private:
UINT32 m_amount;
tBncEnCashInfo m_cashIntoInfo;
};
/**
@brief BRH退钞(用于钞票未识别)
*/
class BRH_API CBRHEject : public CCommand
{
public:
CBRHEject();
~CBRHEject(void);
long ExecuteCommand();
long IsValidCommand();
void GetBRHResponse(UINT32* amount);
private:
UINT32 m_amount;
};
/**
@brief BRH找零请求
*/
class BRH_API CBRHDispenseRequest : public CCommand
{
public:
CBRHDispenseRequest(tBncChangeNum *pChangeNum, tBncDevReturn *pDevStatus);
~CBRHDispenseRequest(void);
long ExecuteCommand();
long IsValidCommand();
void GetResponse(CHANGE_RESULT* result);
private:
tBncChangeNum m_pChangeNum;
tBncDevReturn m_pDevStatus;
CHANGE_RESULT m_changeResult;
};
/**
@brief BRH回收找零的钞票
*/
class BRH_API CBRHRetract : public CCommand
{
public:
CBRHRetract();
~CBRHRetract(void);
long ExecuteCommand();
long IsValidCommand();
void GetBRHResponse(UINT32* amount);
private:
UINT32 m_amount;
};
/**
@brief BRH获取现金单元信息
*/
class BRH_API CBRHQueryCashUnit : public CCommand
{
public:
CBRHQueryCashUnit();
~CBRHQueryCashUnit(void);
long ExecuteCommand();
long IsValidCommand();
void GetBRHResponse(tBncBillBoxInfo* queryCashUnit);
private:
tBncBillBoxInfo m_QueryCashUnit;
};
/**
@brief BRH更新现金单元
*/
class BRH_API CBRHUpdateCashUnit : public CCommand
{
public:
CBRHUpdateCashUnit(UINT uiSlotID,tBncBillBoxInfo *pBillBoxInfo);
~CBRHUpdateCashUnit(void);
long ExecuteCommand();
long IsValidCommand();
private:
UINT m_uiSlotID;
tBncBillBoxInfo* m_pBillBoxInfo;
};
/**
@brief BRH获取面值
*/
class BRH_API CBRHQueryDenominations : public CCommand
{
public:
CBRHQueryDenominations(tBncSetInhibitList *p_psBuyTicketSetInhibitList, tBncSetInhibitList *p_psRechargeSetInhibitList);
~CBRHQueryDenominations(void);
long ExecuteCommand();
long IsValidCommand();
void GetBRHResponse(tBncSetInhibitList *BuyTicketSetInhibitList,
tBncSetInhibitList *RechargeSetInhibitList,
tBncDevReturn * Status);
private:
//BRH_RSP_QUERY_DENOMINATIONS m_QueryDenominations;
tBncSetInhibitList *m_psBuyTicketSetInhibitList;
tBncSetInhibitList *m_psRechargeSetInhibitList;
tBncDevReturn * m_psStatus;
};
/**
@brief BRH更新面值
*/
class BRH_API CBRHUpdateDenominations : public CCommand
{
public:
CBRHUpdateDenominations(tBncSetInhibitList *p_psBuyTicketSetInhibitList, tBncSetInhibitList *p_psRechargeSetInhibitList);
~CBRHUpdateDenominations(void);
long ExecuteCommand();
long IsValidCommand();
private:
tBncSetInhibitList m_psBuyTicketSetInhibitList;
tBncSetInhibitList *m_psRechargeSetInhibitList;
};
/**
@brief 组合命令——等待投入识别(V1+ST)
*/
class BRH_API CBRHOpenAndValidate : public CCommand
{
public:
CBRHOpenAndValidate();
CBRHOpenAndValidate(tBncSetInhibitList& brhTable,long lTranType = 0);//lTranType:0 售票 非0:充值
~CBRHOpenAndValidate();
public:
long ExecuteCommand();
long GetResponse(BRH_STATUS*);
long GetResponse(tBncCashInfo*);
public:
DWORD done_phase; // 执行结果
private:
long OpenAndValidateFunction();
long GetFace();
bool IsAcceptFaceValue(BankNoteAndCoinType_t& thisFaceValue);
BRH_STATUS m_bhStatus;
tBncCashInfo m_feedback;
tBncSetInhibitList m_BuyTicketSetInhibitList;
tBncSetInhibitList m_RechargeSetInhibitList;
tBncDevReturn m_return;
};
/*
@brief 设置箱子面额配置信息
*/
class BRH_API CBRHSetCashType : public CCommand
{
public:
CBRHSetCashType(BNR_MODULE_ID boxId,UINT faceValue);
~CBRHSetCashType();
public:
long ExecuteCommand();
private:
BNR_MODULE_ID m_boxId;
UINT m_cashTypeInfo;
};
class BRH_API CBRHEncash : public CCommand
{
public:
CBRHEncash();
~CBRHEncash();
public:
long ExecuteCommand();
private:
};
| [
"1017943468@qq.com"
] | 1017943468@qq.com |
5b1c42332fed3bc1941643426cbd520c86a2913d | b7f3edb5b7c62174bed808079c3b21fb9ea51d52 | /ios/chrome/browser/signin/about_signin_internals_factory.h | 5ef6c61ecd99de37dd7e36a7de686958c712e81b | [
"BSD-3-Clause"
] | permissive | otcshare/chromium-src | 26a7372773b53b236784c51677c566dc0ad839e4 | 64bee65c921db7e78e25d08f1e98da2668b57be5 | refs/heads/webml | 2023-03-21T03:20:15.377034 | 2020-11-16T01:40:14 | 2020-11-16T01:40:14 | 209,262,645 | 18 | 21 | BSD-3-Clause | 2023-03-23T06:20:07 | 2019-09-18T08:52:07 | null | UTF-8 | C++ | false | false | 1,591 | h | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IOS_CHROME_BROWSER_SIGNIN_ABOUT_SIGNIN_INTERNALS_FACTORY_H_
#define IOS_CHROME_BROWSER_SIGNIN_ABOUT_SIGNIN_INTERNALS_FACTORY_H_
#include <memory>
#include "base/macros.h"
#include "base/no_destructor.h"
#include "components/keyed_service/ios/browser_state_keyed_service_factory.h"
class AboutSigninInternals;
class ChromeBrowserState;
namespace ios {
// Singleton that owns all AboutSigninInternals and associates them with browser
// states.
class AboutSigninInternalsFactory : public BrowserStateKeyedServiceFactory {
public:
// Returns the instance of AboutSigninInternals associated with this browser
// state, creating one if none exists.
static AboutSigninInternals* GetForBrowserState(
ChromeBrowserState* browser_state);
// Returns an instance of the AboutSigninInternalsFactory singleton.
static AboutSigninInternalsFactory* GetInstance();
private:
friend class base::NoDestructor<AboutSigninInternalsFactory>;
AboutSigninInternalsFactory();
~AboutSigninInternalsFactory() override;
// BrowserStateKeyedServiceFactory:
std::unique_ptr<KeyedService> BuildServiceInstanceFor(
web::BrowserState* context) const override;
void RegisterBrowserStatePrefs(
user_prefs::PrefRegistrySyncable* registry) override;
DISALLOW_COPY_AND_ASSIGN(AboutSigninInternalsFactory);
};
} // namespace ios
#endif // IOS_CHROME_BROWSER_SIGNIN_ABOUT_SIGNIN_INTERNALS_FACTORY_H_
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
6cedcef23b5c24a33f39a6d6c972660e54bf40fb | b6e474cb91f070e4931c0d3dbf1f6b68c8375eb4 | /s1/ejemplo09.cpp | 30f74b11a147cae2b9f10e18ba12ada435addd8a | [
"MIT"
] | permissive | dcabezas98/SCD | 717c71a656c8dfb64e3c423b3a6392be9b2e96f8 | 1f1e88d9f1256c585368cb3a1d2481d8f67d80f5 | refs/heads/master | 2020-03-29T15:31:03.184296 | 2018-12-20T18:59:42 | 2018-12-20T18:59:42 | 150,066,896 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,045 | cpp | // -----------------------------------------------------------------------------
// Sistemas concurrentes y Distribuidos.
// Seminario 1. Programación Multihebra y Semáforos.
//
// Ejemplo 9 (ejemplo9.cpp)
// Calculo concurrente de una integral. Plantilla para completar.
//
// Historial:
// Creado en Abril de 2017
// -----------------------------------------------------------------------------
// David Cabezas Berrido
#include <iostream>
#include <iomanip>
#include <chrono> // incluye now, time\_point, duration
#include <future>
#include <vector>
#include <cmath>
using namespace std ;
using namespace std::chrono;
const long m = 10*1024l*1024l, //intervalos
n = 8; //nthreads
// -----------------------------------------------------------------------------
// evalua la función $f$ a integrar ($f(x)=4/(1+x^2)$)
double f( double x )
{
return 4.0/(1.0+x*x) ;
}
// -----------------------------------------------------------------------------
// calcula la integral de forma secuencial, devuelve resultado:
double calcular_integral_secuencial( )
{
double suma = 0.0 ; // inicializar suma
for( long i = 0 ; i < m ; i++ ) // para cada $i$ entre $0$ y $m-1$:
suma += f( (i+double(0.5)) /m ); // $~$ añadir $f(x_i)$ a la suma actual
return suma/m ; // devolver valor promedio de $f$
}
// -----------------------------------------------------------------------------
// función que ejecuta cada hebra: recibe $i$ ==índice de la hebra, ($0\leq i<n$)
double funcion_hebra_contigua( long i ) //Asignación contigua
{
long chunk = ceil(m/n);
long top = (i+1)*chunk;
if(i == n-1) top = m;
double suma = 0.0;
for(long j = i*chunk; j < top; j++)
suma += f( (j+double(0.5))/m );
return suma;
}
double funcion_hebra_entrelazada( long i ) //Asignación entrelazada
{
double suma = 0.0;
for(long j = i; j < m; j+=n)
suma += f( (j+double(0.5))/m );
return suma;
}
// -----------------------------------------------------------------------------
// calculo de la integral de forma concurrente con asignación de hebras contigua
double calcular_integral_concurrente_contigua( )
{
future<double> futuros[n];
for(int i = 0; i < n; i++)
futuros[i] = async(launch::async, funcion_hebra_contigua,i);
double suma = 0.0;
for(int i = 0; i < n; i++)
suma += futuros[i].get();
return suma/m;
}
// calculo de la integral de forma concurrente con asignación de hebras entrelazada
double calcular_integral_concurrente_entrelazada( )
{
future<double> futuros[n];
for(int i = 0; i < n; i++)
futuros[i] = async(launch::async, funcion_hebra_entrelazada,i);
double suma = 0.0;
for(int i = 0; i < n; i++)
suma += futuros[i].get();
return suma/m;
}
// -----------------------------------------------------------------------------
int main()
{
time_point<steady_clock> inicio_sec = steady_clock::now() ;
const double result_sec = calcular_integral_secuencial( );
time_point<steady_clock> fin_sec = steady_clock::now() ;
time_point<steady_clock> inicio_conc_cont = steady_clock::now() ;
const double result_conc_cont = calcular_integral_concurrente_contigua( );
time_point<steady_clock> fin_conc_cont = steady_clock::now() ;
time_point<steady_clock> inicio_conc_entr = steady_clock::now() ;
const double result_conc_entr = calcular_integral_concurrente_entrelazada( );
time_point<steady_clock> fin_conc_entr = steady_clock::now() ;
duration<float,milli> tiempo_sec = fin_sec - inicio_sec ,
tiempo_conc_cont = fin_conc_cont - inicio_conc_cont ,
tiempo_conc_entr = fin_conc_entr - inicio_conc_entr;
const float porc_cont = 100.0*tiempo_conc_cont.count()/tiempo_sec.count(),
porc_entr = 100.0*tiempo_conc_entr.count()/tiempo_sec.count();
constexpr double pi = 3.14159265358979323846l ;
cout << "Número de muestras (m) : " << m << endl
<< "Número de hebras (n) : " << n << endl
<< setprecision(18)
<< "Valor de PI : " << pi << endl
<< "Resultado secuencial : " << result_sec << endl
<< "Resultado concurrente (asignación contigua) : " << result_conc_cont << endl
<< "Resultado concurrente (asignación entrelazada) : " << result_conc_entr << endl
<< setprecision(5)
<< "Tiempo secuencial : " << tiempo_sec.count() << " milisegundos. " << endl
<< "Tiempo concurrente (asignación contigua) : " << tiempo_conc_cont.count() << " milisegundos. " << endl
<< "Tiempo concurrente (asignación entrelazada) : " << tiempo_conc_entr.count() << " milisegundos. " << endl
<< setprecision(4)
<< "Porcentaje t.conc_cont/t.sec. : " << porc_cont << "%" << endl
<< "Porcentaje t.conc_entr/t.sec. : " << porc_entr << "%" << endl;
}
| [
"dxabezas@gmail.com"
] | dxabezas@gmail.com |
5f371db6a1eef92e1e7aa291833de3f607585b0a | 184bcf7925e6718b3021946581576f8cae80526b | /CF/zDiv2/994/F.cpp | 3618a69219cd663ad4f5fc1a8a1d8128ef3abae5 | [] | no_license | iPhreetom/ACM | a99be74de61df37c427ffb685b375febad74ed9a | f3e639172be326846fe1f70437dcf98c90241aa0 | refs/heads/master | 2021-06-14T08:11:24.003465 | 2019-09-13T22:54:34 | 2019-09-13T22:54:34 | 142,748,718 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,074 | cpp | // 使用auto i = chrono::system_clock::now()
// 使用 chrono::duration<double> diff = i-h;
// 使用 diff.count()*1000
//
//
// ceil() 向上取整(天花板)
// round() 四舍五入
// floor() 向下取整(地板)
/*—————————————————————— 标志:开始进入DIV后两题阶段 ————————————————*/
// 01分数规划
// dp 与 二分答案
// https://www.cnblogs.com/Hallmeow/p/7750483.html 01分数规划
// http://www.cnblogs.com/perseawe/archive/2012/05/03/01fsgh.html 01分数规划
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int n;
struct info{
double cost;
double proce;
double v;
// double percost;
// bool c=0;
};
info a[55];
double arr[55];
double ans = 1e18;
int main(){
srand(time(0));
ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
cin>>n;
for(int i=0;i<n;i++)cin>>a[i].cost;
for(int i=0;i<n;i++)cin>>a[i].proce;
ll l=1,r=1e13;
while(l+1 < r){
ll mid = l + (r-l)/2;
// check f(l) < 0
// if(check(mid))
}
return 0;
}
| [
"iphreetom@gmail.com"
] | iphreetom@gmail.com |
b7ea34259c22859ddc3aa5dbd860867bc4baad4f | 3ca207f95cda71458fef03b4b0466279b67e3abf | /main.cpp | cbeb021465ce68b4273ebcd34a20af1a8fe2173f | [
"MIT"
] | permissive | DonnieDonowitz/Extrusion | d9d6ec9544ece1af14ffb6f712fde278df6397b6 | 895cff91531f5d596f0b4434fbd2cc8be87b282c | refs/heads/main | 2023-04-01T16:51:19.849888 | 2021-04-14T10:33:54 | 2021-04-14T10:33:54 | 357,866,037 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 11,097 | cpp | #include <osg/Geode>
#include <osg/Array>
#include <osg/Geometry>
#include <osgUtil/Tessellator>
#include <osgViewer/Viewer>
/*
Function createUpperFace
@param vertices : Array di Vec3 contenenti le coordinate dei vertici esterni della figura;
@param holes : Lista di Array di Vec3 contenenti le coordinate dei vertici dei fori;
@param color : Array di Vec4 contenenti il/i colore/i del solido;
@param extrusiondirection : Vec3 contenente la direzione di estrusione.
*/
osg::Geometry* createUpperFace(osg::Vec3Array* vertices, std::list<osg::Vec3Array*> holes, osg::Vec4Array* color, osg::Vec3 extrusiondirection)
{
int off;
osg::Vec3Array* v = new osg::Vec3Array; //Array di Vec3 contenente tutti i vertici di fori e perimetro esterno;
osg::Vec3Array* norms = new osg::Vec3Array; //Array di Vec3 contenente la normale alla superficie;
v->insert(v->begin(), vertices->begin(), vertices->end());
osg::Vec3 n = (v->at(1) - v->at(0)) ^ (v->at(2) - v->at(1));
n.normalize();
norms->push_back(n);
off = vertices->size();
for (osg::Vec3Array* h : holes)
{
v->insert(v->begin() + off, h->begin(), h->end());
off += h->size();
}
osgUtil::Tessellator t;
t.setWindingType(osgUtil::Tessellator::TESS_WINDING_ODD);
t.setTessellationType(osgUtil::Tessellator::TESS_TYPE_GEOMETRY);
osg::Geometry* face = new osg::Geometry;
face->setColorArray(color, osg::Array::BIND_OVERALL);
face->setVertexArray(v);
face->setNormalArray(norms, osg::Array::BIND_OVERALL);
face->addPrimitiveSet(new osg::DrawArrays(GL_POLYGON, 0, vertices->size()));
off = vertices->size();
for (osg::Vec3Array* h : holes)
{
face->addPrimitiveSet(new osg::DrawArrays(GL_POLYGON, off, h->size()));
off += h->size();
}
t.retessellatePolygons(*face); //Tessellamento della superficie;
return face;
}
/*
Function createLowerFace
@param upperFace : Geometry contenente la faccia superiore del solido tessellata;
@param offset : Vettore di estrusione;
*/
osg::Geometry* createLowerFace(osg::Geometry* upperFace, osg::Vec3 offset)
{
osg::Geometry* lowerFace = dynamic_cast<osg::Geometry*> (upperFace->clone(osg::CopyOp::DEEP_COPY_ALL));
osg::Vec3Array* v = (osg::Vec3Array*) lowerFace->getVertexArray();
for (int i = 0; i < v->size(); ++i)
{
v->at(i) += offset;
}
osg::Vec3Array* norm = new osg::Vec3Array;
osg::Vec3 n = ((v->at(1)) - (v->at(0))) ^ ((v->at(2)) - (v->at(1)));
n.normalize();
norm->push_back(- n);
lowerFace->setNormalArray(norm, osg::Array::BIND_OVERALL);
return lowerFace;
}
/*
Function createWalls
@param vertices : Array di Vec3 contenenti le coordinate dei vertici esterni della figura;
@param holes : Lista di Array di Vec3 contenenti le coordinate dei vertici dei fori;
@param color : Array di Vec4 contenenti il/i colore/i del solido;
@param extrusiondirection : Vec3 contenente la direzione di estrusione;
@param magnitude : Magnitudo di estrusione.
*/
osg::Geometry* createWalls(osg::Vec3Array* vertices, std::list<osg::Vec3Array*> holes, osg::Vec4Array* color, osg::Vec3 extrusiondirection, double magnitude)
{
int off;
int numholes = holes.size();
int numvertices = vertices->size();
int numvertexholes = 0;
osg::Vec3Array* v = new osg::Vec3Array; //Array di Vec3 contenente tutti i vertici di fori e perimetro esterno;
osg::Vec3Array* norms = new osg::Vec3Array; //Array di Vec3 contenente le normali alle superfici;
osg::Vec3 offset = extrusiondirection * magnitude; //Offset di estrusione;
osg::Geometry* walls = new osg::Geometry;
v->insert(v->begin(), vertices->begin(), vertices->end());
for (osg::Vec3Array::iterator itr = vertices->begin(); itr != vertices->end(); ++itr)
{
v->push_back((*itr) + offset);
}
off = 2 * numvertices;
for (osg::Vec3Array* h : holes)
{
v->insert(v->begin() + off, h->begin(), h->end());
for (osg::Vec3Array::iterator itr = h->begin(); itr != h->end(); ++itr)
{
numvertexholes++;
v->push_back((*itr) + offset);
}
off += 2 * h->size();
}
walls->setColorArray(color, osg::Array::BIND_OVERALL);
walls->setVertexArray(v);
std::vector<osg::DrawElementsUInt *> indices(numvertices);
for (int i = 0; i < numvertices; ++i)
{
indices[i] = new osg::DrawElementsUInt(GL_QUAD_STRIP);
indices[i]->push_back(i);
indices[i]->push_back(i + numvertices);
indices[i]->push_back((i + 1) % numvertices);
int last = (i + numvertices + 1) % (2 * numvertices);
if (last == 0)
{
indices[i]->push_back(last + numvertices);
}
else
{
indices[i]->push_back(last);
}
osg::Vec3 n = (v->at(indices[i]->at(1)) - v->at(indices[i]->at(0))) ^ (v->at(indices[i]->at(2)) - v->at(indices[i]->at(1)));;
n.normalize();
norms->push_back(n);
walls->addPrimitiveSet(indices[i]);
}
std::vector<osg::DrawElementsUInt *> indicesholes(numvertexholes);
off = 2 * numvertices;
int j = 0;
for (osg::Vec3Array* h : holes)
{
int s = h->size();
for (int i = off; i < off + s; ++i)
{
indicesholes[j] = new osg::DrawElementsUInt(GL_QUAD_STRIP);
indicesholes[j]->push_back(i);
indicesholes[j]->push_back(i + s);
int l = (i + 1) % (off + s);
if (l == 0)
{
indicesholes[j]->push_back(l + off);
}
else
{
indicesholes[j]->push_back(l);
}
l = (i + s + 1) % (off + 2 * s);
if (l == 0)
{
indicesholes[j]->push_back(l + off + s);
}
else
{
indicesholes[j]->push_back(l);
}
osg::Vec3 n = (v->at(indicesholes[j]->at(1)) - v->at(indicesholes[j]->at(0))) ^ (v->at(indicesholes[j]->at(2)) - v->at(indicesholes[j]->at(1)));
n.normalize();
norms->push_back(n);
walls->addPrimitiveSet(indicesholes[j]);
j++;
}
off += 2 * s;
}
walls->setNormalArray(norms, osg::Array::BIND_PER_PRIMITIVE_SET);
return walls;
}
/*
Function createExtrusion
@param vertices : Array di Vec3 contenenti le coordinate dei vertici esterni della figura;
@param holes : Lista di Array di Vec3 contenenti le coordinate dei vertici dei fori;
@param color : Array di Vec4 contenenti il/i colore/i del solido;
@param extrusiondirection : Vec3 contenente la direzione di estrusione;
@param magnitude : Magnitudo di estrusione.
*/
osg::Geode* createExtrusion(osg::Vec3Array* extborder, std::list<osg::Vec3Array*> holesborders, osg::Vec4Array* color, osg::Vec3 extrusiondirection, double magnitude)
{
osg::Geode* geo = new osg::Geode;
osg::Vec3 offset = extrusiondirection * magnitude;
osg::Geometry* upperFace = createUpperFace(extborder, holesborders, color, extrusiondirection);
osg::Geometry* lowerFace = createLowerFace(upperFace, offset);
geo->addDrawable(upperFace);
geo->addDrawable(lowerFace);
geo->addDrawable(createWalls(extborder, holesborders, color, extrusiondirection, magnitude));
return geo;
}
//Esempio di utilizzo
int main(int argc, char** argv)
{
osg::ref_ptr<osg::Group> root = new osg::Group;
std::list<osg::Vec3Array*> listHole;
osg::Vec3Array* vertices = new osg::Vec3Array;
vertices->push_back(osg::Vec3(-9.0f, 0.0, 5.0f));
vertices->push_back(osg::Vec3(-9.0f, 0.0, -4.0f));
vertices->push_back(osg::Vec3(-1.0f, 0.0, -4.0f));
vertices->push_back(osg::Vec3(-1.0f, 0.0, -2.0f));
vertices->push_back(osg::Vec3(-7.0f, 0.0, -2.0f));
vertices->push_back(osg::Vec3(-7.0f, 0.0, 5.0f));
osg::Vec3Array* hole = new osg::Vec3Array;
hole->push_back(osg::Vec3(-8.22f, 0.0, -2.87f));
hole->push_back(osg::Vec3(-6.94f, 0.0, -2.87f));
hole->push_back(osg::Vec3(-6.96f, 0.0, -3.53f));
hole->push_back(osg::Vec3(-8.48f, 0.0, -3.53f));
hole->push_back(osg::Vec3(-8.48f, 0.0, -2.01f));
osg::Vec3Array* hole2 = new osg::Vec3Array;
hole2->push_back(osg::Vec3(-3.94f, 0.0, -2.27f));
hole2->push_back(osg::Vec3(-3.8f, 0.0, -3.39f));
hole2->push_back(osg::Vec3(-2.9f, 0.0, -2.37f));
hole2->push_back(osg::Vec3(-1.42f, 0.0, -3.05f));
hole2->push_back(osg::Vec3(-3.46f, 0.0, -3.81f));
hole2->push_back(osg::Vec3(-6.2f, 0.0, -3.29f));
hole2->push_back(osg::Vec3(-5.54f, 0.0, -2.39f));
osg::Vec3Array* hole3 = new osg::Vec3Array;
hole3->push_back(osg::Vec3(-8.26f, 0.0, 3.43f));
hole3->push_back(osg::Vec3(-8.5f, 0.0, 4.63f));
hole3->push_back(osg::Vec3(-7.48f, 0.0, 4.55f));
osg::Vec3Array* hole4 = new osg::Vec3Array;
hole4->push_back(osg::Vec3(-7.36f, 0.0, 3.05f));
hole4->push_back(osg::Vec3(-8.2f, 0.0, 1.45f));
hole4->push_back(osg::Vec3(-8.52f, 0.0, 2.45f));
hole4->push_back(osg::Vec3(-7.76f, 0.0, 3.39f));
osg::Vec3Array* hole5 = new osg::Vec3Array;
hole5->push_back(osg::Vec3(-7.36f, 0.0, 0.47f));
hole5->push_back(osg::Vec3(-8.58f, 0.0, 0.43f));
hole5->push_back(osg::Vec3(-7.48f, 0.0, 1.77f));
osg::Vec3Array* hole6 = new osg::Vec3Array;
hole6->push_back(osg::Vec3(-7.32f, 0.0, -1.35f));
hole6->push_back(osg::Vec3(-8.44f, 0.0, -0.17f));
hole6->push_back(osg::Vec3(-7.34f, 0.0, -0.17f));
osg::Vec3Array* hole7 = new osg::Vec3Array;
hole7->push_back(osg::Vec3(-8.0f, 0.0, -1.37f));
hole7->push_back(osg::Vec3(-7.62f, 0.0, -1.55f));
hole7->push_back(osg::Vec3(-7.74f, 0.0, -2.33f));
hole7->push_back(osg::Vec3(-8.44f, 0.0, -1.37f));
hole7->push_back(osg::Vec3(-8.42f, 0.0, -0.83f));
listHole.push_back(hole);
listHole.push_back(hole2);
listHole.push_back(hole3);
listHole.push_back(hole4);
listHole.push_back(hole5);
listHole.push_back(hole6);
listHole.push_back(hole7);
osg::ref_ptr<osg::Vec4Array> colors = new osg::Vec4Array(1);
(*colors)[0].set(0.0856f, 0.5273f, 0.6523f, 1.0f);
osg::ref_ptr<osg::Geode> geode = createExtrusion(vertices, listHole, colors, osg::Vec3(0.0f, 1.0f, 0.0f), 15.0f);
root->addChild(geode.get());
osgViewer::Viewer viewer;
viewer.setSceneData(root.get());
return viewer.run();
}
| [
"angelomarinocarmollingo@gmail.com"
] | angelomarinocarmollingo@gmail.com |
2519f7120a37301d72616c35da17618f73d6351a | 312fc97722e3ff34be0416f5b047e3e616b6dba4 | /src/tbb/governor.cpp | 87b44a88535cf5bde7ab26dfd41aa269f6b7d9e1 | [
"Apache-2.0",
"LicenseRef-scancode-dco-1.1"
] | permissive | amamory-ampere/oneTBB | d3e6b143b334e2c35f2f98899ff6605d9ba42236 | eff0e4e94acdc4ed4fd9bb9c0061134023d3e6db | refs/heads/master | 2023-04-13T11:14:44.220695 | 2021-04-27T18:26:43 | 2021-04-27T18:26:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,633 | cpp | /*
Copyright (c) 2005-2021 Intel Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include "governor.h"
#include "main.h"
#include "thread_data.h"
#include "market.h"
#include "arena.h"
#include "dynamic_link.h"
#include "concurrent_monitor.h"
#include "oneapi/tbb/task_group.h"
#include "oneapi/tbb/global_control.h"
#include "oneapi/tbb/tbb_allocator.h"
#include "oneapi/tbb/info.h"
#include "task_dispatcher.h"
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <atomic>
#include <algorithm>
namespace tbb {
namespace detail {
namespace r1 {
void clear_address_waiter_table();
#if __TBB_SUPPORTS_WORKERS_WAITING_IN_TERMINATE
//! global_control.cpp contains definition
bool remove_and_check_if_empty(d1::global_control& gc);
bool is_present(d1::global_control& gc);
#endif // __TBB_SUPPORTS_WORKERS_WAITING_IN_TERMINATE
namespace rml {
tbb_server* make_private_server( tbb_client& client );
} // namespace rml
//------------------------------------------------------------------------
// governor
//------------------------------------------------------------------------
void governor::acquire_resources () {
#if __TBB_USE_POSIX
int status = theTLS.create(auto_terminate);
#else
int status = theTLS.create();
#endif
if( status )
handle_perror(status, "TBB failed to initialize task scheduler TLS\n");
detect_cpu_features(cpu_features);
is_rethrow_broken = gcc_rethrow_exception_broken();
}
void governor::release_resources () {
theRMLServerFactory.close();
destroy_process_mask();
__TBB_ASSERT(!(__TBB_InitOnce::initialization_done() && theTLS.get()), "TBB is unloaded while thread data still alive?");
int status = theTLS.destroy();
if( status )
runtime_warning("failed to destroy task scheduler TLS: %s", std::strerror(status));
clear_address_waiter_table();
dynamic_unlink_all();
}
rml::tbb_server* governor::create_rml_server ( rml::tbb_client& client ) {
rml::tbb_server* server = NULL;
if( !UsePrivateRML ) {
::rml::factory::status_type status = theRMLServerFactory.make_server( server, client );
if( status != ::rml::factory::st_success ) {
UsePrivateRML = true;
runtime_warning( "rml::tbb_factory::make_server failed with status %x, falling back on private rml", status );
}
}
if ( !server ) {
__TBB_ASSERT( UsePrivateRML, NULL );
server = rml::make_private_server( client );
}
__TBB_ASSERT( server, "Failed to create RML server" );
return server;
}
void governor::one_time_init() {
if ( !__TBB_InitOnce::initialization_done() ) {
DoOneTimeInitialization();
}
}
/*
There is no portable way to get stack base address in Posix, however the modern
Linux versions provide pthread_attr_np API that can be used to obtain thread's
stack size and base address. Unfortunately even this function does not provide
enough information for the main thread on IA-64 architecture (RSE spill area
and memory stack are allocated as two separate discontinuous chunks of memory),
and there is no portable way to discern the main and the secondary threads.
Thus for macOS* and IA-64 architecture for Linux* OS we use the TBB worker stack size for
all threads and use the current stack top as the stack base. This simplified
approach is based on the following assumptions:
1) If the default stack size is insufficient for the user app needs, the
required amount will be explicitly specified by the user at the point of the
TBB scheduler initialization (as an argument to tbb::task_scheduler_init
constructor).
2) When an external thread initializes the scheduler, it has enough space on its
stack. Here "enough" means "at least as much as worker threads have".
3) If the user app strives to conserve the memory by cutting stack size, it
should do this for TBB workers too (as in the #1).
*/
static std::uintptr_t get_stack_base(std::size_t stack_size) {
// Stacks are growing top-down. Highest address is called "stack base",
// and the lowest is "stack limit".
#if USE_WINTHREAD
suppress_unused_warning(stack_size);
NT_TIB* pteb = (NT_TIB*)NtCurrentTeb();
__TBB_ASSERT(&pteb < pteb->StackBase && &pteb > pteb->StackLimit, "invalid stack info in TEB");
return pteb->StackBase;
#else /* USE_PTHREAD */
// There is no portable way to get stack base address in Posix, so we use
// non-portable method (on all modern Linux) or the simplified approach
// based on the common sense assumptions. The most important assumption
// is that the main thread's stack size is not less than that of other threads.
// Points to the lowest addressable byte of a stack.
void* stack_limit = nullptr;
#if __linux__ && !__bg__
size_t np_stack_size = 0;
pthread_attr_t np_attr_stack;
if (0 == pthread_getattr_np(pthread_self(), &np_attr_stack)) {
if (0 == pthread_attr_getstack(&np_attr_stack, &stack_limit, &np_stack_size)) {
__TBB_ASSERT( &stack_limit > stack_limit, "stack size must be positive" );
}
pthread_attr_destroy(&np_attr_stack);
}
#endif /* __linux__ */
std::uintptr_t stack_base{};
if (stack_limit) {
stack_base = reinterpret_cast<std::uintptr_t>(stack_limit) + stack_size;
} else {
// Use an anchor as a base stack address.
int anchor{};
stack_base = reinterpret_cast<std::uintptr_t>(&anchor);
}
return stack_base;
#endif /* USE_PTHREAD */
}
void governor::init_external_thread() {
one_time_init();
// Create new scheduler instance with arena
int num_slots = default_num_threads();
// TODO_REVAMP: support an external thread without an implicit arena
int num_reserved_slots = 1;
unsigned arena_priority_level = 1; // corresponds to tbb::task_arena::priority::normal
std::size_t stack_size = 0;
arena& a = *market::create_arena(num_slots, num_reserved_slots, arena_priority_level, stack_size);
// We need an internal reference to the market. TODO: is it legacy?
market::global_market(false);
// External thread always occupies the first slot
thread_data& td = *new(cache_aligned_allocate(sizeof(thread_data))) thread_data(0, false);
td.attach_arena(a, /*slot index*/ 0);
stack_size = a.my_market->worker_stack_size();
std::uintptr_t stack_base = get_stack_base(stack_size);
task_dispatcher& task_disp = td.my_arena_slot->default_task_dispatcher();
task_disp.set_stealing_threshold(calculate_stealing_threshold(stack_base, stack_size));
td.attach_task_dispatcher(task_disp);
td.my_arena_slot->occupy();
a.my_market->add_external_thread(td);
set_thread_data(td);
}
void governor::auto_terminate(void* tls) {
__TBB_ASSERT(get_thread_data_if_initialized() == nullptr ||
get_thread_data_if_initialized() == tls, NULL);
if (tls) {
thread_data* td = static_cast<thread_data*>(tls);
// Only external thread can be inside an arena during termination.
if (td->my_arena_slot) {
arena* a = td->my_arena;
market* m = a->my_market;
a->my_observers.notify_exit_observers(td->my_last_observer, td->my_is_worker);
td->my_task_dispatcher->m_stealing_threshold = 0;
td->detach_task_dispatcher();
td->my_arena_slot->release();
// Release an arena
a->on_thread_leaving<arena::ref_external>();
m->remove_external_thread(*td);
// If there was an associated arena, it added a public market reference
m->release( /*is_public*/ true, /*blocking_terminate*/ false);
}
td->~thread_data();
cache_aligned_deallocate(td);
clear_thread_data();
}
__TBB_ASSERT(get_thread_data_if_initialized() == nullptr, NULL);
}
void governor::initialize_rml_factory () {
::rml::factory::status_type res = theRMLServerFactory.open();
UsePrivateRML = res != ::rml::factory::st_success;
}
#if __TBB_SUPPORTS_WORKERS_WAITING_IN_TERMINATE
void __TBB_EXPORTED_FUNC get(d1::task_scheduler_handle& handle) {
handle.m_ctl = new(allocate_memory(sizeof(global_control))) global_control(global_control::scheduler_handle, 1);
}
void release_impl(d1::task_scheduler_handle& handle) {
if (handle.m_ctl != nullptr) {
handle.m_ctl->~global_control();
deallocate_memory(handle.m_ctl);
handle.m_ctl = nullptr;
}
}
bool finalize_impl(d1::task_scheduler_handle& handle) {
market::global_market_mutex_type::scoped_lock lock( market::theMarketMutex );
bool ok = true; // ok if theMarket does not exist yet
market* m = market::theMarket; // read the state of theMarket
if (m != nullptr) {
lock.release();
__TBB_ASSERT(is_present(*handle.m_ctl), "finalize or release was already called on this object");
thread_data* td = governor::get_thread_data_if_initialized();
if (td) {
task_dispatcher* task_disp = td->my_task_dispatcher;
__TBB_ASSERT(task_disp, nullptr);
if (task_disp->m_properties.outermost && !td->my_is_worker) { // is not inside a parallel region
governor::auto_terminate(td);
}
}
if (remove_and_check_if_empty(*handle.m_ctl)) {
ok = m->release(/*is_public*/ true, /*blocking_terminate*/ true);
} else {
ok = false;
}
}
return ok;
}
bool __TBB_EXPORTED_FUNC finalize(d1::task_scheduler_handle& handle, std::intptr_t mode) {
if (mode == d1::release_nothrowing) {
release_impl(handle);
return true;
} else {
bool ok = finalize_impl(handle);
// TODO: it is unsafe when finalize is called concurrently and further library unload
release_impl(handle);
if (mode == d1::finalize_throwing && !ok) {
throw_exception(exception_id::unsafe_wait);
}
return ok;
}
}
#endif // __TBB_SUPPORTS_WORKERS_WAITING_IN_TERMINATE
#if __TBB_ARENA_BINDING
#if __TBB_WEAK_SYMBOLS_PRESENT
#pragma weak __TBB_internal_initialize_system_topology
#pragma weak __TBB_internal_allocate_binding_handler
#pragma weak __TBB_internal_deallocate_binding_handler
#pragma weak __TBB_internal_apply_affinity
#pragma weak __TBB_internal_restore_affinity
#pragma weak __TBB_internal_get_default_concurrency
extern "C" {
void __TBB_internal_initialize_system_topology(
size_t groups_num,
int& numa_nodes_count, int*& numa_indexes_list,
int& core_types_count, int*& core_types_indexes_list
);
//TODO: consider renaming to `create_binding_handler` and `destroy_binding_handler`
binding_handler* __TBB_internal_allocate_binding_handler( int slot_num, int numa_id, int core_type_id, int max_threads_per_core );
void __TBB_internal_deallocate_binding_handler( binding_handler* handler_ptr );
void __TBB_internal_apply_affinity( binding_handler* handler_ptr, int slot_num );
void __TBB_internal_restore_affinity( binding_handler* handler_ptr, int slot_num );
int __TBB_internal_get_default_concurrency( int numa_id, int core_type_id, int max_threads_per_core );
}
#endif /* __TBB_WEAK_SYMBOLS_PRESENT */
// Stubs that will be used if TBBbind library is unavailable.
static binding_handler* dummy_allocate_binding_handler ( int, int, int, int ) { return nullptr; }
static void dummy_deallocate_binding_handler ( binding_handler* ) { }
static void dummy_apply_affinity ( binding_handler*, int ) { }
static void dummy_restore_affinity ( binding_handler*, int ) { }
static int dummy_get_default_concurrency( int, int, int ) { return governor::default_num_threads(); }
// Handlers for communication with TBBbind
static void (*initialize_system_topology_ptr)(
size_t groups_num,
int& numa_nodes_count, int*& numa_indexes_list,
int& core_types_count, int*& core_types_indexes_list
) = nullptr;
static binding_handler* (*allocate_binding_handler_ptr)( int slot_num, int numa_id, int core_type_id, int max_threads_per_core )
= dummy_allocate_binding_handler;
static void (*deallocate_binding_handler_ptr)( binding_handler* handler_ptr )
= dummy_deallocate_binding_handler;
static void (*apply_affinity_ptr)( binding_handler* handler_ptr, int slot_num )
= dummy_apply_affinity;
static void (*restore_affinity_ptr)( binding_handler* handler_ptr, int slot_num )
= dummy_restore_affinity;
int (*get_default_concurrency_ptr)( int numa_id, int core_type_id, int max_threads_per_core )
= dummy_get_default_concurrency;
#if _WIN32 || _WIN64 || __linux__
// Table describing how to link the handlers.
static const dynamic_link_descriptor TbbBindLinkTable[] = {
DLD(__TBB_internal_initialize_system_topology, initialize_system_topology_ptr),
DLD(__TBB_internal_allocate_binding_handler, allocate_binding_handler_ptr),
DLD(__TBB_internal_deallocate_binding_handler, deallocate_binding_handler_ptr),
DLD(__TBB_internal_apply_affinity, apply_affinity_ptr),
DLD(__TBB_internal_restore_affinity, restore_affinity_ptr),
DLD(__TBB_internal_get_default_concurrency, get_default_concurrency_ptr)
};
static const unsigned LinkTableSize = sizeof(TbbBindLinkTable) / sizeof(dynamic_link_descriptor);
#if TBB_USE_DEBUG
#define DEBUG_SUFFIX "_debug"
#else
#define DEBUG_SUFFIX
#endif /* TBB_USE_DEBUG */
#if _WIN32 || _WIN64
#define LIBRARY_EXTENSION ".dll"
#define LIBRARY_PREFIX
#elif __linux__
#define LIBRARY_EXTENSION __TBB_STRING(.so.3)
#define LIBRARY_PREFIX "lib"
#endif /* __linux__ */
#define TBBBIND_NAME LIBRARY_PREFIX "tbbbind" DEBUG_SUFFIX LIBRARY_EXTENSION
#define TBBBIND_2_0_NAME LIBRARY_PREFIX "tbbbind_2_0" DEBUG_SUFFIX LIBRARY_EXTENSION
#define TBBBIND_2_4_NAME LIBRARY_PREFIX "tbbbind_2_4" DEBUG_SUFFIX LIBRARY_EXTENSION
#endif /* _WIN32 || _WIN64 || __linux__ */
// Representation of system hardware topology information on the TBB side.
// System topology may be initialized by third-party component (e.g. hwloc)
// or just filled in with default stubs.
namespace system_topology {
constexpr int automatic = -1;
static std::atomic<do_once_state> initialization_state;
namespace {
int numa_nodes_count = 0;
int* numa_nodes_indexes = nullptr;
int core_types_count = 0;
int* core_types_indexes = nullptr;
const char* load_tbbbind_shared_object() {
#if _WIN32 || _WIN64 || __linux__
#if _WIN32 && !_WIN64
// For 32-bit Windows applications, process affinity masks can only support up to 32 logical CPUs.
SYSTEM_INFO si;
GetNativeSystemInfo(&si);
if (si.dwNumberOfProcessors > 32) return nullptr;
#endif /* _WIN32 && !_WIN64 */
for (const auto& tbbbind_version : {TBBBIND_2_4_NAME, TBBBIND_2_0_NAME, TBBBIND_NAME}) {
if (dynamic_link(tbbbind_version, TbbBindLinkTable, LinkTableSize)) {
return tbbbind_version;
}
}
#endif /* _WIN32 || _WIN64 || __linux__ */
return nullptr;
}
int processor_groups_num() {
#if _WIN32
return NumberOfProcessorGroups();
#else
// Stub to improve code readability by reducing number of the compile-time conditions
return 1;
#endif
}
} // internal namespace
// Tries to load TBBbind library API, if success, gets NUMA topology information from it,
// in another case, fills NUMA topology by stubs.
void initialization_impl() {
governor::one_time_init();
if (const char* tbbbind_name = load_tbbbind_shared_object()) {
initialize_system_topology_ptr(
processor_groups_num(),
numa_nodes_count, numa_nodes_indexes,
core_types_count, core_types_indexes
);
PrintExtraVersionInfo("TBBBIND", tbbbind_name);
return;
}
static int dummy_index = automatic;
numa_nodes_count = 1;
numa_nodes_indexes = &dummy_index;
core_types_count = 1;
core_types_indexes = &dummy_index;
PrintExtraVersionInfo("TBBBIND", "UNAVAILABLE");
}
void initialize() {
atomic_do_once(initialization_impl, initialization_state);
}
} // namespace system_topology
binding_handler* construct_binding_handler(int slot_num, int numa_id, int core_type_id, int max_threads_per_core) {
system_topology::initialize();
return allocate_binding_handler_ptr(slot_num, numa_id, core_type_id, max_threads_per_core);
}
void destroy_binding_handler(binding_handler* handler_ptr) {
__TBB_ASSERT(deallocate_binding_handler_ptr, "tbbbind loading was not performed");
deallocate_binding_handler_ptr(handler_ptr);
}
void apply_affinity_mask(binding_handler* handler_ptr, int slot_index) {
__TBB_ASSERT(slot_index >= 0, "Negative thread index");
__TBB_ASSERT(apply_affinity_ptr, "tbbbind loading was not performed");
apply_affinity_ptr(handler_ptr, slot_index);
}
void restore_affinity_mask(binding_handler* handler_ptr, int slot_index) {
__TBB_ASSERT(slot_index >= 0, "Negative thread index");
__TBB_ASSERT(restore_affinity_ptr, "tbbbind loading was not performed");
restore_affinity_ptr(handler_ptr, slot_index);
}
unsigned __TBB_EXPORTED_FUNC numa_node_count() {
system_topology::initialize();
return system_topology::numa_nodes_count;
}
void __TBB_EXPORTED_FUNC fill_numa_indices(int* index_array) {
system_topology::initialize();
std::memcpy(index_array, system_topology::numa_nodes_indexes, system_topology::numa_nodes_count * sizeof(int));
}
int __TBB_EXPORTED_FUNC numa_default_concurrency(int node_id) {
if (node_id >= 0) {
system_topology::initialize();
int result = get_default_concurrency_ptr(
node_id,
/*core_type*/system_topology::automatic,
/*threads_per_core*/system_topology::automatic
);
if (result > 0) return result;
}
return governor::default_num_threads();
}
unsigned __TBB_EXPORTED_FUNC core_type_count(intptr_t /*reserved*/) {
system_topology::initialize();
return system_topology::core_types_count;
}
void __TBB_EXPORTED_FUNC fill_core_type_indices(int* index_array, intptr_t /*reserved*/) {
system_topology::initialize();
std::memcpy(index_array, system_topology::core_types_indexes, system_topology::core_types_count * sizeof(int));
}
void constraints_assertion(d1::constraints c) {
bool is_topology_initialized = system_topology::initialization_state == do_once_state::initialized;
__TBB_ASSERT_RELEASE(c.max_threads_per_core == system_topology::automatic || c.max_threads_per_core > 0,
"Wrong max_threads_per_core constraints field value.");
auto numa_nodes_begin = system_topology::numa_nodes_indexes;
auto numa_nodes_end = system_topology::numa_nodes_indexes + system_topology::numa_nodes_count;
__TBB_ASSERT_RELEASE(
c.numa_id == system_topology::automatic ||
(is_topology_initialized && std::find(numa_nodes_begin, numa_nodes_end, c.numa_id) != numa_nodes_end),
"The constraints::numa_id value is not known to the library. Use tbb::info::numa_nodes() to get the list of possible values.");
int* core_types_begin = system_topology::core_types_indexes;
int* core_types_end = system_topology::core_types_indexes + system_topology::core_types_count;
__TBB_ASSERT_RELEASE(c.core_type == system_topology::automatic ||
(is_topology_initialized && std::find(core_types_begin, core_types_end, c.core_type) != core_types_end),
"The constraints::core_type value is not known to the library. Use tbb::info::core_types() to get the list of possible values.");
}
int __TBB_EXPORTED_FUNC constraints_default_concurrency(const d1::constraints& c, intptr_t /*reserved*/) {
constraints_assertion(c);
if (c.numa_id >= 0 || c.core_type >= 0 || c.max_threads_per_core > 0) {
system_topology::initialize();
return get_default_concurrency_ptr(c.numa_id, c.core_type, c.max_threads_per_core);
}
return governor::default_num_threads();
}
int __TBB_EXPORTED_FUNC constraints_threads_per_core(const d1::constraints&, intptr_t /*reserved*/) {
return system_topology::automatic;
}
#endif /* __TBB_ARENA_BINDING */
} // namespace r1
} // namespace detail
} // namespace tbb
| [
"inteltbbdevelopers@intel.com"
] | inteltbbdevelopers@intel.com |
54693cd6b418e2394cbde33158ba5c971dfc7156 | 887f3a72757ff8f691c1481618944b727d4d9ff5 | /third_party/gecko_1.8/linux/gecko_sdk/include/nsIDOMCustomEvent.h | e4ec01f9c07a839525394e4036626fad666e1ec5 | [] | no_license | zied-ellouze/gears | 329f754f7f9e9baa3afbbd652e7893a82b5013d1 | d3da1ed772ed5ae9b82f46f9ecafeb67070d6899 | refs/heads/master | 2020-04-05T08:27:05.806590 | 2015-09-03T13:07:39 | 2015-09-03T13:07:39 | 41,813,794 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,110 | h | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builds/moz-1-8-branch/mozilla/dom/public/idl/events/nsIDOMCustomEvent.idl
*/
#ifndef __gen_nsIDOMCustomEvent_h__
#define __gen_nsIDOMCustomEvent_h__
#ifndef __gen_nsIDOMEvent_h__
#include "nsIDOMEvent.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIDOMCustomEvent */
#define NS_IDOMCUSTOMEVENT_IID_STR "55c7af7b-1a64-40bf-87eb-2c2cbee0491b"
#define NS_IDOMCUSTOMEVENT_IID \
{0x55c7af7b, 0x1a64, 0x40bf, \
{ 0x87, 0xeb, 0x2c, 0x2c, 0xbe, 0xe0, 0x49, 0x1b }}
/**
* The nsIDOMEventTarget interface is the interface implemented by all
* event targets in the Document Object Model.
*
* For more information on this interface please see
* http://www.w3.org/TR/DOM-Level-3-Events/
*/
class NS_NO_VTABLE nsIDOMCustomEvent : public nsIDOMEvent {
public:
NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMCUSTOMEVENT_IID)
/* void setCurrentTarget (in nsIDOMNode target); */
NS_IMETHOD SetCurrentTarget(nsIDOMNode *target) = 0;
/* void setEventPhase (in unsigned short phase); */
NS_IMETHOD SetEventPhase(PRUint16 phase) = 0;
};
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMCUSTOMEVENT \
NS_IMETHOD SetCurrentTarget(nsIDOMNode *target); \
NS_IMETHOD SetEventPhase(PRUint16 phase);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMCUSTOMEVENT(_to) \
NS_IMETHOD SetCurrentTarget(nsIDOMNode *target) { return _to SetCurrentTarget(target); } \
NS_IMETHOD SetEventPhase(PRUint16 phase) { return _to SetEventPhase(phase); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMCUSTOMEVENT(_to) \
NS_IMETHOD SetCurrentTarget(nsIDOMNode *target) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCurrentTarget(target); } \
NS_IMETHOD SetEventPhase(PRUint16 phase) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetEventPhase(phase); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMCustomEvent : public nsIDOMCustomEvent
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMCUSTOMEVENT
nsDOMCustomEvent();
private:
~nsDOMCustomEvent();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMCustomEvent, nsIDOMCustomEvent)
nsDOMCustomEvent::nsDOMCustomEvent()
{
/* member initializers and constructor code */
}
nsDOMCustomEvent::~nsDOMCustomEvent()
{
/* destructor code */
}
/* void setCurrentTarget (in nsIDOMNode target); */
NS_IMETHODIMP nsDOMCustomEvent::SetCurrentTarget(nsIDOMNode *target)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setEventPhase (in unsigned short phase); */
NS_IMETHODIMP nsDOMCustomEvent::SetEventPhase(PRUint16 phase)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMCustomEvent_h__ */
| [
"gears.daemon@fe895e04-df30-0410-9975-d76d301b4276"
] | gears.daemon@fe895e04-df30-0410-9975-d76d301b4276 |
17edc1206ac9f9e016b8729618f4368f27fa6215 | 7ed28dffc9e1287cf504fdef5967a85fe9f564e7 | /weighted_graph/dijkstra/abc192_e.cpp | 52e3b8212409a9aeba54e834d6b1292e27ca10e9 | [
"MIT"
] | permissive | Takumi1122/data-structure-algorithm | 0d9cbb921315c94d559710181cdf8e3a1b8e62e5 | 6b9f26e4dbba981f034518a972ecfc698b86d837 | refs/heads/master | 2021-06-29T20:30:37.464338 | 2021-04-17T02:01:44 | 2021-04-17T02:01:44 | 227,387,243 | 0 | 0 | null | 2020-02-23T12:27:52 | 2019-12-11T14:37:49 | C++ | UTF-8 | C++ | false | false | 1,113 | cpp | #include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using P = pair<ll, int>;
/*
参考リンク
ABC 192 E - Train
https://atcoder.jp/contests/abc192/tasks/abc192_e
*/
struct Edge {
int to, t, k;
Edge(int to, int t, int k) : to(to), t(t), k(k) {}
};
const ll INF = 1e18;
int main() {
int n, m, x, y;
cin >> n >> m >> x >> y;
x--;
y--;
vector<vector<Edge>> g(n);
rep(i, m) {
int a, b, t, k;
cin >> a >> b >> t >> k;
--a;
--b;
g[a].emplace_back(b, t, k);
g[b].emplace_back(a, t, k);
}
vector<ll> dist(n, INF);
priority_queue<P, vector<P>, greater<P>> q;
auto push = [&](int v, ll x) {
if (dist[v] <= x) return;
dist[v] = x;
q.emplace(x, v);
};
push(x, 0);
while (!q.empty()) {
ll x = q.top().first;
int v = q.top().second;
q.pop();
if (dist[v] != x) continue;
for (auto e : g[v]) {
ll nx = (x + e.k - 1) / e.k * e.k + e.t;
push(e.to, nx);
}
}
ll ans = dist[y];
if (ans == INF) ans = -1;
cout << ans << endl;
return 0;
} | [
"takumi221b4869@gmail.com"
] | takumi221b4869@gmail.com |
bab6ded4b53fe62b7104703c001c430353ce59fe | 9134496e7db9ed0f132fe446d092cbeabde3d251 | /LabWork_1/LabWork_1.cpp | beb723bfc0ff89d0d9b44f3b48aaa8b2f45284b1 | [] | no_license | vitoss-ux/ITMO.Cpp | b692ded539a02d15d0e98bdad82d0816e2cf11fc | 62bd28dfcdb8236765afefec728acebbc0084133 | refs/heads/main | 2023-07-01T22:47:29.417651 | 2021-08-23T19:39:22 | 2021-08-23T19:39:22 | 385,296,225 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,372 | cpp | // LabWork_1.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
//
#include <iostream>
#include <Windows.h>
#include <string>
#include <math.h>
using namespace std;
int main()
{
// Упражнение 1:
SetConsoleOutputCP(1251);
SetConsoleCP(1251);
cout << "упражнение 1:";
std::cout << "hello world!\n";
string name;
cout << "what is your name?";
getline(cin, name);
cout << "hello," << name << "!\n";
// Упражнение 2:
cout << "упражнение 2:";
string name2;
cout << "введите свое имя: ";
double x;
double a, b;
cout << "\n введите a и b: \n";
cin >> a;
cin >> name2;
cin >> b;
cout.precision(3);
cout << sizeof(a / b) << ends << sizeof(x) << endl;
x = a / b;
cout << "\n x = " << x << endl;
cout << "привет," << name2 << "!\n";
return 0;
// Упражнение 3:
cout << "Упражнение 3.Расчет площади треугольника.:";
cout << "ВВедите значение периметра P: ";
double p, s;
cin >> p;
double k, j, i;
cout << "ВВедите длину сторон А, Б, В: ";
cin >> k;
cin >> j;
cin >> i;
s = sqrt(p * (p - k) * (p - j) * (p - i));
cout << "Площадь треугольника: " << s << endl;
return 0;
// Расчет площади многоугольника
cout << "Расчет площади многоугольника.";
int n, x1, x2, y1, y2, x, y;
double sum = 0;
cout << "Введите кол-во углов многоугольника: ";
cin >> n;
cout << "Введите координаты (x;y) вершины многоугольника: ";
cin >> x >> y;
x1 = x;
y1 = y;
for (int i = 0; i < (n - 1); i++)
{
cout << "Введите координаты (x;y) следующей вершины: ";
cin >> x2 >> y2;
sum += (x1 + x2) * (y2 - y1);
x1 = x2;
y1 = y2;
}
sum = sum + (x + x2) * (y - y2);
cout << "Площадь " << n << " - угольника = ";
cout << fixed << cout.precision(3) << abs(sum) / 2 << endl;
return 0;
} | [
"mvm90@yandex.ru"
] | mvm90@yandex.ru |
07ee3ab07d82e44af94183aca92e3635d6482f27 | 9883a0aa9ece501748aa5df098e88b415f38e373 | /LeetCode/2SumII.cpp | 5f5fb91fde2beda48557b2ed143b30a2c9019d5b | [] | no_license | yish0000/leetcode_exercise | 59460f9489a6526281f883a43b3381fc687dc01e | a84136a7cffc748de3b13b9c789ca2ebdd21fc96 | refs/heads/master | 2021-10-21T01:15:45.308716 | 2021-10-07T03:25:58 | 2021-10-07T03:25:58 | 174,494,106 | 0 | 0 | null | 2021-10-07T03:25:59 | 2019-03-08T08:00:45 | C++ | UTF-8 | C++ | false | false | 890 | cpp | #include "TestCase.h"
#include <unordered_map>
using namespace std;
class SolutionTwoSumII
{
public:
vector<int> twoSum(vector<int>& numbers, int target) {
vector<int> ret;
for (int i = 0; i < (int)numbers.size(); i++)
{
if (numbers[i] > target)
break;
int n = target - numbers[i];
int l = i + 1, r = (int)numbers.size() - 1;
while (l <= r)
{
int mid = l + (r - l) / 2;
if (numbers[mid] == n)
{
ret.push_back(i + 1);
ret.push_back(mid + 1);
return ret;
}
else if (numbers[mid] < n)
l = mid + 1;
else
r = mid - 1;
}
}
return ret;
}
};
RUN_TESTCASE(TwoSumII)
{
SolutionTwoSumII sln;
vector<int> arr1 = { 2,7,11,15 };
vector<int> ret1 = { 1,2 };
TESTCASE_ASSERT(sln.twoSum(arr1, 9) == ret1);
vector<int> arr2 = { 2,3,4 };
vector<int> ret2 = { 1,3 };
TESTCASE_ASSERT(sln.twoSum(arr2, 6) == ret2);
} | [
"yish0000@gmail.com"
] | yish0000@gmail.com |
5928a8d3d7c82d2f24b8912d2860bc3f8013c104 | 25cdf7502822f66a58306c171ee1e44b1e391c24 | /arduino/hardware/orocaboy2/orocaboy2/libraries/orocaboy2/examples/hamster/hamster.h | 63eace989858dff6e972bb2ce76d628a44ee9ec9 | [
"Apache-2.0"
] | permissive | objectbuild/oroca_boy2_games | 041f4ea4f00ed0868394359f1f330dffd229579c | 8507d0c83d88d908cfeb4134fc47fc3efa5b0279 | refs/heads/master | 2020-11-28T08:51:55.091119 | 2018-10-07T13:48:22 | 2018-10-07T13:48:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,506 | h | #ifndef _HAMSTER_H_
#define _HAMSTER_H_
#include <Arduino.h>
#define swap16(x) (((x)>>8)&0x00FF)|(((x)<<8)&0xFF00)
#define RET_RX_EMPTY 0
#define RET_RX_PACKET_SENSOR 1
#define RET_RX_PACKET_ROBOT 2
#define RX_PACKET_SENSOR_LENGTH 53
#define RX_PACKET_EFFECTOR_LENGTH 53
#define RX_PACKET_ROBOT_LENGTH 31
#define LED_OFF 0 //LED를 끈다.
#define LED_BLUE 1 //LED를 파란색으로 켠다. (R: 0, G: 0, B: 255)
#define LED_GREEN 2 //LED를 초록색으로 켠다. (R: 0, G: 255, B: 0)
#define LED_CYAN 3 //LED를 하늘색으로 켠다. (R: 0, G: 255, B: 255)
#define LED_RED 4 //LED를 빨간색으로 켠다. (R: 255, G: 0, B: 0)
#define LED_MAGENTA 5 //LED를 보라색으로 켠다. (R: 255, G: 0, B: 255)
#define LED_YELLOW 6 //LED를 노란색으로 켠다. (R: 255, G: 255, B: 0)
#define LED_WHITE 7
typedef union
{
struct
{
uint16_t light;
} flag_0;
struct
{
int8_t temp;
uint8_t battery;
} flag_1;
} flag_packet_t;
typedef struct
{
uint8_t version; // 0
uint8_t network_id; // 1
uint8_t command; // 2
int8_t strength; // 3
uint8_t left_proximity; // 4
uint8_t right_proximity; // 5
uint8_t left_floor; // 6
uint8_t right_floor; // 7
int16_t acceleration_x; // 8
int16_t acceleration_y; // 10
int16_t acceleration_z; // 12
uint8_t flag; // 14
uint8_t flag_data_a; // 15
uint8_t flag_data_b; // 15
uint8_t input_a; // 17
uint8_t input_b; // 19
uint8_t mac_address[6]; // 20
} __attribute__((packed)) hamster_rx_raw_packet_t;
typedef struct
{
uint8_t version;
uint8_t network_id;
uint8_t command;
int8_t strength;
uint8_t left_proximity;
uint8_t right_proximity;
uint8_t left_floor;
uint8_t right_floor;
int16_t acceleration_x;
int16_t acceleration_y;
int16_t acceleration_z;
uint16_t light;
int8_t temp;
uint16_t battery;
uint8_t input_a;
uint8_t input_b;
uint8_t mac_address[6];
} hamster_sensor_info_t;
typedef struct
{
uint8_t version;
uint8_t mac_address[6];
} hamster_robot_info_t;
typedef struct
{
uint8_t version;
uint8_t topology;
uint8_t network_id;
uint8_t command;
uint8_t security;
int8_t left_wheel;
int8_t right_wheel;
uint8_t left_led_color;
uint8_t right_led_color;
uint32_t buzzer_pitch;
uint8_t buzzer_note;
uint8_t linetracer_mode;
uint8_t linetracer_speed;
uint8_t proximity_setup;
uint8_t acceleration_setup;
uint8_t acceleration_hz;
uint8_t io_setup;
uint8_t output_a;
uint8_t output_b;
int8_t wheel_compansate;
uint8_t mac_address[6];
} hamster_effector_t;
class Hamster {
public:
Hamster();
~Hamster();
bool begin(const char *port_name);
uint8_t asc_to_num(uint8_t data);
uint8_t num_to_asc(uint8_t data);
bool is_port_open;
bool is_connected;
bool is_exit;
void resetValue(void);
void txPacket(void);
void parsingPacketSensor(uint8_t *p_data);
void printPacketSensor(void);
void (*uartWrite)(uint8_t *p_data, uint32_t length);
// API
//
void wheels(double leftSpeed, double rightSpeed);
void leftWheels(double speed);
void rightWheels(double speed);
void stop(void);
void leds(int leftColor, int rightColor);
void leftLed(int color);
void rightLed(int color);
void beep();
void buzzer(double hz);
int leftFloor(void);
int rightFloor(void);
int leftProximity(void);
int rightProximity(void);
int accelerationX(void);
int accelerationY(void);
int accelerationZ(void);
int light(void);
int temperature(void);
int battery(void);
bool update(void);
private:
bool tx_done;
uint8_t rx_packet_state;
uint8_t rx_packet_index;
uint32_t rx_packet_count_sensor;
uint32_t rx_packet_pre_time;
uint8_t rx_packet_buffer[128];
hamster_rx_raw_packet_t rx_raw_packet;
hamster_sensor_info_t sensor_info;
hamster_robot_info_t robot_info;
hamster_effector_t effector;
static void* threadUartRx(void *arg);
static void* threadUartTx(void *arg);
uint8_t rxPacket(uint8_t data);
};
#endif
| [
"chcbaram@paran.com"
] | chcbaram@paran.com |
a74cf8554a7a7ab236f0e46420a35e941f4ecc37 | 3e3de291a1b582b5b38a0592e502c741ae919f8c | /DilateErodeImp/Erode.h | c4bc95d4d4cd27f68324e8111de9f544d2b11bc2 | [] | no_license | mokacao/gunqiu | 05f89dae36fe5288f39d27a6be715bdfddcbe0ec | 3123699613a518f9ad03ea98da1945c94f736c66 | refs/heads/master | 2021-01-21T00:05:58.484483 | 2015-05-21T22:06:24 | 2015-05-21T22:06:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,933 | h | #ifndef ERODE_H
#define ERODE_H
#include "Base.h"
#include <vector>
enum WindowMode
{
SQUARE=0,
CIRCLE=1,
SQUARE2=2,
};
class ErodeProcessor
{
private:
Bitmap2d& bmp;
int radius;
std::vector<IntDouble> winOffsets;
WindowMode mode;
public:
ErodeProcessor(Bitmap2d& bitmap,int radius,WindowMode mode):bmp(bitmap)
{
this->radius=radius;
this->mode=mode;
InitWindowOffsets(mode);
}
~ErodeProcessor(){}
Bitmap2d* Execute()
{
Bitmap2d* newBmp=new Bitmap2d(bmp.Width(),bmp.Height(),0);
for(int j=0;j<bmp.Height();j++)
{
for(int i=0;i<bmp.Width();i++)
{
if(HasBlackInWindow(this->bmp,i,j))
newBmp->SetValue(i,j,0);
else
newBmp->SetValue(i,j,255);
}
}
return newBmp;
}
Bitmap2d* Execute2()
{
Bitmap2d* newBmp=new Bitmap2d(bmp);
for(int j=0;j<bmp.Height();j++)
{
for(int i=0;i<bmp.Width();i++)
{
if(bmp.GetValue(i,j)==0&&HasWhiteAdjacencyPixel(i,j))
{
SetWindowValue(*newBmp,i,j,0);
}
}
}
return newBmp;
}
Bitmap2d* Execute3()
{
Bitmap2d* newBmp=new Bitmap2d(bmp);
DistenceMap* dmap=GetDistenceMap();
for (int i=0; i<bmp.Width(); i++)
{
for (int j=0; j<bmp.Height(); j++)
{
byte v=dmap->GetValue(i,j)<=radius?0:255;
newBmp->SetValue(i,j,v);
}
}
newBmp->visit_count+=dmap->visit_count;
delete dmap;
return newBmp;
}
Bitmap2d* Execute4()
{
Bitmap2d* newBmp=new Bitmap2d(bmp);
Bitmap2d* newBmp2=new Bitmap2d(bmp);
if(this->mode==SQUARE)
{
winOffsets.clear();
for (int i = 0; i < 2 * radius + 1; i++)
{
IntDouble t(i-radius,0);
this->winOffsets.push_back(t);
}
for(int j=0;j<bmp.Height();j++)
{
for(int i=0;i<bmp.Width();i++)
{
if(HasBlackInWindow(this->bmp,i,j))
newBmp->SetValue(i,j,0);
else
newBmp->SetValue(i,j,255);
}
}
winOffsets.clear();
for (int j = 0; j < 2 * radius + 1; j++)
{
IntDouble t(0,j-radius);
this->winOffsets.push_back(t);
}
for(int j=0;j<newBmp->Height();j++)
{
for(int i=0;i<newBmp->Width();i++)
{
if(HasBlackInWindow(*newBmp,i,j))
newBmp2->SetValue(i,j,0);
else
newBmp2->SetValue(i,j,255);
}
}
}
newBmp2->visit_count+=newBmp->visit_count;
delete newBmp;
return newBmp2;
}
private:
inline int Min(int a,int b)
{
return a>b?b:a;
}
void InitWindowOffsets(WindowMode mod)
{
if(mod==SQUARE)
{
for (int i = 0; i < 2 * radius + 1; i++)
{
for (int j = 0; j < 2 * radius + 1; j++)
{
IntDouble t(i-radius,j-radius);
this->winOffsets.push_back(t);
}
}
}
if(mod==CIRCLE)
{
for (int i = 0; i < 2 * radius + 1; i++)
{
for (int j = 0; j < 2 * radius + 1; j++)
{
int d2=(i-radius)*(i-radius)+(j-radius)*(j-radius);
if(d2<=radius*radius)
{
IntDouble t(i-radius,j-radius);
this->winOffsets.push_back(t);
}
}
}
}
if(mod==SQUARE2)
{
for(int i=-radius;i<=radius;i++)
{
for(int j=-radius;j<=radius;j++)
{
int absi=i>=0?i:-i;
int absj=j>=0?j:-j;
if(absi+absj<=radius)
{
winOffsets.push_back(IntDouble(i,j));
}
}
}
}
}
bool HasBlackInWindow(Bitmap2d& bmp,int i,int j)
{
for(size_t k=0;k<winOffsets.size();k++)
{
int tx=i+winOffsets[k].X;
int ty=j+winOffsets[k].Y;
if(!bmp.InRange(tx,ty))
continue;
if(bmp.GetValue(tx,ty)==0)
{
return true;
}
}
return false;
}
bool HasWhiteAdjacencyPixel(int i,int j)
{
if(i>0&&bmp.GetValue(i-1,j)==255)
return true;
if(i<bmp.Width()-1&&bmp.GetValue(i+1,j)==255)
return true;
if(j>0&&bmp.GetValue(i,j-1)==255)
return true;
if(j<bmp.Height()-1&&bmp.GetValue(i,j+1)==255)
return true;
return false;
}
void SetWindowValue(Bitmap2d& bmp,int i,int j,byte v)
{
for(size_t k=0;k<winOffsets.size();k++)
{
int tx=i+winOffsets[k].X;
int ty=j+winOffsets[k].Y;
if(!bmp.InRange(tx,ty))
continue;
bmp.SetValue(tx,ty,v);
}
}
DistenceMap* GetDistenceMap()
{
DistenceMap* distenceMap=new DistenceMap(this->bmp.Width(),this->bmp.Height(),0);
for (int i=0; i<bmp.Width(); i++)
{
for (int j=0; j<bmp.Height(); j++)
{
if (bmp.GetValue(i, j) == 0)
{
distenceMap->SetValue(i,j,0);
}
else
{
distenceMap->SetValue(i,j, bmp.Width()+bmp.Height());
if (i>0)
distenceMap->SetValue(i,j,Min(distenceMap->GetValue(i,j),distenceMap->GetValue(i-1,j)+1));
if (j>0)
distenceMap->SetValue(i,j,Min(distenceMap->GetValue(i,j), distenceMap->GetValue(i,j-1)+1));
}
}
}
for (int i=bmp.Width()-1; i>=0; i--)
{
for (int j=bmp.Height()-1; j>=0; j--)
{
if (i+1<bmp.Width())
distenceMap->SetValue(i,j,Min(distenceMap->GetValue(i,j), distenceMap->GetValue(i+1,j)+1));
if (j+1<bmp.Height())
distenceMap->SetValue(i,j,Min(distenceMap->GetValue(i,j), distenceMap->GetValue(i,j+1)+1));
}
}
return distenceMap;
}
};
#endif | [
"jak47042007@163.com"
] | jak47042007@163.com |
476e983cf38bba75e89344614b9183064622d88d | fb941074c95920101144ef395fe72e1f92881b97 | /CodeForces/475/A.cpp | c519d79ee4fb287e14cbbf00089be178807c045b | [] | no_license | illuz/WayToACM | b7d7f839c23e3a16eb649d9cb70dd410d5250a98 | 1a0abfedb67dd554addd2db48dc0371140484709 | refs/heads/master | 2021-01-19T00:23:57.019750 | 2015-04-28T02:25:58 | 2015-04-28T02:25:58 | 12,823,150 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 832 | cpp | /*
* Author: illuz <iilluzen[at]gmail.com>
* File: A.cpp
* Create Date: 2014-10-06 12:12:31
* Descripton:
*/
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
#define repf(i,a,b) for(int i=(a);i<=(b);i++)
char b[6][50], a[6][50] = {
"+------------------------+",
"|#.#.#.#.#.#.#.#.#.#.#.|D|)",
"|#.#.#.#.#.#.#.#.#.#.#.|.|",
"|#.......................|",
"|#.#.#.#.#.#.#.#.#.#.#.|.|)",
"+------------------------+" };
int n;
int main() {
while (cin >> n) {
memcpy(b, a, sizeof(b));
if (n > 4) {
repf (i, 1, 4)
b[i][1] = '0';
n -= 4;
for (int j = 3; n > 0; j += 2) {
if (n-- > 0) b[1][j] = 'O';
if (n-- > 0) b[2][j] = 'O';
if (n-- > 0) b[4][j] = 'O';
}
} else {
repf (i, 1, n)
b[i][1] = 'O';
}
repf (i, 0, 5)
puts(b[i]);
}
return 0;
}
| [
"iilluzen@gmail.com"
] | iilluzen@gmail.com |
61092aa3b20d747ed9b2f6cf2eb325956a425c3b | bda85a81efa128e802340a955cb27660402ad858 | /src/pipe.h | b8b445c5a462ab17c47f04eb35ae48f7b856ac20 | [
"MIT"
] | permissive | cuda-convnet/esp32S2-usb-host-library | a178b91ea4ee64952a832fb1b28fe4db6c3224e9 | 5b76abf54cdc638cb51327bb9eca7821afbd1d5f | refs/heads/master | 2023-05-10T00:28:34.065139 | 2021-06-15T09:14:58 | 2021-06-15T09:14:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,554 | h |
#pragma once
#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/semphr.h"
#include "esp_err.h"
#include "esp_attr.h"
#include "hal/usbh_ll.h"
#include "hcd.h"
#if defined(ARDUINO_ARCH_ESP32) && defined(CONFIG_ARDUHAL_ESP_LOG)
#include "esp32-hal-log.h"
#else
#include "esp_log.h"
#endif
#define TRANSFER_DATA_MAX_BYTES 255 //Just assume that will only IN/OUT 64 bytes for now
#define BASE_PIPE_EVENT 0x8000
#define CDC_BASE_PIPE_EVENT 0x1000
#define HID_BASE_PIPE_EVENT 0x2000
#define USBH_WEAK_CB __attribute__((weak))
/**
* @brief Build get string request
*/
#define USB_CTRL_REQ_INIT_GET_STRING(ctrl_req_ptr, lang, desc_index, len) ( \
{ \
(ctrl_req_ptr)->bRequestType = USB_B_REQUEST_TYPE_DIR_IN | USB_B_REQUEST_TYPE_TYPE_STANDARD | USB_B_REQUEST_TYPE_RECIP_DEVICE; \
(ctrl_req_ptr)->bRequest = USB_B_REQUEST_GET_DESCRIPTOR; \
(ctrl_req_ptr)->wValue = (USB_W_VALUE_DT_STRING << 8) | ((desc_index)&0xFF); \
(ctrl_req_ptr)->wIndex = (lang); \
(ctrl_req_ptr)->wLength = (len); \
})
typedef struct
{
hcd_pipe_handle_t handle;
hcd_pipe_event_t event;
} pipe_event_msg_t;
class USBHostPipe;
class USBHostPort;
/**
* @brief Pipe callback definition to pass events to class callback
*/
typedef void (*pipe_cb_t)(pipe_event_msg_t msg, usb_irp_t *irp, USBHostPipe *context);
void onSerialString(char* str);
void onProductString(char* str);
void onManufacturerString(char* str);
class USBHostPipe
{
protected:
//
hcd_pipe_handle_t handle;
//
hcd_port_handle_t port_hdl;
//
xTaskHandle taskHandle;
public:
// friend void pipe_event_task(void *p);
//
usb_desc_ep_t endpoint;
//
pipe_cb_t callback = nullptr;
//
QueueHandle_t pipeEvtQueue;
usb_desc_devc_t device_desc;
USBHostPipe(hcd_port_handle_t handle = nullptr);
~USBHostPipe();
// master port which this pipe belongs to
USBHostPort *port;
/**
* @brief Register pipe event from class space
*/
void onPipeEvent(pipe_cb_t cb);
/**
* @brief Initialize pipe from endpoint data
*/
void init(usb_desc_ep_t *ep_desc = nullptr, uint8_t addr = 0);
/**
* @brief Free all queues and pipe belongs to this object
*/
void freePipe();
/**
* @brief Update address, usually used with control pipe
*/
void updateAddress(uint8_t);
/**
* @brief Update port handle, do we need it???
*/
void updatePort(hcd_port_handle_t handle);
/**
* @brief Reset pipe
*/
void reset();
/**
* @brief Get pipe state
*/
hcd_pipe_state_t getState();
/**
* @brief Allocate IRP before enqueue new request
*/
usb_irp_t *allocateIRP(size_t size);
/**
* @brief Free IRP and data buffer
*/
void freeIRP(usb_irp_t *);
/**
* @brief Get pipe handle
*/
hcd_pipe_handle_t getHandle();
/**
* @brief Send data IN request
*/
void inData(size_t size = 0);
/**
* @brief Send data OUT request
*/
void outData(uint8_t *data, size_t len);
// ------------------- standard USB requests ------------------------ //
/**
* @brief Prepare and enqueue get device descriptor request
*/
void getDeviceDescriptor();
/**
* @brief Prepare and enqueue set device address request
*/
void setDeviceAddress(uint8_t addr);
/**
* @brief Prepare and enqueue get configuration descriptor request
*/
void getCurrentConfiguration();
/**
* @brief Prepare and enqueue set configuration request
*/
void setConfiguration(uint8_t);
/**
* @brief Prepare and enqueue get configuration descriptor request
*/
void getConfigDescriptor(size_t n = 9);
/**
* @brief Prepare and enqueue get string by id request
*/
void getString(uint8_t);
void setDeviceDesc(uint8_t* data);
void getSerialString();
void getProductString();
void getManufacturerString();
};
// TODO add abort IRP
| [
"imperiaonline4@gmail.com"
] | imperiaonline4@gmail.com |
82a9ac22e5489c7c01bb356f0e94bedabfe61bc1 | c80983f5592d226df6dd6f39c3d3030c5fe5cc14 | /codeforces/1296/F.cpp | 9ee443958efaee1d57fb7d0da2d3828202895302 | [] | no_license | shanjiaming/Competitive-Programming | 161679137c428865c76ca6f3608eaaef20ac1b4c | dab76a869a71c2aaa60a701241a6186e1c6b8a11 | refs/heads/master | 2022-11-30T03:16:01.304545 | 2020-08-11T03:29:34 | 2020-08-11T03:29:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,417 | cpp | #include<bits/stdc++.h>
using namespace std;
#define pb push_back
#define ll long long
#define maxn 300005
#define fr(i,j,k) for(int i=j;i<k;i++)
#define f(n) fr(i,0,n)
#define f1(n) fr(i,1,n+1)
#define ms(i) memset(i,0,sizeof(i));
#define F first
#define S second
const int mod = 1e9 + 7;
vector<pair<int,pair<int,int> > >g[5005];
struct s
{
int u,v,k;
};
int mi;
int walk(int cur,int v,int k,int pre){
if(cur == v){
return 1;
}
int f = 0;
for(auto &i:g[cur]){
if(i.F == pre)continue;
if(walk(i.F,v,k,cur)){
mi = min(mi,i.S.S);
i.S.S = max(i.S.S,k);
f = 1;
}
}
return f;
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
int n;
cin >> n;
vector<s>vv;
f(n-1){
int x,y;
cin >> x >> y;
g[x].pb({y,{i,1}});
g[y].pb({x,{i,1}});
}
int k;
cin >> k;
f(k){
int u,v,c;
cin >> u >> v >> c;
vv.pb({u,v,c});
}
for(auto i:vv){
walk(i.u,i.v,i.k,0);
walk(i.v,i.u,i.k,0);
}
for(auto i:vv){
mi = 1e7;
walk(i.u,i.v,i.k,0);
if(mi != i.k){
cout << -1 << '\n';
exit(0);
}
}
int ans[n - 1];
f1(n){
for(auto j:g[i]){
ans[j.S.F] = j.S.S;
}
}
f(n-1){
cout << ans[i] <<' ';
}
cout << '\n';
}
| [
"islu245777@gmail.com"
] | islu245777@gmail.com |
39d4fc3e84a724d65c394580327debd0b32d0622 | 255eed6a8b9c7a3731af6cdcc1561361ae0b8838 | /os_cp_1/myshell.h | 5995472bc5d5666b4abd5085bb124982bd854c57 | [
"MIT"
] | permissive | robbiep/operating_systems_3453 | f1103b850890759d5cb6483f896b9355f2e59948 | 7bac9a10a17d3809cff14acf33352b480da10e54 | refs/heads/master | 2021-01-10T19:26:52.711619 | 2014-02-20T02:19:51 | 2014-02-20T02:19:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 592 | h | #define _POSIX_SOURCE
#include <sys/types.h>
#include <sys/wait.h>
#include <stdlib.h>
#include <unistd.h>
#include <iostream>
#include <string>
#include <sstream>
#include <cstdlib>
namespace os_cp_1 {
class myshell
{
public:
myshell();
virtual ~myshell();
void run();
protected:
/**** Functions ****/
unsigned get_input();
void execute_command();
/**** Constants ****/
const std::string PROMPT;
/**** Variables ****/
std::string input_buffer;
std::string* argument_list;
};
} | [
"rperlste@gmail.com"
] | rperlste@gmail.com |
10a7b8d476a7617d225fbfdf7b66458c7e2a83ef | 1f63dde39fcc5f8be29f2acb947c41f1b6f1683e | /Boss2D/addon/webrtc-jumpingyang001_for_boss/modules/audio_processing/transient/transient_detector.cc | a25cf25abb272aa60fe306e716607b578ae7e094 | [
"BSD-3-Clause",
"LicenseRef-scancode-google-patent-license-webm",
"LicenseRef-scancode-google-patent-license-webrtc",
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | koobonil/Boss2D | 09ca948823e0df5a5a53b64a10033c4f3665483a | e5eb355b57228a701495f2660f137bd05628c202 | refs/heads/master | 2022-10-20T09:02:51.341143 | 2019-07-18T02:13:44 | 2019-07-18T02:13:44 | 105,999,368 | 7 | 2 | MIT | 2022-10-04T23:31:12 | 2017-10-06T11:57:07 | C++ | UTF-8 | C++ | false | false | 6,836 | cc | /*
* Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include BOSS_WEBRTC_U_modules__audio_processing__transient__transient_detector_h //original-code:"modules/audio_processing/transient/transient_detector.h"
#include <float.h>
#include <math.h>
#include <string.h>
#include <algorithm>
#include BOSS_WEBRTC_U_modules__audio_processing__transient__common_h //original-code:"modules/audio_processing/transient/common.h"
#include BOSS_WEBRTC_U_modules__audio_processing__transient__daubechies_8_wavelet_coeffs_h //original-code:"modules/audio_processing/transient/daubechies_8_wavelet_coeffs.h"
#include BOSS_WEBRTC_U_modules__audio_processing__transient__moving_moments_h //original-code:"modules/audio_processing/transient/moving_moments.h"
#include BOSS_WEBRTC_U_modules__audio_processing__transient__wpd_tree_h //original-code:"modules/audio_processing/transient/wpd_tree.h"
#include BOSS_WEBRTC_U_rtc_base__checks_h //original-code:"rtc_base/checks.h"
namespace webrtc {
static const int kTransientLengthMs = 30;
static const int kChunksAtStartupLeftToDelete =
kTransientLengthMs / ts::kChunkSizeMs;
static const float kDetectThreshold = 16.f;
TransientDetector::TransientDetector(int sample_rate_hz)
: samples_per_chunk_(sample_rate_hz * ts::kChunkSizeMs / 1000),
last_first_moment_(),
last_second_moment_(),
chunks_at_startup_left_to_delete_(kChunksAtStartupLeftToDelete),
reference_energy_(1.f),
using_reference_(false) {
RTC_DCHECK(sample_rate_hz == ts::kSampleRate8kHz ||
sample_rate_hz == ts::kSampleRate16kHz ||
sample_rate_hz == ts::kSampleRate32kHz ||
sample_rate_hz == ts::kSampleRate48kHz);
int samples_per_transient = sample_rate_hz * kTransientLengthMs / 1000;
// Adjustment to avoid data loss while downsampling, making
// |samples_per_chunk_| and |samples_per_transient| always divisible by
// |kLeaves|.
samples_per_chunk_ -= samples_per_chunk_ % kLeaves;
samples_per_transient -= samples_per_transient % kLeaves;
tree_leaves_data_length_ = samples_per_chunk_ / kLeaves;
wpd_tree_.reset(new WPDTree(samples_per_chunk_,
kDaubechies8HighPassCoefficients,
kDaubechies8LowPassCoefficients,
kDaubechies8CoefficientsLength, kLevels));
for (size_t i = 0; i < kLeaves; ++i) {
moving_moments_[i].reset(
new MovingMoments(samples_per_transient / kLeaves));
}
first_moments_.reset(new float[tree_leaves_data_length_]);
second_moments_.reset(new float[tree_leaves_data_length_]);
for (int i = 0; i < kChunksAtStartupLeftToDelete; ++i) {
previous_results_.push_back(0.f);
}
}
TransientDetector::~TransientDetector() {}
float TransientDetector::Detect(const float* data,
size_t data_length,
const float* reference_data,
size_t reference_length) {
RTC_DCHECK(data);
RTC_DCHECK_EQ(samples_per_chunk_, data_length);
// TODO(aluebs): Check if these errors can logically happen and if not assert
// on them.
if (wpd_tree_->Update(data, samples_per_chunk_) != 0) {
return -1.f;
}
float result = 0.f;
for (size_t i = 0; i < kLeaves; ++i) {
WPDNode* leaf = wpd_tree_->NodeAt(kLevels, i);
moving_moments_[i]->CalculateMoments(leaf->data(), tree_leaves_data_length_,
first_moments_.get(),
second_moments_.get());
// Add value delayed (Use the last moments from the last call to Detect).
float unbiased_data = leaf->data()[0] - last_first_moment_[i];
result +=
unbiased_data * unbiased_data / (last_second_moment_[i] + FLT_MIN);
// Add new values.
for (size_t j = 1; j < tree_leaves_data_length_; ++j) {
unbiased_data = leaf->data()[j] - first_moments_[j - 1];
result +=
unbiased_data * unbiased_data / (second_moments_[j - 1] + FLT_MIN);
}
last_first_moment_[i] = first_moments_[tree_leaves_data_length_ - 1];
last_second_moment_[i] = second_moments_[tree_leaves_data_length_ - 1];
}
result /= tree_leaves_data_length_;
result *= ReferenceDetectionValue(reference_data, reference_length);
if (chunks_at_startup_left_to_delete_ > 0) {
chunks_at_startup_left_to_delete_--;
result = 0.f;
}
if (result >= kDetectThreshold) {
result = 1.f;
} else {
// Get proportional value.
// Proportion achieved with a squared raised cosine function with domain
// [0, kDetectThreshold) and image [0, 1), it's always increasing.
const float horizontal_scaling = ts::kPi / kDetectThreshold;
const float kHorizontalShift = ts::kPi;
const float kVerticalScaling = 0.5f;
const float kVerticalShift = 1.f;
result =
(cos(result * horizontal_scaling + kHorizontalShift) + kVerticalShift) *
kVerticalScaling;
result *= result;
}
previous_results_.pop_front();
previous_results_.push_back(result);
// In the current implementation we return the max of the current result and
// the previous results, so the high results have a width equals to
// |transient_length|.
return *std::max_element(previous_results_.begin(), previous_results_.end());
}
// Looks for the highest slope and compares it with the previous ones.
// An exponential transformation takes this to the [0, 1] range. This value is
// multiplied by the detection result to avoid false positives.
float TransientDetector::ReferenceDetectionValue(const float* data,
size_t length) {
if (data == NULL) {
using_reference_ = false;
return 1.f;
}
static const float kEnergyRatioThreshold = 0.2f;
static const float kReferenceNonLinearity = 20.f;
static const float kMemory = 0.99f;
float reference_energy = 0.f;
for (size_t i = 1; i < length; ++i) {
reference_energy += data[i] * data[i];
}
if (reference_energy == 0.f) {
using_reference_ = false;
return 1.f;
}
RTC_DCHECK_NE(0, reference_energy_);
float result = 1.f / (1.f + exp(kReferenceNonLinearity *
(kEnergyRatioThreshold -
reference_energy / reference_energy_)));
reference_energy_ =
kMemory * reference_energy_ + (1.f - kMemory) * reference_energy;
using_reference_ = true;
return result;
}
} // namespace webrtc
| [
"slacealic@nate.com"
] | slacealic@nate.com |
e12e33adfcf3198d5dc3c304d51f4324e8457f00 | 304d79d38a7aacba0cd43441a30dfd36f6f34bff | /Main.cpp | e070203d806a18bd8381e24a640cbcf14e117e30 | [
"MIT"
] | permissive | brianbob12/dataSplit | 5c88fe374205c063883075bff75c7938ff47145b | 642bcefa7a300bb9b0250b5805b422e2844e8b7f | refs/heads/main | 2023-07-31T20:12:52.592150 | 2021-09-18T09:57:23 | 2021-09-18T09:57:23 | 407,821,858 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 812 | cpp | #include <iostream>
#include <string>
#include <vector>
#include "Matrix.h"
using namespace std;
void main() {
string targetKey;//target obtained in decodeing
cout << "Enter Target Key:" << endl;
getline(cin, targetKey);
//KR is keys required
string rawKRInput;
cout << "Enter number of keys required:" << endl;
cin >> rawKRInput;
int KR = atoi(rawKRInput.c_str());
cout << targetKey << endl;
cout << "keys required:" <<KR<< endl;
//generate code
int minCoefficientSize = targetKey.size()/KR;//int devision
int finalAddition = targetKey.size() % KR;
int matrixLenght = 2;
while (matrixLenght*matrixLenght < minCoefficientSize + finalAddition) {
matrixLenght++;
}
vector<Matrix> coefficents;
for (int i = 0; i < KR; i++) {
coefficents.push_back(Matrix(matrixLenght, matrixLenght));
}
}
| [
"japaneserhino@gmail.com"
] | japaneserhino@gmail.com |
42ec74b667eaac940cee8389661653ef97972aa7 | d352f21465c57e1cd0a9dc17748db0cf66646a10 | /testcoin/src/script/chncoinconsensus.cpp | 44f3f0e547dcb3820b1293526d078d99c7845067 | [
"MIT"
] | permissive | joelowz/testcoin | 05540e7d7bed67b3c84469dc00fce0b0e311ca58 | 9a611d94cbfb4d188931857e711175f126f913d9 | refs/heads/master | 2020-03-14T10:01:45.796107 | 2018-04-30T05:00:30 | 2018-04-30T05:00:30 | 131,557,689 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,833 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Chncoin developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "chncoinconsensus.h"
#include "primitives/transaction.h"
#include "script/interpreter.h"
#include "version.h"
namespace {
/** A class that deserializes a single CTransaction one time. */
class TxInputStream
{
public:
TxInputStream(int nTypeIn, int nVersionIn, const unsigned char *txTo, size_t txToLen) :
m_type(nTypeIn),
m_version(nVersionIn),
m_data(txTo),
m_remaining(txToLen)
{}
TxInputStream& read(char* pch, size_t nSize)
{
if (nSize > m_remaining)
throw std::ios_base::failure(std::string(__func__) + ": end of data");
if (pch == NULL)
throw std::ios_base::failure(std::string(__func__) + ": bad destination buffer");
if (m_data == NULL)
throw std::ios_base::failure(std::string(__func__) + ": bad source buffer");
memcpy(pch, m_data, nSize);
m_remaining -= nSize;
m_data += nSize;
return *this;
}
template<typename T>
TxInputStream& operator>>(T& obj)
{
::Unserialize(*this, obj, m_type, m_version);
return *this;
}
private:
const int m_type;
const int m_version;
const unsigned char* m_data;
size_t m_remaining;
};
inline int set_error(chncoinconsensus_error* ret, chncoinconsensus_error serror)
{
if (ret)
*ret = serror;
return 0;
}
} // anon namespace
int chncoinconsensus_verify_script(const unsigned char *scriptPubKey, unsigned int scriptPubKeyLen,
const unsigned char *txTo , unsigned int txToLen,
unsigned int nIn, unsigned int flags, chncoinconsensus_error* err)
{
try {
TxInputStream stream(SER_NETWORK, PROTOCOL_VERSION, txTo, txToLen);
CTransaction tx;
stream >> tx;
if (nIn >= tx.vin.size())
return set_error(err, chncoinconsensus_ERR_TX_INDEX);
if (tx.GetSerializeSize(SER_NETWORK, PROTOCOL_VERSION) != txToLen)
return set_error(err, chncoinconsensus_ERR_TX_SIZE_MISMATCH);
// Regardless of the verification result, the tx did not error.
set_error(err, chncoinconsensus_ERR_OK);
return VerifyScript(tx.vin[nIn].scriptSig, CScript(scriptPubKey, scriptPubKey + scriptPubKeyLen), flags, TransactionSignatureChecker(&tx, nIn), NULL);
} catch (const std::exception&) {
return set_error(err, chncoinconsensus_ERR_TX_DESERIALIZE); // Error deserializing
}
}
unsigned int chncoinconsensus_version()
{
// Just use the API version for now
return CHNCOINCONSENSUS_API_VER;
}
| [
"Alyss@192-168-1-122.tpgi.com.au"
] | Alyss@192-168-1-122.tpgi.com.au |
177dbd7ce3cf4b53fadb9321de7da053a2000dfe | af69e335fc0ff9632964d061833713b672abad01 | /Temp/StagingArea/Data/il2cppOutput/UnityEngine_UnityEngine_Collections_NativeContaine3790689680.h | 08aca5685a9c4d72fff943b33eb178894e3885e1 | [] | no_license | PruthvishMShirur/Solar-System | ca143ab38cef582705f0beb76f7fef8b28e25ef9 | 5cf3eaa66949801aa9a34cd3cf80eeefa64d2342 | refs/heads/master | 2023-05-26T17:53:37.489349 | 2021-06-16T19:56:48 | 2021-06-16T19:56:48 | 377,611,177 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 596 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_Attribute861562559.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Collections.NativeContainerSupportsAtomicWriteAttribute
struct NativeContainerSupportsAtomicWriteAttribute_t3790689680 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"42893637+PruthvishMShirur@users.noreply.github.com"
] | 42893637+PruthvishMShirur@users.noreply.github.com |
f6d5a89091b614774b097bc7ac765b87c369fa79 | eb8f2c3e85188b05639c4a3e4c66152e2b2c5e47 | /new/main.cpp | c3b2d8fb013f5371aa9caf38898a71ffe8cae961 | [] | no_license | duqrldudgns/sum_test | 2c1f1cd98976229c9e25f14e24bf58a6078a118a | 2a054e0a8f9069616b5083b1927129a9f0f8650d | refs/heads/master | 2021-07-10T23:12:53.153779 | 2020-07-09T03:15:13 | 2020-07-09T03:15:13 | 174,456,574 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 96 | cpp | #include <stdio.h>
#include "sum.h"
int main(){
int s = sum(100);
printf("sum = %d\n", s);
}
| [
"duqrldudgns@gmail.com"
] | duqrldudgns@gmail.com |
c22656f0dbc97bb52102076ef2ca935fde466286 | 2a88b58673d0314ed00e37ab7329ab0bbddd3bdc | /blazetest/src/mathtest/svectdvecmult/VCaV5b.cpp | 019b1360131451fbcae58cb0b5473957fe532097 | [
"BSD-3-Clause"
] | permissive | shiver/blaze-lib | 3083de9600a66a586e73166e105585a954e324ea | 824925ed21faf82bb6edc48da89d3c84b8246cbf | refs/heads/master | 2020-09-05T23:00:34.583144 | 2016-08-24T03:55:17 | 2016-08-24T03:55:17 | 66,765,250 | 2 | 1 | NOASSERTION | 2020-04-06T05:02:41 | 2016-08-28T11:43:51 | C++ | UTF-8 | C++ | false | false | 3,824 | cpp | //=================================================================================================
/*!
// \file src/mathtest/svectdvecmult/VCaV5b.cpp
// \brief Source file for the VCaV5b sparse vector/dense vector outer product math test
//
// Copyright (C) 2013 Klaus Iglberger - All Rights Reserved
//
// This file is part of the Blaze library. You can redistribute it and/or modify it under
// the terms of the New (Revised) BSD License. Redistribution and use in source and binary
// forms, with or without modification, are permitted provided that the following conditions
// are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
// of conditions and the following disclaimer in the documentation and/or other materials
// provided with the distribution.
// 3. Neither the names of the Blaze development group nor the names of its contributors
// may be used to endorse or promote products derived from this software without specific
// prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
// OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
// SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
// BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
*/
//=================================================================================================
//*************************************************************************************************
// Includes
//*************************************************************************************************
#include <cstdlib>
#include <iostream>
#include <blaze/math/CompressedVector.h>
#include <blaze/math/StaticVector.h>
#include <blazetest/mathtest/Creator.h>
#include <blazetest/mathtest/svectdvecmult/OperationTest.h>
#include <blazetest/system/MathTest.h>
//=================================================================================================
//
// MAIN FUNCTION
//
//=================================================================================================
//*************************************************************************************************
int main()
{
std::cout << " Running 'VCaV5b'..." << std::endl;
using blazetest::mathtest::TypeA;
using blazetest::mathtest::TypeB;
try
{
// Vector type definitions
typedef blaze::CompressedVector<TypeA> VCa;
typedef blaze::StaticVector<TypeB,5UL> V5b;
// Creator type definitions
typedef blazetest::Creator<VCa> CVCa;
typedef blazetest::Creator<V5b> CV5b;
// Running the tests
for( size_t i=0UL; i<=8UL; ++i ) {
for( size_t j=0UL; j<=i; ++j ) {
RUN_SVECTDVECMULT_OPERATION_TEST( CVCa( i, j ), CV5b() );
}
}
}
catch( std::exception& ex ) {
std::cerr << "\n\n ERROR DETECTED during sparse vector/dense vector outer product:\n"
<< ex.what() << "\n";
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
//*************************************************************************************************
| [
"klaus.iglberger@gmail.com"
] | klaus.iglberger@gmail.com |
89b94e99e4844fd7ca082c62535036bee6785a17 | dcbd41891a4dfefe941a73ca071e5553a367ed8f | /CRegionScriptSetting.h | b4f7402f17c471301782471b162b5d9c14e07b16 | [] | no_license | cuiopen/GameServer-4 | dbaf074c127d3cd5a0aae47e2303d6b0e6b01633 | 3235d24a9eeeb065bd5296d2e36d8ccba3174836 | refs/heads/master | 2020-03-19T15:47:26.790489 | 2015-05-15T01:48:03 | 2015-05-15T01:48:03 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 715 | h | #ifndef CRegionScriptSetting_H_
#define CRegionScriptSetting_H_
#include "CSingleton.h"
#include "CTType.h"
#include "GlobeScriptInterface.h"
struct G_RegionResource;
class CCRegionScriptSetting : public CCSingleton<CCRegionScriptSetting>
{
public:
CCRegionScriptSetting(void);
~CCRegionScriptSetting(void);
public:
//获取建筑所属区域
CT_BOOL GetRegionIDByBuildID(int iBuildID,int *iRegionID);
//获取区域解锁资源
CT_BOOL GetRegionResource(int iRegion,G_RegionResource *pRegionResource);
//获取区域邻接区域
CT_BOOL GetRegionLink(int iRegionID,G_RegionList *pRegionLink);
//获取所有区域id
CT_VOID GetRegionList(G_RegionList *pRegionList);
};
#endif | [
"wangluofan@gmail.com"
] | wangluofan@gmail.com |
5f06fce39e237af9a4c9a67fadab12ba586b70d6 | d0277a390a049b26ecf784c8007dca6bcc601f9f | /乱数を使ったプログラム.cpp | c5cf69ff7e39d87e74dafd30cec32328691b0b26 | [] | no_license | yutatanaka/TestProgram | 72beaa9ecf1e8bc49d05e8b79d8464fb9023fbfe | 58e9d9f92f178e05a7176fd10464713154ee2436 | refs/heads/master | 2021-01-21T04:55:17.254482 | 2016-07-16T13:10:08 | 2016-07-16T13:10:08 | 52,609,732 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 299 | cpp |
// 乱数を使ったプログラム
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void main()
{
int a, b;
srand((unsigned)time(NULL));
// 1から10までの乱数を発生させる
a = rand() % 10 + 1;
b = rand() % 10 + 1;
printf("%d + %d = %d\n", a, b, a + b);
getchar();
} | [
"koryotennis99@gmail.com"
] | koryotennis99@gmail.com |
0ad44c42b146eb1a00ce571413a12bbf9335e51b | 33ab6592a31ce7c8e944f3ac5c7f2658c9459edd | /11강/array practice/poker/main.cpp | 7bc6e97255873dcc710e89f57d0ee0767981e2e2 | [
"MIT"
] | permissive | butilities/C-Cplusplus-Lecture-Beginner | 3d3c50f4044fc53f067fdb36adbd5a6526d11d8e | 3eb31a13edfd74dd4e87f2cabbd81baea085e990 | refs/heads/master | 2021-01-15T09:08:45.331591 | 2014-08-07T13:26:31 | 2014-08-07T13:26:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 80 | cpp | #include <iostream>
#include <string>
using namespace std;
void main()
{
}
| [
"sgajaejung@gmail.com"
] | sgajaejung@gmail.com |
d38fdece60e00f825d2cb3c23a288fac2dfdd10b | 4ed7dd878a2b34bace1fd91a49106eebe570a360 | /BZOJ/BZOJ1076.cpp | deb77af6c6e894dc84139d96680ffe6ae9a019ff | [] | no_license | mayukuner/AC | fb63be04a1fcf7f3af080aa50bf7c6e0e070b1b9 | c21b2970b7288d7b36cbed468101446c615e79ff | refs/heads/master | 2020-12-15T02:38:51.758676 | 2017-10-11T13:01:11 | 2017-10-11T13:01:11 | 46,971,415 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 683 | cpp | #include<stdio.h>
#include<algorithm>
#define For(i,n) for(int i=1; i<=n; i++)
#define Rep(i,n) for(int i=0; i<n; i++)
#define M 100
#define N 15
typedef long long LL;
using namespace std;
double d[M+1][1<<N];
int need[N],sc[N];
int m,n;
int main(){
#ifndef ONLINE_JUDGE
freopen("in.txt","r",stdin);
#endif
scanf("%d%d",&m,&n);
Rep(i,n){
scanf("%d",&sc[i]);
int t;
while(scanf("%d",&t)&&t)
need[i]|=(1<<(t-1));
}
double P=1.0/n;
for(int i=m-1; i>=0; i--){
Rep(j,1<<n){
Rep(k,n){
if((j|need[k])==j)
d[i][j]+=max(d[i+1][j|(1<<k)]+sc[k],d[i+1][j])*P;
else
d[i][j]+=d[i+1][j]*P;
}
}
}
printf("%f",d[0][0]);
return 0;
}
| [
"gmayukun@gmail.com"
] | gmayukun@gmail.com |
ed4d33192e2080a294bdd4f3b6bd838b90eb956a | a1c0902175e5bffba03fbdc00c0a044618afbd04 | /Source/STM32/Toch/towavestepmotor.h | fb5fb5b539a57a907da707ab1cc34b88b982bd46 | [] | no_license | Buyn/Fandomat | df38195e455334a0d3e63c2ee5ce8988e5d20ac1 | d8d4018f687da0b93436e617d55b65ad31f2d140 | refs/heads/master | 2020-07-11T22:42:10.816905 | 2019-08-27T08:45:03 | 2019-08-27T08:45:03 | 204,659,317 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,216 | h | /* coment bloc {{{
*
* Step motor class
* to control singl Step Motor driver
***************************************
***************************************
* }}}*/
/* include bloc {{{*/
#ifndef ToWaveStepMotor_h
#define ToWaveStepMotor_h
// the #include statment and code go here...
#if ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
/*}}}*/
//define bloc {{{
#define DEBAG_STEP_LONGS 10
#define START_TIME_OUT 1000
/*}}}*/
// encounter calss{{{
class ToWaveStepMotor {
public: // {{{
ToWaveStepMotor(int );
ToWaveStepMotor();
void move(long);
void set_speed(int);
void set_timeout(int);
void set_longs(int);
unsigned long get_timeout();
unsigned long get_longs();
void set_enable(int);
void resetimer(void);
void stop(void);
void stop(long);
void update(void );
void runtime(void );
bool done(void);
void on(void );
void off(void );
int dirpin, enablepin, zeropin;
bool isDirToZero, isMaintenance, posUp;
unsigned long pos, steps_from_last;
/*}}}*/
/* private: * {{{*/
#ifndef UNITTEST/*{{{*/
private:
#endif /* UNITTEST }}}*/
unsigned long update_time, value, timeout, longs;
int pin;
bool enable, checked;
void step(void);
/*}}}*/
};
/*}}}*/
#endif
| [
"buyn.tex@gmail.com"
] | buyn.tex@gmail.com |
42db892c0968314a7f4a46d6c43680b1223c03a2 | a92b18defb50c5d1118a11bc364f17b148312028 | /src/prod/src/Hosting2/EndpointCertificateBinding.h | 9b0b728ea3bc9a04a4591cafa85f490316959a04 | [
"MIT"
] | permissive | KDSBest/service-fabric | 34694e150fde662286e25f048fb763c97606382e | fe61c45b15a30fb089ad891c68c893b3a976e404 | refs/heads/master | 2023-01-28T23:19:25.040275 | 2020-11-30T11:11:58 | 2020-11-30T11:11:58 | 301,365,601 | 1 | 0 | MIT | 2020-11-30T11:11:59 | 2020-10-05T10:05:53 | null | UTF-8 | C++ | false | false | 1,828 | h | // ------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License (MIT). See License.txt in the repo root for license information.
// ------------------------------------------------------------
#pragma once
namespace Hosting2
{
class EndpointCertificateBinding : public Serialization::FabricSerializable
{
public:
EndpointCertificateBinding();
EndpointCertificateBinding(
UINT port,
bool explicitPort,
std::wstring const & principalSid,
std::wstring const & x509CertFindValue,
std::wstring const & x509StoreName,
Common::X509FindType::Enum sslCertificateFindType);
EndpointCertificateBinding::EndpointCertificateBinding(
EndpointCertificateBinding const & other);
EndpointCertificateBinding::EndpointCertificateBinding(
EndpointCertificateBinding && other);
EndpointCertificateBinding const & operator = (EndpointCertificateBinding const & other);
EndpointCertificateBinding const & operator = (EndpointCertificateBinding && other);
bool operator == (EndpointCertificateBinding const & other) const;
bool operator != (EndpointCertificateBinding const & other) const;
void WriteTo(Common::TextWriter & w, Common::FormatOptions const &) const;
FABRIC_FIELDS_06(Port, IsExplicitPort, PrincipalSid, X509FindValue, X509StoreName, CertFindType);
public:
std::wstring PrincipalSid;
UINT Port;
bool IsExplicitPort;
std::wstring X509FindValue;
std::wstring X509StoreName;
Common::X509FindType::Enum CertFindType;
};
}
DEFINE_USER_ARRAY_UTILITY(Hosting2::EndpointCertificateBinding);
| [
"noreply-sfteam@microsoft.com"
] | noreply-sfteam@microsoft.com |
03cb0f6372af0b6ffcd57ccff17cb3659d32595a | 1681a3878130b6a88965595e29adbccff373c9dc | /RecyclingCpp/Wezel.cpp | 37473ab7c864263072a45a3df0f2c0c7f3f06996 | [] | no_license | MrMachiei/PO-Lab | db2315b9f68718cfcceb232aa349ba4788eff947 | ca18778fbf5971e79fa3787bd446ce7c77c7965b | refs/heads/master | 2023-02-21T13:00:36.751914 | 2021-01-21T16:03:11 | 2021-01-21T16:03:11 | 305,107,637 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 94 | cpp | #include "Wezel.hpp"
Wezel::~Wezel(){
std::cout << "Dekonstruckja_obiektu" << std::endl;
} | [
"maciejwalczykowski@192.168.1.243"
] | maciejwalczykowski@192.168.1.243 |
79767087433c49175544b31addd7ca1e10288626 | 191f8394e9ee368ab3ae505505b94ae1ee3c7f3c | /tableviewTest/Delegate/CProcessDelegate.cpp | cf32d5465149f4f59b46d66aaeeebce7b14a4ce8 | [] | no_license | myhuInShangHai/Qt | 7b73711feb7e5011a4f4d85b3269aa0037a10df5 | 5c970bb6d0f70e49647b1d7303ce8b0704dc7d6f | refs/heads/master | 2021-01-22T05:38:23.021671 | 2017-07-06T10:20:58 | 2017-07-06T10:20:58 | 92,485,659 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,462 | cpp | #include "CProcessDelegate.h"
#include <QPainter>
#include <QApplication>
#include <QMouseEvent>
CProcessDelegate::CProcessDelegate(QObject *parent) :
QItemDelegate(parent)
{
}
CProcessDelegate::~CProcessDelegate()
{
}
void CProcessDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
{
if( option.state & QStyle::State_Selected )
painter->fillRect( option.rect, option.palette.highlight() );
// 数据是存储在QStandardItemModel的QStandardItem,会自动根据当前行进行匹配(我认为)
int value = index.model()->data( index, Qt::DisplayRole ).toInt(); // 这句,取得当前行的数据
double factor = double(value)/1000.0; // 计算比例因子
painter->save(); // 保存旧画板(我认为)
// 进度条背景色
if( factor > 0.8 )
{
painter->setBrush( Qt::red ); // 超过0.8画纯红色
factor = 1;
}
else
painter->setBrush( QColor( 0, int(factor*255), 255-int(factor*255) ) ); // 否则颜色依次变淡
painter->setPen( Qt::black ); // 画笔颜色(这里没用到,我认为)
// 前面都是准备工作,这里才是真正画进度条
painter->drawRect( option.rect.x()+2, option.rect.y()+2, int(factor*(option.rect.width()-5)), option.rect.height()-5 );
painter->restore(); // 恢复新画板(我认为)
}
QWidget *CProcessDelegate::createEditor( QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index ) const
{
Q_UNUSED(option);
Q_UNUSED(index);
QSlider *slider = new QSlider( parent );
slider->setAutoFillBackground( true );
slider->setOrientation( Qt::Horizontal );
slider->setRange( 0, 1000 );
slider->installEventFilter( const_cast<CProcessDelegate*>(this) );
return slider;
}
void CProcessDelegate::updateEditorGeometry( QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index ) const
{
editor->setGeometry( option.rect );
}
void CProcessDelegate::setEditorData( QWidget *editor, const QModelIndex &index ) const
{
int value = index.model()->data( index, Qt::DisplayRole ).toInt();
static_cast<QSlider*>( editor )->setValue( value );
}
void CProcessDelegate::setModelData( QWidget *editor, QAbstractItemModel *model, const QModelIndex &index ) const
{
model->setData( index, static_cast<QSlider*>( editor )->value() );
}
//-------------------
//-------------------
CProcess2Delegate::CProcess2Delegate(QObject *parent) :
QItemDelegate(parent)
{
}
void CProcess2Delegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
{
int value = index.model()->data(index).toInt();
QStyleOptionProgressBarV2 progressBarOption;
progressBarOption.rect = option.rect.adjusted(4, 4, -4, -4);
progressBarOption.minimum = 0;
progressBarOption.maximum = 1000;
progressBarOption.textAlignment = Qt::AlignRight;
progressBarOption.textVisible = true;
progressBarOption.progress = value;
progressBarOption.text = tr("%1%").arg(progressBarOption.progress / 10);
painter->save();
if (option.state & QStyle::State_Selected) {
painter->fillRect(option.rect, option.palette.highlight());
painter->setBrush(option.palette.highlightedText());
}
QApplication::style()->drawControl(QStyle::CE_ProgressBar, &progressBarOption, painter);
painter->restore();
}
| [
"myhu.shanghai@gmail.com"
] | myhu.shanghai@gmail.com |
4294fa6992e8f10f80d0b5286bc2a0f2ba3fea24 | 639d6f230b480183879b6d3035032e9d6c1b13c4 | /File/File_IO/userdefine Exp/Ass1.cpp | 90025124f24fa85f4826a8af8e5114172829d49b | [] | no_license | Sweety4/CPP-Solution | 5a1dbf29e549f4563e5aabc996a096c2b0332a0c | d9365a9cf3bbac0d4a21732eb847b5b46e4d536f | refs/heads/main | 2023-01-12T01:17:28.183053 | 2020-11-09T13:37:14 | 2020-11-09T13:37:14 | 311,346,419 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 456 | cpp |
#include<iostream>
using namespace std;
class MyException :public exception
{
public:
const char *what()
{
return "Divide By ZERO ";
}
};
#include"Header.h"
void main()
{
try {
int no1, no2;
cout << "\n\n\t Enter Two No ";
cin >> no1 >> no2;
if (no2 == 0)
{
MyException obj;
throw obj;
}
float res;
res = no1 / no2;
cout << "\n\n\t Result : " << res;
}
catch (MyException &obj)
{
cout << "\n\t" << obj.what();
}
}
| [
"sweetyjangale5@gmail.com"
] | sweetyjangale5@gmail.com |
3049df382915f8ab084db67cf6a190f71cb0c8bd | b3e1f1156a9dac5dd36acfeb6086aba4cd2e4946 | /graphicsdisplay.cc | 121fda9216304b641a55c0fc3fda2c21fbe09ad1 | [] | no_license | boyingl/game-of-lights-on | b8c9c001e93fbd6e8989a7618edb29f29c4af6f5 | 9e7c7fa8b58500e924903ffe87935f27b3361042 | refs/heads/master | 2020-12-30T12:35:55.103264 | 2017-05-16T01:02:50 | 2017-05-16T01:02:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,170 | cc | #include <iostream>
#include <sstream>
#include <utility>
#include "graphicsdisplay.h"
#include "cell.h"
#include "info.h"
#include "subscriptions.h"
#include "window.h"
using namespace std;
GraphicsDisplay::GraphicsDisplay(int n, Xwindow& theWindow): gridSize{n}, theWindow{theWindow}{
//cell is evenly distributed, with 2 seperation line between each row & col
cellSize = (450 - 2*(gridSize-1))/gridSize;
theDisplay = vector<vector<char> >(gridSize);
for(int i = 0; i < gridSize; i++){
theDisplay[i] = vector<char>(gridSize);
for(int j = 0; j < gridSize; j++){
theDisplay[i][j] = '_';
}
}
}
void GraphicsDisplay::notify(Subject &whoNotified) {
Info info = whoNotified.getInfo();
int row = info.row;
int col = info.col;
if(info.state) {
theDisplay[row][col] = 'X';
update(row, col, on);
}
else {
theDisplay[row][col] = '_';
update(row, col, off);
}
}
GraphicsDisplay::~GraphicsDisplay() {}
SubscriptionType GraphicsDisplay::subType() const {
return SubscriptionType::All;
}
//display according to the data in theDisplay, add seperation line between each cell for clarity
void GraphicsDisplay::display(){
for(int i = 0; i < gridSize; i++){
for(int j = 0; j < gridSize; j ++){
int x = (cellSize +2 )*j + 25;
int y = (cellSize +2 )*i + 25;
if(theDisplay[i][j] == 'X') theWindow.fillRectangle(x, y , cellSize, cellSize, Xwindow::White);
//off, black
else theWindow.fillRectangle(x, y , cellSize, cellSize, Xwindow::Black);
}
}
}
//upate a graphics cell
void GraphicsDisplay::update(int r, int c, status s){
int x = (cellSize +2 )*c + 25;
int y = (cellSize +2 )*r + 25;
int color;
if(s == status::on) color = 0;
else color = 1;
theWindow.fillRectangle(x, y , cellSize, cellSize, color);
}
string GraphicsDisplay::moveMsg(int moves){
string msg = "moves";
if(moves == 1) msg = "move";
ostringstream moveStream;
moveStream << moves;
msg = moveStream.str() + " " + msg + " left" ;
return msg;
}
void GraphicsDisplay::printMove(int moves){
theWindow.fillRectangle(0, 0 , 500, 50, Xwindow::White);
string msg = moveMsg(moves);
theWindow.drawString(200, 10, msg, Xwindow::Red);
}
| [
"noreply@github.com"
] | noreply@github.com |
bba81d9fc458eab97f8531e3a97178101d4e926c | 74c48f25fa944ee79ba0a5b57d4dc692e3b12d50 | /src/Multi-process_server.cpp | 90802222388dc0e8f39ca8c6995816c6d8e306bb | [] | no_license | Bolvvv/BolSocket | 89c0a087d2aad2716439f1ab908481fa06f5c256 | a177fde36ce0503a3c199b3bd8d69356beffacc7 | refs/heads/main | 2023-05-14T05:17:54.452907 | 2021-06-04T13:44:11 | 2021-06-04T13:44:11 | 368,394,589 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,188 | cpp | //
// Created by bolvvv on 2021/5/20.
//
#include "../include/wrap.h"
void catch_child(int signum){
while((waitpid(0, nullptr, WNOHANG)) > 0);
}
int multi_process_server(){
//需要用到的参数
pid_t pid;//进程pid
int ret;//读入数据长度
char buffer[1024];//缓冲区
//建立服务器socket
int lfd = Socket(PF_INET, SOCK_STREAM, 0);
sockaddr_in srv_addr{}, clt_addr{};//建立服务器与客户端的addr
socklen_t cli_sock_size = sizeof(clt_addr);//客户端addr的长度
//绑定socket与socket_in结构体
bzero(&srv_addr, sizeof (srv_addr));//将地址结构清零
srv_addr.sin_family = PF_INET;
srv_addr.sin_port = htons(9528);
srv_addr.sin_addr.s_addr = htonl(INADDR_ANY);
Bind(lfd, &srv_addr, sizeof(srv_addr));
//listen
Listen(lfd, 100);
while(true){
//accept
int cfd = Accept(lfd, &clt_addr, &cli_sock_size);
pid = fork();
if (pid == 0){
//如果是子进程自己
close(lfd);//关闭之前代码生成的server端的lfd
//显示连接信息:
char client_IP[1024];
std::cout<<"client ip:"<<inet_ntop(PF_INET, &clt_addr.sin_addr.s_addr, client_IP, sizeof (client_IP))
<<" port:"<<ntohs(clt_addr.sin_port)<<std::endl;
ret = Read(cfd, buffer, sizeof (buffer));
if(ret == 0){
close(cfd);
exit(1);
}
//将小字母变为大字母
for(char & i : buffer){
i = toupper(i);
}
Write(cfd, buffer, ret);
Write(STDOUT_FILENO, buffer, ret);
}
else if(pid > 0){
//为父进程,仅仅只需要做子进程回收
struct sigaction act{};
act.sa_handler = catch_child;
sigemptyset(&act.sa_mask);
act.sa_flags = 0;
ret = sigaction(SIGCHLD, &act, nullptr);
if (ret!=0){
perr_exit("sigaction error");
}
close(cfd);
continue;
} else{
perr_exit("fork error");
}
}
} | [
"605725874@qq.com"
] | 605725874@qq.com |
93d6ace9abc6932dc6b97ba00ce707bf96fbcc28 | f83ef53177180ebfeb5a3e230aa29794f52ce1fc | /ACE/ACE_wrappers/TAO/tests/RTCORBA/Server_Protocol/server.cpp | 620c748d934385dc8d32984a657457f1c70bc95f | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-proprietary-license",
"LicenseRef-scancode-sun-iiop"
] | permissive | msrLi/portingSources | fe7528b3fd08eed4a1b41383c88ee5c09c2294ef | 57d561730ab27804a3172b33807f2bffbc9e52ae | refs/heads/master | 2021-07-08T01:22:29.604203 | 2019-07-10T13:07:06 | 2019-07-10T13:07:06 | 196,183,165 | 2 | 1 | Apache-2.0 | 2020-10-13T14:30:53 | 2019-07-10T10:16:46 | null | UTF-8 | C++ | false | false | 11,112 | cpp | #include "testS.h"
#include "tao/RTCORBA/RT_Policy_i.h"
#include "tao/RTPortableServer/RTPortableServer.h"
#include "tao/Strategies/advanced_resource.h"
#include "tao/ORB_Core.h"
#include "tao/Policy_Set.h"
#include "ace/Get_Opt.h"
#include "tao/PortableServer/Root_POA.h"
class Test_i : public POA_Test
{
// = TITLE
// An implementation for the Test interface in test.idl
//
public:
Test_i (CORBA::ORB_ptr orb);
// ctor
//FUZZ: disable check_for_lack_ACE_OS
void shutdown (void);
//FUZZ: enable check_for_lack_ACE_OS
private:
CORBA::ORB_var orb_;
// The ORB
};
Test_i::Test_i (CORBA::ORB_ptr orb)
: orb_ (CORBA::ORB::_duplicate (orb))
{
}
void
Test_i::shutdown (void)
{
ACE_DEBUG ((LM_DEBUG,
"Received request to shut down the ORB\n"));
this->orb_->shutdown (0);
}
//*************************************************************************
const ACE_TCHAR *ior_output_file = ACE_TEXT("test.ior");
int protocol_chosen = 0;
CORBA::ULong protocol_type = 0;
// Parse command-line arguments.
int
parse_args (int argc, ACE_TCHAR *argv[])
{
ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("o:p:"));
int c, result;
while ((c = get_opts ()) != -1)
switch (c)
{
case 'o':
ior_output_file = get_opts.opt_arg ();
break;
case 'p':
result = ::sscanf (ACE_TEXT_ALWAYS_CHAR (get_opts.opt_arg ()),
"%u",
&protocol_type);
if (result == 0 || result == EOF)
ACE_ERROR_RETURN ((LM_ERROR,
"Unable to process <-p> option"),
-1);
protocol_chosen = 1;
break;
case '?':
default:
ACE_ERROR_RETURN ((LM_ERROR,
"usage: %s "
"-o <iorfile>"
"\n",
argv [0]),
-1);
}
return 0;
}
int
check_server_protocol_at_root_poa (CORBA::ORB_ptr /*orb*/,
PortableServer::POA_ptr poa)
{
// Users should never write code like below.
// It is for testing purposes only! (Unfortunately, there
// is no standard way to access POA policies).
TAO_Root_POA &tao_poa =
dynamic_cast<TAO_Root_POA &> (*poa);
TAO_POA_Policy_Set &policies =
tao_poa.policies ();
CORBA::Policy_var server_protocol =
policies.get_cached_policy (TAO_CACHED_POLICY_RT_SERVER_PROTOCOL);
RTCORBA::ServerProtocolPolicy_var policy =
RTCORBA::ServerProtocolPolicy::_narrow (server_protocol.in ());
if (CORBA::is_nil (policy.in ()))
ACE_ERROR_RETURN ((LM_ERROR,
"\nERROR: ORB default for ServerProtocolPolicy "
"is missing\n"),
-1);
RTCORBA::ProtocolList_var protocols = policy->protocols ();
ACE_DEBUG ((LM_DEBUG,
"\nRoot POA ServerProtocolPolicy "
"contains %u protocols:\n", protocols->length ()));
for (CORBA::ULong i = 0; i < protocols->length (); ++i)
{
CORBA::ULong const protocol_type = protocols[i].protocol_type;
ACE_DEBUG ((LM_DEBUG,
" Protocol %u: IOP::ProfileId = %u\n",
i, protocol_type));
RTCORBA::ProtocolProperties_var properties =
protocols[i].transport_protocol_properties;
// Print properties.
if (protocol_type == IOP::TAG_INTERNET_IOP)
{
RTCORBA::TCPProtocolProperties_var tcp_properties =
RTCORBA::TCPProtocolProperties::_narrow (properties.in ());
if (!CORBA::is_nil (tcp_properties.in ()))
ACE_DEBUG ((LM_DEBUG,
" Properties:\n"
" send_buffer_size = %d\n"
" receive_buffer_size = %d\n"
" keep_alive = %d\n"
" dont_route = %d\n"
" no_delay = %d\n"
" enable_network_priority = %d\n",
tcp_properties->send_buffer_size (),
tcp_properties->recv_buffer_size (),
tcp_properties->keep_alive (),
tcp_properties->dont_route (),
tcp_properties->no_delay (),
tcp_properties->enable_network_priority ()));
}
else if (protocol_type == TAO_TAG_UIOP_PROFILE)
{
RTCORBA::UnixDomainProtocolProperties_var uiop_properties =
RTCORBA::UnixDomainProtocolProperties::_narrow (properties.in ());
if (!CORBA::is_nil (uiop_properties.in ()))
ACE_DEBUG ((LM_DEBUG,
" Properties:\n"
" send_buffer_size = %d\n"
" receive_buffer_size = %d\n",
uiop_properties->send_buffer_size (),
uiop_properties->recv_buffer_size ()));
}
else if (protocol_type == TAO_TAG_SHMEM_PROFILE)
{
RTCORBA::SharedMemoryProtocolProperties_var shmem_properties =
RTCORBA::SharedMemoryProtocolProperties::_narrow (properties.in ());
if (!CORBA::is_nil (shmem_properties.in ()))
ACE_DEBUG ((LM_DEBUG,
" Properties:\n"
" send_buffer_size = %d\n"
" receive_buffer_size = %d\n"
" keep_alive = %d\n"
" dont_route = %d\n"
" no_delay = %d\n"
" preallocate_buffer_size = %d\n"
" mmap_filename = %s\n"
" mmap_lockname = %s\n",
shmem_properties->send_buffer_size (),
shmem_properties->recv_buffer_size (),
shmem_properties->keep_alive (),
shmem_properties->dont_route (),
shmem_properties->no_delay (),
shmem_properties->preallocate_buffer_size (),
shmem_properties->mmap_filename (),
shmem_properties->mmap_lockname ()));
}
else if (protocol_type == TAO_TAG_DIOP_PROFILE)
{
RTCORBA::UserDatagramProtocolProperties_var diop_properties =
RTCORBA::UserDatagramProtocolProperties::_narrow (properties.in ());
if (!CORBA::is_nil (diop_properties.in ()))
ACE_DEBUG ((LM_DEBUG,
" Properties:\n"
" enable_network_priority = %d\n",
diop_properties->enable_network_priority ()));
}
else if (protocol_type == TAO_TAG_SCIOP_PROFILE)
{
RTCORBA::StreamControlProtocolProperties_var sciop_properties =
RTCORBA::StreamControlProtocolProperties::_narrow (properties.in ());
if (!CORBA::is_nil (sciop_properties.in ()))
ACE_DEBUG ((LM_DEBUG,
" Properties:\n"
" send_buffer_size = %d\n"
" receive_buffer_size = %d\n"
" keep_alive = %d\n"
" dont_route = %d\n"
" no_delay = %d\n"
" enable_network_priority = %d\n",
sciop_properties->send_buffer_size (),
sciop_properties->recv_buffer_size (),
sciop_properties->keep_alive (),
sciop_properties->dont_route (),
sciop_properties->no_delay (),
sciop_properties->enable_network_priority ()));
}
}
return 0;
}
int
ACE_TMAIN(int argc, ACE_TCHAR *argv[])
{
try
{
CORBA::ORB_var orb =
CORBA::ORB_init (argc, argv);
if (parse_args (argc, argv) != 0)
return -1;
CORBA::Object_var object =
orb->resolve_initial_references("RootPOA");
PortableServer::POA_var root_poa =
PortableServer::POA::_narrow (object.in ());
if (CORBA::is_nil (root_poa.in ()))
ACE_ERROR_RETURN ((LM_ERROR,
"ERROR: Panic <RootPOA> is nil\n"),
-1);
PortableServer::POAManager_var poa_manager =
root_poa->the_POAManager ();
object = orb->resolve_initial_references ("RTORB");
RTCORBA::RTORB_var rt_orb = RTCORBA::RTORB::_narrow (object.in ());
// Check ServerProtocol configurations.
int result = check_server_protocol_at_root_poa (orb.in (),
root_poa.in ());
if (result != 0)
return -1;
// If a protocol type was indicated using command line option,
// create a child POA with ServerProtocolPolicy containing
// that protocol and register Test object with child POA.
// Otherwise, register Test object with the root POA (ORB
// default ServerProtocolPolicy will get used).
RTCORBA::ProtocolList protocols;
protocols.length (1);
protocols[0].protocol_type = protocol_type;
protocols[0].transport_protocol_properties =
RTCORBA::ProtocolProperties::_nil ();
protocols[0].orb_protocol_properties =
RTCORBA::ProtocolProperties::_nil ();
CORBA::PolicyList poa_policy_list;
poa_policy_list.length (1);
poa_policy_list[0] =
rt_orb->create_server_protocol_policy (protocols);
PortableServer::POA_var poa;
if (protocol_chosen)
{
poa =
root_poa->create_POA ("Child_POA",
poa_manager.in (),
poa_policy_list);
}
else
{
poa = PortableServer::POA::_duplicate (root_poa.in ());
}
Test_i server_impl (orb.in ());
PortableServer::ObjectId_var id =
poa->activate_object (&server_impl);
CORBA::Object_var server =
poa->id_to_reference (id.in ());
// Print Object IOR.
CORBA::String_var ior =
orb->object_to_string (server.in ());
ACE_DEBUG ((LM_DEBUG, "\nActivated as <%C>\n\n", ior.in ()));
if (ior_output_file != 0)
{
FILE *output_file= ACE_OS::fopen (ior_output_file, "w");
if (output_file == 0)
ACE_ERROR_RETURN ((LM_ERROR,
"Cannot open output file for writing IOR: %s",
ior_output_file),
-1);
ACE_OS::fprintf (output_file, "%s", ior.in ());
ACE_OS::fclose (output_file);
}
// Run ORB Event loop.
poa_manager->activate ();
orb->run ();
ACE_DEBUG ((LM_DEBUG, "Server ORB event loop finished\n\n"));
}
catch (const CORBA::Exception& ex)
{
ex._tao_print_exception ("Exception caught:");
return -1;
}
return 0;
}
| [
"lihuibin705@163.com"
] | lihuibin705@163.com |
0379e345766f32f6de172ff72d0ccf221cac9920 | ce429bb79640b499402da05d6d4db95ea83b02a7 | /examples/UltraLightFastGenericFaceDetectorApp.cpp | 7d2c29a7287c43ddf4ce17de998d3a58e7bf3db8 | [
"MIT"
] | permissive | xinsuinizhuan/onnx_runtime_cpp | 6728eae8c11d1716c0b8afbd5b36e073c47f031f | 35cf4be8ccd59e841eb569800d40c9b504a62e90 | refs/heads/master | 2023-06-23T12:30:21.787565 | 2021-07-19T15:31:42 | 2021-07-19T15:31:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,287 | cpp | /**
* @file UltraLightFastGenericFaceDetectorApp.cpp
*
* @author btran
*
*/
#include "Utility.hpp"
#include "UltraLightFastGenericFaceDetector.hpp"
static const std::vector<std::string> FACE_CLASSES = {"face"};
static constexpr int64_t FACE_NUM_CLASSES = 1;
static const std::vector<std::array<int, 3>> FACE_COLOR_CHART =
Ort::generateColorCharts(FACE_NUM_CLASSES, 2020 /* choosing awesome 2020 as seed point */);
static constexpr const float CONFIDENCE_THRESHOLD = 0.7;
static constexpr const float NMS_THRESHOLD = 0.3;
static const std::vector<cv::Scalar> COLORS = toCvScalarColors(FACE_COLOR_CHART);
namespace
{
cv::Mat processOneFrame(Ort::UltraLightFastGenericFaceDetector& osh, const cv::Mat& inputImg, float* dst,
const float confThresh = CONFIDENCE_THRESHOLD, const float nmsThresh = NMS_THRESHOLD);
} // namespace
int main(int argc, char* argv[])
{
if (argc != 3) {
std::cerr << "Usage: [apps] [path/to/onnx/version-RFB-640.onnx] [path/to/image]" << std::endl;
return EXIT_FAILURE;
}
const std::string ONNX_MODEL_PATH = argv[1];
const std::string IMAGE_PATH = argv[2];
cv::Mat img = cv::imread(IMAGE_PATH);
if (img.empty()) {
std::cerr << "Failed to read input image" << std::endl;
return EXIT_FAILURE;
}
Ort::UltraLightFastGenericFaceDetector osh(
ONNX_MODEL_PATH, 0,
std::vector<std::vector<int64_t>>{{1, Ort::UltraLightFastGenericFaceDetector::IMG_CHANNEL,
Ort::UltraLightFastGenericFaceDetector::IMG_H,
Ort::UltraLightFastGenericFaceDetector::IMG_W}});
osh.initClassNames(FACE_CLASSES);
std::vector<float> dst(Ort::UltraLightFastGenericFaceDetector::IMG_CHANNEL *
Ort::UltraLightFastGenericFaceDetector::IMG_H *
Ort::UltraLightFastGenericFaceDetector::IMG_W);
auto result = processOneFrame(osh, img, dst.data());
cv::imwrite("result.jpg", result);
return 0;
}
namespace
{
cv::Mat processOneFrame(Ort::UltraLightFastGenericFaceDetector& osh, const cv::Mat& inputImg, float* dst,
const float confThresh, const float nmsThresh)
{
int origH = inputImg.rows;
int origW = inputImg.cols;
cv::Mat processedImg;
cv::resize(inputImg, processedImg, cv::Size(osh.IMG_W, osh.IMG_H));
osh.preprocess(dst, processedImg.data, osh.IMG_W, osh.IMG_H, 3);
auto inferenceOutput = osh({dst});
// output includes two tensors:
// confidences: 1 x 17640 x 2 (2 represents 2 classes of background and face)
// bboxes: 1 x 17640 x 4 (4 represents bbox coordinates)
int numAnchors = inferenceOutput[0].second[1];
std::vector<std::array<float, 4>> bboxes;
std::vector<float> scores;
std::vector<uint64_t> classIndices;
for (auto indices = std::make_pair(0, 0); indices.first < numAnchors * 2 && indices.second < numAnchors * 4;
indices.first += 2, indices.second += 4) {
float conf = inferenceOutput[0].first[indices.first + 1];
if (conf < confThresh) {
continue;
}
float xmin = inferenceOutput[1].first[indices.second + 0] * origW;
float ymin = inferenceOutput[1].first[indices.second + 1] * origH;
float xmax = inferenceOutput[1].first[indices.second + 2] * origW;
float ymax = inferenceOutput[1].first[indices.second + 3] * origH;
bboxes.emplace_back(std::array<float, 4>{xmin, ymin, xmax, ymax});
scores.emplace_back(conf);
// only consider face
classIndices.emplace_back(0);
}
if (bboxes.size() == 0) {
return inputImg;
}
auto afterNmsIndices = Ort::nms(bboxes, scores, nmsThresh);
std::vector<std::array<float, 4>> afterNmsBboxes;
std::vector<uint64_t> afterNmsClassIndices;
afterNmsBboxes.reserve(afterNmsIndices.size());
afterNmsClassIndices.reserve(afterNmsIndices.size());
for (const auto idx : afterNmsIndices) {
afterNmsBboxes.emplace_back(bboxes[idx]);
afterNmsClassIndices.emplace_back(classIndices[idx]);
}
return visualizeOneImage(inputImg, afterNmsBboxes, afterNmsClassIndices, COLORS, osh.classNames());
}
} // namespace
| [
"thba1590@gmail.com"
] | thba1590@gmail.com |
d8328652079cfe4eb3e4f087ccd091e49b72e436 | 69b4f7c49f18fc193f49275a2d32ffbcbe70471d | /Codeforces/B. T-shirt buying.cpp | 2d1515735dee4fd20ccba897ecad749b8e119711 | [] | no_license | TD2106/Competitive-Programming | 05f322a14f1e7a1d62633b713f1416ab0c547b3b | 2905c9d5f36909330fc3637f5461aaba8928a154 | refs/heads/master | 2020-04-03T12:59:49.790124 | 2019-09-21T14:51:08 | 2019-09-21T14:51:08 | 155,270,877 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,198 | cpp | #include <bits/stdc++.h>
#define bug(x) cout << #x << " = " << x << endl
using namespace std;
typedef long long int ll;
pair<pair<int,int>,int> tShirt[200005];
set< pair<int,int> > tShirtPrice[4];
set< pair<int,int> >::iterator itr;
int main(){
int n,p,a,b,m,c,Ti,temp,idx;
cin>>n;
for(int i=1;i<=n;i++) cin>>tShirt[i].second;
for(int i=1;i<=n;i++) cin>>tShirt[i].first.first;
for(int i=1;i<=n;i++) cin>>tShirt[i].first.second;
for(int i=1;i<=n;i++){
tShirtPrice[tShirt[i].first.first].insert(make_pair(tShirt[i].second,i));
tShirtPrice[tShirt[i].first.second].insert(make_pair(tShirt[i].second,i));
}
cin>>m;
while(m--){
cin>>c;
if(tShirtPrice[c].size()==0) Ti=-1;
else{
itr=tShirtPrice[c].begin();
Ti=itr->first;
idx=itr->second;
tShirtPrice[c].erase(make_pair(Ti,idx));
if(tShirt[idx].first.first==c){
tShirtPrice[tShirt[idx].first.second].erase(make_pair(Ti,idx));
}
else{
tShirtPrice[tShirt[idx].first.first].erase(make_pair(Ti,idx));
}
}
cout<<Ti<<" ";
}
return 0;
}
| [
"duy.le@ubitec.ch"
] | duy.le@ubitec.ch |
2547e05c65eef94574cebb12ea0bab882b830f9a | 7f4bd758976e4c3fc5f6e3864837e70c241b472d | /src/NestingLevelTest.h | 1b14948f45913d918baee08b004044cde0b6bcff | [
"Apache-2.0"
] | permissive | dspinellis/cqmetrics | d8b78d8db7d45a7e77533569701aeb7701bfc471 | 5466255e7d00687d86d21f8fd77e1eed4f16962d | refs/heads/master | 2022-06-24T01:47:09.510251 | 2022-06-14T07:53:29 | 2022-06-14T07:53:29 | 22,557,991 | 60 | 16 | NOASSERTION | 2022-06-14T07:53:30 | 2014-08-02T21:39:20 | C++ | UTF-8 | C++ | false | false | 17,158 | h | #ifndef NESTINGLEVELTEST_H
#define NESTINGLEVELTEST_H
#include <ostream>
#include <cppunit/extensions/HelperMacros.h>
#include "NestingLevel.h"
class NestingLevelTest : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(NestingLevelTest);
CPPUNIT_TEST(testCtor);
CPPUNIT_TEST(testReset);
CPPUNIT_TEST(testSingleIf);
CPPUNIT_TEST(testDouble);
CPPUNIT_TEST(testTrivialBrace);
CPPUNIT_TEST(testDoubleTrivialBrace);
CPPUNIT_TEST(testSimpleBrace);
CPPUNIT_TEST(testNestingBrace);
CPPUNIT_TEST(testDoubleNestingBrace);
CPPUNIT_TEST(testBraceProtection);
CPPUNIT_TEST(testDoubleBraceProtection);
CPPUNIT_TEST(testIfElseBrace);
CPPUNIT_TEST(testIfElse);
CPPUNIT_TEST(testBracedIfElse);
CPPUNIT_TEST(testGnuBracedIfElse);
CPPUNIT_TEST(testIfIfElse);
CPPUNIT_TEST(testElseIf);
CPPUNIT_TEST(testBracedElseIf);
CPPUNIT_TEST(testBracedElseIfElse);
CPPUNIT_TEST(testComplexBracedElseIf);
CPPUNIT_TEST(testSimpleDo);
CPPUNIT_TEST(testBracedDo);
CPPUNIT_TEST(testBracedDoWhile);
CPPUNIT_TEST(testUnbracedDoWhile);
CPPUNIT_TEST(testUnbracedDoNestedWhile);
CPPUNIT_TEST(testUnbracedNestedDoNestedWhile);
CPPUNIT_TEST(testSingleWhile);
CPPUNIT_TEST(testAllStatements);
CPPUNIT_TEST(testBracedAssignment);
CPPUNIT_TEST(testIfForElse);
CPPUNIT_TEST(testElseElse);
CPPUNIT_TEST_SUITE_END();
public:
void testCtor() {
NestingLevel n;
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// }}}
// Uncovered implementation error
void testReset() {
NestingLevel n;
n.saw_close_brace();
n.saw_close_brace();
n.saw_close_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// if (x) 1;
void testSingleIf() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// if (x) if (y) 2; 0;
// Uncovered implementation error
void testDouble() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::IF);
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// { 0; }
void testTrivialBrace() {
NestingLevel n;
n.saw_open_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_close_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// {{ 0; }{
void testDoubleTrivialBrace() {
NestingLevel n;
n.saw_open_brace();
n.saw_open_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_close_brace();
n.saw_close_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// if (x) { 1; 1; }
void testSimpleBrace() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::IF);
n.saw_open_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_close_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// if (x) if (y) { 2; 2; }
void testNestingBrace() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::IF);
n.saw_nesting_keyword(CKeyword::IF);
n.saw_open_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_close_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// if (x) { 1; if (y) { 2; 2; } 1; 1; } 0;
void testDoubleNestingBrace() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::IF);
n.saw_open_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_nesting_keyword(CKeyword::IF);
n.saw_open_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_close_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_close_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// if (x) { if (y) 2; 1; 1; } 0;
void testBraceProtection() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::IF);
n.saw_open_brace();
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
n.saw_close_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// if (x) { if (y) if (z) 3; 1; } 0;
void testDoubleBraceProtection() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::IF);
n.saw_open_brace();
n.saw_nesting_keyword(CKeyword::IF);
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 3);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
n.saw_close_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// if (x) { if (y) 2; else 2; 1; } 0;
void testIfElseBrace() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::IF);
n.saw_open_brace();
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_nesting_keyword(CKeyword::ELSE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_close_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// if (x) 1; else 1; 0;
void testIfElse() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
n.saw_nesting_keyword(CKeyword::ELSE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// if (x) { 1; } else { 1; } 0;
void testBracedIfElse() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::IF);
n.saw_open_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
n.saw_close_brace();
n.saw_nesting_keyword(CKeyword::ELSE);
n.saw_open_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
n.saw_close_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
/*
* if (x)
* {
* 2;
* }
* else
* {
* 2;
* }
* 0;
*/
void testGnuBracedIfElse() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::IF);
n.saw_open_brace(true);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
n.saw_close_brace();
n.saw_nesting_keyword(CKeyword::ELSE);
n.saw_open_brace(true);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
n.saw_close_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// if (x) if (y) 2; else 2; 1; 0;
// Modeled implementation error
void testIfIfElse() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::IF);
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
n.saw_nesting_keyword(CKeyword::ELSE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
n.saw_nesting_keyword(CKeyword::ELSE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// if (x) 1; else if (y) 1; else 1; 0;
// Uncovered specification error: strictly it is
// if (x) 1; else if (y) 2; else 1; 0;
// Uncovered two implementation errors
void testElseIf() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
n.saw_nesting_keyword(CKeyword::ELSE);
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
n.saw_nesting_keyword(CKeyword::ELSE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// if (x) 1; else { if (y) 2; else 2; } 0;
void testBracedElseIf() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
n.saw_nesting_keyword(CKeyword::ELSE);
n.saw_open_brace();
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
n.saw_nesting_keyword(CKeyword::ELSE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
n.saw_close_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// if (x) 1; else { if (y) 2; else if (z) 2; else 2; } 0;
void testBracedElseIfElse() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
n.saw_nesting_keyword(CKeyword::ELSE);
n.saw_open_brace();
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
n.saw_nesting_keyword(CKeyword::ELSE);
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
n.saw_nesting_keyword(CKeyword::ELSE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
n.saw_close_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// if (x) 1; else { 1; if (y) 2; else 2; 1; } 0;
void testComplexBracedElseIf() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
n.saw_nesting_keyword(CKeyword::ELSE);
n.saw_open_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
n.saw_nesting_keyword(CKeyword::ELSE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_close_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// do 1; while(z); 0;
void testSimpleDo() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::DO);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
n.saw_nesting_keyword(CKeyword::WHILE);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// do { 1; 1; } while(z); 0;
void testBracedDo() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::DO);
n.saw_open_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
n.saw_close_brace();
n.saw_nesting_keyword(CKeyword::WHILE);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// do { 1; while (x) 2; 1; } while(z); 0;
void testBracedDoWhile() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::DO);
n.saw_open_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_nesting_keyword(CKeyword::WHILE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_close_brace();
n.saw_nesting_keyword(CKeyword::WHILE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// do while (x) 2; while(z); 0;
void testUnbracedDoWhile() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::DO);
n.saw_nesting_keyword(CKeyword::WHILE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_nesting_keyword(CKeyword::WHILE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// do while (x) while(y) 3; while(z); 0;
void testUnbracedDoNestedWhile() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::DO);
n.saw_nesting_keyword(CKeyword::WHILE);
n.saw_nesting_keyword(CKeyword::WHILE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 3);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_nesting_keyword(CKeyword::WHILE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// do do while (x) while(y) 4; while(z); while (w) 0;
void testUnbracedNestedDoNestedWhile() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::DO);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_nesting_keyword(CKeyword::DO);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_nesting_keyword(CKeyword::WHILE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 3);
n.saw_nesting_keyword(CKeyword::WHILE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 4);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_nesting_keyword(CKeyword::WHILE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_nesting_keyword(CKeyword::WHILE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// while (x) 1;
void testSingleWhile() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::WHILE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// if (x) for (;;) switch while (y) do 5; while(z); 0;
void testAllStatements() {
NestingLevel n;
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_nesting_keyword(CKeyword::FOR);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_nesting_keyword(CKeyword::SWITCH);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 3);
n.saw_nesting_keyword(CKeyword::WHILE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 4);
n.saw_nesting_keyword(CKeyword::DO);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 5);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 5);
n.saw_nesting_keyword(CKeyword::WHILE);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// a = { 0 }; 0;
void testBracedAssignment() {
NestingLevel n;
n.saw_open_brace();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_close_brace();
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// if (x) for (;;) 2; else 1;
// Added to investigate and verify fixing testElseComment
void testIfForElse() {
NestingLevel n;
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_nesting_keyword(CKeyword::IF);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_nesting_keyword(CKeyword::FOR);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 2);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_nesting_keyword(CKeyword::ELSE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// 0; else 1;
// Added to investigate and verify fixing testNoIf
void testElse() {
NestingLevel n;
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_nesting_keyword(CKeyword::ELSE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
// 0; else 1; else 1;
void testElseElse() {
NestingLevel n;
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_nesting_keyword(CKeyword::ELSE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
n.saw_nesting_keyword(CKeyword::ELSE);
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 1);
n.saw_statement_semicolon();
CPPUNIT_ASSERT_EQUAL(n.get_nesting_level(), 0);
}
};
#endif /* NESTINGLEVELTEST_H */
| [
"dds@aueb.gr"
] | dds@aueb.gr |
a09343f658829359aa2dfb34ffdcc41ffcd137a1 | 1846d4ff700b89a0e68b2ef6f695ea25b04fdf5c | /opencv/include/opencv2/calib3d/calib3d.hpp | fae31113d1309ecae5d506a178e801274eaf5ae7 | [] | no_license | GeekLiB/opencv_iphoneAR | 4712e66e2461d3f26a56c3c28ab7c62bb683f63d | 9bcd4dfee41fbd15ae700fd648b3411145f9d2c3 | refs/heads/master | 2021-01-09T05:45:25.467551 | 2017-02-03T12:07:20 | 2017-02-03T12:07:20 | 80,825,673 | 13 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 37,632 | hpp | /*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * The name of the copyright holders may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#ifndef __OPENCV_CALIB3D_HPP__
#define __OPENCV_CALIB3D_HPP__
#include "opencv2/core/core.hpp"
#include "opencv2/features2d/features2d.hpp"
#ifdef __cplusplus
extern "C" {
#endif
/****************************************************************************************\
* Camera Calibration, Pose Estimation and Stereo *
\****************************************************************************************/
typedef struct CvPOSITObject CvPOSITObject;
/* Allocates and initializes CvPOSITObject structure before doing cvPOSIT */
CVAPI(CvPOSITObject*) cvCreatePOSITObject( CvPoint3D32f* points, int point_count );
/* Runs POSIT (POSe from ITeration) algorithm for determining 3d position of
an object given its model and projection in a weak-perspective case */
CVAPI(void) cvPOSIT( CvPOSITObject* posit_object, CvPoint2D32f* image_points,
double focal_length, CvTermCriteria criteria,
float* rotation_matrix, float* translation_vector);
/* Releases CvPOSITObject structure */
CVAPI(void) cvReleasePOSITObject( CvPOSITObject** posit_object );
/* updates the number of RANSAC iterations */
CVAPI(int) cvRANSACUpdateNumIters( double p, double err_prob,
int model_points, int max_iters );
CVAPI(void) cvConvertPointsHomogeneous( const CvMat* src, CvMat* dst );
/* Calculates fundamental matrix given a set of corresponding points */
#define CV_FM_7POINT 1
#define CV_FM_8POINT 2
#define CV_LMEDS 4
#define CV_RANSAC 8
#define CV_FM_LMEDS_ONLY CV_LMEDS
#define CV_FM_RANSAC_ONLY CV_RANSAC
#define CV_FM_LMEDS CV_LMEDS
#define CV_FM_RANSAC CV_RANSAC
CVAPI(int) cvFindFundamentalMat( const CvMat* points1, const CvMat* points2,
CvMat* fundamental_matrix,
int method CV_DEFAULT(CV_FM_RANSAC),
double param1 CV_DEFAULT(3.), double param2 CV_DEFAULT(0.99),
CvMat* status CV_DEFAULT(NULL) );
/* For each input point on one of images
computes parameters of the corresponding
epipolar line on the other image */
CVAPI(void) cvComputeCorrespondEpilines( const CvMat* points,
int which_image,
const CvMat* fundamental_matrix,
CvMat* correspondent_lines );
/* Triangulation functions */
CVAPI(void) cvTriangulatePoints(CvMat* projMatr1, CvMat* projMatr2,
CvMat* projPoints1, CvMat* projPoints2,
CvMat* points4D);
CVAPI(void) cvCorrectMatches(CvMat* F, CvMat* points1, CvMat* points2,
CvMat* new_points1, CvMat* new_points2);
/* Computes the optimal new camera matrix according to the free scaling parameter alpha:
alpha=0 - only valid pixels will be retained in the undistorted image
alpha=1 - all the source image pixels will be retained in the undistorted image
*/
CVAPI(void) cvGetOptimalNewCameraMatrix( const CvMat* camera_matrix,
const CvMat* dist_coeffs,
CvSize image_size, double alpha,
CvMat* new_camera_matrix,
CvSize new_imag_size CV_DEFAULT(cvSize(0,0)),
CvRect* valid_pixel_ROI CV_DEFAULT(0),
int center_principal_point CV_DEFAULT(0));
/* Converts rotation vector to rotation matrix or vice versa */
CVAPI(int) cvRodrigues2( const CvMat* src, CvMat* dst,
CvMat* jacobian CV_DEFAULT(0) );
/* Finds perspective transformation between the object plane and image (view) plane */
CVAPI(int) cvFindHomography( const CvMat* src_points,
const CvMat* dst_points,
CvMat* homography,
int method CV_DEFAULT(0),
double ransacReprojThreshold CV_DEFAULT(3),
CvMat* mask CV_DEFAULT(0));
/* Computes RQ decomposition for 3x3 matrices */
CVAPI(void) cvRQDecomp3x3( const CvMat *matrixM, CvMat *matrixR, CvMat *matrixQ,
CvMat *matrixQx CV_DEFAULT(NULL),
CvMat *matrixQy CV_DEFAULT(NULL),
CvMat *matrixQz CV_DEFAULT(NULL),
CvPoint3D64f *eulerAngles CV_DEFAULT(NULL));
/* Computes projection matrix decomposition */
CVAPI(void) cvDecomposeProjectionMatrix( const CvMat *projMatr, CvMat *calibMatr,
CvMat *rotMatr, CvMat *posVect,
CvMat *rotMatrX CV_DEFAULT(NULL),
CvMat *rotMatrY CV_DEFAULT(NULL),
CvMat *rotMatrZ CV_DEFAULT(NULL),
CvPoint3D64f *eulerAngles CV_DEFAULT(NULL));
/* Computes d(AB)/dA and d(AB)/dB */
CVAPI(void) cvCalcMatMulDeriv( const CvMat* A, const CvMat* B, CvMat* dABdA, CvMat* dABdB );
/* Computes r3 = rodrigues(rodrigues(r2)*rodrigues(r1)),
t3 = rodrigues(r2)*t1 + t2 and the respective derivatives */
CVAPI(void) cvComposeRT( const CvMat* _rvec1, const CvMat* _tvec1,
const CvMat* _rvec2, const CvMat* _tvec2,
CvMat* _rvec3, CvMat* _tvec3,
CvMat* dr3dr1 CV_DEFAULT(0), CvMat* dr3dt1 CV_DEFAULT(0),
CvMat* dr3dr2 CV_DEFAULT(0), CvMat* dr3dt2 CV_DEFAULT(0),
CvMat* dt3dr1 CV_DEFAULT(0), CvMat* dt3dt1 CV_DEFAULT(0),
CvMat* dt3dr2 CV_DEFAULT(0), CvMat* dt3dt2 CV_DEFAULT(0) );
/* Projects object points to the view plane using
the specified extrinsic and intrinsic camera parameters */
CVAPI(void) cvProjectPoints2( const CvMat* object_points, const CvMat* rotation_vector,
const CvMat* translation_vector, const CvMat* camera_matrix,
const CvMat* distortion_coeffs, CvMat* image_points,
CvMat* dpdrot CV_DEFAULT(NULL), CvMat* dpdt CV_DEFAULT(NULL),
CvMat* dpdf CV_DEFAULT(NULL), CvMat* dpdc CV_DEFAULT(NULL),
CvMat* dpddist CV_DEFAULT(NULL),
double aspect_ratio CV_DEFAULT(0));
/* Finds extrinsic camera parameters from
a few known corresponding point pairs and intrinsic parameters */
CVAPI(void) cvFindExtrinsicCameraParams2( const CvMat* object_points,
const CvMat* image_points,
const CvMat* camera_matrix,
const CvMat* distortion_coeffs,
CvMat* rotation_vector,
CvMat* translation_vector,
int use_extrinsic_guess CV_DEFAULT(0) );
/* Computes initial estimate of the intrinsic camera parameters
in case of planar calibration target (e.g. chessboard) */
CVAPI(void) cvInitIntrinsicParams2D( const CvMat* object_points,
const CvMat* image_points,
const CvMat* npoints, CvSize image_size,
CvMat* camera_matrix,
double aspect_ratio CV_DEFAULT(1.) );
#define CV_CALIB_CB_ADAPTIVE_THRESH 1
#define CV_CALIB_CB_NORMALIZE_IMAGE 2
#define CV_CALIB_CB_FILTER_QUADS 4
#define CV_CALIB_CB_FAST_CHECK 8
// Performs a fast check if a chessboard is in the input image. This is a workaround to
// a problem of cvFindChessboardCorners being slow on images with no chessboard
// - src: input image
// - size: chessboard size
// Returns 1 if a chessboard can be in this image and findChessboardCorners should be called,
// 0 if there is no chessboard, -1 in case of error
CVAPI(int) cvCheckChessboard(IplImage* src, CvSize size);
/* Detects corners on a chessboard calibration pattern */
CVAPI(int) cvFindChessboardCorners( const void* image, CvSize pattern_size,
CvPoint2D32f* corners,
int* corner_count CV_DEFAULT(NULL),
int flags CV_DEFAULT(CV_CALIB_CB_ADAPTIVE_THRESH+
CV_CALIB_CB_NORMALIZE_IMAGE) );
/* Draws individual chessboard corners or the whole chessboard detected */
CVAPI(void) cvDrawChessboardCorners( CvArr* image, CvSize pattern_size,
CvPoint2D32f* corners,
int count, int pattern_was_found );
#define CV_CALIB_USE_INTRINSIC_GUESS 1
#define CV_CALIB_FIX_ASPECT_RATIO 2
#define CV_CALIB_FIX_PRINCIPAL_POINT 4
#define CV_CALIB_ZERO_TANGENT_DIST 8
#define CV_CALIB_FIX_FOCAL_LENGTH 16
#define CV_CALIB_FIX_K1 32
#define CV_CALIB_FIX_K2 64
#define CV_CALIB_FIX_K3 128
#define CV_CALIB_FIX_K4 2048
#define CV_CALIB_FIX_K5 4096
#define CV_CALIB_FIX_K6 8192
#define CV_CALIB_RATIONAL_MODEL 16384
/* Finds intrinsic and extrinsic camera parameters
from a few views of known calibration pattern */
CVAPI(double) cvCalibrateCamera2( const CvMat* object_points,
const CvMat* image_points,
const CvMat* point_counts,
CvSize image_size,
CvMat* camera_matrix,
CvMat* distortion_coeffs,
CvMat* rotation_vectors CV_DEFAULT(NULL),
CvMat* translation_vectors CV_DEFAULT(NULL),
int flags CV_DEFAULT(0) );
/* Computes various useful characteristics of the camera from the data computed by
cvCalibrateCamera2 */
CVAPI(void) cvCalibrationMatrixValues( const CvMat *camera_matrix,
CvSize image_size,
double aperture_width CV_DEFAULT(0),
double aperture_height CV_DEFAULT(0),
double *fovx CV_DEFAULT(NULL),
double *fovy CV_DEFAULT(NULL),
double *focal_length CV_DEFAULT(NULL),
CvPoint2D64f *principal_point CV_DEFAULT(NULL),
double *pixel_aspect_ratio CV_DEFAULT(NULL));
#define CV_CALIB_FIX_INTRINSIC 256
#define CV_CALIB_SAME_FOCAL_LENGTH 512
/* Computes the transformation from one camera coordinate system to another one
from a few correspondent views of the same calibration target. Optionally, calibrates
both cameras */
CVAPI(double) cvStereoCalibrate( const CvMat* object_points, const CvMat* image_points1,
const CvMat* image_points2, const CvMat* npoints,
CvMat* camera_matrix1, CvMat* dist_coeffs1,
CvMat* camera_matrix2, CvMat* dist_coeffs2,
CvSize image_size, CvMat* R, CvMat* T,
CvMat* E CV_DEFAULT(0), CvMat* F CV_DEFAULT(0),
CvTermCriteria term_crit CV_DEFAULT(cvTermCriteria(
CV_TERMCRIT_ITER+CV_TERMCRIT_EPS,30,1e-6)),
int flags CV_DEFAULT(CV_CALIB_FIX_INTRINSIC));
#define CV_CALIB_ZERO_DISPARITY 1024
/* Computes 3D rotations (+ optional shift) for each camera coordinate system to make both
views parallel (=> to make all the epipolar lines horizontal or vertical) */
CVAPI(void) cvStereoRectify( const CvMat* camera_matrix1, const CvMat* camera_matrix2,
const CvMat* dist_coeffs1, const CvMat* dist_coeffs2,
CvSize image_size, const CvMat* R, const CvMat* T,
CvMat* R1, CvMat* R2, CvMat* P1, CvMat* P2,
CvMat* Q CV_DEFAULT(0),
int flags CV_DEFAULT(CV_CALIB_ZERO_DISPARITY),
double alpha CV_DEFAULT(-1),
CvSize new_image_size CV_DEFAULT(cvSize(0,0)),
CvRect* valid_pix_ROI1 CV_DEFAULT(0),
CvRect* valid_pix_ROI2 CV_DEFAULT(0));
/* Computes rectification transformations for uncalibrated pair of images using a set
of point correspondences */
CVAPI(int) cvStereoRectifyUncalibrated( const CvMat* points1, const CvMat* points2,
const CvMat* F, CvSize img_size,
CvMat* H1, CvMat* H2,
double threshold CV_DEFAULT(5));
/* stereo correspondence parameters and functions */
#define CV_STEREO_BM_NORMALIZED_RESPONSE 0
#define CV_STEREO_BM_XSOBEL 1
/* Block matching algorithm structure */
typedef struct CvStereoBMState
{
// pre-filtering (normalization of input images)
int preFilterType; // =CV_STEREO_BM_NORMALIZED_RESPONSE now
int preFilterSize; // averaging window size: ~5x5..21x21
int preFilterCap; // the output of pre-filtering is clipped by [-preFilterCap,preFilterCap]
// correspondence using Sum of Absolute Difference (SAD)
int SADWindowSize; // ~5x5..21x21
int minDisparity; // minimum disparity (can be negative)
int numberOfDisparities; // maximum disparity - minimum disparity (> 0)
// post-filtering
int textureThreshold; // the disparity is only computed for pixels
// with textured enough neighborhood
int uniquenessRatio; // accept the computed disparity d* only if
// SAD(d) >= SAD(d*)*(1 + uniquenessRatio/100.)
// for any d != d*+/-1 within the search range.
int speckleWindowSize; // disparity variation window
int speckleRange; // acceptable range of variation in window
int trySmallerWindows; // if 1, the results may be more accurate,
// at the expense of slower processing
CvRect roi1, roi2;
int disp12MaxDiff;
// temporary buffers
CvMat* preFilteredImg0;
CvMat* preFilteredImg1;
CvMat* slidingSumBuf;
CvMat* cost;
CvMat* disp;
} CvStereoBMState;
#define CV_STEREO_BM_BASIC 0
#define CV_STEREO_BM_FISH_EYE 1
#define CV_STEREO_BM_NARROW 2
CVAPI(CvStereoBMState*) cvCreateStereoBMState(int preset CV_DEFAULT(CV_STEREO_BM_BASIC),
int numberOfDisparities CV_DEFAULT(0));
CVAPI(void) cvReleaseStereoBMState( CvStereoBMState** state );
CVAPI(void) cvFindStereoCorrespondenceBM( const CvArr* left, const CvArr* right,
CvArr* disparity, CvStereoBMState* state );
CVAPI(CvRect) cvGetValidDisparityROI( CvRect roi1, CvRect roi2, int minDisparity,
int numberOfDisparities, int SADWindowSize );
CVAPI(void) cvValidateDisparity( CvArr* disparity, const CvArr* cost,
int minDisparity, int numberOfDisparities,
int disp12MaxDiff CV_DEFAULT(1) );
/* Kolmogorov-Zabin stereo-correspondence algorithm (a.k.a. KZ1) */
#define CV_STEREO_GC_OCCLUDED SHRT_MAX
typedef struct CvStereoGCState
{
int Ithreshold;
int interactionRadius;
float K, lambda, lambda1, lambda2;
int occlusionCost;
int minDisparity;
int numberOfDisparities;
int maxIters;
CvMat* left;
CvMat* right;
CvMat* dispLeft;
CvMat* dispRight;
CvMat* ptrLeft;
CvMat* ptrRight;
CvMat* vtxBuf;
CvMat* edgeBuf;
} CvStereoGCState;
CVAPI(CvStereoGCState*) cvCreateStereoGCState( int numberOfDisparities, int maxIters );
CVAPI(void) cvReleaseStereoGCState( CvStereoGCState** state );
CVAPI(void) cvFindStereoCorrespondenceGC( const CvArr* left, const CvArr* right,
CvArr* disparityLeft, CvArr* disparityRight,
CvStereoGCState* state,
int useDisparityGuess CV_DEFAULT(0) );
/* Reprojects the computed disparity image to the 3D space using the specified 4x4 matrix */
CVAPI(void) cvReprojectImageTo3D( const CvArr* disparityImage,
CvArr* _3dImage, const CvMat* Q,
int handleMissingValues CV_DEFAULT(0) );
#ifdef __cplusplus
}
//////////////////////////////////////////////////////////////////////////////////////////
class CV_EXPORTS CvLevMarq
{
public:
CvLevMarq();
CvLevMarq( int nparams, int nerrs, CvTermCriteria criteria=
cvTermCriteria(CV_TERMCRIT_EPS+CV_TERMCRIT_ITER,30,DBL_EPSILON),
bool completeSymmFlag=false );
~CvLevMarq();
void init( int nparams, int nerrs, CvTermCriteria criteria=
cvTermCriteria(CV_TERMCRIT_EPS+CV_TERMCRIT_ITER,30,DBL_EPSILON),
bool completeSymmFlag=false );
bool update( const CvMat*& param, CvMat*& J, CvMat*& err );
bool updateAlt( const CvMat*& param, CvMat*& JtJ, CvMat*& JtErr, double*& errNorm );
void clear();
void step();
enum { DONE=0, STARTED=1, CALC_J=2, CHECK_ERR=3 };
cv::Ptr<CvMat> mask;
cv::Ptr<CvMat> prevParam;
cv::Ptr<CvMat> param;
cv::Ptr<CvMat> J;
cv::Ptr<CvMat> err;
cv::Ptr<CvMat> JtJ;
cv::Ptr<CvMat> JtJN;
cv::Ptr<CvMat> JtErr;
cv::Ptr<CvMat> JtJV;
cv::Ptr<CvMat> JtJW;
double prevErrNorm, errNorm;
int lambdaLg10;
CvTermCriteria criteria;
int state;
int iters;
bool completeSymmFlag;
};
namespace cv
{
//! converts rotation vector to rotation matrix or vice versa using Rodrigues transformation
CV_EXPORTS_W void Rodrigues(InputArray src, OutputArray dst, OutputArray jacobian=noArray());
//! type of the robust estimation algorithm
enum
{
LMEDS=CV_LMEDS, //!< least-median algorithm
RANSAC=CV_RANSAC //!< RANSAC algorithm
};
//! computes the best-fit perspective transformation mapping srcPoints to dstPoints.
CV_EXPORTS_W Mat findHomography( InputArray srcPoints, InputArray dstPoints,
int method=0, double ransacReprojThreshold=3,
OutputArray mask=noArray());
//! variant of findHomography for backward compatibility
CV_EXPORTS Mat findHomography( InputArray srcPoints, InputArray dstPoints,
OutputArray mask, int method=0, double ransacReprojThreshold=3);
//! Computes RQ decomposition of 3x3 matrix
CV_EXPORTS_W Vec3d RQDecomp3x3( InputArray src, OutputArray mtxR, OutputArray mtxQ,
OutputArray Qx=noArray(),
OutputArray Qy=noArray(),
OutputArray Qz=noArray());
//! Decomposes the projection matrix into camera matrix and the rotation martix and the translation vector
CV_EXPORTS_W void decomposeProjectionMatrix( InputArray projMatrix, OutputArray cameraMatrix,
OutputArray rotMatrix, OutputArray transVect,
OutputArray rotMatrixX=noArray(),
OutputArray rotMatrixY=noArray(),
OutputArray rotMatrixZ=noArray(),
OutputArray eulerAngles=noArray() );
//! computes derivatives of the matrix product w.r.t each of the multiplied matrix coefficients
CV_EXPORTS_W void matMulDeriv( InputArray A, InputArray B,
OutputArray dABdA,
OutputArray dABdB );
//! composes 2 [R|t] transformations together. Also computes the derivatives of the result w.r.t the arguments
CV_EXPORTS_W void composeRT( InputArray rvec1, InputArray tvec1,
InputArray rvec2, InputArray tvec2,
OutputArray rvec3, OutputArray tvec3,
OutputArray dr3dr1=noArray(), OutputArray dr3dt1=noArray(),
OutputArray dr3dr2=noArray(), OutputArray dr3dt2=noArray(),
OutputArray dt3dr1=noArray(), OutputArray dt3dt1=noArray(),
OutputArray dt3dr2=noArray(), OutputArray dt3dt2=noArray() );
//! projects points from the model coordinate space to the image coordinates. Also computes derivatives of the image coordinates w.r.t the intrinsic and extrinsic camera parameters
CV_EXPORTS_W void projectPoints( InputArray objectPoints,
InputArray rvec, InputArray tvec,
InputArray cameraMatrix, InputArray distCoeffs,
OutputArray imagePoints,
OutputArray jacobian=noArray(),
double aspectRatio=0 );
//! computes the camera pose from a few 3D points and the corresponding projections. The outliers are not handled.
CV_EXPORTS_W void solvePnP( InputArray objectPoints, InputArray imagePoints,
InputArray cameraMatrix, InputArray distCoeffs,
OutputArray rvec, OutputArray tvec,
bool useExtrinsicGuess=false );
//! computes the camera pose from a few 3D points and the corresponding projections. The outliers are possible.
CV_EXPORTS_W void solvePnPRansac( InputArray objectPoints,
InputArray imagePoints,
InputArray cameraMatrix,
InputArray distCoeffs,
OutputArray rvec,
OutputArray tvec,
bool useExtrinsicGuess = false,
int iterationsCount = 100,
float reprojectionError = 8.0,
int minInliersCount = 100,
OutputArray inliers = noArray() );
//! initializes camera matrix from a few 3D points and the corresponding projections.
CV_EXPORTS_W Mat initCameraMatrix2D( InputArrayOfArrays objectPoints,
InputArrayOfArrays imagePoints,
Size imageSize, double aspectRatio=1. );
enum { CALIB_CB_ADAPTIVE_THRESH = 1, CALIB_CB_NORMALIZE_IMAGE = 2,
CALIB_CB_FILTER_QUADS = 4, CALIB_CB_FAST_CHECK = 8 };
//! finds checkerboard pattern of the specified size in the image
CV_EXPORTS_W bool findChessboardCorners( InputArray image, Size patternSize,
OutputArray corners,
int flags=CALIB_CB_ADAPTIVE_THRESH+
CALIB_CB_NORMALIZE_IMAGE );
//! finds subpixel-accurate positions of the chessboard corners
CV_EXPORTS bool find4QuadCornerSubpix(InputArray img, InputOutputArray corners, Size region_size);
//! draws the checkerboard pattern (found or partly found) in the image
CV_EXPORTS_W void drawChessboardCorners( InputOutputArray image, Size patternSize,
InputArray corners, bool patternWasFound );
enum { CALIB_CB_SYMMETRIC_GRID = 1, CALIB_CB_ASYMMETRIC_GRID = 2,
CALIB_CB_CLUSTERING = 4 };
//! finds circles' grid pattern of the specified size in the image
CV_EXPORTS bool findCirclesGrid( InputArray image, Size patternSize,
OutputArray centers, int flags=CALIB_CB_SYMMETRIC_GRID,
const Ptr<FeatureDetector> &blobDetector = new SimpleBlobDetector());
CV_EXPORTS_W bool findCirclesGridDefault( InputArray image, Size patternSize,
OutputArray centers, int flags=CALIB_CB_SYMMETRIC_GRID );
enum
{
CALIB_USE_INTRINSIC_GUESS = CV_CALIB_USE_INTRINSIC_GUESS,
CALIB_FIX_ASPECT_RATIO = CV_CALIB_FIX_ASPECT_RATIO,
CALIB_FIX_PRINCIPAL_POINT = CV_CALIB_FIX_PRINCIPAL_POINT,
CALIB_ZERO_TANGENT_DIST = CV_CALIB_ZERO_TANGENT_DIST,
CALIB_FIX_FOCAL_LENGTH = CV_CALIB_FIX_FOCAL_LENGTH,
CALIB_FIX_K1 = CV_CALIB_FIX_K1,
CALIB_FIX_K2 = CV_CALIB_FIX_K2,
CALIB_FIX_K3 = CV_CALIB_FIX_K3,
CALIB_FIX_K4 = CV_CALIB_FIX_K4,
CALIB_FIX_K5 = CV_CALIB_FIX_K5,
CALIB_FIX_K6 = CV_CALIB_FIX_K6,
CALIB_RATIONAL_MODEL = CV_CALIB_RATIONAL_MODEL,
// only for stereo
CALIB_FIX_INTRINSIC = CV_CALIB_FIX_INTRINSIC,
CALIB_SAME_FOCAL_LENGTH = CV_CALIB_SAME_FOCAL_LENGTH,
// for stereo rectification
CALIB_ZERO_DISPARITY = CV_CALIB_ZERO_DISPARITY
};
//! finds intrinsic and extrinsic camera parameters from several fews of a known calibration pattern.
CV_EXPORTS_W double calibrateCamera( InputArrayOfArrays objectPoints,
InputArrayOfArrays imagePoints,
Size imageSize,
CV_OUT InputOutputArray cameraMatrix,
CV_OUT InputOutputArray distCoeffs,
OutputArrayOfArrays rvecs, OutputArrayOfArrays tvecs,
int flags=0 );
//! computes several useful camera characteristics from the camera matrix, camera frame resolution and the physical sensor size.
CV_EXPORTS_W void calibrationMatrixValues( InputArray cameraMatrix,
Size imageSize,
double apertureWidth,
double apertureHeight,
CV_OUT double& fovx,
CV_OUT double& fovy,
CV_OUT double& focalLength,
CV_OUT Point2d& principalPoint,
CV_OUT double& aspectRatio );
//! finds intrinsic and extrinsic parameters of a stereo camera
CV_EXPORTS_W double stereoCalibrate( InputArrayOfArrays objectPoints,
InputArrayOfArrays imagePoints1,
InputArrayOfArrays imagePoints2,
CV_OUT InputOutputArray cameraMatrix1,
CV_OUT InputOutputArray distCoeffs1,
CV_OUT InputOutputArray cameraMatrix2,
CV_OUT InputOutputArray distCoeffs2,
Size imageSize, OutputArray R,
OutputArray T, OutputArray E, OutputArray F,
TermCriteria criteria = TermCriteria(TermCriteria::COUNT+
TermCriteria::EPS, 30, 1e-6),
int flags=CALIB_FIX_INTRINSIC );
//! computes the rectification transformation for a stereo camera from its intrinsic and extrinsic parameters
CV_EXPORTS_W void stereoRectify( InputArray cameraMatrix1, InputArray distCoeffs1,
InputArray cameraMatrix2, InputArray distCoeffs2,
Size imageSize, InputArray R, InputArray T,
OutputArray R1, OutputArray R2,
OutputArray P1, OutputArray P2,
OutputArray Q, int flags=CALIB_ZERO_DISPARITY,
double alpha=-1, Size newImageSize=Size(),
CV_OUT Rect* validPixROI1=0, CV_OUT Rect* validPixROI2=0 );
//! computes the rectification transformation for an uncalibrated stereo camera (zero distortion is assumed)
CV_EXPORTS_W bool stereoRectifyUncalibrated( InputArray points1, InputArray points2,
InputArray F, Size imgSize,
OutputArray H1, OutputArray H2,
double threshold=5 );
//! computes the rectification transformations for 3-head camera, where all the heads are on the same line.
CV_EXPORTS_W float rectify3Collinear( InputArray cameraMatrix1, InputArray distCoeffs1,
InputArray cameraMatrix2, InputArray distCoeffs2,
InputArray cameraMatrix3, InputArray distCoeffs3,
InputArrayOfArrays imgpt1, InputArrayOfArrays imgpt3,
Size imageSize, InputArray R12, InputArray T12,
InputArray R13, InputArray T13,
OutputArray R1, OutputArray R2, OutputArray R3,
OutputArray P1, OutputArray P2, OutputArray P3,
OutputArray Q, double alpha, Size newImgSize,
CV_OUT Rect* roi1, CV_OUT Rect* roi2, int flags );
//! returns the optimal new camera matrix
CV_EXPORTS_W Mat getOptimalNewCameraMatrix( InputArray cameraMatrix, InputArray distCoeffs,
Size imageSize, double alpha, Size newImgSize=Size(),
CV_OUT Rect* validPixROI=0, bool centerPrincipalPoint=false);
//! converts point coordinates from normal pixel coordinates to homogeneous coordinates ((x,y)->(x,y,1))
CV_EXPORTS_W void convertPointsToHomogeneous( InputArray src, OutputArray dst );
//! converts point coordinates from homogeneous to normal pixel coordinates ((x,y,z)->(x/z, y/z))
CV_EXPORTS_W void convertPointsFromHomogeneous( InputArray src, OutputArray dst );
//! for backward compatibility
CV_EXPORTS void convertPointsHomogeneous( InputArray src, OutputArray dst );
//! the algorithm for finding fundamental matrix
enum
{
FM_7POINT = CV_FM_7POINT, //!< 7-point algorithm
FM_8POINT = CV_FM_8POINT, //!< 8-point algorithm
FM_LMEDS = CV_FM_LMEDS, //!< least-median algorithm
FM_RANSAC = CV_FM_RANSAC //!< RANSAC algorithm
};
//! finds fundamental matrix from a set of corresponding 2D points
CV_EXPORTS_W Mat findFundamentalMat( InputArray points1, InputArray points2,
int method=FM_RANSAC,
double param1=3., double param2=0.99,
OutputArray mask=noArray());
//! variant of findFundamentalMat for backward compatibility
CV_EXPORTS Mat findFundamentalMat( InputArray points1, InputArray points2,
OutputArray mask, int method=FM_RANSAC,
double param1=3., double param2=0.99);
//! finds coordinates of epipolar lines corresponding the specified points
CV_EXPORTS void computeCorrespondEpilines( InputArray points1,
int whichImage, InputArray F,
OutputArray lines );
template<> CV_EXPORTS void Ptr<CvStereoBMState>::delete_obj();
/*!
Block Matching Stereo Correspondence Algorithm
The class implements BM stereo correspondence algorithm by K. Konolige.
*/
class CV_EXPORTS_W StereoBM
{
public:
enum { PREFILTER_NORMALIZED_RESPONSE = 0, PREFILTER_XSOBEL = 1,
BASIC_PRESET=0, FISH_EYE_PRESET=1, NARROW_PRESET=2 };
//! the default constructor
CV_WRAP StereoBM();
//! the full constructor taking the camera-specific preset, number of disparities and the SAD window size
CV_WRAP StereoBM(int preset, int ndisparities=0, int SADWindowSize=21);
//! the method that reinitializes the state. The previous content is destroyed
void init(int preset, int ndisparities=0, int SADWindowSize=21);
//! the stereo correspondence operator. Finds the disparity for the specified rectified stereo pair
CV_WRAP_AS(compute) void operator()( InputArray left, InputArray right,
OutputArray disparity, int disptype=CV_16S );
//! pointer to the underlying CvStereoBMState
Ptr<CvStereoBMState> state;
};
/*!
Semi-Global Block Matching Stereo Correspondence Algorithm
The class implements the original SGBM stereo correspondence algorithm by H. Hirschmuller and some its modification.
*/
class CV_EXPORTS_W StereoSGBM
{
public:
enum { DISP_SHIFT=4, DISP_SCALE = (1<<DISP_SHIFT) };
//! the default constructor
CV_WRAP StereoSGBM();
//! the full constructor taking all the necessary algorithm parameters
CV_WRAP StereoSGBM(int minDisparity, int numDisparities, int SADWindowSize,
int P1=0, int P2=0, int disp12MaxDiff=0,
int preFilterCap=0, int uniquenessRatio=0,
int speckleWindowSize=0, int speckleRange=0,
bool fullDP=false);
//! the destructor
virtual ~StereoSGBM();
//! the stereo correspondence operator that computes disparity map for the specified rectified stereo pair
CV_WRAP_AS(compute) virtual void operator()(InputArray left, InputArray right,
OutputArray disp);
CV_PROP_RW int minDisparity;
CV_PROP_RW int numberOfDisparities;
CV_PROP_RW int SADWindowSize;
CV_PROP_RW int preFilterCap;
CV_PROP_RW int uniquenessRatio;
CV_PROP_RW int P1;
CV_PROP_RW int P2;
CV_PROP_RW int speckleWindowSize;
CV_PROP_RW int speckleRange;
CV_PROP_RW int disp12MaxDiff;
CV_PROP_RW bool fullDP;
protected:
Mat buffer;
};
//! filters off speckles (small regions of incorrectly computed disparity)
CV_EXPORTS_W void filterSpeckles( InputOutputArray img, double newVal, int maxSpeckleSize, double maxDiff,
InputOutputArray buf=noArray() );
//! computes valid disparity ROI from the valid ROIs of the rectified images (that are returned by cv::stereoRectify())
CV_EXPORTS_W Rect getValidDisparityROI( Rect roi1, Rect roi2,
int minDisparity, int numberOfDisparities,
int SADWindowSize );
//! validates disparity using the left-right check. The matrix "cost" should be computed by the stereo correspondence algorithm
CV_EXPORTS_W void validateDisparity( InputOutputArray disparity, InputArray cost,
int minDisparity, int numberOfDisparities,
int disp12MaxDisp=1 );
//! reprojects disparity image to 3D: (x,y,d)->(X,Y,Z) using the matrix Q returned by cv::stereoRectify
CV_EXPORTS_W void reprojectImageTo3D( InputArray disparity,
OutputArray _3dImage, InputArray Q,
bool handleMissingValues=false,
int ddepth=-1 );
CV_EXPORTS_W int estimateAffine3D(InputArray _from, InputArray _to,
OutputArray _out, OutputArray _inliers,
double param1=3, double param2=0.99);
}
#endif
#endif
| [
"2071704272@qq.com"
] | 2071704272@qq.com |
e5c2c1cad7241f4254b3e9e4b226c0cad9b30d6e | 275f9ac804e93f3da59869c95d1d93937692b1ee | /ast.cc | fe56c7fbb06e924462b3cf6836470875625cd183 | [] | no_license | sathvik1999/A5-resources | 88c97cee1c1f262aa93e717b4d881d955d1372d8 | 859888826d1193d4cf92248b18f84f1b8c4b9afb | refs/heads/master | 2020-04-30T07:39:01.443233 | 2019-03-27T08:38:52 | 2019-03-27T08:38:52 | 176,690,620 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,403 | cc | #include "ast.hh"
template class Number_Ast<double>;
template class Number_Ast<int>;
Ast::Ast(){}
Ast::~Ast(){}
bool Ast::check_ast(){}
Symbol_Table_Entry & Ast::get_symbol_entry(){}
Data_Type Ast::get_data_type(){}
void Ast::set_data_type(Data_Type dt){}
bool Ast::is_value_zero(){}
Print_Ast::Print_Ast(Ast *v, int line){
var = v;
lineno = line;
}
Print_Ast::~Print_Ast(){}
void Print_Ast::print(ostream & file_buffer){
var->print(file_buffer);
}
Assignment_Ast::Assignment_Ast(Ast * temp_lhs, Ast * temp_rhs, int line)
{
lhs = temp_lhs;
rhs = temp_rhs;
lineno = line;
ast_num_child = binary_arity;
}
Assignment_Ast::~Assignment_Ast(){}
bool Assignment_Ast::check_ast()
{
if(lhs->get_data_type() == rhs->get_data_type())
{
return 1;
}
else
{
printf("cs316: Error = Assignment:Error\n");
exit(0);
}
}
void Assignment_Ast::print(ostream & file_buffer)
{
file_buffer<<"\n"<<AST_SPACE<<"Asgn:";
file_buffer<<"\n"<<AST_NODE_SPACE<<"LHS (";
lhs->print(file_buffer);
file_buffer<<")";
file_buffer<<"\n"<<AST_NODE_SPACE<<"RHS (";
rhs->print(file_buffer);
file_buffer<<")";
}
template <class T>
Number_Ast<T>::Number_Ast(T number, Data_Type constant_data_type, int line)
{
constant = number;
node_data_type = constant_data_type;
lineno = line;
ast_num_child = zero_arity;
}
// Number_Ast::~Number_Ast(){}
template <class T>
void Number_Ast<T>::print(ostream & file_buffer)
{
file_buffer<<"Num : "<<constant;
}
template <class T>
bool Number_Ast<T>::is_value_zero()
{
return constant == 0;
}
template <class T>
Data_Type Number_Ast<T>::get_data_type()
{
return node_data_type;
}
template <class T>
void Number_Ast<T>::set_data_type(Data_Type dt)
{
node_data_type = dt;
}
Name_Ast::Name_Ast(string & name, Symbol_Table_Entry & var_entry, int line)
{
variable_symbol_entry = &var_entry;
lineno = line;
ast_num_child = zero_arity;
}
Name_Ast::~Name_Ast(){}
void Name_Ast::set_data_type(Data_Type dt)
{
node_data_type = dt;
}
void Name_Ast::print(ostream & file_buffer)
{
file_buffer<<"Name : "<<variable_symbol_entry->get_variable_name();
}
Data_Type Name_Ast::get_data_type()
{
return node_data_type;
}
Symbol_Table_Entry & Name_Ast::get_symbol_entry(){
return *variable_symbol_entry;
}
bool Arithmetic_Expr_Ast::check_ast()
{
if(rhs)
{
if(lhs->get_data_type() == rhs->get_data_type())
{
node_data_type = lhs->get_data_type();
return 1;
}
else
{
printf("cs316: Error = Arithmetic:Error\n");
exit(0);
}
}
else
{
node_data_type = lhs->get_data_type();
return 1;
}
}
Data_Type Arithmetic_Expr_Ast::get_data_type()
{
return node_data_type;
}
void Arithmetic_Expr_Ast::set_data_type(Data_Type dt){}
Plus_Ast::Plus_Ast(Ast * l, Ast * r, int line)
{
lhs = l;
rhs = r;
lineno = line;
ast_num_child = binary_arity;
}
// Plus_Ast::~Plus_Ast() {}
void Plus_Ast::print(ostream & file_buffer)
{
file_buffer<<"\n"<<AST_NODE_SPACE<<"Arith: PLUS\n";
file_buffer<<AST_SUB_NODE_SPACE<<"LHS (";
lhs->print(file_buffer);
file_buffer<<")";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"RHS (";
rhs->print(file_buffer);
file_buffer<<")";
}
Minus_Ast::Minus_Ast(Ast * l, Ast * r, int line){
lhs = l;
rhs = r;
lineno = line;
ast_num_child = binary_arity;
}
// Minus_Ast::~Minus_Ast() {}
void Minus_Ast::print(ostream & file_buffer){
file_buffer<<"\n"<<AST_NODE_SPACE<<"Arith: MINUS\n";
file_buffer<<AST_SUB_NODE_SPACE<<"LHS (";
lhs->print(file_buffer);
file_buffer<<")";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"RHS (";
rhs->print(file_buffer);
file_buffer<<")";
}
Divide_Ast::Divide_Ast(Ast * l, Ast * r, int line){
lhs = l;
rhs = r;
lineno = line;
ast_num_child = binary_arity;
}
// Divide_Ast::~Divide_Ast() {}
void Divide_Ast::print(ostream & file_buffer){
file_buffer<<"\n"<<AST_NODE_SPACE<<"Arith: DIV\n";
file_buffer<<AST_SUB_NODE_SPACE<<"LHS (";
lhs->print(file_buffer);
file_buffer<<")";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"RHS (";
rhs->print(file_buffer);
file_buffer<<")";
}
Mult_Ast::Mult_Ast(Ast * l, Ast * r, int line){
lhs = l;
rhs = r;
lineno = line;
ast_num_child = binary_arity;
}
// Mult_Ast::~Mult_Ast() {}
void Mult_Ast::print(ostream & file_buffer){
file_buffer<<"\n"<<AST_NODE_SPACE<<"Arith: MULT\n";
file_buffer<<AST_SUB_NODE_SPACE<<"LHS (";
lhs->print(file_buffer);
file_buffer<<")";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"RHS (";
rhs->print(file_buffer);
file_buffer<<")";
}
UMinus_Ast::UMinus_Ast(Ast * l, Ast * r, int line){
// printf("yes\n");
lhs = l;
rhs = r;
lineno = line;
ast_num_child = binary_arity;
node_data_type = lhs->get_data_type();
// printf("no\n");
}
void UMinus_Ast::print(ostream & file_buffer){
// printf("here\n");
file_buffer<<"\n"<<AST_NODE_SPACE<<"Arith: UMINUS\n";
file_buffer<<AST_SUB_NODE_SPACE<<"LHS (";
lhs->print(file_buffer);
file_buffer<<")";
// printf("here\n");
}
Return_Ast::Return_Ast(int line){}
Return_Ast::~Return_Ast(){}
void Return_Ast::print(ostream & file_buffer){
}
Conditional_Expression_Ast::Conditional_Expression_Ast(Ast* c, Ast* l, Ast* r, int line)
{
lhs = l;
rhs = r;
cond = c;
lineno = line;
}
Conditional_Expression_Ast::~Conditional_Expression_Ast()
{
}
void Conditional_Expression_Ast::print(ostream & file_buffer)
{
file_buffer<<"\n"<<AST_SPACE<<"Cond:";
file_buffer<<"\n"<<AST_NODE_SPACE<<"IF_ELSE";
cond->print(file_buffer);
file_buffer<<"\n"<<AST_NODE_SPACE<<"LHS (";
lhs->print(file_buffer);
file_buffer<<")";
file_buffer<<"\n"<<AST_NODE_SPACE<<"RHS (";
rhs->print(file_buffer);
file_buffer<<")";
}
Relational_Expr_Ast::Relational_Expr_Ast(Ast * lhs, Relational_Op rop, Ast * rhs, int line)
{
lhs_condition = lhs;
rhs_condition = rhs;
rel_op = rop;
lineno = line;
}
Relational_Expr_Ast::~Relational_Expr_Ast()
{
}
void Relational_Expr_Ast::print(ostream & file_buffer)
{
if(rel_op == less_than)
{
file_buffer<<"\n"<<AST_NODE_SPACE<<"Condition: LT";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"LHS (";
lhs_condition->print(file_buffer);
file_buffer<<")";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"RHS (";
rhs_condition->print(file_buffer);
file_buffer<<")";
}
else if(rel_op == less_equalto)
{
file_buffer<<"\n"<<AST_NODE_SPACE<<"Condition: LE";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"LHS (";
lhs_condition->print(file_buffer);
file_buffer<<")";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"RHS (";
rhs_condition->print(file_buffer);
file_buffer<<")";
}
else if(rel_op == greater_equalto)
{
file_buffer<<"\n"<<AST_NODE_SPACE<<"Condition: GE";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"LHS (";
lhs_condition->print(file_buffer);
file_buffer<<")";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"RHS (";
rhs_condition->print(file_buffer);
file_buffer<<")";
}
else if(rel_op == greater_than)
{
file_buffer<<"\n"<<AST_NODE_SPACE<<"Condition: GT";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"LHS (";
lhs_condition->print(file_buffer);
file_buffer<<")";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"RHS (";
rhs_condition->print(file_buffer);
file_buffer<<")";
}
else if(rel_op == equalto)
{
file_buffer<<"\n"<<AST_NODE_SPACE<<"Condition: EQ";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"LHS (";
lhs_condition->print(file_buffer);
file_buffer<<")";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"RHS (";
rhs_condition->print(file_buffer);
file_buffer<<")";
}
else
{
file_buffer<<"\n"<<AST_NODE_SPACE<<"Condition: NE";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"LHS (";
lhs_condition->print(file_buffer);
file_buffer<<")";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"RHS (";
rhs_condition->print(file_buffer);
file_buffer<<")";
}
}
Data_Type Relational_Expr_Ast::get_data_type()
{
return node_data_type;
}
void Relational_Expr_Ast::set_data_type(Data_Type dt)
{
node_data_type = dt;
}
bool Relational_Expr_Ast::check_ast()
{
if(lhs_condition->get_data_type() == rhs_condition->get_data_type())
{
node_data_type = lhs_condition->get_data_type();
return 1;
}
else
{
printf("cs316: Error = Arithmetic:Error at rel_exp\n");
exit(0);
}
}
Logical_Expr_Ast::Logical_Expr_Ast(Ast * lhs, Logical_Op bop, Ast * rhs, int line)
{
lhs_op = lhs;
rhs_op = rhs;
bool_op = bop;
}
Logical_Expr_Ast::~Logical_Expr_Ast()
{
}
Data_Type Logical_Expr_Ast::get_data_type()
{
return node_data_type;
}
void Logical_Expr_Ast::set_data_type(Data_Type dt)
{
node_data_type = dt;
}
bool Logical_Expr_Ast::check_ast()
{
}
void Logical_Expr_Ast::print(ostream & file_buffer)
{
if(bool_op == _logical_not)
{
file_buffer<<"\n"<<AST_NODE_SPACE<<"Condition: NOT";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"RHS (";
rhs_op->print(file_buffer);
file_buffer<<")";
}
else if(bool_op == _logical_or)
{
file_buffer<<"\n"<<AST_NODE_SPACE<<"Condition: OR";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"LHS (";
lhs_op->print(file_buffer);
file_buffer<<")";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"RHS (";
rhs_op->print(file_buffer);
file_buffer<<")";
}
else
{
file_buffer<<"\n"<<AST_NODE_SPACE<<"Condition: AND";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"LHS (";
lhs_op->print(file_buffer);
file_buffer<<")";
file_buffer<<"\n"<<AST_SUB_NODE_SPACE<<"RHS (";
rhs_op->print(file_buffer);
file_buffer<<")";
}
}
Selection_Statement_Ast::Selection_Statement_Ast(Ast * c,Ast* t_part, Ast* e_part, int line)
{
cond = c;
then_part = t_part;
else_part = e_part;
lineno = line;
}
Selection_Statement_Ast::~Selection_Statement_Ast()
{
}
Data_Type Selection_Statement_Ast::get_data_type()
{
return node_data_type;
}
void Selection_Statement_Ast::set_data_type(Data_Type dt)
{
node_data_type = dt;
}
bool Selection_Statement_Ast::check_ast()
{
}
void Selection_Statement_Ast::print(ostream & file_buffer)
{
file_buffer<<"\n"<<AST_SPACE<<"IF : ";
file_buffer<<"\n"<<AST_SPACE<<"CONDITION (";
cond->print(file_buffer);
file_buffer<<")";
file_buffer<<"\n"<<AST_SPACE<<"THEN (";
then_part->print(file_buffer);
file_buffer<<")";
if(else_part)
{
file_buffer<<"\n"<<AST_SPACE<<"ELSE (";
else_part->print(file_buffer);
file_buffer<<")";
}
}
Iteration_Statement_Ast::Iteration_Statement_Ast(Ast * c, Ast* b, int line, bool do_form)
{
cond = c;
body = b;
lineno = line;
is_do_form = do_form;
}
Iteration_Statement_Ast::~Iteration_Statement_Ast()
{
}
Data_Type Iteration_Statement_Ast::get_data_type()
{
return node_data_type;
}
void Iteration_Statement_Ast::set_data_type(Data_Type dt)
{
node_data_type = dt;
}
bool Iteration_Statement_Ast::check_ast()
{
}
void Iteration_Statement_Ast::print(ostream & file_buffer)
{
if(is_do_form)
{
file_buffer<<"\n"<<AST_SPACE<<"DO (";
body->print(file_buffer);
file_buffer<<")";
file_buffer<<"\n"<<AST_SPACE<<"WHILE CONDITION (";
cond->print(file_buffer);
file_buffer<<")";
}
else
{
file_buffer<<"\n"<<AST_SPACE<<"WHILE : ";
file_buffer<<"\n"<<AST_SPACE<<"CONDITION (";
cond->print(file_buffer);
file_buffer<<")";
file_buffer<<"\n"<<AST_SPACE<<"BODY (";
body->print(file_buffer);
file_buffer<<")";
}
}
Sequence_Ast::Sequence_Ast(int line)
{
lineno = line;
}
Sequence_Ast::~Sequence_Ast()
{
}
void Sequence_Ast::ast_push_back(Ast * ast)
{
statement_list.push_back(ast);
}
void Sequence_Ast::print(ostream & file_buffer)
{
list <Ast *>::iterator i;
for (i = statement_list.begin(); i != statement_list.end(); i++)
{
file_buffer<<"\n"<<AST_NODE_SPACE;
(*i)->print(file_buffer);
}
}
| [
"sathvik@cse.iitb.ac.in"
] | sathvik@cse.iitb.ac.in |
a0d7bb42f61dc2feb2631ccbda202fba2d9996fc | ec2dd7d60c7ea8b97ea957aeed22cd6c9f3488e8 | /install/include/vision_msgs/Detection3D.h | 62649bfcaacf45ec96c5f46899efbd237654808a | [] | no_license | svrakiss/ros-stuff | d75d3d02efc2d89a89b619faf22a27c7eb68f91d | 47aae66764749a746e666708fe8fa2f358a3f947 | refs/heads/master | 2020-12-21T21:45:32.246088 | 2020-02-02T15:51:04 | 2020-02-02T15:51:04 | 236,571,090 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,429 | h | // Generated by gencpp from file vision_msgs/Detection3D.msg
// DO NOT EDIT!
#ifndef VISION_MSGS_MESSAGE_DETECTION3D_H
#define VISION_MSGS_MESSAGE_DETECTION3D_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/builtin_message_traits.h>
#include <ros/message_operations.h>
#include <std_msgs/Header.h>
#include <vision_msgs/ObjectHypothesisWithPose.h>
#include <vision_msgs/BoundingBox3D.h>
#include <sensor_msgs/PointCloud2.h>
namespace vision_msgs
{
template <class ContainerAllocator>
struct Detection3D_
{
typedef Detection3D_<ContainerAllocator> Type;
Detection3D_()
: header()
, results()
, bbox()
, source_cloud() {
}
Detection3D_(const ContainerAllocator& _alloc)
: header(_alloc)
, results(_alloc)
, bbox(_alloc)
, source_cloud(_alloc) {
(void)_alloc;
}
typedef ::std_msgs::Header_<ContainerAllocator> _header_type;
_header_type header;
typedef std::vector< ::vision_msgs::ObjectHypothesisWithPose_<ContainerAllocator> , typename ContainerAllocator::template rebind< ::vision_msgs::ObjectHypothesisWithPose_<ContainerAllocator> >::other > _results_type;
_results_type results;
typedef ::vision_msgs::BoundingBox3D_<ContainerAllocator> _bbox_type;
_bbox_type bbox;
typedef ::sensor_msgs::PointCloud2_<ContainerAllocator> _source_cloud_type;
_source_cloud_type source_cloud;
typedef boost::shared_ptr< ::vision_msgs::Detection3D_<ContainerAllocator> > Ptr;
typedef boost::shared_ptr< ::vision_msgs::Detection3D_<ContainerAllocator> const> ConstPtr;
}; // struct Detection3D_
typedef ::vision_msgs::Detection3D_<std::allocator<void> > Detection3D;
typedef boost::shared_ptr< ::vision_msgs::Detection3D > Detection3DPtr;
typedef boost::shared_ptr< ::vision_msgs::Detection3D const> Detection3DConstPtr;
// constants requiring out of line definition
template<typename ContainerAllocator>
std::ostream& operator<<(std::ostream& s, const ::vision_msgs::Detection3D_<ContainerAllocator> & v)
{
ros::message_operations::Printer< ::vision_msgs::Detection3D_<ContainerAllocator> >::stream(s, "", v);
return s;
}
} // namespace vision_msgs
namespace ros
{
namespace message_traits
{
// BOOLTRAITS {'IsMessage': True, 'IsFixedSize': False, 'HasHeader': True}
// {'vision_msgs': ['/home/nvidia/catkin_build_ws/src/vision_msgs/msg'], 'std_msgs': ['/opt/ros/melodic/share/std_msgs/cmake/../msg'], 'sensor_msgs': ['/opt/ros/melodic/share/sensor_msgs/cmake/../msg'], 'geometry_msgs': ['/opt/ros/melodic/share/geometry_msgs/cmake/../msg']}
// !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types']
template <class ContainerAllocator>
struct IsMessage< ::vision_msgs::Detection3D_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct IsMessage< ::vision_msgs::Detection3D_<ContainerAllocator> const>
: TrueType
{ };
template <class ContainerAllocator>
struct IsFixedSize< ::vision_msgs::Detection3D_<ContainerAllocator> >
: FalseType
{ };
template <class ContainerAllocator>
struct IsFixedSize< ::vision_msgs::Detection3D_<ContainerAllocator> const>
: FalseType
{ };
template <class ContainerAllocator>
struct HasHeader< ::vision_msgs::Detection3D_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct HasHeader< ::vision_msgs::Detection3D_<ContainerAllocator> const>
: TrueType
{ };
template<class ContainerAllocator>
struct MD5Sum< ::vision_msgs::Detection3D_<ContainerAllocator> >
{
static const char* value()
{
return "7f3d8e29f3ab9853108801543aec1a5d";
}
static const char* value(const ::vision_msgs::Detection3D_<ContainerAllocator>&) { return value(); }
static const uint64_t static_value1 = 0x7f3d8e29f3ab9853ULL;
static const uint64_t static_value2 = 0x108801543aec1a5dULL;
};
template<class ContainerAllocator>
struct DataType< ::vision_msgs::Detection3D_<ContainerAllocator> >
{
static const char* value()
{
return "vision_msgs/Detection3D";
}
static const char* value(const ::vision_msgs::Detection3D_<ContainerAllocator>&) { return value(); }
};
template<class ContainerAllocator>
struct Definition< ::vision_msgs::Detection3D_<ContainerAllocator> >
{
static const char* value()
{
return "# Defines a 3D detection result.\n"
"#\n"
"# This extends a basic 3D classification by including position information,\n"
"# allowing a classification result for a specific position in an image to\n"
"# to be located in the larger image.\n"
"\n"
"Header header\n"
"\n"
"# Class probabilities. Does not have to include hypotheses for all possible\n"
"# object ids, the scores for any ids not listed are assumed to be 0.\n"
"ObjectHypothesisWithPose[] results\n"
"\n"
"# 3D bounding box surrounding the object.\n"
"BoundingBox3D bbox\n"
"\n"
"# The 3D data that generated these results (i.e. region proposal cropped out of\n"
"# the image). This information is not required for all detectors, so it may\n"
"# be empty.\n"
"sensor_msgs/PointCloud2 source_cloud\n"
"\n"
"================================================================================\n"
"MSG: std_msgs/Header\n"
"# Standard metadata for higher-level stamped data types.\n"
"# This is generally used to communicate timestamped data \n"
"# in a particular coordinate frame.\n"
"# \n"
"# sequence ID: consecutively increasing ID \n"
"uint32 seq\n"
"#Two-integer timestamp that is expressed as:\n"
"# * stamp.sec: seconds (stamp_secs) since epoch (in Python the variable is called 'secs')\n"
"# * stamp.nsec: nanoseconds since stamp_secs (in Python the variable is called 'nsecs')\n"
"# time-handling sugar is provided by the client library\n"
"time stamp\n"
"#Frame this data is associated with\n"
"string frame_id\n"
"\n"
"================================================================================\n"
"MSG: vision_msgs/ObjectHypothesisWithPose\n"
"# An object hypothesis that contains position information.\n"
"\n"
"# The unique numeric ID of the object class. To get additional information about\n"
"# this ID, such as its human-readable class name, listeners should perform a\n"
"# lookup in a metadata database. See vision_msgs/VisionInfo.msg for more detail.\n"
"int64 id\n"
"\n"
"# The probability or confidence value of the detected object. By convention,\n"
"# this value should lie in the range [0-1].\n"
"float64 score\n"
"\n"
"# The 6D pose of the object hypothesis. This pose should be\n"
"# defined as the pose of some fixed reference point on the object, such a\n"
"# the geometric center of the bounding box or the center of mass of the\n"
"# object.\n"
"# Note that this pose is not stamped; frame information can be defined by\n"
"# parent messages.\n"
"# Also note that different classes predicted for the same input data may have\n"
"# different predicted 6D poses.\n"
"geometry_msgs/PoseWithCovariance pose\n"
"\n"
"================================================================================\n"
"MSG: geometry_msgs/PoseWithCovariance\n"
"# This represents a pose in free space with uncertainty.\n"
"\n"
"Pose pose\n"
"\n"
"# Row-major representation of the 6x6 covariance matrix\n"
"# The orientation parameters use a fixed-axis representation.\n"
"# In order, the parameters are:\n"
"# (x, y, z, rotation about X axis, rotation about Y axis, rotation about Z axis)\n"
"float64[36] covariance\n"
"\n"
"================================================================================\n"
"MSG: geometry_msgs/Pose\n"
"# A representation of pose in free space, composed of position and orientation. \n"
"Point position\n"
"Quaternion orientation\n"
"\n"
"================================================================================\n"
"MSG: geometry_msgs/Point\n"
"# This contains the position of a point in free space\n"
"float64 x\n"
"float64 y\n"
"float64 z\n"
"\n"
"================================================================================\n"
"MSG: geometry_msgs/Quaternion\n"
"# This represents an orientation in free space in quaternion form.\n"
"\n"
"float64 x\n"
"float64 y\n"
"float64 z\n"
"float64 w\n"
"\n"
"================================================================================\n"
"MSG: vision_msgs/BoundingBox3D\n"
"# A 3D bounding box that can be positioned and rotated about its center (6 DOF)\n"
"# Dimensions of this box are in meters, and as such, it may be migrated to\n"
"# another package, such as geometry_msgs, in the future.\n"
"\n"
"# The 3D position and orientation of the bounding box center\n"
"geometry_msgs/Pose center\n"
"\n"
"# The size of the bounding box, in meters, surrounding the object's center\n"
"# pose.\n"
"geometry_msgs/Vector3 size\n"
"\n"
"================================================================================\n"
"MSG: geometry_msgs/Vector3\n"
"# This represents a vector in free space. \n"
"# It is only meant to represent a direction. Therefore, it does not\n"
"# make sense to apply a translation to it (e.g., when applying a \n"
"# generic rigid transformation to a Vector3, tf2 will only apply the\n"
"# rotation). If you want your data to be translatable too, use the\n"
"# geometry_msgs/Point message instead.\n"
"\n"
"float64 x\n"
"float64 y\n"
"float64 z\n"
"================================================================================\n"
"MSG: sensor_msgs/PointCloud2\n"
"# This message holds a collection of N-dimensional points, which may\n"
"# contain additional information such as normals, intensity, etc. The\n"
"# point data is stored as a binary blob, its layout described by the\n"
"# contents of the \"fields\" array.\n"
"\n"
"# The point cloud data may be organized 2d (image-like) or 1d\n"
"# (unordered). Point clouds organized as 2d images may be produced by\n"
"# camera depth sensors such as stereo or time-of-flight.\n"
"\n"
"# Time of sensor data acquisition, and the coordinate frame ID (for 3d\n"
"# points).\n"
"Header header\n"
"\n"
"# 2D structure of the point cloud. If the cloud is unordered, height is\n"
"# 1 and width is the length of the point cloud.\n"
"uint32 height\n"
"uint32 width\n"
"\n"
"# Describes the channels and their layout in the binary data blob.\n"
"PointField[] fields\n"
"\n"
"bool is_bigendian # Is this data bigendian?\n"
"uint32 point_step # Length of a point in bytes\n"
"uint32 row_step # Length of a row in bytes\n"
"uint8[] data # Actual point data, size is (row_step*height)\n"
"\n"
"bool is_dense # True if there are no invalid points\n"
"\n"
"================================================================================\n"
"MSG: sensor_msgs/PointField\n"
"# This message holds the description of one point entry in the\n"
"# PointCloud2 message format.\n"
"uint8 INT8 = 1\n"
"uint8 UINT8 = 2\n"
"uint8 INT16 = 3\n"
"uint8 UINT16 = 4\n"
"uint8 INT32 = 5\n"
"uint8 UINT32 = 6\n"
"uint8 FLOAT32 = 7\n"
"uint8 FLOAT64 = 8\n"
"\n"
"string name # Name of field\n"
"uint32 offset # Offset from start of point struct\n"
"uint8 datatype # Datatype enumeration, see above\n"
"uint32 count # How many elements in the field\n"
;
}
static const char* value(const ::vision_msgs::Detection3D_<ContainerAllocator>&) { return value(); }
};
} // namespace message_traits
} // namespace ros
namespace ros
{
namespace serialization
{
template<class ContainerAllocator> struct Serializer< ::vision_msgs::Detection3D_<ContainerAllocator> >
{
template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
{
stream.next(m.header);
stream.next(m.results);
stream.next(m.bbox);
stream.next(m.source_cloud);
}
ROS_DECLARE_ALLINONE_SERIALIZER
}; // struct Detection3D_
} // namespace serialization
} // namespace ros
namespace ros
{
namespace message_operations
{
template<class ContainerAllocator>
struct Printer< ::vision_msgs::Detection3D_<ContainerAllocator> >
{
template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::vision_msgs::Detection3D_<ContainerAllocator>& v)
{
s << indent << "header: ";
s << std::endl;
Printer< ::std_msgs::Header_<ContainerAllocator> >::stream(s, indent + " ", v.header);
s << indent << "results[]" << std::endl;
for (size_t i = 0; i < v.results.size(); ++i)
{
s << indent << " results[" << i << "]: ";
s << std::endl;
s << indent;
Printer< ::vision_msgs::ObjectHypothesisWithPose_<ContainerAllocator> >::stream(s, indent + " ", v.results[i]);
}
s << indent << "bbox: ";
s << std::endl;
Printer< ::vision_msgs::BoundingBox3D_<ContainerAllocator> >::stream(s, indent + " ", v.bbox);
s << indent << "source_cloud: ";
s << std::endl;
Printer< ::sensor_msgs::PointCloud2_<ContainerAllocator> >::stream(s, indent + " ", v.source_cloud);
}
};
} // namespace message_operations
} // namespace ros
#endif // VISION_MSGS_MESSAGE_DETECTION3D_H
| [
"davisds1@rose-hulman.edu"
] | davisds1@rose-hulman.edu |
c98d9de56994e11a2ee41b5034246c3e74fb05dd | 1fe15d9a12b7f279fe240e169b3dc0dcd12dcc9c | /04-Heap/Course Code (C++)/MaxHeapSort/Heap.h | 26401b0ef63320f1d67dc66e46150e4afdd6dea0 | [] | no_license | wangzy0327/Algorithm_and_data_structure | d55ee82a699f0e8c7412ca3f16a0a1b0220cefae | 7ec3733a92b27ab43c0f6dd317ca2b1b047568ef | refs/heads/main | 2023-03-28T05:52:18.907625 | 2021-03-28T08:47:33 | 2021-03-28T08:47:33 | 321,941,411 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,823 | h | //
// Created by wzy on 2020/12/2.
//
#ifndef MAXHEAPSORT_HEAP_H
#define MAXHEAPSORT_HEAP_H
#include <iostream>
#include <algorithm>
#include <string>
#include <ctime>
#include <cmath>
#include <cassert>
using namespace std;
//这里的堆 arr[1...n]
template<typename Item>
class MaxHeap{
private:
Item* data;
int count;
int capacity;
void shiftUp(int k){
while(k > 1 && data[k/2] < data[k]){
swap(data[k/2],data[k]);
k /= 2;
}
}
void shiftDown(int k){
while(k*2 <= count){
int j = 2*k; //在此轮循环中,data[k]和data[j]交换位置
if(j + 1 <= count && data[j+1] > data[j])
j += 1;
if(data[k] >= data[j])
break;
swap(data[k],data[j]);
k = j;
}
}
void putNumberInLine( int num, string &line, int index_cur_level, int cur_tree_width, bool isLeft){
int sub_tree_width = (cur_tree_width - 1) / 2;
int offset = index_cur_level * (cur_tree_width+1) + sub_tree_width;
assert(offset + 1 < line.size());
if( num >= 10 ) {
line[offset + 0] = '0' + num / 10;
line[offset + 1] = '0' + num % 10;
}
else{
if( isLeft)
line[offset + 0] = '0' + num;
else
line[offset + 1] = '0' + num;
}
}
void putBranchInLine( string &line, int index_cur_level, int cur_tree_width){
int sub_tree_width = (cur_tree_width - 1) / 2;
int sub_sub_tree_width = (sub_tree_width - 1) / 2;
int offset_left = index_cur_level * (cur_tree_width+1) + sub_sub_tree_width;
assert( offset_left + 1 < line.size() );
int offset_right = index_cur_level * (cur_tree_width+1) + sub_tree_width + 1 + sub_sub_tree_width;
assert( offset_right < line.size() );
line[offset_left + 1] = '/';
line[offset_right + 0] = '\\';
}
public:
void testPrint(){
if(size() >= 100){
cout<<"Fancy print can only work for less than 100 int";
return;
}
if(typeid(Item) != typeid(int)){
cout<<"Fancy print can only work for int item";
return;
}
cout<<"The max heap size is: "<<size()<<endl;
cout<<"Data in the max heap: ";
for( int i = 1 ; i <= size() ; i ++ ){
// 我们的testPrint要求堆中的所有整数在[0, 100)的范围内
assert( data[i] >= 0 && data[i] < 100 );
cout<<data[i]<<" ";
}
cout<<endl;
cout<<endl;
int n = size();
int max_level = 0;
int number_per_level = 1;
while( n > 0 ) {
max_level += 1;
n -= number_per_level;
number_per_level *= 2;
}
int max_level_number = int(pow(2, max_level-1));
int cur_tree_max_level_number = max_level_number;
int index = 1;
for( int level = 0 ; level < max_level ; level ++ ){
string line1 = string(max_level_number*3-1, ' ');
int cur_level_number = min(count-int(pow(2,level))+1,int(pow(2,level)));
bool isLeft = true;
for( int index_cur_level = 0 ; index_cur_level < cur_level_number ; index ++ , index_cur_level ++ ){
putNumberInLine( data[index] , line1 , index_cur_level , cur_tree_max_level_number*3-1 , isLeft );
isLeft = !isLeft;
}
cout<<line1<<endl;
if( level == max_level - 1 )
break;
string line2 = string(max_level_number*3-1, ' ');
for( int index_cur_level = 0 ; index_cur_level < cur_level_number ; index_cur_level ++ )
putBranchInLine( line2 , index_cur_level , cur_tree_max_level_number*3-1 );
cout<<line2<<endl;
cur_tree_max_level_number /= 2;
}
}
MaxHeap(int capacity){
data = new Item[capacity + 1];
count = 0;
this->capacity = capacity;
}
MaxHeap(Item arr[],int n){
data = new Item[n + 1];
this->capacity = n;
for(int i = 0;i < n;i++)
data[i + 1] = arr[i];
count = n;
for(int i = count/2;i >= 1;i--)
shiftDown(i);
}
~MaxHeap(){
delete [] data;
}
int size(){
return count;
}
bool isEmpty(){
return count == 0;
}
void insert(Item item){
assert(count + 1 <= capacity);
data[count + 1] = item;
count ++;
shiftUp(count);
}
Item extractMax(){
assert(count > 0);
Item ret = data[1];
swap(data[1],data[count]);
count --;
shiftDown(1);
return ret;
}
};
#endif //MAXHEAPSORT_HEAP_H
| [
"wangzy0327@qq.com"
] | wangzy0327@qq.com |
dddba5b566f3157f8b633baf0b05d985f0a9748f | 5f6e8c8ae4188be0d577abb52960b7430ef44a0c | /PHP-scripts/dev-kit/SeaBreeze/src/vendors/OceanOptics/features/eeprom_slots/EEPROMSlotFeatureBase.cpp | 5aef6d8303eacf1ce43ee5f7a5b03092a2e6d3ed | [] | no_license | lennon101/Spectrometer-Interface | a71d74c8e248f880a828bc2c137e3ae72c977738 | d295ef431c164a3c4062a93e293197631c9e01ea | refs/heads/master | 2020-05-21T23:59:42.983381 | 2016-10-14T11:31:31 | 2016-10-14T11:31:31 | 62,698,233 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,559 | cpp | /***************************************************//**
* @file EEPROMSlotFeatureBase.cpp
* @date February 2009
* @author Ocean Optics, Inc.
*
* LICENSE:
*
* SeaBreeze Copyright (C) 2014, Ocean Optics Inc
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject
* to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*******************************************************/
#include "common/globals.h"
#include "vendors/OceanOptics/features/eeprom_slots/EEPROMSlotFeatureBase.h"
#include "vendors/OceanOptics/protocols/interfaces/EEPROMProtocolInterface.h"
#include "vendors/OceanOptics/protocols/ooi/impls/OOIEEPROMProtocol.h"
#include <stdlib.h>
#include <cstdio>
#include <errno.h>
#include <string.h>
#include "common/exceptions/FeatureProtocolNotFoundException.h"
#include "common/exceptions/FeatureControlException.h"
using namespace seabreeze;
using namespace seabreeze::ooiProtocol;
using namespace std;
#ifdef _WINDOWS
#pragma warning (disable: 4101) // unreferenced local variable
#endif
EEPROMSlotFeatureBase::EEPROMSlotFeatureBase() {
this->protocols.push_back(new OOIEEPROMProtocol());
}
EEPROMSlotFeatureBase::~EEPROMSlotFeatureBase() {
}
vector<byte> *EEPROMSlotFeatureBase::readEEPROMSlot(const Protocol &protocol,
const Bus &bus, unsigned int slot) throw (FeatureException) {
EEPROMProtocolInterface *eeprom = NULL;
ProtocolHelper *proto;
try {
proto = lookupProtocolImpl(protocol);
eeprom = static_cast<EEPROMProtocolInterface *>(proto);
} catch (FeatureProtocolNotFoundException &fpnfe) {
string error(
"Could not find matching protocol implementation to get read EEPROM.");
/* FIXME: previous exception should probably be bundled up into the new exception */
throw FeatureProtocolNotFoundException(error);
}
vector<byte> *info = NULL;
try {
info = eeprom->readEEPROMSlot(bus, slot);
} catch (ProtocolException &pe) {
string error("Caught protocol exception: ");
error += pe.what();
/* FIXME: previous exception should probably be bundled up into the new exception */
throw FeatureControlException(error);
}
if(NULL == info) {
/* FIXME:
* If we can guarantee that all protocol implementations will either
* return a valid value or throw an exception, this test can be
* removed.
*/
string error("Could not read EEPROM slot.");
throw FeatureControlException(error);
}
return info;
}
int EEPROMSlotFeatureBase::writeEEPROMSlot(const Protocol &protocol,
const Bus &bus, unsigned int slot, const vector<byte> &data) throw (FeatureException) {
int bytesWritten = 0;
EEPROMProtocolInterface *eeprom = NULL;
ProtocolHelper *proto;
try {
proto = lookupProtocolImpl(protocol);
eeprom = static_cast<EEPROMProtocolInterface *>(proto);
} catch (FeatureProtocolNotFoundException &fpnfe) {
string error("Could not find matching protocol implementation to get write EEPROM.");
throw FeatureProtocolNotFoundException(error);
}
try {
bytesWritten = eeprom->writeEEPROMSlot(bus, slot, data);
} catch (ProtocolException &pe) {
throw FeatureControlException(string("Caught protocol exception: ") + pe.what());
}
return bytesWritten;
}
double EEPROMSlotFeatureBase::readDouble(const Protocol &protocol, const Bus &bus,
unsigned int slotNumber) throw (FeatureException, NumberFormatException) {
char buffer[20];
char *startPtr = NULL;
char *endPtr = NULL;
double retval = 0.0;
/* This may throw a FeatureException, but cannot return NULL. */
vector<byte> *slot = readEEPROMSlot(protocol, bus, slotNumber);
/* Convert the ASCII string in the slot to a double in a way where we can
* catch format/parse errors.
*/
/* First, guarantee that the string we parse is null-terminated. 20 bytes is overkill. */
strncpy(buffer, ((char *)&((*slot)[0])), 19);
buffer[19] = '\0';
startPtr = buffer;
endPtr = NULL;
errno = 0;
/* Now parse the slot. */
retval = strtod(startPtr, &endPtr);
if((startPtr == endPtr) || ((errno != 0) && (0 == retval))) {
/* This means that strtod failed to parse anything, so the EEPROM slot
* may have been unprogrammed or otherwise corrupted. Flag an error
* so that we can drop in some safe default values.
*/
string error("Could not parse double out of EEPROM slot.");
delete slot;
throw NumberFormatException(error);
}
delete slot;
return retval;
}
long EEPROMSlotFeatureBase::readLong(const Protocol &protocol, const Bus &bus,
unsigned int slotNumber) throw (FeatureException, NumberFormatException) {
char buffer[20];
char *startPtr = NULL;
char *endPtr = NULL;
long retval = 0;
/* This may throw a FeatureException, but cannot return NULL. */
vector<byte> *slot = readEEPROMSlot(protocol, bus, slotNumber);
/* Convert the ASCII string in the slot to a long in a way where we can
* catch format/parse errors.
*/
/* First, guarantee that the string we parse is null-terminated. 20 bytes is overkill. */
strncpy(buffer, ((char *)&((*slot)[0])), 19);
buffer[19] = '\0';
startPtr = buffer;
endPtr = NULL;
errno = 0;
/* Now parse the slot. */
retval = strtol(startPtr, &endPtr, 10);
if((startPtr == endPtr) || ((errno != 0) && (0 == retval))) {
/* This means that strtod failed to parse anything, so the EEPROM slot
* may have been unprogrammed or otherwise corrupted. Flag an error
* so that we can drop in some safe default values.
*/
string error("Could not parse int out of EEPROM slot.");
delete slot;
throw NumberFormatException(error);
}
delete slot;
return retval;
}
void EEPROMSlotFeatureBase::writeDouble(const Protocol &protocol, const Bus &bus,
unsigned int slot, const double d) throw (FeatureException) {
char buffer[20] = {0};
sprintf(buffer, "%G", d);
vector<byte> data(buffer, buffer+strlen(buffer));
writeEEPROMSlot(protocol, bus, slot, data);
}
void EEPROMSlotFeatureBase::writeLong(const Protocol &protocol, const Bus &bus,
unsigned int slot, const long l) throw (FeatureException) {
char buffer[20] = {0};
sprintf(buffer, "%ld", l);
vector<byte> data(buffer, buffer+strlen(buffer));
writeEEPROMSlot(protocol, bus, slot, data);
}
| [
"dane.lennon101@gmail.com"
] | dane.lennon101@gmail.com |
453d24529b472968e2d7429a82881eac6c5c06a3 | 9d579a0ddba661ff9e3e29ec11fde5360bc433f1 | /Final/Final_Delger_Agustin/Servidor.h | 5d715f47f9a24cf4bb7deb388b10dae13cbdff95 | [] | no_license | Agusdel/Programacion2 | 0eba3e3213b6fb28e1f9239af3ce16c01565bbfd | d1393fb8fc61cf23d4baa69a62f72b568a863f67 | refs/heads/master | 2021-01-17T18:17:10.621465 | 2016-11-21T04:04:32 | 2016-11-21T04:04:32 | 69,419,363 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 4,462 | h | #ifndef SERVIDOR_H_INCLUDED
#define SERVIDOR_H_INCLUDED
#include <string>
#include "Cola.h"
#include "ColaPrioridad.h"
#include "Peticion.h"
#include "Cliente.h"
#include "Lista.h"
class Cliente;
class Servidor{
private:
struct PetNC{
const Peticion* pet;
const Cliente* cliente;
};
struct PetC{
const PeticionCritica* pet;
const Cliente* cliente;
};
std::string contrasenia;
Lista<Cliente*> clientes;
Cola<PetNC> peticiones;
unsigned int tiempoPets;
ColaPrioridad<PetC> peticionesCriticas;
unsigned int tiempoPetsCrits;
Cola<PetNC> colaAuxNC; //Cola auxiliar para peticiones no críticas.
Cola<PetC> colaAuxC; //Cola auxiliar para peticiones críticas.
public:
Servidor(std::string contrasenia = "");
/* FUNCIÓN: Crea un nuevo servidor con colas vacías, tiempos en 0 y se establece la contraseña.
* PRECONDICIÓN: true.
* POSTCONDICION: Crea un nuevo servidor con una contraseña, colas vacías y tiempos en 0.
*/
bool CambiarContrasenia(std::string nuevaContrasenia, std::string contraseniaActual);
/* FUNCIÓN: Se cambia la contraseña por una nueva.
* PRECONDICIÓN: true.
* POSTCONDICION: Se cambia la contraseña por una nueva.
*/
bool Vincularse(Cliente& c, std::string contrasenia);
/* FUNCIÓN: Si la contraseña es correcta, se vincula un cliente con el servidor.
* PRECONDICIÓN: El cliente no esta vinculado ya.
* POSTCONDICION: Si la contraseña es correcta, se vincula un cliente con el servidor. Se agrega un puntero al cliente en la lista clientes.
*/
void Desvincularse(Cliente& c);
/* FUNCIÓN: Se desvincula un cliente del servidor.
* PRECONDICIÓN: El cliente se encuentra vinculado.
* POSTCONDICION: Se desvincula un cliente del servidor. Se quita el puntero al cliente de la lista clientes.
*/
bool Vinculado(Cliente& c);
/* FUNCIÓN: Determina si el cliente se encuentra vinculado actualmente al servidor.
* PRECONDICIÓN: true.
* POSTCONDICION: Determina si el cliente se encuentra vinculado actualmente al servidor.
*/
void EnviarPeticion(Cliente& c, const Peticion& pet);
/* FUNCIÓN: Se recibe una nueva petición.
* PRECONDICIÓN: El cliente está vinculado con el servidor.
* POSTCONDICION: La petición se agrega última en la cola de peticiones no críticas. Se aumenta el tiempo de peticiones en la duración de esta.
*/
void EnviarPeticion(Cliente& c, const PeticionCritica& pet);
/* FUNCIÓN: Se recibe una nueva petición critica.
* PRECONDICIÓN: El cliente está vinculado con el servidor.
* POSTCONDICION: Se ajusta la prioridad a un numero entre 1 y 10. La petición se agrega en la cola de peticiones no críticas de acuerdo con su prioridad.
* Será ubicada última entre las de su misma prioridad. Se aumenta el tiempo de peticiones criticas en la duración de esta.
*/
void PeticionesNoCriticasPorAtender() const;
/* FUNCIÓN: Se imprime por pantalla la cantidad de peticiones no críticas por atender y el tiempo que consumiría atenderlas todas.
* PRECONDICIÓN: true.
* POSTCONDICION: Se imprime por pantalla la cantidad de peticiones no críticas por atender y el tiempo que consumiría atenderlas todas.
*/
void PeticionesCriticasPorAtender() const;
/* FUNCIÓN: Se imprime por pantalla la cantidad de peticiones críticas por atender y el tiempo que consumiría atenderlas todas.
* PRECONDICIÓN: true.
* POSTCONDICION: Se imprime por pantalla la cantidad de peticiones críticas por atender y el tiempo que consumiría atenderlas todas.
*/
void ProximaPeticion();
/* FUNCIÓN: Se imprime por pantalla la proxima petición a ser atendida, si es que hay al menos una.
* PRECONDICIÓN: true.
* POSTCONDICION: Se imprime por pantalla la proxima petición a ser atendida, si es que hay al menos una..
*/
void AtenderPeticiones(unsigned int tiempo);
/* FUNCIÓN: Se atienden peticiones por los proximos "tiempo" ciclos de reloj.
* PRECONDICIÓN: true.
* POSTCONDICION: Se atienden peticiones por los proximos "tiempo" ciclos de reloj. De no haber tiempo suficiente para atender una petición,
* se lo intentará con la siguiente en la cola. El orden de las colas se mantiene.
*/
};
#endif // SERVIDOR_H_INCLUDED
| [
"agusdel_94@hotmail.com"
] | agusdel_94@hotmail.com |
0383f5291389f9601216fbd719a2ae64ae649555 | 73fc012e8b18e0b61665ac546d2d3abad522b4f8 | /src/qt/networkstyle.cpp | 3fb1ef02dc8cd5b540f1145172ce55f6c59dbb54 | [
"MIT"
] | permissive | LightBurdenOfficial/nirodium-core | f14f52d2d9256b9504c5ee85d4811c798b51fdb4 | 9d513a6dbccb20750f6d51ac6b74e9d9c95bf3b3 | refs/heads/master | 2023-08-03T16:31:53.395700 | 2021-04-24T01:38:56 | 2021-04-24T01:38:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,053 | cpp | // Copyright (c) 2014 The Bitcoin developers
// Copyright (c) 2017-2018 The NRDI developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "networkstyle.h"
#include "guiconstants.h"
#include <QApplication>
static const struct {
const char* networkId;
const char* appName;
const char* appIcon;
const char* titleAddText;
const char* splashImage;
} network_styles[] = {
{"main", QAPP_APP_NAME_DEFAULT, ":/icons/bitcoin", "", ":/images/splash"},
{"test", QAPP_APP_NAME_TESTNET, ":/icons/bitcoin_testnet", QT_TRANSLATE_NOOP("SplashScreen", "[testnet]"), ":/images/splash_testnet"},
{"regtest", QAPP_APP_NAME_TESTNET, ":/icons/bitcoin_regtest", "[regtest]", ":/images/splash_regtest"}};
static const unsigned network_styles_count = sizeof(network_styles) / sizeof(*network_styles);
// titleAddText needs to be const char* for tr()
NetworkStyle::NetworkStyle(const QString& appName, const QString& appIcon, const char* titleAddText, const QString& splashImage) : appName(appName),
appIcon(appIcon),
titleAddText(qApp->translate("SplashScreen", titleAddText)),
splashImage(splashImage)
{
}
const NetworkStyle* NetworkStyle::instantiate(const QString& networkId)
{
for (unsigned x = 0; x < network_styles_count; ++x) {
if (networkId == network_styles[x].networkId) {
return new NetworkStyle(
network_styles[x].appName,
network_styles[x].appIcon,
network_styles[x].titleAddText,
network_styles[x].splashImage);
}
}
return 0;
}
| [
"nirodium.director@gmail.com"
] | nirodium.director@gmail.com |
28486cece432dbf8040727dcc7b8992e848ef08e | b04cde06b03c5a81d1320beeaa73815d148cd840 | /1568.cpp | 34554fcd0d67f7f9230b8030bcb2251f6ddee821 | [
"Beerware"
] | permissive | JrSousaJ/Uri-Solved-Problems | 61748bf90d3227b0361721802571b2358e535f55 | ae777b9aa1f3d64b2f75eb91d57aff8c62b3296b | refs/heads/master | 2020-03-09T21:13:38.026506 | 2019-09-16T13:02:18 | 2019-09-16T13:02:18 | 129,003,832 | 5 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,147 | cpp | #include<bits/stdc++.h>
struct no
{
int n;
struct no *prox;
};
struct pilha
{
struct no *topo;
};
void create(pilha *s)
{
s->topo=NULL;
}
void push(pilha*s, int d)
{
struct no *aux;
aux=(struct no*)malloc(sizeof(struct no));
if(aux==NULL)return ;
aux->n=d;
aux->prox=s->topo;
s->topo=aux;
}
//void pop(pilha *s, int *d)
void pop(pilha *s)
{
struct no *aux;
if(s->topo==NULL)return ;
aux=s->topo;
s->topo=(s->topo)->prox;
//*d=aux->n;
free(aux);
}
bool isEmpty(pilha s)
{
if(s.topo==NULL)return true;
return false;
}
using namespace std;
int main()
{
char s[10001];
pilha x;
while(~scanf(" %[^\n]",s))
{
create(&x);
bool ae=true;
for(int i=0;i<strlen(s);i++)
{
if(s[i]=='(')push(&x,1);
else if(s[i]==')')
{
if(isEmpty(x))
{
ae=false;
break;
}
else pop(&x);
}
}
if(!isEmpty(x) || !ae)printf("incorrect\n");
else printf("correct\n");
}
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
18d2881a38d31d119f8bce5a34a02dff98b20e13 | fecf09fb6dd1b102764890eb6d112af5d934fa21 | /vector/test5.cpp | 49272115010185e2db5ed1223f7ad9a8d83fa36f | [] | no_license | zhaomengchao/C- | 5821df6d004b791e1212140fa734d20b01b00e8c | 377b99061bc4d7122438fbe6c5c76a7201b0f993 | refs/heads/master | 2021-07-12T15:02:02.509446 | 2020-10-12T09:08:55 | 2020-10-12T09:08:55 | 209,292,144 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,839 | cpp | //洗牌
题目描述
洗牌在生活中十分常见,现在需要写一个程序模拟洗牌的过程。现
在需要洗2n张牌,从上到下依次是第1张,第2张,第3张一直到第
2n张。首先,我们把这2n张牌分成两堆,左手拿着第1张到第n张
(上半堆),右手拿着第n+1张到第2n张(下半堆)。接着就开始
洗牌的过程,先放下右手的最后一张牌,再放下左手的最后一张
牌,接着放下右手的倒数第二张牌,再放下左手的倒数第二张牌,
直到最后放下左手的第一张牌。接着把牌合并起来就可以了。例如
有6张牌,最开始牌的序列是1,2,3,4,5,6。首先分成两组,左手拿着
1,2,3;右手拿着4,5,6在洗牌过程中按顺序放下了6,3,5,2,4,1。把
这六张牌再次合成一组牌之后,我们按照从上往下的顺序看这组
牌,就变成了序列1,4,2,5,3,6。现在给出一个原始牌组,请输出这
副牌洗牌k次之后从上往下的序列。
#include<iostream>
#include<vector>
using namespace std;
int main()
{
//k代表洗牌的次数
int n,k,t;
cin >> t;
while(t--)
{
cin >> n >> k;
int num = 2*n;
vector<int> v(num);
for(int i = 0; i < num; i++)
{
cin >> v[i];
}
//洗牌
while(k--)
{
vector<int> n1(v.begin(),v.end());
//如果当前数小于n,则出现在左手,位置为2*当前位置,相反与之对相应的位置为 i+n(表示右手的牌)位置也加1;
for(int i = 0; i < n; ++i)
{
v[2*i] = n1[i];
v[2*i + 1] = n1[i + n];
}
}
for(int i = 0; i < num -1;i++)
{
cout << v[i] << " ";
}
cout << v[num - 1]<<endl;//行末无空格
}
return 0;
} | [
"1935812591@qq.com"
] | 1935812591@qq.com |
6a22a5ce8654c76ebc8abc9285ea9432d38ba524 | 09e329554b74b7a180d75f90101d7b35346cc1ca | /include/BufferedPrint.h | b17186c45bf86ed8cc09daf00791e7f6ea360334 | [] | no_license | ewaldc/OpenHAB-ESP | c78c9364a5bcf497c95142e35243f5ccb7fcd177 | a38df7cfaccbf9d92e194b3691b1908aad2d2dd3 | refs/heads/master | 2020-12-14T22:47:19.619710 | 2020-05-31T10:27:07 | 2020-05-31T10:27:07 | 234,897,859 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,984 | h | #pragma once
/// This is intended for ESP8266 Arduino stack and ArduinoJSON 5 or 6
//#include <ESP8266WebServer.h>
#include <type_traits>
#include <WiFiClient.h>
#include <Print.h>
template <typename T, size_t BUFFER_SIZE = 12>
class BufferedPrint : public Print {
public:
ICACHE_FLASH_ATTR BufferedPrint(T client): _client(client), _length(0) {}
ICACHE_FLASH_ATTR ~BufferedPrint() {
#ifdef DEBUG_ESP_PORT
// Note: This is manual expansion of assertion macro
if (_length != 0) {
DEBUG_ESP_PORT.printf("\nassertion failed at " __FILE__ ":%d: " "_length == 0" "\n", __LINE__);
// Note: abort() causes stack dump and restart of the ESP
abort();
}
#endif
}
ICACHE_FLASH_ATTR void client(T client) { _client = client; }
ICACHE_FLASH_ATTR virtual size_t write(const uint8_t* s, size_t n) override {
size_t capacity = BUFFER_SIZE - _length;
if (capacity > n) {
memcpy ((void *)&_buffer[_length], (const void *)s, n);
_length += n;
} else {
memcpy ((void *)&_buffer[_length], (const void *)s, capacity);
_flush();
_length = n - capacity;
memcpy ((void *)&_buffer[0], s + capacity, _length);
}
return n;
}
ICACHE_FLASH_ATTR virtual size_t write(uint8_t c) override {
_buffer[_length++] = c;
if (_length == BUFFER_SIZE) _flush();
return 1;
}
ICACHE_FLASH_ATTR void flush() {
if (_length != 0) _flush(_length);
}
ICACHE_FLASH_ATTR void stop(WiFiClient client) {
flush();
client.stop();
}
ICACHE_FLASH_ATTR void stop(HardwareSerial client) {
flush();
client.println();
}
private:
ICACHE_FLASH_ATTR void _flush(size_t size = BUFFER_SIZE) {
while (!_client.availableForWrite()) yield();
_client.write((const uint8_t*)_buffer, size);
_length = 0;
}
T _client;
uint8_t _buffer[BUFFER_SIZE];
size_t _length;
}; | [
"ewald_comhaire@hotmail.com"
] | ewald_comhaire@hotmail.com |
14908a37bad638109293cfdcc2965e029bcad5e0 | 33b9632289a784dadc95fca230b16f16716a9718 | /factory/truck/rendererfactory.h | 3217e9b74c15cb27333f9721d6387a24d74771ba | [] | no_license | suyangzhu/Practice | e8230943838f50f61bfdeee4aa648353f81d4311 | aca2461997ea55b15ee5e2eca7e052b504841b25 | refs/heads/master | 2016-09-06T07:43:20.394066 | 2015-04-08T16:44:01 | 2015-04-08T16:44:01 | 21,131,657 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 444 | h |
#include "renderer.h"
#include <string>
#include <map>
class RendererFactory
{
public:
typedef IRenderer* (*CreateCallback)();
static void RegisterRenderer(const std::string& type, CreateCallback cb);
static void UnregisterRender(const std::string& type);
static IRenderer* CreateRenderer(const std::string& type);
private:
typedef std::map<std::string, CreateCallback> CallbackMap;
static CallbackMap mRenderers;
};
| [
"timberlandbear@gmail.com"
] | timberlandbear@gmail.com |
7fc3ef59b7b39dda02dad183762f32b76e4257a7 | f7c03a3b4f099a7e6fe4686cc35f2e40cfd132bb | /.c9/metadata/environment/lesson2/name.cpp | 899c8185ad1a2e4cb20d307142610a753da1750e | [] | no_license | chipmegatel/cpp1901 | 7f4d25b22b50827f2c1ee5038673ba1f979b87a4 | 909b0177fe9da0b0ffb399217e1d03f12dda3baf | refs/heads/master | 2020-08-06T20:37:03.427653 | 2019-10-06T11:16:16 | 2019-10-06T11:16:16 | 213,141,376 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,822 | cpp | {"filter":false,"title":"name.cpp","tooltip":"/lesson2/name.cpp","undoManager":{"mark":67,"position":67,"stack":[[{"start":{"row":0,"column":0},"end":{"row":6,"column":1},"action":"insert","lines":["#include <iostream>","","int main(){",""," std::cout << \"Hello, World \\n\";"," return 0;","}"],"id":1}],[{"start":{"row":3,"column":0},"end":{"row":3,"column":4},"action":"insert","lines":[" "],"id":2}],[{"start":{"row":3,"column":4},"end":{"row":3,"column":5},"action":"insert","lines":["s"],"id":3},{"start":{"row":3,"column":5},"end":{"row":3,"column":6},"action":"insert","lines":["t"]},{"start":{"row":3,"column":6},"end":{"row":3,"column":7},"action":"insert","lines":["d"]}],[{"start":{"row":3,"column":7},"end":{"row":3,"column":8},"action":"insert","lines":[";"],"id":4},{"start":{"row":3,"column":8},"end":{"row":3,"column":9},"action":"insert","lines":[";"]}],[{"start":{"row":3,"column":8},"end":{"row":3,"column":9},"action":"remove","lines":[";"],"id":5},{"start":{"row":3,"column":7},"end":{"row":3,"column":8},"action":"remove","lines":[";"]}],[{"start":{"row":3,"column":7},"end":{"row":3,"column":8},"action":"insert","lines":[":"],"id":6},{"start":{"row":3,"column":8},"end":{"row":3,"column":9},"action":"insert","lines":[":"]}],[{"start":{"row":3,"column":9},"end":{"row":3,"column":10},"action":"insert","lines":["c"],"id":7},{"start":{"row":3,"column":10},"end":{"row":3,"column":11},"action":"insert","lines":["i"]},{"start":{"row":3,"column":11},"end":{"row":3,"column":12},"action":"insert","lines":["n"]}],[{"start":{"row":3,"column":12},"end":{"row":3,"column":13},"action":"insert","lines":[" "],"id":8}],[{"start":{"row":3,"column":13},"end":{"row":3,"column":14},"action":"insert","lines":["."],"id":9},{"start":{"row":3,"column":14},"end":{"row":3,"column":15},"action":"insert","lines":["."]}],[{"start":{"row":3,"column":14},"end":{"row":3,"column":15},"action":"remove","lines":["."],"id":10},{"start":{"row":3,"column":13},"end":{"row":3,"column":14},"action":"remove","lines":["."]}],[{"start":{"row":3,"column":13},"end":{"row":3,"column":14},"action":"insert","lines":[">"],"id":11},{"start":{"row":3,"column":14},"end":{"row":3,"column":15},"action":"insert","lines":[">"]}],[{"start":{"row":3,"column":15},"end":{"row":3,"column":16},"action":"insert","lines":[" "],"id":12},{"start":{"row":3,"column":16},"end":{"row":3,"column":17},"action":"insert","lines":["n"]},{"start":{"row":3,"column":17},"end":{"row":3,"column":18},"action":"insert","lines":["a"]},{"start":{"row":3,"column":18},"end":{"row":3,"column":19},"action":"insert","lines":["m"]},{"start":{"row":3,"column":19},"end":{"row":3,"column":20},"action":"insert","lines":["e"]}],[{"start":{"row":3,"column":20},"end":{"row":3,"column":21},"action":"insert","lines":[";"],"id":13}],[{"start":{"row":2,"column":11},"end":{"row":3,"column":0},"action":"insert","lines":["",""],"id":14},{"start":{"row":3,"column":0},"end":{"row":3,"column":4},"action":"insert","lines":[" "]}],[{"start":{"row":3,"column":4},"end":{"row":3,"column":5},"action":"insert","lines":["s"],"id":15},{"start":{"row":3,"column":5},"end":{"row":3,"column":6},"action":"insert","lines":["t"]},{"start":{"row":3,"column":6},"end":{"row":3,"column":7},"action":"insert","lines":["r"]},{"start":{"row":3,"column":7},"end":{"row":3,"column":8},"action":"insert","lines":["i"]},{"start":{"row":3,"column":8},"end":{"row":3,"column":9},"action":"insert","lines":["b"]}],[{"start":{"row":3,"column":8},"end":{"row":3,"column":9},"action":"remove","lines":["b"],"id":16}],[{"start":{"row":3,"column":8},"end":{"row":3,"column":9},"action":"insert","lines":["n"],"id":17},{"start":{"row":3,"column":9},"end":{"row":3,"column":10},"action":"insert","lines":["g"]}],[{"start":{"row":3,"column":10},"end":{"row":3,"column":11},"action":"insert","lines":[" "],"id":18},{"start":{"row":3,"column":11},"end":{"row":3,"column":12},"action":"insert","lines":["n"]},{"start":{"row":3,"column":12},"end":{"row":3,"column":13},"action":"insert","lines":["a"]},{"start":{"row":3,"column":13},"end":{"row":3,"column":14},"action":"insert","lines":["m"]}],[{"start":{"row":3,"column":14},"end":{"row":3,"column":15},"action":"insert","lines":["e"],"id":19}],[{"start":{"row":3,"column":15},"end":{"row":3,"column":16},"action":"insert","lines":[" "],"id":20},{"start":{"row":3,"column":16},"end":{"row":3,"column":17},"action":"insert","lines":[":"]},{"start":{"row":3,"column":17},"end":{"row":3,"column":18},"action":"insert","lines":[":"]}],[{"start":{"row":3,"column":17},"end":{"row":3,"column":18},"action":"remove","lines":[":"],"id":21},{"start":{"row":3,"column":16},"end":{"row":3,"column":17},"action":"remove","lines":[":"]}],[{"start":{"row":3,"column":16},"end":{"row":3,"column":17},"action":"insert","lines":["@"],"id":22},{"start":{"row":3,"column":17},"end":{"row":3,"column":18},"action":"insert","lines":["@"]}],[{"start":{"row":3,"column":17},"end":{"row":3,"column":18},"action":"remove","lines":["@"],"id":23},{"start":{"row":3,"column":16},"end":{"row":3,"column":17},"action":"remove","lines":["@"]}],[{"start":{"row":3,"column":16},"end":{"row":3,"column":18},"action":"insert","lines":["\"\""],"id":24}],[{"start":{"row":3,"column":18},"end":{"row":3,"column":19},"action":"insert","lines":[";"],"id":25}],[{"start":{"row":0,"column":19},"end":{"row":1,"column":0},"action":"insert","lines":["",""],"id":26}],[{"start":{"row":1,"column":0},"end":{"row":1,"column":2},"action":"insert","lines":["\"\""],"id":27}],[{"start":{"row":1,"column":0},"end":{"row":1,"column":2},"action":"remove","lines":["\"\""],"id":28}],[{"start":{"row":1,"column":0},"end":{"row":1,"column":1},"action":"insert","lines":["#"],"id":29},{"start":{"row":1,"column":1},"end":{"row":1,"column":2},"action":"insert","lines":["i"]},{"start":{"row":1,"column":2},"end":{"row":1,"column":3},"action":"insert","lines":["n"]}],[{"start":{"row":1,"column":3},"end":{"row":1,"column":4},"action":"insert","lines":["c"],"id":30},{"start":{"row":1,"column":4},"end":{"row":1,"column":5},"action":"insert","lines":["l"]},{"start":{"row":1,"column":5},"end":{"row":1,"column":6},"action":"insert","lines":["u"]},{"start":{"row":1,"column":6},"end":{"row":1,"column":7},"action":"insert","lines":["d"]},{"start":{"row":1,"column":7},"end":{"row":1,"column":8},"action":"insert","lines":["e"]}],[{"start":{"row":1,"column":8},"end":{"row":1,"column":9},"action":"insert","lines":[" "],"id":31},{"start":{"row":1,"column":9},"end":{"row":1,"column":10},"action":"insert","lines":["<"]}],[{"start":{"row":1,"column":10},"end":{"row":1,"column":11},"action":"insert","lines":["s"],"id":32},{"start":{"row":1,"column":11},"end":{"row":1,"column":12},"action":"insert","lines":["t"]},{"start":{"row":1,"column":12},"end":{"row":1,"column":13},"action":"insert","lines":["r"]},{"start":{"row":1,"column":13},"end":{"row":1,"column":14},"action":"insert","lines":["i"]},{"start":{"row":1,"column":14},"end":{"row":1,"column":15},"action":"insert","lines":["n"]}],[{"start":{"row":1,"column":15},"end":{"row":1,"column":16},"action":"insert","lines":["g"],"id":33},{"start":{"row":1,"column":16},"end":{"row":1,"column":17},"action":"insert","lines":[">"]}],[{"start":{"row":6,"column":30},"end":{"row":6,"column":31},"action":"remove","lines":[" "],"id":34},{"start":{"row":6,"column":29},"end":{"row":6,"column":30},"action":"remove","lines":["d"]},{"start":{"row":6,"column":28},"end":{"row":6,"column":29},"action":"remove","lines":["l"]},{"start":{"row":6,"column":27},"end":{"row":6,"column":28},"action":"remove","lines":["r"]},{"start":{"row":6,"column":26},"end":{"row":6,"column":27},"action":"remove","lines":["o"]},{"start":{"row":6,"column":25},"end":{"row":6,"column":26},"action":"remove","lines":["W"]},{"start":{"row":6,"column":24},"end":{"row":6,"column":25},"action":"remove","lines":[" "]}],[{"start":{"row":6,"column":24},"end":{"row":6,"column":25},"action":"insert","lines":[" "],"id":35}],[{"start":{"row":6,"column":26},"end":{"row":6,"column":27},"action":"remove","lines":["n"],"id":36},{"start":{"row":6,"column":25},"end":{"row":6,"column":26},"action":"remove","lines":["\\"]}],[{"start":{"row":6,"column":26},"end":{"row":6,"column":27},"action":"insert","lines":[" "],"id":37},{"start":{"row":6,"column":27},"end":{"row":6,"column":28},"action":"insert","lines":["<"]},{"start":{"row":6,"column":28},"end":{"row":6,"column":29},"action":"insert","lines":["<"]}],[{"start":{"row":6,"column":29},"end":{"row":6,"column":30},"action":"insert","lines":[" "],"id":38},{"start":{"row":6,"column":30},"end":{"row":6,"column":31},"action":"insert","lines":["n"]},{"start":{"row":6,"column":31},"end":{"row":6,"column":32},"action":"insert","lines":["a"]},{"start":{"row":6,"column":32},"end":{"row":6,"column":33},"action":"insert","lines":["m"]},{"start":{"row":6,"column":33},"end":{"row":6,"column":34},"action":"insert","lines":["e"]}],[{"start":{"row":4,"column":4},"end":{"row":4,"column":5},"action":"insert","lines":["s"],"id":39},{"start":{"row":4,"column":5},"end":{"row":4,"column":6},"action":"insert","lines":["t"]},{"start":{"row":4,"column":6},"end":{"row":4,"column":7},"action":"insert","lines":["d"]},{"start":{"row":4,"column":7},"end":{"row":4,"column":8},"action":"insert","lines":[":"]},{"start":{"row":4,"column":8},"end":{"row":4,"column":9},"action":"insert","lines":[":"]}],[{"start":{"row":4,"column":21},"end":{"row":4,"column":22},"action":"insert","lines":["="],"id":40}],[{"start":{"row":4,"column":22},"end":{"row":4,"column":23},"action":"insert","lines":[" "],"id":41}],[{"start":{"row":6,"column":34},"end":{"row":6,"column":35},"action":"insert","lines":[" "],"id":42},{"start":{"row":6,"column":35},"end":{"row":6,"column":36},"action":"insert","lines":["<"]},{"start":{"row":6,"column":36},"end":{"row":6,"column":37},"action":"insert","lines":["<"]}],[{"start":{"row":6,"column":37},"end":{"row":6,"column":38},"action":"insert","lines":[" "],"id":43},{"start":{"row":6,"column":38},"end":{"row":6,"column":39},"action":"insert","lines":["s"]},{"start":{"row":6,"column":39},"end":{"row":6,"column":40},"action":"insert","lines":["t"]}],[{"start":{"row":6,"column":40},"end":{"row":6,"column":41},"action":"insert","lines":["d"],"id":44},{"start":{"row":6,"column":41},"end":{"row":6,"column":42},"action":"insert","lines":[":"]}],[{"start":{"row":6,"column":42},"end":{"row":6,"column":43},"action":"insert","lines":[":"],"id":45}],[{"start":{"row":6,"column":43},"end":{"row":6,"column":44},"action":"insert","lines":["e"],"id":46},{"start":{"row":6,"column":44},"end":{"row":6,"column":45},"action":"insert","lines":["n"]},{"start":{"row":6,"column":45},"end":{"row":6,"column":46},"action":"insert","lines":["d"]},{"start":{"row":6,"column":46},"end":{"row":6,"column":47},"action":"insert","lines":["l"]}],[{"start":{"row":6,"column":47},"end":{"row":6,"column":48},"action":"insert","lines":[";"],"id":47}],[{"start":{"row":6,"column":47},"end":{"row":6,"column":48},"action":"remove","lines":[";"],"id":48}],[{"start":{"row":4,"column":26},"end":{"row":5,"column":0},"action":"insert","lines":["",""],"id":49},{"start":{"row":5,"column":0},"end":{"row":5,"column":4},"action":"insert","lines":[" "]}],[{"start":{"row":5,"column":4},"end":{"row":5,"column":5},"action":"insert","lines":["s"],"id":50},{"start":{"row":5,"column":5},"end":{"row":5,"column":6},"action":"insert","lines":["t"]},{"start":{"row":5,"column":6},"end":{"row":5,"column":7},"action":"insert","lines":["d"]}],[{"start":{"row":5,"column":7},"end":{"row":5,"column":8},"action":"insert","lines":[" "],"id":51}],[{"start":{"row":5,"column":7},"end":{"row":5,"column":8},"action":"remove","lines":[" "],"id":52}],[{"start":{"row":5,"column":7},"end":{"row":5,"column":8},"action":"insert","lines":[";"],"id":53},{"start":{"row":5,"column":8},"end":{"row":5,"column":9},"action":"insert","lines":[";"]}],[{"start":{"row":5,"column":8},"end":{"row":5,"column":9},"action":"remove","lines":[";"],"id":54},{"start":{"row":5,"column":7},"end":{"row":5,"column":8},"action":"remove","lines":[";"]}],[{"start":{"row":5,"column":7},"end":{"row":5,"column":8},"action":"insert","lines":["'"],"id":55},{"start":{"row":5,"column":8},"end":{"row":5,"column":9},"action":"insert","lines":["'"]}],[{"start":{"row":5,"column":8},"end":{"row":5,"column":9},"action":"remove","lines":["'"],"id":56},{"start":{"row":5,"column":7},"end":{"row":5,"column":8},"action":"remove","lines":["'"]}],[{"start":{"row":5,"column":7},"end":{"row":5,"column":8},"action":"insert","lines":[":"],"id":57},{"start":{"row":5,"column":8},"end":{"row":5,"column":9},"action":"insert","lines":[":"]}],[{"start":{"row":5,"column":9},"end":{"row":5,"column":10},"action":"insert","lines":["c"],"id":58},{"start":{"row":5,"column":10},"end":{"row":5,"column":11},"action":"insert","lines":["o"]},{"start":{"row":5,"column":11},"end":{"row":5,"column":12},"action":"insert","lines":["u"]},{"start":{"row":5,"column":12},"end":{"row":5,"column":13},"action":"insert","lines":["t"]}],[{"start":{"row":5,"column":13},"end":{"row":5,"column":14},"action":"insert","lines":[" "],"id":59},{"start":{"row":5,"column":14},"end":{"row":5,"column":15},"action":"insert","lines":["<"]},{"start":{"row":5,"column":15},"end":{"row":5,"column":16},"action":"insert","lines":["<"]}],[{"start":{"row":5,"column":16},"end":{"row":5,"column":18},"action":"insert","lines":["\"\""],"id":60}],[{"start":{"row":5,"column":17},"end":{"row":5,"column":18},"action":"insert","lines":["W"],"id":61},{"start":{"row":5,"column":18},"end":{"row":5,"column":19},"action":"insert","lines":["h"]},{"start":{"row":5,"column":19},"end":{"row":5,"column":20},"action":"insert","lines":["a"]},{"start":{"row":5,"column":20},"end":{"row":5,"column":21},"action":"insert","lines":["t"]}],[{"start":{"row":5,"column":21},"end":{"row":5,"column":22},"action":"insert","lines":[" "],"id":62},{"start":{"row":5,"column":22},"end":{"row":5,"column":23},"action":"insert","lines":["i"]},{"start":{"row":5,"column":23},"end":{"row":5,"column":24},"action":"insert","lines":["s"]}],[{"start":{"row":5,"column":24},"end":{"row":5,"column":25},"action":"insert","lines":[" "],"id":63},{"start":{"row":5,"column":25},"end":{"row":5,"column":26},"action":"insert","lines":["y"]},{"start":{"row":5,"column":26},"end":{"row":5,"column":27},"action":"insert","lines":["o"]},{"start":{"row":5,"column":27},"end":{"row":5,"column":28},"action":"insert","lines":["u"]},{"start":{"row":5,"column":28},"end":{"row":5,"column":29},"action":"insert","lines":["r"]}],[{"start":{"row":5,"column":29},"end":{"row":5,"column":30},"action":"insert","lines":[" "],"id":64},{"start":{"row":5,"column":30},"end":{"row":5,"column":31},"action":"insert","lines":["n"]},{"start":{"row":5,"column":31},"end":{"row":5,"column":32},"action":"insert","lines":["a"]},{"start":{"row":5,"column":32},"end":{"row":5,"column":33},"action":"insert","lines":["m"]},{"start":{"row":5,"column":33},"end":{"row":5,"column":34},"action":"insert","lines":["e"]},{"start":{"row":5,"column":34},"end":{"row":5,"column":35},"action":"insert","lines":["?"]}],[{"start":{"row":9,"column":1},"end":{"row":9,"column":2},"action":"insert","lines":["/"],"id":65}],[{"start":{"row":9,"column":1},"end":{"row":9,"column":2},"action":"remove","lines":["/"],"id":66}],[{"start":{"row":5,"column":36},"end":{"row":5,"column":37},"action":"insert","lines":[";"],"id":67}],[{"start":{"row":5,"column":35},"end":{"row":5,"column":36},"action":"insert","lines":[" "],"id":68}]]},"ace":{"folds":[],"scrolltop":0,"scrollleft":0,"selection":{"start":{"row":0,"column":0},"end":{"row":9,"column":1},"isBackwards":true},"options":{"guessTabSize":true,"useWrapMode":false,"wrapToView":true},"firstLineState":0},"timestamp":1569754361131,"hash":"c946b59b0f84f054320e2ef5bc487798c80b460a"} | [
"chipmegatel@gmail.com"
] | chipmegatel@gmail.com |
c0e0b2a6f0e5aa6834daf95a18984d4a92ba174f | 93a89acb8dfc02de05837556132b27628abde83c | /vpu-hal2/dl/inference-engine/thirdparty/mkl-dnn/tests/gtests/test_convolution_relu_forward_common.hpp | d97edaf18095255146746c03ce9c7efe4668e76b | [
"Intel",
"Apache-2.0"
] | permissive | leon1205/nn-hal | ef1b8c3fd5b2e0cbc96df44cb6206b7917c59d53 | f6c23e001c690cb32ce8392825e000ae631cf5fc | refs/heads/master | 2020-03-24T10:03:32.377936 | 2018-07-06T15:45:19 | 2018-07-06T15:45:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,366 | hpp | /*******************************************************************************
* Copyright 2016-2017 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
#include "mkldnn_test_common.hpp"
#include "gtest/gtest.h"
#include "mkldnn.hpp"
namespace mkldnn {
template <typename data_t_src, typename data_t_wei,
typename data_t_acc, typename data_t_dst>
void compute_ref_conv_relu_fwd(const test_convolution_sizes_t &c,
const memory &src, const memory &weights, const memory &bias,
const memory &dst, bool w_bias, float negative_slope)
{
data_t_src *src_data = (data_t_src *)src.get_data_handle();
data_t_wei *weights_data = (data_t_wei *)weights.get_data_handle();
data_t_dst *bias_data
= (data_t_dst *)(w_bias ? bias.get_data_handle() : nullptr);
data_t_dst *dst_data = (data_t_dst *)dst.get_data_handle();
const memory::desc src_d = src.get_primitive_desc().desc();
const memory::desc weights_d = weights.get_primitive_desc().desc();
const memory::desc dst_d = dst.get_primitive_desc().desc();
#pragma omp parallel for collapse(5) schedule(static)
for (int n = 0; n < c.mb; n++) {
for (int g = 0; g < c.ng; g++) {
for (int oc = 0; oc < c.oc / c.ng; oc++) {
for (int oh = 0; oh < c.oh; oh++) {
for (int ow = 0; ow < c.ow; ow++) {
int oidx = n * c.oc * c.oh * c.ow
+ g * c.oc / c.ng * c.oh * c.ow
+ oc * c.oh * c.ow + oh * c.ow + ow;
dst_data[map_index(dst_d, oidx)] = bias_data ?
bias_data[map_index(
bias.get_primitive_desc().desc(),
g * c.oc / c.ng + oc)] :
data_t_dst{0};
for (int ic = 0; ic < c.ic / c.ng; ic++) {
for (int kh = 0; kh < c.kh; kh++) {
for (int kw = 0; kw < c.kw; kw++) {
int iw = ow * c.strw
- c.padw + kw * (1 + c.dilw);
int ih = oh * c.strh
- c.padh + kh * (1 + c.dilh);
if (iw < 0 || iw >= c.iw) continue;
if (ih < 0 || ih >= c.ih) continue;
int iidx = n * c.ic * c.ih * c.iw
+ g * c.ic / c.ng * c.ih * c.iw
+ ic * c.ih * c.iw + ih * c.iw + iw;
int widx = g * c.oc / c.ng * c.ic
/ c.ng * c.kh * c.kw
+ oc * c.ic / c.ng * c.kh * c.kw
+ ic * c.kh * c.kw + kh * c.kw + kw;
dst_data[map_index(dst_d, oidx)]
+= src_data[map_index(src_d, iidx)]
* weights_data[map_index(
weights_d, widx)];
}
}
}
if (dst_data[map_index(dst_d, oidx)] < 0) {
dst_data[map_index(dst_d, oidx)] =
static_cast<data_t_dst>( negative_slope
* dst_data[map_index(dst_d, oidx)] );
}
}
}
}
}
}
}
template <typename data_t_src, typename data_t_wei,
typename data_t_acc, typename data_t_dst>
class convolution_relu_test
: public ::testing::TestWithParam<test_convolution_params_t> {
protected:
virtual void SetUp()
{
test_convolution_params_t p
= ::testing::TestWithParam<
test_convolution_params_t>::GetParam();
ASSERT_TRUE(p.engine_kind == engine::kind::cpu);
ASSERT_EQ(p.aalgorithm, convolution_direct);
auto eng = engine(p.engine_kind, 0);
float negative_slope = p.relu_negative_slope;
memory::data_type data_type_src = data_traits<data_t_src>::data_type;
memory::data_type data_type_dst = data_traits<data_t_dst>::data_type;
memory::data_type data_type_wei = data_traits<data_t_wei>::data_type;
test_convolution_sizes_t cd = p.sizes;
auto c_src_desc = create_md({ cd.mb, cd.ic, cd.ih, cd.iw },
data_type_src, p.formats.src_format);
auto c_weights_desc = cd.ng > 1 ?
create_md({ cd.ng, cd.oc / cd.ng, cd.ic / cd.ng, cd.kh, cd.kw },
data_type_wei, p.formats.weights_format) :
create_md({ cd.oc, cd.ic, cd.kh, cd.kw },
data_type_wei, p.formats.weights_format);
auto c_dst_desc = create_md({ cd.mb, cd.oc, cd.oh, cd.ow },
data_type_dst, p.formats.dst_format);
auto c_src = memory({c_src_desc, eng});
auto c_weights = memory({c_weights_desc, eng});
auto c_dst = memory({c_dst_desc, eng});
auto dst_ref = memory({c_dst_desc, eng});
fill_data<data_t_src>(c_src.get_primitive_desc().get_size()
/ sizeof(data_t_src), (data_t_src *)c_src.get_data_handle());
// TODO: Temporary workaround for testing of convolution + relu
if (cd.mb) {
data_t_src *src_data = (data_t_src *)c_src.get_data_handle();
const int mb_chunk = static_cast<int>(
(c_src.get_primitive_desc().get_size() / sizeof(data_t_src))
/ cd.mb );
for (int i = 0; i < cd.mb * mb_chunk; ++i) {
if ((i / mb_chunk) % 2) src_data[i] *= (data_t_src)-1.;
}
}
fill_data<data_t_wei>(
c_weights.get_primitive_desc().get_size()
/ sizeof(data_t_wei),(data_t_wei *)c_weights.get_data_handle());
bool with_bias = p.formats.bias_format != memory::format::format_undef;
auto c_bias_desc = with_bias ?
create_md({ cd.oc }, data_type_dst, p.formats.bias_format) :
create_md({}, data_type_dst, p.formats.bias_format);
auto c_bias = memory({c_bias_desc, eng});
if (with_bias) {
fill_data<data_t_dst>(
c_bias.get_primitive_desc().get_size() / sizeof(data_t_dst),
(data_t_dst *)c_bias.get_data_handle(), 1., true);
}
std::vector<int> padR = { cd.padh, cd.padw };
for (int i = 0; i < 2; ++i) {
if ((cd.ih - ((cd.kh - 1) * (cd.dilh + 1) + 1) + cd.padh + padR[0])
/ cd.strh + 1 != cd.oh)
++padR[0];
if ((cd.iw - ((cd.kw - 1) * (cd.dilw + 1) + 1) + cd.padw + padR[1])
/ cd.strw + 1 != cd.ow)
++padR[1];
}
auto test = [&]() {
auto conv_desc = with_bias
? convolution_forward::desc(prop_kind::forward_scoring,
p.aalgorithm, c_src_desc, c_weights_desc, c_bias_desc,
c_dst_desc, { cd.strh, cd.strw }, { cd.dilh, cd.dilw },
{ cd.padh, cd.padw }, padR, padding_kind::zero)
: convolution_forward::desc(prop_kind::forward_scoring,
p.aalgorithm, c_src_desc, c_weights_desc, c_dst_desc,
{ cd.strh, cd.strw }, { cd.dilh, cd.dilw },
{ cd.padh, cd.padw }, padR, padding_kind::zero);
auto conv_relu_desc =
convolution_relu_forward::desc(conv_desc, negative_slope);
auto conv_primitive_desc =
convolution_relu_forward::primitive_desc(conv_relu_desc, eng);
auto conv = with_bias
? convolution_relu_forward(conv_primitive_desc,
c_src, c_weights, c_bias, c_dst)
: convolution_relu_forward(conv_primitive_desc,
c_src, c_weights, c_dst);
std::vector<primitive> pipeline;
pipeline.push_back(conv);
stream(stream::kind::lazy).submit(pipeline).wait();
};
if (catch_expected_failures(test, p.expect_to_fail, p.expected_status))
return;
compute_ref_conv_relu_fwd<data_t_src, data_t_wei, data_t_wei,
data_t_dst>(cd, c_src, c_weights, c_bias, dst_ref, with_bias,
negative_slope);
compare_data<data_t_dst>(dst_ref, c_dst);
}
};
}
| [
"arun.kumar.singh@intel.com"
] | arun.kumar.singh@intel.com |
f1bdff5b69b296efe76431e1c35a611a24e4aec0 | bc92c058b0c2dd2877648e30156245e36ee571a4 | /source/solution_zoo/xstream/methods/behavior_method/src/BehaviorEvent.cpp | 148084262295b707c5ba6406e385340e341a376b | [
"BSD-2-Clause"
] | permissive | robort-yuan/AI-EXPRESS | c1783f5f155b918dcc6da11956c842ae5467de8e | 56f86d03afbb09f42c21958c8cd9f2f1c6437f48 | refs/heads/master | 2023-02-09T03:51:44.775020 | 2021-01-02T15:15:37 | 2021-01-02T15:15:37 | 309,591,131 | 0 | 0 | BSD-2-Clause | 2020-12-08T07:48:54 | 2020-11-03T06:11:06 | null | UTF-8 | C++ | false | false | 6,848 | cpp | /**
* Copyright (c) 2019 Horizon Robotics. All rights reserved.
* @File: BehaviorEvent.cpp
* @Brief: definition of the BehaviorEvent
* @Author: zhe.sun
* @Email: zhe.sun@horizon.ai
* @Date: 2020-06-02 14:27:05
* @Last Modified by: zhe.sun
* @Last Modified time: 2020-06-02 16:17:08
*/
#include "BehaviorMethod/BehaviorEvent.h"
#include <fstream>
#include <vector>
#include <memory>
#include <string>
#include "hobotlog/hobotlog.hpp"
namespace xstream {
int BehaviorEvent::Init(const Json::Value &config) {
// 获取滑动窗口
if (config.isMember("max_slide_window_size")) {
max_slide_window_size_ = config["max_slide_window_size"].asInt();
HOBOT_CHECK(max_slide_window_size_ > 0);
}
if (config.isMember("behavior_voting_threshold")) {
behavior_voting_threshold_ = config["behavior_voting_threshold"].asFloat();
HOBOT_CHECK(behavior_voting_threshold_ > 0);
}
return 0;
}
std::vector<std::vector<BaseDataPtr>> BehaviorEvent::Process(
const std::vector<std::vector<BaseDataPtr> > &input,
const std::vector<xstream::InputParamPtr> ¶m) {
std::vector<std::vector<BaseDataPtr>> output;
HOBOT_CHECK(!input.empty());
int batch_size = input.size();
output.resize(batch_size);
for (int batch_idx = 0; batch_idx < batch_size; batch_idx++) {
auto &input_data = input[batch_idx];
auto &output_data = output[batch_idx];
RunSingleFrame(input_data, output_data);
}
return output;
}
void BehaviorEvent::RunSingleFrame(const std::vector<BaseDataPtr> &frame_input,
std::vector<BaseDataPtr> &frame_output) {
HOBOT_CHECK(frame_input.size() == 3); // BBox, disappeard track_id and kps
auto out_infos = std::make_shared<BaseDataVector>();
frame_output.resize(1); // behavior
frame_output[0] = out_infos;
std::vector<BaseDataPtr> boxes = std::static_pointer_cast<
BaseDataVector>(frame_input[0])->datas_;
std::vector<BaseDataPtr> disappeared_track_ids = std::static_pointer_cast<
BaseDataVector>(frame_input[1])->datas_;
std::vector<BaseDataPtr> kpses = std::static_pointer_cast<
BaseDataVector>(frame_input[2])->datas_;
if (boxes.size() != kpses.size()) {
LOGE << "boxes.size(): " << boxes.size()
<< ", kpses.size(): " << kpses.size();
}
for (size_t i = 0; i < boxes.size(); ++i) {
const auto &box = std::static_pointer_cast<
XStreamData<hobot::vision::BBox>>(boxes[i])->value;
if (box.id < 0) {
auto attribute_result = std::make_shared<XStreamData<
hobot::vision::Attribute<int32_t>>>();
attribute_result->value.value = 0;
out_infos->datas_.push_back(attribute_result);
continue;
}
auto kps = std::static_pointer_cast<XStreamData<
hobot::vision::Landmarks>>(kpses[i]);
XStreamData<hobot::vision::Attribute<int32_t>> vote_info;
if (IsEvent(kps->value)) {
vote_info.value.value = 1; // TODO(zhe.sun) score
} else {
vote_info.value.value = 0;
}
uint32_t track_id = static_cast<uint32_t>(box.id);
// adjust queue
AdjustQueue(vote_info, track_id);
// vote
auto vote_info_ptr = std::make_shared<XStreamData<
hobot::vision::Attribute<int32_t>>>();
Vote(vote_info_ptr, track_id);
// output
out_infos->datas_.push_back(vote_info_ptr);
}
// disappeared_track_ids
for (const auto &data : disappeared_track_ids) {
auto disappeared_track_id =
std::static_pointer_cast<XStreamData<uint32_t>>(data)->value;
auto iter = slide_window_map_.find(disappeared_track_id);
if (iter != slide_window_map_.end()) {
slide_window_map_.erase(iter);
}
}
}
void BehaviorEvent::AdjustQueue(
const XStreamData<hobot::vision::Attribute<int32_t>> &vote_info,
uint32_t track_id) {
auto iter = slide_window_map_.find(track_id);
if (iter == slide_window_map_.end()) {
slide_window_map_[track_id].push_back(vote_info);
} else {
// 已有该track_id
int queue_size = slide_window_map_[track_id].size();
if (queue_size < max_slide_window_size_) {
slide_window_map_[track_id].push_back(vote_info);
} else if (queue_size == max_slide_window_size_) {
slide_window_map_[track_id].pop_front();
assert(slide_window_map_[track_id].size()
== static_cast<std::size_t>(queue_size - 1));
slide_window_map_[track_id].push_back(vote_info);
} else {
HOBOT_CHECK(0) << "impossible.";
}
}
}
void BehaviorEvent::Vote(
std::shared_ptr<XStreamData<
hobot::vision::Attribute<int32_t>>> &vote_info_ptr,
uint32_t track_id) {
auto iter = slide_window_map_.find(track_id);
if (iter == slide_window_map_.end()) {
vote_info_ptr->value.value = 0; // 非任何行为事件
} else {
auto &slide_window = slide_window_map_[track_id];
int window_size = slide_window.size();
if (window_size < max_slide_window_size_) {
vote_info_ptr->value.value = 0;
} else if (window_size == max_slide_window_size_) {
int behavior_num = 0;
// 计算行为事件、非行为事件在滑动窗口中的数量
for (const auto &behavior : slide_window) {
if (behavior.value.value == 1) {
++behavior_num;
}
}
float voting_ratio = static_cast<float>(behavior_num) /
static_cast<float>(max_slide_window_size_);
if (voting_ratio > behavior_voting_threshold_) {
vote_info_ptr->value.value = 1;
} else {
vote_info_ptr->value.value = 0;
}
} else {
HOBOT_CHECK(0) << "impossible.";
}
}
}
float BehaviorEvent::CalculateAngle(hobot::vision::Point pSrc,
hobot::vision::Point p1,
hobot::vision::Point p2) {
float angle = 0.0f; // 夹角
// 向量Vector a的(x, y)坐标
float va_x = p1.x - pSrc.x;
float va_y = p1.y - pSrc.y;
// 向量b的(x, y)坐标
float vb_x = p2.x - pSrc.x;
float vb_y = p2.y - pSrc.y;
float productValue = (va_x * vb_x) + (va_y * vb_y); // 向量的乘积
float va_val = std::sqrt(va_x * va_x + va_y * va_y); // 向量a的模
float vb_val = std::sqrt(vb_x * vb_x + vb_y * vb_y); // 向量b的模
float cosValue = productValue / (va_val * vb_val); // 余弦公式
// acos的输入参数范围必须在[-1, 1]之间
if (cosValue < -1 && cosValue > -2) {
cosValue = -1;
} else if (cosValue > 1 && cosValue < 2) {
cosValue = 1;
}
// acos返回的是弧度值,转换为角度值
angle = std::acos(cosValue) * 180.0f / PI;
return angle;
}
float BehaviorEvent::CalculateSlope(float y, float x) {
if (x == 0) {
return 90.0;
}
float tan = y / x;
auto arctan = std::atan(std::abs(tan)) * 180.0f / PI;
return arctan;
}
} // namespace xstream
| [
"qingpeng.liu@horizon.ai"
] | qingpeng.liu@horizon.ai |
09b9c97abe49d25f37d9f6ab4a43591472a1dca0 | 0e8af3c34d6469fa3cd06f1a56f245397cee36f3 | /GameClientCodes/Solaris/Public/FlagLib.h | be3d50f46af93587ed5e36daaa3a6e7f84bb9bb9 | [] | no_license | Goulandis/Solaris | 0b0cdf49f4b9b818f693808b9ca3d2556ebc3be4 | 50877733174ef810d68723138d1e8748991ce9e4 | refs/heads/main | 2023-03-01T02:37:16.366922 | 2021-02-06T02:22:44 | 2021-02-06T02:22:44 | 335,671,831 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 786 | h | #pragma once
#define BUFFLEN 1024
#include "CoreMinimal.h"
#include "UObject/NoExportTypes.h"
#include "FlagLib.generated.h"
UENUM()
enum SynFlag
{
/*0*/NoneSynFlag,
/*1*/Register,
/*2*/Login,
/*3*/LoadRoom,
/*4*/CreateRoom,
/*5*/ReFlashRoom,
/*6*/JoinRoom,
/*7*/OtherJoinRoom,
/*8*/ExitRoom,
/*9*/OtherExitRoom,
/*10*/DismissRoom,
/*11*/StartGame,
/*12*/SendMassage,
/*13*/Countdown,
/*14*/RoadMessage,
/*15*/MiniMapLocation,
Grade,
Communication,
EndGame
};
UENUM()
enum RespondFlag
{
NoRespond,
Success,
Fail
};
UENUM(BlueprintType)
enum class TargetPoint : uint8
{
Nil,
PointA,
PointB
};
UENUM(BlueprintType)
enum class PlayerFlag : uint8
{
NilPlayer,
Ower,
Ohter
};
UCLASS()
class SOLARIS_API UFlagLib : public UObject
{
GENERATED_BODY()
};
| [
"1612160117@qq.com"
] | 1612160117@qq.com |
3f72d17b54ced594bda1d24c61c14f7917e6fbbe | b2d54f167cc9047b5b406c664b9cdb58e78eb0dd | /OrbitBase/include/OrbitBase/Result.h | e654089fab62934ab6a837cdc3ee49ca23f1b73b | [
"LicenseRef-scancode-free-unknown",
"BSD-2-Clause"
] | permissive | abhisingh2244/orbit | 9cecb60c6664417cd8d6e6b3f0d5add6e14b363f | d630b66e627bba6228e29ca3dcfe527fa1d2e78e | refs/heads/master | 2022-12-24T01:03:04.080369 | 2020-10-01T07:58:38 | 2020-10-01T07:58:38 | 300,208,329 | 1 | 0 | BSD-2-Clause | 2020-10-01T08:41:19 | 2020-10-01T08:41:19 | null | UTF-8 | C++ | false | false | 728 | h | // Copyright (c) 2020 The Orbit Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ORBIT_BASE_RESULT_H_
#define ORBIT_BASE_RESULT_H_
#include <string>
#include "outcome.hpp"
class ErrorMessage final {
public:
ErrorMessage() = default;
explicit ErrorMessage(std::string message) : message_(std::move(message)) {}
[[nodiscard]] const std::string& message() const { return message_; }
private:
std::string message_;
};
template <typename T, typename E>
using Result = outcome::result<T, E, outcome::policy::terminate>;
template <typename T>
using ErrorMessageOr = Result<T, ErrorMessage>;
#endif // ORBIT_BASE_RESULT_H_
| [
"dimitry@google.com"
] | dimitry@google.com |
ba87d062ff9715661a6e05e970a9995d8cf42076 | db3f82897530b15aa2015c527dcf40700d88be48 | /Lockon/Src/Terrain/lLandShip.h | 467e565b62dbfe10d0f590c1dd3d0c9a38c2adb8 | [] | no_license | VahidHeidari/ReverseEngineering | 2eff32d4d49b560311c29cea06352d28d32c86ca | 04f915c3009bdd59eddd53793256574c1b0b4d1b | refs/heads/master | 2021-01-11T08:32:53.721706 | 2017-07-18T04:08:10 | 2017-07-18T04:08:10 | 76,719,008 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 961 | h | #ifndef LLANDSHIP_H_
#define LLANDSHIP_H_
class lLandShip
{
public: __thiscall lLandShip::lLandShip(class lLandShip const &)
public: __thiscall lLandShip::lLandShip(void)
public: virtual __thiscall lLandShip::~lLandShip(void)
public: class lLandShip & __thiscall lLandShip::operator=(class lLandShip const &)
public: static class lLandObject * __cdecl lLandShip::CreateObject(void)
public: virtual class HeapVector<struct Graphics::DynamicParam> const & __thiscall lLandShip::GetDrawArguments(void)
public: virtual void __thiscall lLandShip::TakeDamage(int)
private: bool __thiscall lLandShip::ShipSink(float)
private: void __thiscall lLandShip::ShipStartSink(double)
const lLandShip::`vftable'{for `Graphics::ModelInstance'}
const lLandShip::`vftable'{for `IwNetObject'}
const lLandShip::`vftable'{for `lLandObject'}
const lLandShip::`vftable'{for `viObject'}
private: static class HeapVector<struct Graphics::DynamicParam> lLandShip::globalArgs
};
#endif
| [
"crystal.delta@gmail.com"
] | crystal.delta@gmail.com |
25184c80a06a88c26d97fea7015b483f4e022845 | 53c6c543e33ac8f11d70f05870e42e3f52c5fd52 | /Knight.h | 49a3b856170192988f4104555f0b92f9340703a7 | [] | no_license | guynnn/ex2-CPP | 8e19c027834bdc559164b561850097277fdb36a5 | a7e21b52215a9875f69a4157cc7cecbfe209b80a | refs/heads/master | 2021-09-02T00:50:16.579704 | 2017-12-29T14:07:54 | 2017-12-29T14:07:54 | 115,727,177 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 763 | h | #ifndef EX2_KNIGHT_H
#define EX2_KNIGHT_H
#include "Piece.h"
/**
* Represents a knight.
*/
class Knight : public Piece
{
public:
/**
* Constructor.
* @param x x-axis coordinates on the board
* @param y y-axis coordinates on the board
* @param color black (false) or white (true)
*/
Knight(const char &x, const char &y, const bool color, const Board* board);
/**
* check if the piece can legally move the a new location.
* @param x the x coordinates of the move
* @param y the y coordinates of the move
* @return true iff the move is legal
*/
bool isLegal(const char& x, const char& y);
/**
* draws the piece on the screen
*/
void draw() const;
};
#endif //EX2_KNIGHT_H
| [
"noreply@github.com"
] | noreply@github.com |
de855979f364ef6dc38c04aed27fd52eab829d2e | 5bbd2dd7d0529d34700fa33de498f15db10c4aae | /DoublyCircularLinkedList/main.cpp | aca6af403f6f9093eef0d27cfca0a63d87f7004e | [] | no_license | GayatriChaudhari1281/C-Cpp-Programs | 8e17dac7260b55f88a46a0b9b97b93c1fd7d6d16 | 525aba48203830f70df6d4c7141b71a3da6f5f60 | refs/heads/main | 2023-07-14T06:51:23.743527 | 2021-08-08T08:33:54 | 2021-08-08T08:33:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,212 | cpp | #include"prototype.h"
#include"structure.h"
int main()
{
struct node* head = NULL;
struct node* tail = NULL;
InsertFirst(&head,&tail,11);
InsertFirst(&head,&tail,21);
InsertFirst(&head,&tail,31);
InsertFirst(&head,&tail,41);
printf("first node inserted succesfully\n");
printf("Nodes displayed in forward direction\n");
DisplayForward(head,tail);
printf("Nodes displayed in backward direction\n");
DisplayBackward(head,tail);
InsertLast(&head,&tail,101);
printf("last node inserted succesfully\n");
DisplayForward(head,tail);
DeleteFirst(&head,&tail);
printf("first node deleted succesfully\n");
DisplayForward(head,tail);
DeleteLast(&head,&tail);
printf("last node deleted succesfully\n");
DisplayForward(head,tail);
int ret=Count(head,tail);
printf("number of nodes in LL is : %d\n",ret);
int i=SearchFirstOcc(head,tail,21);
if(i==0)
{
printf("node not found\n");
}
else
{
printf("node found at position:%d\n",i);
}
InsertAtPosition(&head , &tail , 43 , 4);
printf("value inserted at given position succesfully\n");
DisplayForward(head,tail);
DeleteAtPosition(&head,&tail,3);
printf("node deleted at given position\n");
DisplayForward(head,tail);
return 0;
} | [
"gayatri.s.choudhari@cumminscollege.in"
] | gayatri.s.choudhari@cumminscollege.in |
272d055bfabc382d9f472cee24697c2873501c01 | ea14029014734e369d7200a659d581917ffdb011 | /examples/resetUsb.cpp | 6c5a1d8823d8a395bf0dbe5db41bd56442786407 | [
"MIT"
] | permissive | M-R-VulcaN/crazyflie-lib-cpp | bfd604badcfe3b63f034d688a932af9ff65ca6fd | a44c29fd921141331f9b4a42adeca32261af6b59 | refs/heads/master | 2023-09-03T16:11:05.853946 | 2021-11-16T13:29:15 | 2021-11-16T13:29:15 | 426,615,511 | 1 | 1 | MIT | 2021-11-16T09:28:55 | 2021-11-10T12:34:05 | C++ | UTF-8 | C++ | false | false | 267 | cpp | #include <iostream>
#include "ConnectionWrapper.h"
int main()
{
std::cout << isBigEndian() <<std::endl;
int res = system("echo \"from usb.core import find as finddev; dev=finddev(idVendor=0x0483,idProduct=0x5740); dev.reset()\" | python3");
return res;
}
| [
"avital.morgenstern@gmail.com"
] | avital.morgenstern@gmail.com |
14432ea15834321ddb50492587bfee366ce41b3b | 97f1be9ac088e1c9d3fd73d76c63fc2c4e28749a | /3dc/win95/STRING.HPP | c36f5f279db80b6d6c7a41f1770d728723c8d636 | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | SR-dude/AvP-Wine | 2875f7fd6b7914d03d7f58e8f0ec4793f971ad23 | 41a9c69a45aacc2c345570ba0e37ec3dc89f4efa | refs/heads/master | 2021-01-23T02:54:33.593334 | 2011-09-17T11:10:07 | 2011-09-17T11:10:07 | 2,375,686 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,997 | hpp | #ifndef _included_string_hpp_
#define _included_string_hpp_
#ifdef __WATCOMC__
#include <string.hpp>
#else
#ifndef __cplusplus
#error "string.hpp requires C++ compilation"
#endif
#include <stddef.h>
//const size_t NPOS = (size_t) -1;
#define _BIGSIZET ((size_t)-1)
class String
{
public:
String();
String(char const *, size_t = _BIGSIZET);
String(String const &, size_t = 0, size_t = _BIGSIZET);
String(char, size_t = 1);
~String();
inline operator char const * () const;
char const * c_str() const;
//operator char () const;
String & operator = (String const &);
String & operator = (char const *);
String & operator += (String const &);
String & operator += (char const *);
inline String operator () (size_t, size_t) const;
inline char & operator () (size_t);
inline char const & operator () (size_t) const;
inline char & operator [] (size_t);
inline char const & operator [] (size_t) const;
friend int operator == (String const &, String const &);
friend int operator == (String const &, char const *);
friend int operator == (char const *, String const &);
friend int operator == (String const &, char);
friend int operator == (char, String const &);
friend int operator != (String const &, String const &);
friend int operator != (String const &, char const *);
friend int operator != (char const *, String const &);
friend int operator != (String const &, char);
friend int operator != (char, String const &);
friend int operator <= (String const &, String const &);
friend int operator <= (String const &, char const *);
friend int operator <= (char const *, String const &);
friend int operator <= (String const &, char);
friend int operator <= (char, String const &);
friend int operator >= (String const &, String const &);
friend int operator >= (String const &, char const *);
friend int operator >= (char const *, String const &);
friend int operator >= (String const &, char);
friend int operator >= (char, String const &);
friend int operator < (String const &, String const &);
friend int operator < (String const &, char const *);
friend int operator < (char const *, String const &);
friend int operator < (String const &, char);
friend int operator < (char, String const &);
friend int operator > (String const &, String const &);
friend int operator > (String const &, char const *);
friend int operator > (char const *, String const &);
friend int operator > (String const &, char);
friend int operator > (char, String const &);
friend inline String operator + (String const &, String const &);
friend inline String operator + (String const &, char const *);
friend inline String operator + (char const *, String const &);
friend inline String operator + (String const &, char);
friend inline String operator + (char, String const &);
inline size_t length() const;
inline char const & get_at(size_t) const;
void put_at(size_t, char);
int match(String const &) const;
int match(char const *) const;
int index(String const &, size_t = 0) const;
int index(char const *, size_t = 0 ) const;
String upper() const;
String lower() const;
inline int operator ! () const;
inline int valid() const;
friend inline int valid(String const &);
private:
String(String const &, String const &);
String(char const *, String const &);
String(String const &, char const *);
String(char, String const &);
String(String const &, char);
char * rep;
size_t len;
char * cstring;
};
inline String::operator char const * () const
{
return c_str();
}
inline String String::operator () (size_t start, size_t leng) const
{
return String(*this,start,leng);
}
inline char & String::operator () (size_t pos)
{
return operator [] (pos);
}
inline char const & String::operator () (size_t pos) const
{
return operator [] (pos);
}
inline char & String::operator [] (size_t pos)
{
return rep[pos];
}
inline char const & String::operator [] (size_t pos) const
{
return rep[pos];
}
#define STRING_CONSTRCAT(arg1,arg2) \
inline String operator + (arg1 a1,arg2 a2) \
{ \
return String(a1,a2); \
}
STRING_CONSTRCAT(String const &, String const &)
STRING_CONSTRCAT(char const *, String const &)
STRING_CONSTRCAT(String const &, char const *)
STRING_CONSTRCAT(char , String const &)
STRING_CONSTRCAT(String const &, char)
inline size_t String::length() const
{
return len;
}
inline char const & String::get_at(size_t pos) const
{
return operator [] (pos);
}
inline int String::operator ! () const
{
return !valid();
}
inline int String::valid() const
{
return 1;
}
inline int valid(String const & str)
{
return str.valid();
}
#endif
#endif | [
"a_jagers@ANTHONYJ.(none)"
] | a_jagers@ANTHONYJ.(none) |
9a89638a80f4f056332d2644b1f5cec381f4edaf | 132198d6cd8300a77a6a371e6e6abe0795e7fed0 | /airdcpp/MessageHighlight.cpp | 41d28206a2b49f51b3f0d3c308ec8cd634867be8 | [] | no_license | peps1/airdcpp-core | f7c2b90caceb872f7f60aea97b7dedb95bea3292 | e4af875397f994c71de54adea14aa12d4c803e50 | refs/heads/master | 2022-12-23T08:31:30.884057 | 2020-09-27T07:04:12 | 2020-09-27T07:04:12 | 298,937,881 | 0 | 0 | null | 2020-09-27T02:34:08 | 2020-09-27T02:34:07 | null | UTF-8 | C++ | false | false | 4,256 | cpp | /*
* Copyright (C) 2011-2019 AirDC++ Project
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "stdinc.h"
#include "MessageHighlight.h"
#include "AirUtil.h"
#include "ShareManager.h"
#include "OnlineUser.h"
namespace dcpp {
atomic<MessageHighlightToken> messageHighlightIdCounter { 1 };
MessageHighlight::MessageHighlight(size_t aStart, const string& aText, HighlightType aType, const string& aTag) :
token(messageHighlightIdCounter++),
Position({ aStart, aStart + aText.size() }),
text(aText), type(aType), tag(aTag)
{
}
int MessageHighlight::HighlightSort::operator()(const MessageHighlight::KeyT& a, const MessageHighlight::KeyT& b) const noexcept {
// Overlapping ranges can't be added
if (a.getStart() <= b.getEnd() && b.getStart() <= a.getEnd()) {
return 0;
}
return compare(a.getStart(), b.getStart());
}
const MessageHighlight::KeyT& MessageHighlight::HighlightPosition::operator()(const MessageHighlightPtr& aHighlight) const noexcept {
return *aHighlight;
}
MessageHighlight::SortedList MessageHighlight::parseHighlights(const string& aText, const string& aMyNick, const UserPtr& aUser) {
MessageHighlight::SortedList ret;
// Note: the earlier formatters will override the later ones in case of duplicates
// Parse links
{
try {
auto start = aText.cbegin();
auto end = aText.cend();
boost::match_results<string::const_iterator> result;
int pos = 0;
while (boost::regex_search(start, end, result, AirUtil::urlReg, boost::match_default)) {
string link(result[0].first, result[0].second);
auto highlight = make_shared<MessageHighlight>(pos + result.position(), link, MessageHighlight::HighlightType::TYPE_LINK_URL, "url");
if (link.find("magnet:?") == 0) {
auto m = Magnet::parseMagnet(link);
if (m) {
highlight->setMagnet(m);
if (ShareManager::getInstance()->isTempShared(aUser, (*m).getTTH())) {
highlight->setTag("temp_share");
} else {
highlight->setTag("magnet");
}
}
}
ret.insert_sorted(std::move(highlight));
start = result[0].second;
pos += result.position() + link.length();
}
} catch (...) {
//...
}
}
// Parse release names
if (SETTING(FORMAT_RELEASE) || SETTING(DUPES_IN_CHAT)) {
auto start = aText.cbegin();
auto end = aText.cend();
boost::match_results<string::const_iterator> result;
int pos = 0;
while (boost::regex_search(start, end, result, AirUtil::releaseRegChat, boost::match_default)) {
std::string link(result[0].first, result[0].second);
ret.insert_sorted(make_shared<MessageHighlight>(pos + result.position(), link, MessageHighlight::HighlightType::TYPE_LINK_TEXT, "release"));
start = result[0].second;
pos += result.position() + link.length();
}
}
// My nick
if (!aMyNick.empty()) {
size_t lMyNickStart = string::npos;
size_t lSearchFrom = 0;
while ((lMyNickStart = aText.find(aMyNick, lSearchFrom)) != string::npos) {
auto lMyNickEnd = lMyNickStart + aMyNick.size();
lSearchFrom = lMyNickEnd;
ret.insert_sorted(make_shared<MessageHighlight>(lMyNickStart, aMyNick, MessageHighlight::HighlightType::TYPE_USER, "me"));
}
}
return ret;
}
DupeType MessageHighlight::getDupe() const noexcept {
switch (type) {
case TYPE_LINK_TEXT: {
return AirUtil::checkAdcDirectoryDupe(text, 0);
}
case TYPE_LINK_URL: {
if (magnet) {
return (*magnet).getDupeType();
}
return DUPE_NONE;
}
case TYPE_BOLD:
case TYPE_USER:
default: return DUPE_NONE;
}
}
} | [
"maksis@adrenaline-network.com"
] | maksis@adrenaline-network.com |
a0a6e78dd4af5d10749c04410a7258d61039ac27 | 6e5aca8a2d93092dbb8ad130d4bc904b49b938f9 | /algorithm/topcoder/problem-set/ColorfulCoinsEasy.cpp | d5b0ec0cc4829819ee3bde5dd67574f67d972f15 | [] | no_license | ljshou/workspace | 6a1b79f0b222cefee8d751fe5c32c726466fa38e | 7cc1067f22cca9e56511f89be7e24420fe894090 | refs/heads/master | 2016-09-05T13:30:42.402922 | 2016-02-28T15:35:40 | 2016-02-28T15:35:40 | 26,074,693 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 969 | cpp | #ifndef debuging
#define FIN ;
#define FOUT ;
#define OUT(x) ;
#define ERR(x) ;
#endif
#include <cstdio>
#include <iostream>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <vector>
#include <set>
using namespace std ;
#define For(i , n) for(int i = 0 ; i < (n) ; ++i)
#define SZ(x) (int)((x).size())
typedef long long lint ;
const int maxint = -1u>>2 ;
const double eps = 1e-6 ;
class ColorfulCoinsEasy
{
public:
string isPossible(vector <int> values)
{
if(values.empty()) return string("Possible");
vector<int> s;
int div;
for(int i=values.size()-1; i>0; --i)
{
div = values[i] / values[i-1];
s.push_back(div - 1);
}
sort(s.begin(), s.end(), greater<int>());
int n = s.size();
for(int i=0; i<s.size(); ++i)
{
if(s[i] < n - i)
{
return string("Impossible");
}
}
return string("Possible") ;
}
};
// Powered by FileEdit
// Powered by TZTester 1.01 [25-Feb-2003]
// Powered by CodeProcessor
| [
"shoulinjun@126.com"
] | shoulinjun@126.com |
d4573ac8d41d2733f76c29262e221afe59501b7c | f2830cf4a8edcb558009acd9f15f14065763df28 | /SOURCE/Address.h | c9a72021051f70947c5c64023d1d81b4024d1303 | [] | no_license | Mikhail3125/COWRSEWORK_Katya_Variant12 | fb2709df6742ce8ff58a4a37263eb436ecca63c8 | a2bef16972bb66d43fb7859ea8fda983e2362cfe | refs/heads/master | 2023-02-01T13:25:04.463561 | 2020-12-19T01:35:17 | 2020-12-19T01:35:17 | 322,743,189 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,831 | h | /** Address class to handle addresses in a C++ code.
*
* #include "Address.h" <BR>
* -llib
*
*/
#ifndef ADDRESS_H
#define ADDRESS_H
// SYSTEM INCLUDES
#include<iostream>
using std::string;
// Address class definition
class Address {
public:
// LIFECYCLE
/** Default + Overloaded constructor.
*/
Address(int = 0, const string & = "", const string & = "", const string & = "", int = 0);
// Use compiler-generated copy constructor, assignment, and destructor.
// Address(const Address&);
// Address& operator=(const Address&);
// ~Address();
// OPERATORS
/** Stream Insertion operator.
*
* @param os Standard Output Stream.
* @param from The value to be inserted to the output stream.
*
* @return A reference to the standard output stream.
*/
friend std::ostream& operator <<(std::ostream& os, const Address& from);
/** Stream Extraction operator.
*
* @param is Standard Intput Stream.
* @param to The value to be extracted from the input stream.
*
* @return A reference to the standard input stream.
*/
friend std::istream& operator >>(std::istream& is, Address& to);
// OPERATIONS
/** function that prints the complete address.
*
* @param void
*
* @return void
*/
void PrintAddress()const;
/** static function that prints the default address
*
* @param void
*
* @return void
*/
static void sPrintDefaultAddress();
// ACCESS
// setters
void SetHouseNo(int = 0);
void SetStreet(const string & = "");
void SetCity(const string & = "");
void SetProvince(const string & = "");
void SetPostCode(int = 0);
void SetAddress(int = 0, const string & = "", const string & = "", const string & = "", int = 0);
/**
# @overload void SetAddress(const Address& aAddress);
*/
void SetAddress(const Address& aAddress);
static void sSetDefaultAddress(int = 0, const string & = "", const string & = "", const string & = "", int = 0);
/**
# @overload static void sSetDefaultAddress(const Address& aDefaultAddress)
*/
static void sSetDefaultAddress(const Address& aDefaultAddress);
// getters
int GetHouseNo()const;
const string& GetStreet()const;
const string& GetCity()const;
const string& GetProvince()const;
int GetPostCode()const;
const Address& GetAddress()const;
static const Address& sGetDefaultAddress();
private:
// INQUIRY
/** utility function to check name of city or Province.
* Only checks for alphabetic characters and first cap letter.
*
* @param testName The reference to name to be tested.
*
* @return true if testName is valid, false otherwise.
*/
bool IsValidName(const string& testName)const;
// DATA MEMBERS
int mHouseNo;
string mStreet;
string mCity;
string mProvince;
int mPostCode;
// class variable shared by all objects of Address class
static Address msDefaultAddress;
};
// end class Address
#endif
// _ADDRESS_H_
| [
"0961120962fb@gmail.com"
] | 0961120962fb@gmail.com |
2e5bd1d4b4adff805c46672ec7f2fb380b03f0db | 5838cf8f133a62df151ed12a5f928a43c11772ed | /NT/base/win32/fusion/tools/newmsm/msmgen.cpp | 224c4b81f5d084dfbb0a4210425a12c732c525f1 | [] | no_license | proaholic/Win2K3 | e5e17b2262f8a2e9590d3fd7a201da19771eb132 | 572f0250d5825e7b80920b6610c22c5b9baaa3aa | refs/heads/master | 2023-07-09T06:15:54.474432 | 2021-08-11T09:09:14 | 2021-08-11T09:09:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 37,786 | cpp | /*++
Copyright (c) 2000 Microsoft Corporation
Module Name:
msmgen.cpp
Abstract:
Main Function calls for msm generation
Author:
Xiaoyu Wu(xiaoyuw) 01-Aug-2001
--*/
#include "msmgen.h"
#include "util.h"
#include "objbase.h"
#include "initguid.h"
#include "coguid.h"
#include "msidefs.h"
#include <string.h>
#define DEFAULT_MODULE_IDENTIFIER_PREFIX L"Module0"
#define MSMGEN_FROM_MANFILE 0
#define MSMGEN_FROM_MANLIST 1
#define MSMGEN_FROM_MANGROUP 2
extern void MsmToUpper(CBaseStringBuffer &);
//
// global variables
//
CStringBuffer g_sbTemplateFile;
ASSEMBLY_INFO curAsmInfo;
MSM_INFO g_MsmInfo;
//
// function declaration
//
DECLARE_FUNCTION(_file);
DECLARE_FUNCTION(_assemblyIdentity);
DECLARE_FUNCTION(_comClass);
DECLARE_FUNCTION(_typelib);
static MSM_DOMNODE_WORKER s_msm_worker[]={
DEFINE_ATTRIBUTE_MSM_INTERESTED(file),
DEFINE_ATTRIBUTE_MSM_INTERESTED(assemblyIdentity),
DEFINE_ATTRIBUTE_MSM_INTERESTED(comClass),
DEFINE_ATTRIBUTE_MSM_INTERESTED(typelib)
};
void PrintUsage()
{
WCHAR filename[MAX_PATH];
PWSTR exe = NULL;
if (GetModuleFileNameW(NULL, filename, NUMBER_OF(filename)) > 0)
{
exe = wcsrchr(filename, L'\\');
if (exe == NULL)
{
wcscpy(filename, L"msmgen exe ");
exe = filename;
}else
exe ++;
}
else
{
wcscpy(filename, L"msmgen exe ");
exe = filename;
}
fprintf(stderr, "Generate .msm for an assembly\n\n");
fprintf(stderr, "%S manfile manifest_file.manifest [-compid {guid}] [-msmid {guid}] [-msm file.msm] [-template templatefile.msm]\n", exe);
fprintf(stderr, "%S manlist manifest_list.txt [-msmid {guid}] [-msm file.msm] [-template templatefile.msm]\n", exe);
fprintf(stderr, "%S mangroup manifest_group.txt [-template templatefile.msm]\n", exe);
exit(0);
}
VOID ZeroOutCurrentAssemblyInfo()
{
curAsmInfo.m_sbAssemblyPath.Left(0);
curAsmInfo.m_sbManifestFileName.Left(0);
curAsmInfo.m_sbCatalogFileName.Left(0);
curAsmInfo.m_CchAssemblyPath = 0;
curAsmInfo.m_CchManifestFileName = 0;
curAsmInfo.m_CchCatalogFileName = 0;
curAsmInfo.m_sbComponentID.Left(0);
curAsmInfo.m_sbLangID.Left(0);
curAsmInfo.m_sbComponentIdentifier.Left(0);
curAsmInfo.m_fComponentTableSet = FALSE;
}
VOID ZeroOutMsmInfo()
{
g_MsmInfo.m_guidModuleID = GUID_NULL;
g_MsmInfo.m_sbModuleGuidStr.Left(0);
g_MsmInfo.m_hfci = NULL;
g_MsmInfo.m_sbMsmFileName.Left(0);
g_MsmInfo.m_hdb = NULL;
g_MsmInfo.m_sbModuleIdentifier.Left(0);
g_MsmInfo.m_sLanguageID = 0;
g_MsmInfo.m_sbCabinet.Left(0);
//g_MsmInfo.m_sbMsmTemplateFile.Left(0);
}
HRESULT ValidateCurrentMsmInfo()
{
HRESULT hr = S_OK;
INTERNAL_ERROR_CHECK_NTC(g_MsmInfo.m_sbMsmFileName.Cch() != 0);
INTERNAL_ERROR_CHECK_NTC(g_MsmInfo.m_sbMsmTemplateFile.Cch() != 0);
INTERNAL_ERROR_CHECK_NTC(g_MsmInfo.m_guidModuleID != GUID_NULL);
INTERNAL_ERROR_CHECK_NTC(g_MsmInfo.m_sbModuleGuidStr.Cch() != 0);
hr = S_OK;
Exit:
return hr;
}
HRESULT LoadManifestToDOMDocument(IXMLDOMDocument *pDoc)
{
VARIANT vURL;
VARIANT_BOOL vb;
HRESULT hr = S_OK;
BSTR bstr = NULL;
CurrentAssemblyRealign;
IFFALSE_EXIT(curAsmInfo.m_sbAssemblyPath.Win32Append(curAsmInfo.m_sbManifestFileName));
bstr = SysAllocString(curAsmInfo.m_sbAssemblyPath);
IFFAILED_EXIT(pDoc->put_async(VARIANT_FALSE));
// Load xml document from the given URL or file path
VariantInit(&vURL);
vURL.vt = VT_BSTR;
V_BSTR(&vURL) = bstr;
IFFAILED_EXIT(pDoc->load(vURL, &vb));
Exit:
SysFreeString(bstr);
return hr;
}
HRESULT PopulateDOMNode(IXMLDOMNode * node)
{
HRESULT hr = S_OK;
BSTR nodeName = NULL;
DOMNodeType nodetype;
IFFAILED_EXIT(node->get_nodeType(&nodetype));
if(nodetype == NODE_ELEMENT)
{
IFFAILED_EXIT(node->get_nodeName(&nodeName));
for ( DWORD i = 0 ; i < NUMBER_OF(s_msm_worker); i++)
{
if (wcscmp(s_msm_worker[i].pwszNodeName, nodeName) == 0)
{
IFFAILED_EXIT(s_msm_worker[i].pfn(node));
break;
}
}
}
Exit:
SysFreeString(nodeName);
return hr;
}
HRESULT WalkDomTree(IXMLDOMNode * node)
{
HRESULT hr = S_OK;
IXMLDOMNode* pChild = NULL, *pNext = NULL;
IFFAILED_EXIT(PopulateDOMNode(node));
node->get_firstChild(&pChild);
while (pChild)
{
IFFAILED_EXIT(WalkDomTree(pChild));
pChild->get_nextSibling(&pNext);
pChild->Release();
pChild = NULL;
pChild = pNext;
pNext = NULL;
}
Exit:
if (pChild)
pChild->Release();
if(pNext)
pNext->Release();
return hr;
}
HRESULT PopulateAssemblyManifest()
{
HRESULT hr = S_OK;
IXMLDOMDocument *pDoc = NULL;
IXMLDOMNode *pNode = NULL;
IFFAILED_EXIT(CoCreateInstance(CLSID_DOMDocument, NULL, CLSCTX_INPROC_SERVER, IID_IXMLDOMDocument, (void**)&pDoc));
IFFAILED_EXIT(LoadManifestToDOMDocument(pDoc));
IFFAILED_EXIT(pDoc->QueryInterface(IID_IXMLDOMNode,(void**)&pNode));
IFFAILED_EXIT(WalkDomTree(pNode));
Exit:
SAFE_RELEASE_COMPOINTER(pDoc);
SAFE_RELEASE_COMPOINTER(pNode);
return hr;
}
HRESULT PrepareMergeModuleOutputFileFromScratch()
{
HRESULT hr = S_OK;
LPOLESTR tmpstr = NULL;
PMSIHANDLE hSummaryInfo = NULL;
CurrentAssemblyRealign;
// make sure that msm, template and msm-guid has been set
IFFAILED_EXIT(ValidateCurrentMsmInfo());
//
// set cabinet output filename
//
IFFALSE_EXIT(g_MsmInfo.m_sbCabinet.Win32Assign(g_MsmInfo.m_sbMsmFileName));
IFFALSE_EXIT(g_MsmInfo.m_sbCabinet.Win32RemoveLastPathElement());
IFFALSE_EXIT(g_MsmInfo.m_sbCabinet.Win32EnsureTrailingPathSeparator());
IFFALSE_EXIT(g_MsmInfo.m_sbCabinet.Win32Append(MERGEMODULE_CABINET_FILENAME, NUMBER_OF(MERGEMODULE_CABINET_FILENAME) -1));
IFFAILED_EXIT(InitializeCabinetForWrite());
// open msm as a database
ASSERT_NTC(g_MsmInfo.m_hdb == NULL);
ASSERT_NTC(g_MsmInfo.m_sbMsmTemplateFile.IsEmpty() == FALSE);
IFFALSE_EXIT(CopyFileW(g_MsmInfo.m_sbMsmTemplateFile, g_MsmInfo.m_sbMsmFileName, FALSE));
IFFALSE_EXIT(SetFileAttributesW(g_MsmInfo.m_sbMsmFileName, FILE_ATTRIBUTE_NORMAL));
IF_NOTSUCCESS_SET_HRERR_EXIT(MsiOpenDatabaseW(g_MsmInfo.m_sbMsmFileName, (LPCWSTR)(MSIDBOPEN_DIRECT), &g_MsmInfo.m_hdb));
IF_NOTSUCCESS_SET_HRERR_EXIT(MsiGetSummaryInformation(g_MsmInfo.m_hdb, NULL, 3, &hSummaryInfo));
INTERNAL_ERROR_CHECK_NTC(g_MsmInfo.m_guidModuleID != GUID_NULL);
IFFAILED_EXIT(StringFromCLSID(g_MsmInfo.m_guidModuleID, &tmpstr));
IF_NOTSUCCESS_SET_HRERR_EXIT(MsiSummaryInfoSetProperty(hSummaryInfo, PID_REVNUMBER, VT_LPSTR, 0,0, tmpstr));
IF_NOTSUCCESS_SET_HRERR_EXIT(MsiSummaryInfoSetProperty(hSummaryInfo, PID_PAGECOUNT, VT_I4, 150, 0, 0));
//
// write ModuleSiguature table using version
//
ASSERT_NTC(g_MsmInfo.m_sbModuleIdentifier.Cch() != 0);
IFFAILED_EXIT(ExecuteInsertTableSQL(OPT_MODULESIGNATURE,
NUMBER_OF_PARAM_TO_INSERT_TABLE_MODULESIGNATURE,
MAKE_PCWSTR(g_MsmInfo.m_sbModuleIdentifier),
MAKE_PCWSTR(L"1.0.0.0")));
Exit:
MsiSummaryInfoPersist(hSummaryInfo);
CoTaskMemFree(tmpstr);
return hr;
}
#define MSMGEN_CREATE_MSM_ALWAYS 0x01
#define MSMGEN_ADD_ASSEMBLY_INTO_EXIST_MSM 0x02
HRESULT PutAssemblyIntoMergeModule(DWORD dwFlags)
{
HRESULT hr = S_OK;
PARAMETER_CHECK_NTC((dwFlags == MSMGEN_CREATE_MSM_ALWAYS) || (dwFlags == MSMGEN_ADD_ASSEMBLY_INTO_EXIST_MSM));
ASSERT_NTC(curAsmInfo.m_sbAssemblyPath.Cch() != 0);
ASSERT_NTC(curAsmInfo.m_sbManifestFileName.Cch() != 0);
ASSERT_NTC(curAsmInfo.m_sbCatalogFileName.Cch() != 0);
ASSERT_NTC(curAsmInfo.m_sbComponentID.Cch() != 0);
ASSERT_NTC(g_MsmInfo.m_sbMsmFileName.Cch() != NULL);
// validate global structure of msmInfo and asmInfo
if (dwFlags == MSMGEN_CREATE_MSM_ALWAYS)
{
// delete mam if exist
SetFileAttributesW(g_MsmInfo.m_sbMsmFileName, FILE_ATTRIBUTE_NORMAL);
DeleteFileW(g_MsmInfo.m_sbMsmFileName);
if (GetFileAttributesW(g_MsmInfo.m_sbMsmFileName) != (DWORD) (-1))
{
ReportError("failed to create a new msm. The msm file, %S, could not be removed!", (PCWSTR)g_MsmInfo.m_sbMsmFileName);
SETFAIL_AND_EXIT;
}
else if (::GetLastError() != ERROR_FILE_NOT_FOUND)
{
if (::GetLastError() == ERROR_PATH_NOT_FOUND)
{
CStringBuffer sb;
IFFALSE_EXIT(sb.Win32Assign(g_MsmInfo.m_sbMsmFileName));
IFFALSE_EXIT(sb.Win32RemoveLastPathElement());
IFFALSE_EXIT(FusionpCreateDirectories(sb, sb.Cch()));
goto MsmContinue;
}
ReportError("failed to create a new msm. GetFileAttribute for %S return error other than NOT_FOUND, win32 err code = %d\n", (PCWSTR)g_MsmInfo.m_sbMsmFileName, ::GetLastError());
SETFAIL_AND_EXIT;
}
MsmContinue:
IFFAILED_EXIT(PrepareMergeModuleOutputFileFromScratch());
IFFAILED_EXIT(PopulateAssemblyManifest());
}
else if (dwFlags == MSMGEN_ADD_ASSEMBLY_INTO_EXIST_MSM)
{
if (GetFileAttributesW(g_MsmInfo.m_sbMsmFileName) == (DWORD) (-1))
{
ReportError("failed to add assembly into a msm. The msm file, %S, does not exist!", (PCWSTR)g_MsmInfo.m_sbMsmFileName);
SETFAIL_AND_EXIT;
}
IFFAILED_EXIT(PopulateAssemblyManifest());
}
Exit:
return hr;
}
void Msmgen_TracingFunctionFailure(PWSTR x, PSTR func, DWORD line)
{
PWSTR p = x;
PWSTR q;
WCHAR Callee[256];
while ((p != NULL) && ((*p == L' ') || (*p == L'(')))
p ++;
q = p;
if (p != NULL)
q = wcschr(p , L'(');
if (q != NULL)
{
wcsncpy(Callee, p, q - p);
ReportError("%S called in %s at line %2d failed!", Callee, func, line);
}else
{
ReportError("Function called in %s at line %2d failed!", func, line);
}
return;
}
//
// make msi-specified guid string ready : uppercase and replace "-" with "_"
//
HRESULT GetMsiGUIDStrFromGUID(DWORD dwFlags, GUID & guid, CSmallStringBuffer & str)
{
HRESULT hr = S_OK;
WCHAR tmpbuf[MAX_PATH];
LPOLESTR tmpstr = NULL;
IFFAILED_EXIT(StringFromCLSID(guid, &tmpstr));
wcscpy(tmpbuf, tmpstr);
for (DWORD i=0; i < wcslen(tmpbuf); i++)
{
if (tmpbuf[i] == L'-')
tmpbuf[i] = L'_';
else
tmpbuf[i]= towupper(tmpbuf[i]);
}
if (dwFlags & MSIGUIDSTR_WITH_PREPEND_DOT)
{
tmpbuf[0] = L'.';
IFFALSE_EXIT(str.Win32Assign(tmpbuf, wcslen(tmpbuf) - 1 )); // has prepend "."
}else
IFFALSE_EXIT(str.Win32Assign(tmpbuf + 1 , wcslen(tmpbuf) - 2 )); // get rid of "{" and "}"
Exit:
CoTaskMemFree(tmpstr);
return hr;
}
HRESULT FillMsmForInitialize()
{
HRESULT hr = S_OK;
WCHAR buf[MAX_PATH];
if (GetFileAttributesW(g_MsmInfo.m_sbMsmFileName) != DWORD(-1))
{
SetFileAttributesW(g_MsmInfo.m_sbMsmFileName, FILE_ATTRIBUTE_NORMAL);
DeleteFileW(g_MsmInfo.m_sbMsmFileName);
if (GetFileAttributesW(g_MsmInfo.m_sbMsmFileName) != DWORD(-1))
{
ReportError("the output %s already exist, please rename or delete it.\n");
hr = E_INVALIDARG;
goto Exit;
}
}
//
// set template filename
//
if (g_MsmInfo.m_sbMsmTemplateFile.Cch() == 0)
{
if (FALSE == g_sbTemplateFile.IsEmpty())
{
IFFALSE_EXIT(g_MsmInfo.m_sbMsmTemplateFile.Win32Assign(g_sbTemplateFile));
} else
{
//
// get template file from current directory
//
DWORD dwRet;
dwRet = GetModuleFileNameW(NULL, buf, NUMBER_OF(buf));
if ((dwRet == 0) || (dwRet >= NUMBER_OF(buf)))
SET_HRERR_AND_EXIT(::GetLastError());
IFFALSE_EXIT(g_MsmInfo.m_sbMsmTemplateFile.Win32Assign(buf, wcslen(buf)));
IFFALSE_EXIT(g_MsmInfo.m_sbMsmTemplateFile.Win32ChangePathExtension(L"msm", 3, eErrorIfNoExtension));
}
}
// make sure that the template file must exist!
if (::GetFileAttributesW(g_MsmInfo.m_sbMsmTemplateFile) == (DWORD) -1)
{
fprintf(stderr, "the specified Msm TemplateFile %S does not exist!\n", g_MsmInfo.m_sbMsmTemplateFile);
SET_HRERR_AND_EXIT(::GetLastError());
}
// set msm ID
if (g_MsmInfo.m_guidModuleID == GUID_NULL)
{
IFFAILED_EXIT(::CoCreateGuid(&g_MsmInfo.m_guidModuleID));
}
IFFAILED_EXIT(GetMsiGUIDStrFromGUID(MSIGUIDSTR_WITH_PREPEND_DOT, g_MsmInfo.m_guidModuleID, g_MsmInfo.m_sbModuleGuidStr));
// unset until we get textual assembly identity
IFFALSE_EXIT(g_MsmInfo.m_sbModuleIdentifier.Win32Assign(L"_", 1)); //make sure that ModuleID does not start with a "_"
IFFALSE_EXIT(g_MsmInfo.m_sbModuleIdentifier.Win32Append(g_MsmInfo.m_sbModuleGuidStr + 1, g_MsmInfo.m_sbModuleGuidStr.Cch() -1));
hr= S_OK;
Exit:
return hr;
}
#define FILE_EXTENSION_MSM L"msm"
#define FILE_EXTENSION_MSM_CCH 3
using namespace std;
#include <string>
HRESULT InitializeMsmA(string & strManFile, string & strMsmFile, string & strMsmID, string & strTemplateFile)
{
HRESULT hr = S_OK;
LPOLESTR tmpstr = NULL;
PARAMETER_CHECK_NTC(!strManFile.empty());
ZeroOutMsmInfo(); // void function
//
// set output msm filename
//
if (strMsmFile.empty())
{
IFFALSE_EXIT(g_MsmInfo.m_sbMsmFileName.Win32Assign(strManFile.c_str(), strManFile.length()));
IFFALSE_EXIT(g_MsmInfo.m_sbMsmFileName.Win32ChangePathExtension(FILE_EXTENSION_MSM, FILE_EXTENSION_MSM_CCH, eErrorIfNoExtension));
}
else
{
IFFALSE_EXIT(g_MsmInfo.m_sbMsmFileName.Win32Assign(strMsmFile.c_str(), strMsmFile.length()));
}
//
// set template filename
//
if (!strTemplateFile.empty())
{
IFFALSE_EXIT(g_MsmInfo.m_sbMsmTemplateFile.Win32Assign(strTemplateFile.c_str(), strTemplateFile.length()));
}
// set msm ID
g_MsmInfo.m_guidModuleID = GUID_NULL;
if (!strMsmID.empty())
{
//
// get ModuleID from msm and save it into the global structure
//
CStringBuffer sb;
IFFALSE_EXIT(sb.Win32Assign(strMsmID.c_str(), strMsmID.length()));
IFFAILED_EXIT(CLSIDFromString(LPOLESTR(PCWSTR(sb)), &g_MsmInfo.m_guidModuleID));
}
IFFAILED_EXIT(FillMsmForInitialize());
hr = S_OK;
Exit:
CoTaskMemFree(tmpstr);
return hr;
}
HRESULT InitializeMsmW(PCWSTR pszManFile, PCWSTR pszMsmFile, PCWSTR pszMsmID, PCWSTR pszTemplateFile)
{
HRESULT hr = S_OK;
PMSIHANDLE hSummaryInfo = NULL;\
PARAMETER_CHECK_NTC(pszManFile != NULL);
ZeroOutMsmInfo(); // void function
//
// set output msm filename
//
if (pszMsmFile == NULL)
{
IFFALSE_EXIT(g_MsmInfo.m_sbMsmFileName.Win32Assign(pszManFile, wcslen(pszManFile)));
IFFALSE_EXIT(g_MsmInfo.m_sbMsmFileName.Win32ChangePathExtension(FILE_EXTENSION_MSM, FILE_EXTENSION_MSM_CCH, eErrorIfNoExtension));
}
else
{
IFFALSE_EXIT(g_MsmInfo.m_sbMsmFileName.Win32Assign(pszMsmFile, wcslen(pszMsmFile)));
}
//
// set template filename
//
if (pszTemplateFile != NULL)
{
IFFALSE_EXIT(g_MsmInfo.m_sbMsmTemplateFile.Win32Assign(pszTemplateFile, wcslen(pszTemplateFile)));
}
// set msm ID
g_MsmInfo.m_guidModuleID = GUID_NULL;
if (pszMsmID != NULL)
{
//
// get ModuleID from msm and save it into the global structure
//
IFFAILED_EXIT(CLSIDFromString(LPOLESTR(pszMsmID), &g_MsmInfo.m_guidModuleID));
}
IFFAILED_EXIT(FillMsmForInitialize());
hr = S_OK;
Exit:
return hr;
}
HRESULT GetInfoMsmgenCommandLineParameters(const DWORD dwGenFlag, wchar_t ** Options, DWORD NumOptions, PWSTR * pszComponentID, PWSTR * pszMsmFile, PWSTR * pszMsmID, PWSTR * pszTemplateFile)
{
HRESULT hr = S_OK;
DWORD i = 0;
PARAMETER_CHECK_NTC((dwGenFlag == MSMGEN_FROM_MANFILE) || (dwGenFlag == MSMGEN_FROM_MANLIST));
PARAMETER_CHECK_NTC(NumOptions % 2 == 0);
*pszComponentID = NULL;
*pszMsmFile = NULL;
*pszMsmID = NULL;
*pszTemplateFile = NULL;
while ( i < NumOptions)
{
if (Options[i][0] != L'-') // must begin with "-"
goto InvalidOption;
if (_wcsicmp(Options[i], L"-msm") == 0 )
{
if (*pszMsmFile != NULL)
{
ReportError("output msm is specified more than once\n");
goto InvalidOption;
} else
{
*pszMsmFile = Options[i + 1];
}
}
else if (_wcsicmp(Options[i], L"-template") == 0 )
{
if (*pszTemplateFile != NULL)
{
ReportError("TemplateFile is specified more than once\n");
goto InvalidOption;
} else
{
*pszTemplateFile = Options[i + 1];
}
}
else if (_wcsicmp(Options[i], L"-compid") == 0 )
{
if (dwGenFlag == MSMGEN_FROM_MANLIST)
{
ReportError("ComponentID should not be specified for manlist\n");
goto InvalidOption;
}
if (*pszComponentID != NULL)
{
ReportError("ComponentID is specified more than once\n");
goto InvalidOption;
}
else
{
*pszComponentID = Options[i + 1];
}
}
else if (_wcsicmp(Options[i], L"-msmid") == 0 )
{
if (*pszMsmID != NULL)
{
ReportError("msmid is specified more than once\n");
goto InvalidOption;
} else
{
*pszMsmID = Options[i + 1];
}
}
else
goto InvalidOption;
i++; // skip the option
i++; // skip the value of the option
}
hr = S_OK;
goto Exit;
InvalidOption:
PrintUsage();
hr = E_INVALIDARG;
Exit:
return hr;
}
HRESULT InitializeAsmInfoW(PCWSTR pszManifestFile, PCWSTR pszComponent)
{
HRESULT hr = S_OK;
WCHAR tmp[MAX_PATH];
UINT iRet;
LPOLESTR tmpstr = NULL;
PWSTR p = NULL;
PARAMETER_CHECK_NTC(pszManifestFile != NULL);
// initialize the global structure of current assembly info
ZeroOutCurrentAssemblyInfo();
//
// set manifest, catalog and AssemblyPath,
//
// the manifest does not exist
if (::GetFileAttributesW(pszManifestFile) == DWORD (-1))
{
ReportError("the manifest file, %S, does not exist, try with manifest file's fullpath!\n", pszManifestFile);
SETFAIL_AND_EXIT;
}
iRet = ::GetFullPathNameW(pszManifestFile, NUMBER_OF(tmp), tmp, NULL);
if ((iRet == 0 ) || (iRet > NUMBER_OF(tmp)))
{
ReportError("Get the fullpath of manifest file, %S, failed with LastError=%d!\n", pszManifestFile, ::GetLastError());
SET_HRERR_AND_EXIT(::GetLastError());
}
IFFALSE_EXIT(curAsmInfo.m_sbAssemblyPath.Win32Assign(tmp, wcslen(tmp)));
IFFALSE_EXIT(curAsmInfo.m_sbAssemblyPath.Win32GetLastPathElement(curAsmInfo.m_sbManifestFileName));
IFFALSE_EXIT(curAsmInfo.m_sbAssemblyPath.Win32RemoveLastPathElement());
IFFALSE_EXIT(curAsmInfo.m_sbAssemblyPath.Win32EnsureTrailingPathSeparator()); // Path with a trailing slash is always ready to use
curAsmInfo.m_CchAssemblyPath = curAsmInfo.m_sbAssemblyPath.GetCchAsDWORD();
curAsmInfo.m_CchManifestFileName = curAsmInfo.m_sbManifestFileName.GetCchAsDWORD();
IFFALSE_EXIT(curAsmInfo.m_sbCatalogFileName.Win32Assign(curAsmInfo.m_sbManifestFileName));
IFFALSE_EXIT(curAsmInfo.m_sbCatalogFileName.Win32ChangePathExtension(CATALOG_FILE_EXT, NUMBER_OF(CATALOG_FILE_EXT) -1, eAddIfNoExtension));
IFFALSE_EXIT(curAsmInfo.m_sbAssemblyPath.Win32Append(curAsmInfo.m_sbCatalogFileName));
if (::GetFileAttributesW(curAsmInfo.m_sbAssemblyPath) == DWORD (-1))
{
ReportError("The catalog file, %S, does not exist!", (PCWSTR)curAsmInfo.m_sbAssemblyPath);
SETFAIL_AND_EXIT;
}
curAsmInfo.m_CchCatalogFileName = curAsmInfo.m_sbCatalogFileName.GetCchAsDWORD();
//
// reset
//
curAsmInfo.m_sbAssemblyPath.Left(curAsmInfo.m_CchAssemblyPath);
curAsmInfo.m_sbManifestFileName.Left(curAsmInfo.m_CchManifestFileName);
//
// set componentID
//
if (pszComponent == NULL)
{
GUID tmpguid;
IFFAILED_EXIT(::CoCreateGuid(&tmpguid));
IFFAILED_EXIT(StringFromCLSID(tmpguid, &tmpstr));
IFFALSE_EXIT(curAsmInfo.m_sbComponentID.Win32Assign(tmpstr, wcslen(tmpstr)));
}
else
{
IFFALSE_EXIT(curAsmInfo.m_sbComponentID.Win32Assign(pszComponent, wcslen(pszComponent)));
}
MsmToUpper(curAsmInfo.m_sbComponentID);
Exit:
CoTaskMemFree(tmpstr);
return hr;
}
HRESULT InitializeAsmInfoA(const string & strManifestFile, const string & strComponent)
{
WCHAR wstrManifestFile[MAX_PATH];
WCHAR wstrComponentID[64];
HRESULT hr = S_OK;
PARAMETER_CHECK_NTC(!strManifestFile.empty());
if (0 == MultiByteToWideChar(CP_ACP, 0, strManifestFile.c_str(), strManifestFile.length(), wstrManifestFile, NUMBER_OF(wstrManifestFile)))
{
ReportError("convert %s to wstr failed!", strManifestFile.c_str());
SETFAIL_AND_EXIT;
}
wstrManifestFile[strManifestFile.length()] = L'\0';
if (!strComponent.empty())
{
if (0 == MultiByteToWideChar(CP_ACP, 0, strComponent.c_str(), strComponent.length(), wstrComponentID, NUMBER_OF(wstrComponentID)))
{
ReportError("convert %s to wstr failed!", strComponent.c_str());
SETFAIL_AND_EXIT;
}
wstrComponentID[strComponent.length()] = L'\0';
}
IFFAILED_EXIT(InitializeAsmInfoW(wstrManifestFile, strComponent.empty() ? NULL : wstrComponentID));
Exit:
return hr;
}
void CleanupMsm()
{
if ( g_MsmInfo.m_hfci != NULL)
{
FCIDestroy(g_MsmInfo.m_hfci);
g_MsmInfo.m_hfci = NULL;
}
if ( g_MsmInfo.m_hdb!= NULL){
MsiDatabaseCommit(g_MsmInfo.m_hdb);
MsiCloseHandle(g_MsmInfo.m_hdb);
g_MsmInfo.m_hdb = NULL;
}
return;
}
HRESULT FinalizedMsm()
{
HRESULT hr = S_OK;
IFFAILED_EXIT(CloseCabinet());
IFFAILED_EXIT(InsertCabinetIntoMsm());
Exit:
DeleteFileW(g_MsmInfo.m_sbCabinet);
CleanupMsm();
return hr;
}
HRESULT CreateMsmForSingleManifest(PCWSTR pszManifestFile, PCWSTR pszComponent)
{
HRESULT hr = S_OK;
PARAMETER_CHECK_NTC(pszManifestFile != NULL);
IFFAILED_EXIT(InitializeAsmInfoW(pszManifestFile, pszComponent));
IFFAILED_EXIT(PutAssemblyIntoMergeModule(MSMGEN_CREATE_MSM_ALWAYS));
IFFAILED_EXIT(FinalizedMsm());
Exit:
return hr;
}
#include <fstream>
#if defined(_WIN64)
#pragma warning(disable: 4244)
#endif
#include <strstream>
#if defined(_WIN64)
#pragma warning(default: 4244)
#endif
void MsmTrimString(string & str)
{
if (!str.empty())
{
string::size_type x = str.find_first_not_of(' ');
if (x != 0)
str.erase(0, x);
if (!str.empty())
{
x = str.find_last_not_of(' ');
if (x != str.length() - 1)
str.erase(x + 1, str.length() - 1 - x);
}
}
return;
}
HRESULT CreateMsmForManifestList(PCWSTR pwszManListFile)
{
HRESULT hr = S_OK;
char pszManListFile[MAX_PATH];
int iBufSize;
string strline;
string strManifestFilename;
string strComponentID;
DWORD numLine = 0;
ifstream manlist;
PARAMETER_CHECK_NTC(pwszManListFile != NULL);
iBufSize = WideCharToMultiByte(CP_ACP, 0, pwszManListFile, wcslen(pwszManListFile), NULL, 0, NULL, NULL);
if (iBufSize > NUMBER_OF(pszManListFile))
{
ReportError("the manlist filename, %S, is longer than MAX_PATH\n", pwszManListFile);
SETFAIL_AND_EXIT;
}
if (0 == WideCharToMultiByte(CP_ACP, 0, pwszManListFile, wcslen(pwszManListFile), pszManListFile, NUMBER_OF(pszManListFile), NULL, NULL))
{
ReportError("the manlist filename, %S, failed to convert to ansi string\n", pwszManListFile);
SETFAIL_AND_EXIT;
}
pszManListFile[wcslen(pwszManListFile)] = '\0';
manlist.open(pszManListFile);
if (manlist.fail())
{
ReportError("the manlist, %S, now as %s, can not be opened\n", pwszManListFile, pszManListFile);
SETFAIL_AND_EXIT;
}
for(; !manlist.eof(); )
{
getline(manlist, strline);
if (strline.empty())
break;
numLine ++;
// extract manifest filename[required] and componentID[optional] and its default value could be empty or "default"
istrstream iline(strline.c_str());
getline(iline, strManifestFilename, ',');
getline(iline, strComponentID);
MsmTrimString(strManifestFilename);
MsmTrimString(strComponentID);
if (strManifestFilename.empty() == TRUE)
{
ReportError("no manifest is specified on line %d in manlist file %S \n", numLine, pwszManListFile);
SETFAIL_AND_EXIT;
}
IFFAILED_EXIT(InitializeAsmInfoA(strManifestFilename, strComponentID));
if (numLine == 1)
{
IFFAILED_EXIT(PutAssemblyIntoMergeModule(MSMGEN_CREATE_MSM_ALWAYS));
}
else
{
IFFAILED_EXIT(PutAssemblyIntoMergeModule(MSMGEN_ADD_ASSEMBLY_INTO_EXIST_MSM));
}
}
IFFAILED_EXIT(FinalizedMsm());
hr = S_OK;
Exit:
return hr;
}
class ManGroupKey{
public:
string strTag;
string strMsmID;
string strMsmFile;
string strTemplateFile;
string strManifest;
};
class ManGroupValue{
public:
string strComponentID;
};
#include <functional>
bool less<ManGroupKey>::operator()(const ManGroupKey& x, const ManGroupKey& y) const
{
if (x.strTag != y.strTag)
return (x.strTag < y.strTag);
if (x.strMsmID != y.strMsmID)
return (x.strMsmID < y.strMsmID);
if (x.strMsmFile != y.strMsmFile)
return (x.strMsmFile < y.strMsmFile);
if (x.strTemplateFile != y.strTemplateFile)
return (x.strTemplateFile < y.strTemplateFile);
return (x.strManifest < y.strManifest);
}
#include <map>
#include <utility>
HRESULT CreateMsmForManifestGroup(PCWSTR pwszMangroupFile)
{
HRESULT hr = S_OK;
ifstream mangroup;
char pszMangroupFile[MAX_PATH];
ManGroupKey mgKey;
ManGroupValue mgValue;
map<ManGroupKey, ManGroupValue> mapManGroup;
map<ManGroupKey, ManGroupValue>::iterator m1_pIter;
typedef pair <ManGroupKey, ManGroupValue> Mangroup_Entry;
int iBufSize;
DWORD numLine;
string strline;
bool fCurrentInAGroup;
bool fStartFromSratch;
string strCurrentMsmid;
string strCurrentMsmFile;
string strCurrentMsmTemplate;
PARAMETER_CHECK_NTC(pwszMangroupFile != NULL);
iBufSize = WideCharToMultiByte(CP_ACP, 0, pwszMangroupFile, wcslen(pwszMangroupFile), NULL, 0, NULL, NULL);
if (iBufSize > NUMBER_OF(pszMangroupFile))
{
ReportError("the manlist filename, %S, is longer than MAX_PATH\n", pwszMangroupFile);
SETFAIL_AND_EXIT;
}
if (0 == WideCharToMultiByte(CP_ACP, 0, pwszMangroupFile, wcslen(pwszMangroupFile), pszMangroupFile, NUMBER_OF(pszMangroupFile), NULL, NULL))
{
ReportError("the manlist filename, %S, failed to convert to ansi string\n", pwszMangroupFile);
SETFAIL_AND_EXIT;
}
pszMangroupFile[wcslen(pwszMangroupFile)] = '\0';
mangroup.open(pszMangroupFile);
if (mangroup.fail())
{
ReportError("the mangroupfile, %S, now as %s, can not be opened\n", pwszMangroupFile, pszMangroupFile);
SETFAIL_AND_EXIT;
}
numLine = 0;
//
// firstly read the file into a map which is sorted during insert
//
for(; !mangroup.eof(); )
{
getline(mangroup, strline);
if (strline.empty())
continue;
istrstream iline(strline.c_str());
if (iline.str() == NULL)
break;
numLine ++;
// clean the key strings
mgKey.strTag.erase();
mgKey.strMsmID.erase();
mgKey.strManifest.erase();
mgKey.strMsmFile.erase();
mgKey.strTemplateFile.erase();
mgValue.strComponentID.erase();
getline(iline, mgKey.strTag, ',');
getline(iline, mgKey.strMsmID, ',');
getline(iline, mgKey.strMsmFile, ',');
getline(iline, mgKey.strManifest, ',');
getline(iline, mgValue.strComponentID, ',');
getline(iline, mgKey.strTemplateFile, ',');
MsmTrimString(mgKey.strTag);
MsmTrimString(mgKey.strMsmID);
MsmTrimString(mgKey.strManifest);
MsmTrimString(mgKey.strMsmFile);
MsmTrimString(mgValue.strComponentID);
MsmTrimString(mgKey.strTemplateFile);
if (mgKey.strTag.empty())
{
ReportError("error on line %d in mangroup file %S, also is %s: Tag or MsmID is empty\n", numLine, pwszMangroupFile, pszMangroupFile);
SETFAIL_AND_EXIT;
}
if (mgKey.strManifest.empty())
{
ReportError("error on line %d in mangroup file %S, also is %s: manifest file is empty\n", numLine, pwszMangroupFile, pszMangroupFile);
SETFAIL_AND_EXIT;
}
if ((mgKey.strTag.compare("0") != 0) && (mgKey.strTag.compare("1") != 0))
{
ReportError("error on line %d in mangroup file %S, also is %s: tag must be 0 or 1\n", numLine, pwszMangroupFile, pszMangroupFile);
SETFAIL_AND_EXIT;
}
if (mgKey.strTag.compare("1") == 0)
{
//
// in this case, msmid and msmfile must be specified
//
if ((mgKey.strMsmFile.empty()) || (mgKey.strMsmID.empty()))
{
ReportError("if the first column is set to be \"1\", output msm file and msmid must be specified in the mangroup file!\n");
SETFAIL_AND_EXIT;
}
}
mapManGroup.insert(Mangroup_Entry(mgKey, mgValue));
}
fCurrentInAGroup = false;
fStartFromSratch = true;
for ( m1_pIter = mapManGroup.begin( ); m1_pIter != mapManGroup.end( ); m1_pIter++ )
{
mgKey = m1_pIter->first;
mgValue = m1_pIter->second;
if (mgKey.strTag.compare("1") == 0)
{
if (fCurrentInAGroup == false)
{
fStartFromSratch = true;
fCurrentInAGroup = true;
strCurrentMsmid = mgKey.strMsmID;
strCurrentMsmFile = mgKey.strMsmFile;
strCurrentMsmTemplate = mgKey.strTemplateFile;
}else
{
if (strCurrentMsmid != mgKey.strMsmID)
{
IFFAILED_EXIT(FinalizedMsm());
fStartFromSratch = true;
fCurrentInAGroup = true;
strCurrentMsmid = mgKey.strMsmID;
strCurrentMsmFile = mgKey.strMsmFile;
strCurrentMsmTemplate = mgKey.strTemplateFile;
} else
{
// they must share the same msmID and msmfile
if (!mgKey.strMsmFile.empty())
{
if (mgKey.strMsmFile != strCurrentMsmFile)
{
ReportError("must share the same msm output file\n");
SETFAIL_AND_EXIT;
}
}
if (!mgKey.strTemplateFile.empty())
{
if (mgKey.strTemplateFile != strCurrentMsmTemplate)
{
ReportError("must use the same msm templatefile\n");
SETFAIL_AND_EXIT;
}
}
}
}
} else if (mgKey.strTag == "0")
{
if (fCurrentInAGroup == true)
{
// close current manifest group
IFFAILED_EXIT(FinalizedMsm());
}
fStartFromSratch = true;
fCurrentInAGroup = false;
}
else
{
// impossible case
ReportError("tag is neither 0 nor 1\n");
SETFAIL_AND_EXIT;
}
if (fStartFromSratch)
{
IFFAILED_EXIT(InitializeMsmA(mgKey.strManifest, mgKey.strMsmFile, mgKey.strMsmID, mgKey.strTemplateFile));
IFFAILED_EXIT(InitializeAsmInfoA(mgKey.strManifest, mgValue.strComponentID));
IFFAILED_EXIT(PutAssemblyIntoMergeModule(MSMGEN_CREATE_MSM_ALWAYS));
}
else
{
ASSERT_NTC(fCurrentInAGroup == true);
if (fCurrentInAGroup)
{
IFFAILED_EXIT(InitializeAsmInfoA(mgKey.strManifest, mgValue.strComponentID));
IFFAILED_EXIT(PutAssemblyIntoMergeModule(MSMGEN_ADD_ASSEMBLY_INTO_EXIST_MSM));
}
}
// for single generation
if (fCurrentInAGroup == false)
{
ASSERT_NTC(fStartFromSratch == true);
IFFAILED_EXIT(FinalizedMsm());
}
fStartFromSratch = false;
}
if (fCurrentInAGroup == true)
IFFAILED_EXIT(FinalizedMsm());
Exit:
return hr;
}
extern "C" int __cdecl wmain(int argc, wchar_t** argv)
{
HRESULT hr = S_OK;
PWSTR pszComponentID = NULL, pszMsmFile = NULL, pszMsmID = NULL, pszTemplateFile = NULL;
DWORD dwGenFlag;
if ((argc < 3) || ((argc % 2) != 1))
{
PrintUsage();
hr = E_INVALIDARG;
goto Exit;
}
if (!FusionpInitializeHeap(NULL)){
hr = HRESULT_FROM_WIN32(::GetLastError());
goto Exit;
}
CoInitialize(NULL);
//
// the first parameter must be "manfile" or "manlist" or "mangroup"
//
if (_wcsicmp(argv[1], L"manfile") == 0)
{
dwGenFlag = MSMGEN_FROM_MANFILE;
}
else if (_wcsicmp(argv[1], L"manlist") == 0)
{
dwGenFlag = MSMGEN_FROM_MANLIST;
}
else if (_wcsicmp(argv[1], L"mangroup") == 0)
{
dwGenFlag = dwGenFlag = MSMGEN_FROM_MANGROUP;
if ((argc != 3) && (argc != 5))
{
goto InvalidParam;
}
if (argc == 5)
{
// it must try to specify a template
if (_wcsicmp(argv[3], L"-template") != 0)
{
goto InvalidParam;
}else
{
IFFALSE_EXIT(g_sbTemplateFile.Win32Assign(argv[4], wcslen(argv[4])));
}
}
}
else
{
goto InvalidParam;
}
//check the existence of the input file
if ( GetFileAttributesW(argv[2]) == DWORD (-1))
{
ReportError("man file does not exist!\n");
goto InvalidParam;
}
else
{
if (dwGenFlag == MSMGEN_FROM_MANFILE)
{
CStringBuffer manfile;
CSmallStringBuffer ext;
IFFALSE_EXIT(manfile.Win32Assign(argv[2], wcslen(argv[2])));
IFFALSE_EXIT(manfile.Win32GetPathExtension(ext));
if (ext.Cch() == 0)
{
ReportError("Manifest file must has ext as .man or .manifest\n");
goto InvalidParam;
}
}
}
if ((dwGenFlag == MSMGEN_FROM_MANFILE) || (dwGenFlag == MSMGEN_FROM_MANLIST))
{
//
// parse and validate parameters
//
IFFAILED_EXIT(GetInfoMsmgenCommandLineParameters(dwGenFlag, argv+3, argc-3, &pszComponentID, &pszMsmFile, &pszMsmID, &pszTemplateFile));
}
switch(dwGenFlag)
{
case MSMGEN_FROM_MANFILE:
IFFAILED_EXIT(InitializeMsmW(argv[2], pszMsmFile, pszMsmID, pszTemplateFile));
IFFAILED_EXIT(CreateMsmForSingleManifest(argv[2], pszComponentID));
break;
case MSMGEN_FROM_MANLIST:
if (pszComponentID != NULL)
{
ReportError("componentID should not be specified with manlist\n");
goto InvalidParam;
}
IFFAILED_EXIT(InitializeMsmW(argv[2], pszMsmFile, pszMsmID, pszTemplateFile));
IFFAILED_EXIT(CreateMsmForManifestList(argv[2]));
break;
case MSMGEN_FROM_MANGROUP:
IFFAILED_EXIT(CreateMsmForManifestGroup(argv[2]));
break;
}
hr = S_OK;
goto Exit;
InvalidParam:
PrintUsage();
hr = E_INVALIDARG;
Exit:
CoUninitialize();
CleanupMsm();
if (hr == S_OK)
printf("msm is generated successfully!");
else
printf("msm is failed to be generated!");
return (hr == S_OK) ? 0 : 1;
}
| [
"blindtiger@foxmail.com"
] | blindtiger@foxmail.com |
f58e3ecd421239f5609ceea6be44b499cadc0635 | 2bc4fdbbf802ad0290a350d66a2303e3d790af6a | /vnpy/api/ihq/generator/ihq_md_source_task.cpp | c2fa5a4782e0a9a6b9a971cb6ff425563ff4f4d8 | [
"MIT"
] | permissive | 1token-trade/vnpy | d3641138a26820d313956decfec2b041dc12e09d | 7909886a6b3081f6d20eb88b13b5ee911e7214a1 | refs/heads/master | 2021-06-13T19:51:17.070043 | 2021-03-31T12:24:39 | 2021-03-31T12:24:39 | 253,388,456 | 5 | 2 | MIT | 2021-04-12T06:13:54 | 2020-04-06T03:48:46 | C++ | UTF-8 | C++ | false | false | 5,841 | cpp | void MdApi::OnFrontConnected()
{
Task task = Task();
task.task_name = ONFRONTCONNECTED;
this->task_queue.push(task);
};
void MdApi::OnFrontDisconnected(int nReason)
{
Task task = Task();
task.task_name = ONFRONTDISCONNECTED;
task.task_extra = nReason;
this->task_queue.push(task);
};
void MdApi::OnHeartBeatWarning(int nTimeLapse)
{
Task task = Task();
task.task_name = ONHEARTBEATWARNING;
task.task_extra = nTimeLapse;
this->task_queue.push(task);
};
void MdApi::OnRspError(CIStoneRspInfo* pRspInfo, int nRequestID, bool bIsLast)
{
Task task = Task();
task.task_name = ONRSPERROR;
if (pRspInfo)
{
CIStoneRspInfo *task_error = new CIStoneRspInfo();
*task_error = *pRspInfo;
task.task_error = task_error;
}
task.task_id = nRequestID;
task.task_result = bIsLast;
this->task_queue.push(task);
};
void MdApi::OnRspUserLogin(CIStoneRspUserLogin* pRspUserLogin, CIStoneRspInfo* pRspInfo, int nRequestID, bool bIsLast)
{
Task task = Task();
task.task_name = ONRSPUSERLOGIN;
if (pRspUserLogin)
{
CIStoneRspUserLogin *task_data = new CIStoneRspUserLogin();
*task_data = *pRspUserLogin;
task.task_data = task_data;
}
if (pRspInfo)
{
CIStoneRspInfo *task_error = new CIStoneRspInfo();
*task_error = *pRspInfo;
task.task_error = task_error;
}
task.task_id = nRequestID;
task.task_result = bIsLast;
this->task_queue.push(task);
};
void MdApi::OnRspUserLogout(CIStoneRspUserLogout* pRspUserLogout, CIStoneRspInfo* pRspInfo, int nRequestID, bool bIsLast)
{
Task task = Task();
task.task_name = ONRSPUSERLOGOUT;
if (pRspUserLogout)
{
CIStoneRspUserLogout *task_data = new CIStoneRspUserLogout();
*task_data = *pRspUserLogout;
task.task_data = task_data;
}
if (pRspInfo)
{
CIStoneRspInfo *task_error = new CIStoneRspInfo();
*task_error = *pRspInfo;
task.task_error = task_error;
}
task.task_id = nRequestID;
task.task_result = bIsLast;
this->task_queue.push(task);
};
void MdApi::OnRspSubAllMarketData(int tickType, int exchangeID, int nRequestID, bool isSuccess)
{
Task task = Task();
task.task_name = ONRSPSUBALLMARKETDATA;
task.task_tick = tickType;
task.task_exchange = exchangeID;
task.task_id = nRequestID;
task.task_result = isSuccess;
this->task_queue.push(task);
};
void MdApi::OnRspUnSubAllMarketData(int tickType, int exchangeID, int nRequestID, bool isSuccess)
{
Task task = Task();
task.task_name = ONRSPUNSUBALLMARKETDATA;
task.task_tick = tickType;
task.task_exchange = exchangeID;
task.task_id = nRequestID;
task.task_result = isSuccess;
this->task_queue.push(task);
};
void MdApi::OnRspSubAllTickByTick(int exchangeID, int nRequestID, bool isSuccess)
{
Task task = Task();
task.task_name = ONRSPSUBALLTICKBYTICK;
task.task_exchange = exchangeID;
task.task_id = nRequestID;
task.task_result = isSuccess;
this->task_queue.push(task);
};
void MdApi::OnRspUnSubAllTickByTick(int exchangeID, int nRequestID, bool isSuccess)
{
Task task = Task();
task.task_name = ONRSPUNSUBALLTICKBYTICK;
task.task_exchange = exchangeID;
task.task_id = nRequestID;
task.task_result = isSuccess;
this->task_queue.push(task);
};
void MdApi::OnRspSubMarketData(char* tickers[], int count, int nRequestID, bool bIsSuccess)
{
Task task = Task();
task.task_name = ONRSPSUBMARKETDATA;
task.task_tickers = (char*) tickers;
task.task_count = count;
task.task_id = nRequestID;
task.task_result = bIsSuccess;
this->task_queue.push(task);
};
void MdApi::OnRspUnSubMarketData(char* tickers[], int count, int nRequestID, bool bIsSuccess)
{
Task task = Task();
task.task_name = ONRSPUNSUBMARKETDATA;
task.task_tickers = (char*) tickers;
task.task_count = count;
task.task_id = nRequestID;
task.task_result = bIsSuccess;
this->task_queue.push(task);
};
void MdApi::OnRspSubTickByTick(char* tickers[], int count, int nRequestID, bool bIsSuccess)
{
Task task = Task();
task.task_name = ONRSPSUBTICKBYTICK;
task.task_tickers = (char*) tickers;
task.task_count = count;
task.task_id = nRequestID;
task.task_result = bIsSuccess;
this->task_queue.push(task);
};
void MdApi::OnRspUnSubTickByTick(char* tickers[], int count, int nRequestID, bool bIsSuccess)
{
Task task = Task();
task.task_name = ONRSPUNSUBTICKBYTICK;
task.task_tickers = (char*) tickers;
task.task_count = count;
task.task_id = nRequestID;
task.task_result = bIsSuccess;
this->task_queue.push(task);
};
void MdApi::OnRtnDepthMarketData(CIStoneDepthMarketData* data)
{
Task task = Task();
task.task_name = ONRTNDEPTHMARKETDATA;
if (data)
{
CIStoneDepthMarketData *task_data = new CIStoneDepthMarketData();
*task_data = *data;
task.task_data = task_data;
}
this->task_queue.push(task);
};
void MdApi::OnRtnTickByTick(CIStoneTickByTick* data)
{
Task task = Task();
task.task_name = ONRTNTICKBYTICK;
if (data)
{
CIStoneTickByTick *task_data = new CIStoneTickByTick();
*task_data = *data;
task.task_data = task_data;
}
this->task_queue.push(task);
};
void MdApi::OnRtnOrderBook(CIStoneOrderBook* data)
{
Task task = Task();
task.task_name = ONRTNORDERBOOK;
if (data)
{
CIStoneOrderBook *task_data = new CIStoneOrderBook();
*task_data = *data;
task.task_data = task_data;
}
this->task_queue.push(task);
};
void MdApi::OnRspSubOrderBook(char* tickers[], int count, int nRequestID, bool bIsSuccess)
{
Task task = Task();
task.task_name = ONRSPSUBORDERBOOK;
task.task_tickers = (char*) tickers;
task.task_count = count;
task.task_id = nRequestID;
task.task_result = bIsSuccess;
this->task_queue.push(task);
};
void MdApi::OnRspUnSubOrderBook(char* tickers[], int count, int nRequestID, bool bIsSuccess)
{
Task task = Task();
task.task_name = ONRSPUNSUBORDERBOOK;
task.task_tickers = (char*) tickers;
task.task_count = count;
task.task_id = nRequestID;
task.task_result = bIsSuccess;
this->task_queue.push(task);
};
| [
"zhangyangffff@gmail.com"
] | zhangyangffff@gmail.com |
08634357ee79e9d36a50408f6760990c4f0336bf | 857fb4bda4cd2c898f265ff08b25876cb505323f | /visa/set-1/digit-dp-hello-universe/gen-small.cpp | b79103b56429f1b52d304c80adf0f868307424ae | [] | no_license | raviku9273/sugar-rush | c57729ef8a19706b24874d7599b8ba4025a9f0ef | 929210e0e9c06a739104c2146efc6e030f0f725a | refs/heads/master | 2022-11-16T05:33:03.754433 | 2020-07-16T16:48:55 | 2020-07-16T16:48:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 784 | cpp | #include <iostream>
#include "testlib.h"
using namespace std;
/********************* Custom Inputs ***************************/
const int t_low = 1;
const int t_high = 1;
const long long num_low = 1;
const long long num_high = 1000;
/********************* Custom Inputs ***************************/
#define endl '\n'
void generate()
{
auto low = rnd.next(num_low, num_high);
auto high = rnd.next(num_low, num_high);
if(low > high)
swap(low, high);
int digit = rnd.next(0, 9);
int cnt = rnd.next(0, 3);
cout << low << " ";
cout << high << " ";
cout << digit << " ";
cout << cnt << endl;
}
int main(int argc, char* argv[])
{
registerGen(argc, argv, 1);
int t = rnd.next(t_low, t_high);
cout << t << endl;
for(int i = 0; i < t; i++)
generate();
return 0;
}
| [
"just1visitor@gmail.com"
] | just1visitor@gmail.com |
55c938781bcf34d1b910b3476631297eecec375e | cd4c6064925c9fbb74a68b52ce8614a65926afef | /covidm_for_fitting/model_v2/mcmc.cpp | c2823e0641cd04f263839ef7efecef99bb03bc27 | [] | no_license | nicholasdavies/newcovid | 53cfe0b6bd70e01606c369a2fa11e16acedd4ece | 204c35dd4b810f71c90472fbbd61068de1c4c1a4 | refs/heads/master | 2023-03-12T05:57:13.246461 | 2021-02-25T19:42:16 | 2021-02-25T19:42:16 | 323,409,362 | 27 | 4 | null | 2021-01-21T10:12:45 | 2020-12-21T17:52:11 | R | UTF-8 | C++ | false | false | 20,780 | cpp | // mcmc.cpp
#include <cmath>
#include <iostream>
#include <iomanip>
#include <vector>
#include <limits>
#include <string>
#include <stdexcept>
#include <algorithm>
#include "mcmc.h"
#include "user_defined.h"
#include "Rcpp_interface.h"
using namespace std;
MCMCReporter::MCMCReporter(unsigned int iterations, unsigned int chains, vector<string>& param_names)
: n_chains(chains), n_samp(iterations * n_chains),
trial(n_samp, 0), chain(n_samp, 0), lp(n_samp, 0.0), ll(n_samp, 0.0),
theta(param_names.size(), vector<double>(n_samp, 1.0)), pnames(param_names)
{
}
void MCMCReporter::operator()(int TR, double LP, double CH, double LL, vector<double>& TH)
{
if (TR < 0)
return;
int i = TR * n_chains + CH;
trial[i] = TR;
chain[i] = CH;
lp[i] = LP;
ll[i] = LL;
for (unsigned int j = 0; j < TH.size(); ++j)
theta[j][i] = TH[j];
}
Likelihood::Likelihood(Parameters& bp, unsigned int m_seed)
: base_parameters(bp), model_seed(m_seed), multi(false)
{ }
Likelihood::Likelihood(vector<Parameters>& bp, vector<vector<unsigned int>>& xs, vector<double>& fp, unsigned int m_seed)
: model_seed(m_seed), multi(true), multi_base_parameters(bp), x_source(xs), fixed_params(fp)
{
}
double Likelihood::operator()(const vector<double>& theta)
{
double ll = 0;
if (!multi)
{
Randomizer r(model_seed);
Parameters p(base_parameters);
CppChanges(theta, p);
Reporter rep = RunSimulation(p, r, theta);
ll = CppLogLikelihood(theta, p, rep);
}
else
{
for (unsigned int i = 0; i < multi_base_parameters.size(); ++i)
{
Randomizer r(model_seed);
Parameters p(multi_base_parameters[i]);
vector<double> x(x_source.size(), 0);
for (unsigned int j = 0; j < x_source.size(); ++j)
{
if (x_source[j][i] >= 10000)
x[j] = fixed_params[x_source[j][i] - 10000];
else
x[j] = theta[x_source[j][i]];
}
CppChanges(x, p);
Reporter rep = RunSimulation(p, r, x);
ll += CppLogLikelihood(x, p, rep);
}
}
return ll;
}
void DEMCMC_Priors(Randomizer& R, Likelihood& likelihood, MCMCReporter& report,
int burn_in, int iterations, int n_chains, vector<Distribution>& priors,
bool verbose, vector<string> param_names,
bool reeval_likelihood, bool in_parallel, int n_threads,
bool classic_gamma, bool do_migration,
vector<vector<double>> init, int init_iter)
{
#ifdef _OPENMP
if (in_parallel && n_threads > 0) {
omp_set_num_threads(n_threads);
cout << "Requested fitting with " << n_threads << " threads.\n";
}
#endif
if (n_chains < 3)
throw runtime_error("Cannot use DE-MCMC with fewer than 3 chains.");
// Store acceptance rates
unsigned int ar_size = 1000;
unsigned int ar_i = 0;
bool show_ar = false;
vector<bool> acceptances(ar_size, false);
// Storage for chains and settings
int n_theta = priors.size();
vector<vector<double>> chains(n_chains, vector<double>(n_theta, 0.0));
vector<double> p(n_chains, 0.0); // log probability for each chain
vector<double> l(n_chains, 0.0); // log likelihood for each chain
double b = 1e-5;
double adjusted_stepsize = 1.0; // TODO - experimental
// Storage for calls to Randomizer - to make thread-safe
vector<vector<double>> random_perturbations(n_chains, vector<double>(n_theta, 0.0));
vector<double> random_tests(n_chains, 0.0);
vector<double> random_gammas(n_chains, 0.0);
vector<vector<int>> random_chains(n_chains, vector<int>(2, 0));
// Assemble target func
auto target = [&](vector<double>& theta, double& l)
{
double p = 0;
for (int d = 0; d < n_theta; ++d)
{
double pd = priors[d].LogProbability(theta[d]);
if (pd == -numeric_limits<double>::infinity())
{
l = -numeric_limits<double>::infinity();
return -numeric_limits<double>::infinity();
}
p += pd;
}
l = likelihood(theta);
return l + p;
};
// Initialize chains . . .
if (init.empty())
{
// . . . from prior
for (int c = 0; c < n_chains; ++c)
for (int d = 0; d < n_theta; ++d)
chains[c][d] = priors[d].RandomInit(R);
}
else
{
// . . . from initial values supplied
if ((int)init.size() != n_chains || (int)init[0].size() != n_theta)
throw runtime_error("init vector supplied is not the right size.");
chains = init;
}
// Set initial probabilities and observables
if (verbose)
cout << "Initializing chains...\n";
#pragma omp parallel for if(in_parallel) schedule(dynamic)
for (int c = 0; c < n_chains; ++c)
p[c] = target(chains[c], l[c]);
// Do iterations
if (verbose)
cout << "Iterating...\n" << flush;
for (int i = init_iter; i < burn_in + iterations; ++i)
{
// If requested, re-evaluate likelihood for next iteration
if (reeval_likelihood)
{
#pragma omp parallel for if(in_parallel) schedule(dynamic)
for (int c = 0; c < n_chains; ++c)
p[c] = target(chains[c], l[c]);
}
// Prepare storage and random variates
bool migration = (i < burn_in * (do_migration ? 0.75 : 0.25) && ((i / 100) & 1) == 0) ? R.Bernoulli(0.0375) : false;
vector<int> migration_indices(n_chains, 0);
if (migration)
{
for (int c = 0; c < n_chains; ++c)
migration_indices[c] = c;
R.Shuffle(migration_indices);
}
for (int c = 0; c < n_chains; ++c)
{
for (int d = 0; d < n_theta; ++d)
random_perturbations[c][d] = R.Uniform(-b, b);
random_tests[c] = R.Uniform();
if (!migration)
{
if (classic_gamma)
random_gammas[c] = (i % 10 == 0 ? 1.0 : .238 / sqrt(2 * n_theta));
else
random_gammas[c] = R.Uniform(0.5, 1.0) * adjusted_stepsize;
do random_chains[c][0] = R.Discrete(n_chains); while (random_chains[c][0] == c);
do random_chains[c][1] = R.Discrete(n_chains); while (random_chains[c][1] == c || random_chains[c][1] == random_chains[c][0]);
}
}
auto saved_chains = chains;
vector<int> accept(n_chains, 0);
int n_actual_threads = 1;
#pragma omp parallel for if(in_parallel) schedule(dynamic)
for (int c = 0; c < n_chains; ++c)
{
#ifdef _OPENMP
if (i == init_iter)
n_actual_threads = max(n_actual_threads, omp_get_num_threads());
#endif
vector<double> theta_p = chains[c];
int c_from = c;
// Generate proposal, either by migration...
if (migration)
{
c_from = migration_indices[c];
theta_p = saved_chains[migration_indices[(c + 1) % n_chains]];
for (int d = 0; d < n_theta; ++d)
theta_p[d] += random_perturbations[c][d];
}
else // ... or by directed mutation
{
for (int d = 0; d < n_theta; ++d)
theta_p[d] += random_gammas[c] * (saved_chains[random_chains[c][1]][d] - saved_chains[random_chains[c][0]][d]) + random_perturbations[c][d];
}
// Calculate log-probability and accept or reject
double l_p = 0;
double p_p = target(theta_p, l_p);
if ( (p_p == -numeric_limits<double>::infinity() && p[c_from] == -numeric_limits<double>::infinity() && random_tests[c] < 0.5)
|| (p_p > -numeric_limits<double>::infinity() && random_tests[c] < exp(p_p - p[c_from])) )
{
accept[c_from] = 1;
chains[c_from] = theta_p;
p[c_from] = p_p;
l[c_from] = l_p;
}
}
// Report number of threads
if (i == init_iter)
cout << "Running with " << n_actual_threads << " threads.\n";
// Update acceptances
for (int c = 0; c < n_chains; ++c)
{
if (ar_i == ar_size - 1) show_ar = true;
acceptances[ar_i] = accept[c];
ar_i = (ar_i + 1) % ar_size;
}
// Report results of this iteration
for (int c = 0; c < n_chains; ++c)
report(i - burn_in, p[c], c, l[c], chains[c]);
// Print progress
if (verbose)
{
if (i % 100 == 0)
{
cout << "\n" << (i < burn_in ? "Burn-in" : "Main") << " iteration " << i - burn_in << ":";
if (!param_names.empty())
{
cout << "\n " << setw(12) << right << "log (P)" << setw(12) << right << "log (L)";
for (auto n : param_names)
cout << setw(12) << right << n;
}
for (int c = 0; c < n_chains; ++c)
{
cout << "\nchain" << setw(4) << right << c << setw(12) << right << p[c] << setw(12) << right << l[c];
for (int d = 0; d < n_theta; ++d)
cout << setw(12) << right << chains[c][d];
}
double acceptance_rate = show_ar ? (double)count(acceptances.begin(), acceptances.end(), true) / ar_size : -1;
cout << "\nacceptance rate: " << acceptance_rate << "\n" << flush;
}
}
// Adjust step size?
if (i % 100 == 0 && i < burn_in * 0.75 && show_ar == true)
{
double acceptance_rate = show_ar ? (double)count(acceptances.begin(), acceptances.end(), true) / ar_size : -1;
if (acceptance_rate < 0.25)
adjusted_stepsize /= 1.1;
else
adjusted_stepsize *= 1.1;
}
}
if (verbose)
cout << "\n";
}
// Global optimization algorithm based on Runarsson & Yao; https://notendur.hi.is/~tpr/papers/RuYa05.pdf
struct Particle
{
Particle(Randomizer& rand, const vector<double>& lb, const vector<double>& ub, vector<Distribution>& priors)
{
for (unsigned int i = 0; i < lb.size(); ++i)
{
x.push_back(priors[i].RandomInit(rand));
s.push_back((ub[i] - lb[i]) / sqrt(lb.size()));
}
}
vector<double> x;
vector<double> s;
double f;
};
void Optimize_Priors(Randomizer& R, Likelihood& likelihood, MCMCReporter& report, std::vector<Distribution>& priors,
unsigned int maxeval, double ftol_abs, bool verbose, bool in_parallel, unsigned int n_threads)
{
#ifdef _OPENMP
if (in_parallel && n_threads > 0)
omp_set_num_threads(n_threads);
#endif
unsigned int d = priors.size();
unsigned int np = 20 * (d + 1); // number of particles
unsigned int mu = np / 4; // number of fittest particles to reproduce
double alpha = 0.2; // exponential smoothing
double gamma = 0.85; // differential variation step size
double taup = 1.0 / sqrt(2. * d); // step size evolution parameter
double tau = 1.0 / sqrt(2. * sqrt(d)); // step size evolution parameter
// Determine bounds
vector<double> lb, ub;
for (unsigned int i = 0; i < priors.size(); ++i)
{
lb.push_back(priors[i].LowerBound());
ub.push_back(priors[i].UpperBound());
}
// Initialize particles
vector<Particle> y;
for (unsigned int i = 0; i < np; ++i)
y.push_back(Particle(R, lb, ub, priors));
vector<Particle> yn = y;
Particle best = y[0];
best.f = -numeric_limits<double>::infinity();
// Assemble target func
auto target = [&](vector<double>& theta, double& l)
{
double p = 0;
// for (int i = 0; i < d; ++i)
// {
// double pd = priors[i].LogProbability(theta[i]);
// if (pd == -numeric_limits<double>::infinity())
// {
// l = -numeric_limits<double>::infinity();
// return -numeric_limits<double>::infinity();
// }
// p += pd;
// }
l = likelihood(theta);
return l + p;
};
double last_f = -numeric_limits<double>::infinity();
// Iterate
unsigned int t = 0;
for (;; ++t)
{
// Evaluate objective function
#pragma omp parallel for if(in_parallel) schedule(dynamic)
for (unsigned int i = 0; i < y.size(); ++i)
{
double l;
y[i].f = target(y[i].x, l);
}
// Rank particles by fitness
sort(y.begin(), y.end(), [](const Particle& a, const Particle& b) { return a.f > b.f; });
// Remember best particle
if (y[0].f > best.f)
best = y[0];
// Report on progress
if (verbose && t % 10 == 0)
{
cout << "Iteration " << t << ": ";
for (auto& b : y[0].x)
cout << b << " ";
cout << "with lp = " << y[0].f << "\n";
}
// Quit if end condition reached
double this_f = y[0].f;
if (abs(this_f - last_f) < ftol_abs || t == maxeval - 1)
break;
last_f = this_f;
// Update particles
for (unsigned int k = 0; k < np; ++k)
{
unsigned int i = k % mu;
double norm = R.Normal();
if (k < mu) // differential variation
{
yn[k] = y[i];
for (unsigned int j = 0; j < d; ++j)
yn[k].x[j] += gamma * (y[0].x[j] - y[i + 1].x[j]);
}
else // standard mutation
{
yn[k] = y[i];
for (unsigned int j = 0; j < d; ++j)
{
yn[k].s[j] *= exp(taup * norm + tau * R.Normal());
do {
yn[k].x[j] = yn[i].x[j] + yn[k].s[j] * R.Normal();
} while (yn[k].x[j] < lb[j] || yn[k].x[j] > ub[j]);
yn[k].s[j] = y[i].s[j] + alpha * (yn[k].s[j] - y[i].s[j]);
yn[k].s[j] = min(yn[k].s[j], (ub[j] - lb[j]) / sqrt(d));
}
}
// clamp to range
for (unsigned int j = 0; j < d; ++j)
yn[k].x[j] = max(lb[j], min(ub[j], yn[k].x[j]));
}
swap(y, yn);
}
// Report back
double l;
target(best.x, l);
report(0, best.f, 0, l, best.x);
}
// Nelder-Mead optimization
// Point in the simplex
struct Point
{
Point(unsigned int n)
: x(n, 0.0) { }
Point(vector<double>& y)
: x(y) { }
vector<double> x;
double eval;
bool operator<(const Point& r) { return eval < r.eval; };
};
bool operator < (const Point& l, const Point& r) { return l.eval < r.eval; }
bool operator <=(const Point& l, const Point& r) { return l.eval <= r.eval; }
Point operator - (const Point& l, const Point& r) { Point p(l.x.size()); for (unsigned int i = 0; i < p.x.size(); ++i) p.x[i] = l.x[i] - r.x[i]; return p; }
Point operator + (const Point& l, const Point& r) { Point p(l.x.size()); for (unsigned int i = 0; i < p.x.size(); ++i) p.x[i] = l.x[i] + r.x[i]; return p; }
Point operator * (const double l, const Point& r) { Point p(r.x.size()); for (unsigned int i = 0; i < p.x.size(); ++i) p.x[i] = l * r.x[i]; return p; }
// Calculates centroid of all points in simplex except last point.
Point nm_centroid(const vector<Point>& simplex)
{
unsigned int N = simplex.size() - 1;
Point p(N);
for (unsigned int i = 0; i < N; ++i)
p = p + (1.0 / N) * simplex[i];
return p;
}
// Length of vector
double length(const Point& p)
{
double l = 0;
for (auto& x : p.x)
l += x * x;
return sqrt(l);
}
// Return a random unit vector
void random_unit_vector(Point& p, Randomizer& R)
{
for (auto& x : p.x)
x = R.Normal(0, 1);
p = (1.0 / length(p)) * p;
}
void NelderMead_Priors(Randomizer& R, Likelihood& likelihood, MCMCReporter& report, std::vector<Distribution>& priors,
vector<double> initial, bool chebyshev, bool adaptive, bool perturb)
{
// Working variables
unsigned int N = initial.size();
vector<Point> x(N + 1, Point(N));
// Assemble target func
auto target = [&](vector<double>& theta, double& l)
{
double p = 0;
for (unsigned int i = 0; i < N; ++i)
{
double pd = priors[i].LogProbability(theta[i]);
if (pd == -numeric_limits<double>::infinity())
{
l = -numeric_limits<double>::infinity();
return -numeric_limits<double>::infinity();
}
p += pd;
}
l = likelihood(theta);
return l + p;
};
// Set constants
double alpha = 1, beta = 2, gamma = 0.5, delta = 0.5;
if (chebyshev)
{
int n_c = 2 * (9 + (N - 1) / 5);
alpha = 1 + cos((n_c - 1.) * M_PI / (2 * n_c));
beta = 1 + cos((n_c - 3.) * M_PI / (2 * n_c));
gamma = 1 + cos((n_c + 5.) * M_PI / (2 * n_c));
delta = 1 + cos((n_c + 3.) * M_PI / (2 * n_c));
}
if (adaptive)
{
alpha = 1.0;
beta = 1.0 + 2.0 / N;
gamma = 0.75 - 0.5 / N;
delta = 1.0 - 1.0 / N;
}
// Helper to evaluate a point
double l;
auto eval = [&](Point& p) { p.eval = -target(p.x, l); };
// Helper to insert point N in proper place in simplex
auto placeN = [&](Point& p) {
x[N] = p;
unsigned int i;
for (i = 0; i < N; ++i) {
if (x[N] < x[i]) {
swap(x[N], x[i]);
break;
}
}
for (i = i + 1; i < N; ++i)
swap(x[i], x[N]);
};
// Initialize simplex
double delta_u = 0.05, delta_z = 0.0075;
x[0].x = initial;
eval(x[0]);
for (unsigned int i = 1; i < N + 1; ++i)
{
Point point(initial);
if (initial[i - 1] == 0)
point.x[i - 1] = delta_z;
else
point.x[i - 1] *= (1 + delta_u);
eval(point);
x[i] = point;
}
// Sort values
sort(x.begin(), x.end());
// Iterate
for (unsigned int j = 0; j < 10000; ++j)
{
if (j % 100 == 0)
{
cout << "Iteration " << j << ": ";
cout << x[0].eval << " ";
for (auto& y : x[0].x)
cout << y << " ";
cout << "\n";
}
// Check for termination
// tolfun: all (f(x[i]) - f(x[0]) for i > 0) <= tolfun
// tolx: all (||x[i] - x[0]|| for i > 0) <= tolx
// i >= maxit
// TODO
// Calculate centroid
Point x_o = nm_centroid(x);
if (perturb)
{
Point x_p(N);
random_unit_vector(x_p, R);
x_o = x_o + 0.1 * length(x[N] - x[0]) * x_p;
}
// Reflection
Point x_r = x_o + alpha * (x_o - x[N]);
eval(x_r);
if (x[0] <= x_r && x_r < x[N - 1])
{
placeN(x_r);
continue;
}
// Expansion
if (x_r < x[0])
{
Point x_e = x_o + beta * (x_r - x_o);
eval(x_e);
if (x_e < x_r)
placeN(x_e);
else
placeN(x_r);
continue;
}
// Contraction
Point x_c = x_o + gamma * (x[N] - x_o);
eval(x_c);
if (x_c < x[N])
{
placeN(x_c);
continue;
}
// if (x[N - 1] <= x_r && x_r < x[N])
// {
// Point x_oc = x_o + gamma * (x_r - x_o);
// eval(x_oc);
// if (x_oc <= x_r)
// {
// placeN(x_oc);
// continue;
// }
// }
// else if (x[N] <= x_r)
// {
// Point x_ic = x_o - gamma * (x_r - x_o);
// eval(x_ic);
// if (x_ic <= x[N])
// {
// placeN(x_ic);
// continue;
// }
// }
// Shrink
for (unsigned int i = 1; i < N + 1; ++i)
{
x[i] = x[0] + delta * (x[i] - x[0]);
eval(x[i]);
}
sort(x.begin(), x.end());
}
// Report back
eval(x[0]);
report(0, x[0].eval, 0, l, x[0].x);
}
| [
"nicholas.davies@lshtm.ac.uk"
] | nicholas.davies@lshtm.ac.uk |
03659ab21b0cb249638bf785cb0e2a68ba85a0bb | bd65b2dd5f2e22498e81c319b4cb97039a3a16dd | /ShoppingSoft/SocketClient.cpp | ec21190052c0f3ac566bee72b2173c9d5766fbd7 | [] | no_license | wuboui/ShoppingSoft | 2fbf9e87000972a6547e25889d5ad5c0d4a6aec1 | 220d2126e7e57463403bac5e348cc1b033e0c705 | refs/heads/master | 2021-05-15T11:47:04.491340 | 2017-10-26T03:53:33 | 2017-10-26T03:53:33 | 108,357,915 | 2 | 0 | null | null | null | null | GB18030 | C++ | false | false | 5,609 | cpp | #include "StdAfx.h"
#include "SocketClient.h"
SocketClient::SocketClient(void):
wsaData(NULL),
socketClient(NULL),
socketAddrClient(NULL)
{
}
SocketClient::~SocketClient(void)
{
if (NULL != socketClient)
{
closesocket(socketClient);
socketClient = NULL;
}
WSACleanup();
}
BOOL SocketClient::ConnectToServer(const CString strServerUrl, const int nPort)
{
cstrServerUrl = strServerUrl;
nServerPort = nPort;
BOOL bRet = FALSE;
do
{
if (!InitializeContext())
{
break;
}
if(!Connect())
{
break;
}
bRet = TRUE;
} while (FALSE);
return bRet;
}
BOOL SocketClient::LoginToServer(const CString strUsername, const CString strPasswd)
{
cstrUserName = strUsername;
cstrPassWord = strPasswd;
BOOL bRet = FALSE;
do
{
if (!SendPostData())
{
break;
}
bRet = TRUE;
} while (FALSE);
return bRet;
}
BOOL SocketClient::LogoutOfServer()
{
return FALSE;
}
BOOL SocketClient::InitializeContext()
{
BOOL bRet = FALSE;
wsaData = new WSADATA;
WORD wVersion = MAKEWORD(2, 2);
do
{
if(0 != WSAStartup(wVersion, wsaData))
{
break;
}
if(LOBYTE( wsaData->wVersion ) != 2 || HIBYTE( wsaData->wVersion ) != 2 )
{
WSACleanup();
break;
}
LPHOSTENT lpHostTent;
lpHostTent = gethostbyname(cstrServerUrl);
if (NULL == lpHostTent)
{
break;
}
socketClient = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (socketClient == INVALID_SOCKET)
{
WSACleanup();
break;
}
socketAddrClient = new SOCKADDR_IN;
socketAddrClient->sin_family = AF_INET;
socketAddrClient->sin_port = htons(nServerPort);
socketAddrClient->sin_addr = *((LPIN_ADDR)*lpHostTent->h_addr_list);
memset(socketAddrClient->sin_zero, 0, sizeof(socketAddrClient->sin_zero));
bRet = TRUE;
} while (FALSE);
return bRet;
}
BOOL SocketClient::Connect()
{
BOOL bRet = FALSE;
do
{
if (SOCKET_ERROR == connect(socketClient, (LPSOCKADDR)socketAddrClient, sizeof(SOCKADDR_IN)))
{
int nErrorCode = WSAGetLastError();
closesocket(socketClient);
break;
}
bRet = TRUE;
} while (FALSE);
return bRet;
}
BOOL SocketClient::SendPostData()
{
CString cstrSendData;
CString cstrSendParam = "redirect=&username="+cstrUserName+"&password="+cstrPassWord+"&auto_login=checked&submit=%E7%99%BB%E5%BD%95";
BOOL bRet = FALSE;
CString cstrSendParamLen;
cstrSendParamLen.Format("%d", cstrSendParam.GetLength());
cstrSendData = "POST http://account.vsochina.com/user/login HTTP/1.1\r\n";
cstrSendData += "Host: account.vsochina.com\r\n";
cstrSendData += "User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0\r\n";
cstrSendData += "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\r\n";
cstrSendData += "Accept-Language: zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3\r\n";
cstrSendData += "Accept-Encoding: gzip, deflate\r\n";
cstrSendData += "DNT: 1\r\n";
cstrSendData += "Referer: http://account.vsochina.com/user/login\r\n";
cstrSendData += "Connection: keep-alive\r\n";
cstrSendData += "Content-Type: application/x-www-form-urlencoded\r\n";
cstrSendData += "Content-Length: " + cstrSendParamLen +"\r\n";
cstrSendData += "\r\n";
cstrSendData += cstrSendParam;
CString cstrRecvData;
do
{
if (-1 == send(socketClient, cstrSendData.GetBuffer(), cstrSendData.GetLength(), 0))
{
break;
}
char recvData[1000] = {0};
int nRecvLen;
while((nRecvLen = recv(socketClient, recvData, sizeof(recvData), 0)) > 0)
{
cstrRecvData += recvData;
}
if (cstrRecvData.GetLength() == 0)
{
break;
}
ParseCookieFromRecvData(cstrRecvData);
//!判断返回的COOKIE信息中,UID是否存在
if (cstrCookieUid.IsEmpty())
{
break;
}
bRet = TRUE;
} while (FALSE);
return bRet;
}
void SocketClient::ParseCookieFromRecvData(const CString cstrRecvData)
{
list<CString> lstCookiesLine; //!存放Set-Cookie的一行,例:Set-Cookie: vso_uname=houqd_1111;
CString cstrFind = "Set-Cookie:"; //!查找标记
CString cstrSeperator = "\r\n"; //!以"\r\n"分割号来分割字符串
int nPos = 0;
int nStart = cstrRecvData.Find(cstrSeperator);
while(nStart != -1)
{
CString cstrSessionLine = cstrRecvData.Mid(nPos, nStart - nPos + 1);
if (cstrSessionLine.Find(cstrFind) != -1)
{
CString cstrRealRecord = cstrSessionLine.Right(cstrSessionLine.GetLength() - cstrFind.GetLength() - 3);
list<CString>::iterator it = find(lstCookiesLine.begin(), lstCookiesLine.end(), cstrRealRecord);
if (it == lstCookiesLine.end())
{
lstCookiesLine.push_back(cstrRealRecord);
}
}
nPos = nStart;
nStart = cstrRecvData.Find(cstrSeperator, nPos + 2);
}
//!根据每行获取的cookie值,解析为key-value的形式
vector<CString> vecCookieSet;
for (list<CString>::iterator it = lstCookiesLine.begin(); it != lstCookiesLine.end(); it++)
{
CString cstrCookies = *it;
CString cstrSeperator = ";";
StaticUtility::StringSplit(cstrCookies, cstrSeperator, vecCookieSet);
}
vector<CString> vecTemp;
for (vector<CString>::iterator it = vecCookieSet.begin(); it != vecCookieSet.end(); it++)
{
vecTemp.clear();
CString cstrOneCookies = *it;
CString cstrSeperator = "=";
StaticUtility::StringSplit(cstrOneCookies, cstrSeperator, vecTemp);
CString cstrKey = vecTemp[0];
CString cstrVal = vecTemp[1];
if(cstrKey.Compare("vso_uid") == 0)
{
cstrCookieUid = cstrVal;
break;
}
//if (vecTemp.size() == 2 && hmapCookiesSet.find(vecTemp[0]) == hmapCookiesSet.end())
//{
// hmapCookiesSet.insert(hash_map<CString, CString>::value_type(cstrKey, cstrVal));
//}
}
} | [
"wuboui@com"
] | wuboui@com |
08b14abae07744d3ccd86830d72d63321a5434bd | f1742277d8e25c6ce19dba3a04adecf4bd71e3d7 | /src/FHE.h | e71456a7b3e7c075ab21964784123d7985534d53 | [] | no_license | brittcyr/approximate-eigenvector-FHE | b67ef3e728c3eed3426c856135f8f8bab5111017 | 4c4dcd0d00afb3dbaa7004c5a89e55ec1f476b56 | refs/heads/master | 2020-04-06T04:50:42.389348 | 2013-12-30T14:44:05 | 2013-12-30T14:44:05 | 15,028,717 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,328 | h | #include <vector>
#include "Ctxt.h"
#include <NTL/ZZ_p.h>
#include <NTL/matrix.h>
#include "timing.h"
#include <iostream>
using namespace NTL;
using namespace std;
/**
* @class FHESecKey
* @brief The secret key
******************************************************************/
class FHESecKey { // The secret key
public:
Vec<ZZ_p> sk; // sk = [1 -t[0] -t[1] ... -t[-1]]
Vec<ZZ_p> t; // t = random length n vector from Z_q
Vec<ZZ_p> v; // v = PowersOfTwo(s)
FHESecKey(long n); // q is already set
bool operator==(const FHESecKey& other) const {return *this==other;}
bool operator!=(const FHESecKey& other) const {return !(*this==other);}
// Decryption
ZZ_p Decrypt(const Ctxt &ciphertxt) const;
ZZ_p MPDec(const Ctxt &ciphertxt) const;
};
ostream& operator<<(ostream& str, const FHESecKey& p);
/**
* @class FHEPubKey
* @brief The public key
********************************************************************/
class FHEPubKey { // The public key
public:
Mat<ZZ_p> A; // Matrix of the public key
FHEPubKey(long m, long n, FHESecKey& sk);
bool operator==(const FHEPubKey& other) const {return *this==other;}
bool operator!=(const FHEPubKey& other) const {return !(*this==other);}
// Encrypt
Ctxt Encrypt(ZZ_p& plaintxt) const;
};
ostream& operator<<(ostream& str, const FHEPubKey& p);
| [
"cyrbritt@mit.edu"
] | cyrbritt@mit.edu |
8c6d42e1e0793fdfba2ac0cb2173673c17fd8222 | 6b40e9dccf2edc767c44df3acd9b626fcd586b4d | /NT/printscan/ui/wiadbgui/dbgmask.h | 3fa3eacb7984c71c5105891bd4cac554b188f7db | [] | no_license | jjzhang166/WinNT5_src_20201004 | 712894fcf94fb82c49e5cd09d719da00740e0436 | b2db264153b80fbb91ef5fc9f57b387e223dbfc2 | refs/heads/Win2K3 | 2023-08-12T01:31:59.670176 | 2021-10-14T15:14:37 | 2021-10-14T15:14:37 | 586,134,273 | 1 | 0 | null | 2023-01-07T03:47:45 | 2023-01-07T03:47:44 | null | UTF-8 | C++ | false | false | 15,840 | h | /*******************************************************************************
*
* (C) COPYRIGHT MICROSOFT CORPORATION, 1998
*
* TITLE: DBGMASK.H
*
* VERSION: 1.0
*
* AUTHOR: ShaunIv
*
* DATE: 9/13/1999
*
* DESCRIPTION: Debug mask dialog
*
*******************************************************************************/
#ifndef __DGBMASK_H_INCLUDED
#define __DGBMASK_H_INCLUDED
#include <windows.h>
#include <uicommon.h>
#include <simstr.h>
#include <simreg.h>
#include <simrect.h>
#include <wiadebug.h>
class CAddModuleDialog
{
public:
struct CData
{
CSimpleString strTitle;
CSimpleString strName;
};
private:
HWND m_hWnd;
CData *m_pData;
private:
// Not implemented
CAddModuleDialog(void);
CAddModuleDialog( const CAddModuleDialog & );
CAddModuleDialog &operator=( const CAddModuleDialog & );
private:
explicit CAddModuleDialog( HWND hWnd )
: m_hWnd(hWnd),
m_pData(NULL)
{
}
~CAddModuleDialog(void)
{
}
void OnOK( WPARAM, LPARAM )
{
m_pData->strName.GetWindowText( GetDlgItem( m_hWnd, IDC_MODULE_NAME ) );
EndDialog( m_hWnd, IDOK );
}
void OnCancel( WPARAM, LPARAM )
{
EndDialog( m_hWnd, IDCANCEL );
}
LRESULT OnInitDialog( WPARAM wParam, LPARAM lParam )
{
m_pData = reinterpret_cast<CData*>(lParam);
if (!m_pData)
{
EndDialog( m_hWnd, -1 );
return -1;
}
m_pData->strName.SetWindowText( GetDlgItem( m_hWnd, IDC_MODULE_NAME ) );
if (m_pData->strTitle.Length())
m_pData->strTitle.SetWindowText( m_hWnd );
WiaUiUtil::CenterWindow( m_hWnd, GetParent(m_hWnd) );
return 0;
}
LRESULT OnCommand( WPARAM wParam, LPARAM lParam )
{
SC_BEGIN_COMMAND_HANDLERS()
{
SC_HANDLE_COMMAND(IDOK,OnOK);
SC_HANDLE_COMMAND(IDCANCEL,OnCancel);
}
SC_END_COMMAND_HANDLERS();
}
public:
static INT_PTR WINAPI DialogProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
{
SC_BEGIN_DIALOG_MESSAGE_HANDLERS(CAddModuleDialog)
{
SC_HANDLE_DIALOG_MESSAGE( WM_INITDIALOG, OnInitDialog );
SC_HANDLE_DIALOG_MESSAGE( WM_COMMAND, OnCommand );
}
SC_END_DIALOG_MESSAGE_HANDLERS();
}
};
template <class T_NUMBERTYPE>
static HRESULT DigitToNumber( WCHAR cDigit, int nRadix, T_NUMBERTYPE *pnValue )
{
if (!pnValue)
return E_POINTER;
if (nRadix > 36)
return E_INVALIDARG;
static const WCHAR *pszUpperDigits = L"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
static const WCHAR *pszLowerDigits = L"0123456789abcdefghijklmnopqrstuvwxyz";
for (int i=0;i<nRadix;i++)
{
if (cDigit == pszUpperDigits[i])
{
*pnValue = static_cast<T_NUMBERTYPE>(i);
return S_OK;
}
else if (cDigit == pszLowerDigits[i])
{
*pnValue = static_cast<T_NUMBERTYPE>(i);
return S_OK;
}
}
return E_FAIL;
}
template <class T_NUMBERTYPE>
static HRESULT StringToNumber( LPCWSTR strwNumber, int nRadix, T_NUMBERTYPE *pnNumber )
{
// Assume this is not a base 10 negative number
bool bNegate = false;
// Check all of the arguments
if (!strwNumber)
return E_INVALIDARG;
if (!pnNumber)
return E_POINTER;
if (nRadix > 36)
return E_INVALIDARG;
LPCWSTR pszCurr = strwNumber;
// If this is a negative number, store it
if (nRadix == 10 && lstrlenW(pszCurr) >= 1 && pszCurr[0] == TEXT('-'))
{
pszCurr++;
bNegate = true;
}
// Skip the optional 0x or 0X that can prefix hex numbers
if (nRadix == 16 && lstrlenW(pszCurr) >= 2 && pszCurr[0] == L'0' && (pszCurr[1] == L'x' || pszCurr[1] == L'X'))
{
pszCurr += 2;
}
*pnNumber = 0;
while (*pszCurr)
{
T_NUMBERTYPE nCurrDigit;
if (!SUCCEEDED(DigitToNumber<T_NUMBERTYPE>( *pszCurr, nRadix, &nCurrDigit )))
{
return E_FAIL;
}
*pnNumber *= nRadix;
*pnNumber += nCurrDigit;
pszCurr++;
}
if (bNegate)
*pnNumber = static_cast<T_NUMBERTYPE>(-static_cast<__int64>(*pnNumber));
return S_OK;
}
template <class T_NUMBERTYPE>
static HRESULT StringToNumber( LPCSTR strNumber, int nRadix, T_NUMBERTYPE *pnNumber )
{
return StringToNumber<T_NUMBERTYPE>( CSimpleStringConvert::WideString(CSimpleStringAnsi(strNumber)), nRadix, pnNumber );
}
class CDebugMaskDialog
{
private:
class CDebugModule
{
private:
CSimpleString m_strName;
DWORD m_dwMask;
public:
CDebugModule( LPCTSTR pszName = TEXT(""), DWORD dwMask = 0)
: m_strName(pszName),
m_dwMask(dwMask)
{
}
CDebugModule( const CDebugModule &other )
: m_strName(other.Name()),
m_dwMask(other.Mask())
{
}
CDebugModule &operator=( const CDebugModule &other )
{
if (&other != this)
{
m_strName = other.Name();
m_dwMask = other.Mask();
}
return *this;
}
CSimpleString Name(void) const
{
return m_strName;
}
DWORD Mask(void) const
{
return m_dwMask;
}
void Mask( DWORD dwMask )
{
m_dwMask = dwMask;
}
};
private:
HWND m_hWnd;
private:
// Not implemented
CDebugMaskDialog(void);
CDebugMaskDialog( const CDebugMaskDialog & );
CDebugMaskDialog &operator=( const CDebugMaskDialog & );
private:
explicit CDebugMaskDialog( HWND hWnd )
: m_hWnd(hWnd)
{
}
~CDebugMaskDialog(void)
{
}
CDebugModule *GetDebugModule( int nItem )
{
LVITEM LvItem;
ZeroMemory( &LvItem, sizeof(LvItem) );
LvItem.mask = LVIF_PARAM;
LvItem.iItem = nItem;
if (ListView_GetItem( GetDlgItem( m_hWnd, IDC_MODULE_LIST ), &LvItem ))
{
return reinterpret_cast<CDebugModule*>(LvItem.lParam);
}
return NULL;
}
int GetCurrentSelectionIndex(void)
{
int nResult = -1;
int nSelectedCount = ListView_GetSelectedCount(GetDlgItem( m_hWnd, IDC_MODULE_LIST ));
if (nSelectedCount == 1)
{
nResult = ListView_GetNextItem( GetDlgItem( m_hWnd, IDC_MODULE_LIST ), -1, LVNI_SELECTED );
}
return nResult;
}
void SelectItem( int nIndex )
{
for (int i=0;i<ListView_GetItemCount(GetDlgItem( m_hWnd, IDC_MODULE_LIST ));i++)
{
int nFlags = (i == nIndex) ? LVIS_SELECTED|LVIS_FOCUSED : 0;
ListView_SetItemState( GetDlgItem( m_hWnd, IDC_MODULE_LIST ), i, nFlags, LVIS_SELECTED|LVIS_FOCUSED );
}
}
void OnOK( WPARAM, LPARAM )
{
// Update the value for the currently selected item
int nItem = GetCurrentSelectionIndex();
if (nItem >= 0)
{
CDebugModule *pCurrSel = GetDebugModule(nItem);
if (pCurrSel)
{
UpdateCurrentFlagsFromEdit( *pCurrSel, nItem );
}
}
// Delete all of the old values
CSimpleReg reg( HKEY_LOCAL_MACHINE, DEBUG_REGISTRY_PATH_FLAGS, true, KEY_WRITE );
reg.EnumValues( DeleteValuesEnumProc, reinterpret_cast<LPARAM>(this) );
// Save all the new ones
for (int i=0;i<ListView_GetItemCount(GetDlgItem( m_hWnd, IDC_MODULE_LIST ));i++)
{
CDebugModule *pDebugModule = GetDebugModule(i);
if (pDebugModule)
{
reg.Set( pDebugModule->Name(), pDebugModule->Mask() );
}
}
EndDialog( m_hWnd, IDOK );
}
void OnCancel( WPARAM, LPARAM )
{
EndDialog( m_hWnd, IDCANCEL );
}
static bool ReadValuesEnumProc( CSimpleReg::CValueEnumInfo &enumInfo )
{
if (enumInfo.nType == REG_DWORD)
{
CDebugMaskDialog *This = reinterpret_cast<CDebugMaskDialog*>(enumInfo.lParam);
if (This)
{
This->AddNewEntry( enumInfo.strName, enumInfo.reg.Query( enumInfo.strName, 0 ) );
}
}
return true;
}
static bool DeleteValuesEnumProc( CSimpleReg::CValueEnumInfo &enumInfo )
{
bool bRes = enumInfo.reg.Delete( enumInfo.strName );
return true;
}
int AddNewEntry( LPCTSTR pszName, DWORD dwMask )
{
int nIndex = -1;
CDebugModule *pDebugModule = new CDebugModule( pszName, dwMask );
if (pDebugModule)
{
LVITEM LvItem;
ZeroMemory( &LvItem, sizeof(LvItem) );
LvItem.mask = LVIF_TEXT | LVIF_PARAM;
LvItem.pszText = const_cast<LPTSTR>(pszName);
LvItem.lParam = reinterpret_cast<LPARAM>(pDebugModule);
LvItem.iItem = 0;
LvItem.iSubItem = 0;
nIndex = ListView_InsertItem( GetDlgItem( m_hWnd, IDC_MODULE_LIST ), &LvItem );
CSimpleString strMask;
strMask.Format( TEXT("0x%08X"), dwMask );
LvItem.mask = LVIF_TEXT;
LvItem.pszText = const_cast<LPTSTR>(strMask.String());
LvItem.iItem = nIndex;
LvItem.iSubItem = 1;
ListView_SetItem( GetDlgItem( m_hWnd, IDC_MODULE_LIST ), &LvItem );
}
return nIndex;
}
LRESULT OnInitDialog( WPARAM wParam, LPARAM lParam )
{
LVCOLUMN LvColumn;
ZeroMemory( &LvColumn, sizeof(LvColumn) );
LvColumn.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_WIDTH | LVCF_TEXT;
LvColumn.fmt = LVCFMT_LEFT;
LvColumn.pszText = TEXT("Module");
LvColumn.iSubItem = 0;
LvColumn.iOrder = 0;
LvColumn.cx = CSimpleRect( GetDlgItem( m_hWnd, IDC_MODULE_LIST ) ).Width() * 3 / 5;
ListView_InsertColumn( GetDlgItem( m_hWnd, IDC_MODULE_LIST ), 0, &LvColumn );
ZeroMemory( &LvColumn, sizeof(LvColumn) );
LvColumn.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_WIDTH | LVCF_TEXT;
LvColumn.fmt = LVCFMT_LEFT;
LvColumn.pszText = TEXT("Mask");
LvColumn.iSubItem = 1;
LvColumn.iOrder = 1;
LvColumn.cx = CSimpleRect( GetDlgItem( m_hWnd, IDC_MODULE_LIST ) ).Width() * 2 / 5;
ListView_InsertColumn( GetDlgItem( m_hWnd, IDC_MODULE_LIST ), 1, &LvColumn );
CSimpleReg reg( HKEY_LOCAL_MACHINE, DEBUG_REGISTRY_PATH_FLAGS, false, KEY_READ );
reg.EnumValues( ReadValuesEnumProc, reinterpret_cast<LPARAM>(this) );
SelectItem(0);
WiaUiUtil::CenterWindow( m_hWnd, GetParent(m_hWnd) );
return 0;
}
LRESULT OnListDeleteItem( WPARAM, LPARAM lParam )
{
NMLISTVIEW *pNmListView = reinterpret_cast<NMLISTVIEW *>(lParam);
if (pNmListView)
{
if (pNmListView->iItem >= 0 && pNmListView->iSubItem == 0)
{
CDebugModule *pDebugModule = reinterpret_cast<CDebugModule *>(pNmListView->lParam);
if (pDebugModule)
{
delete pDebugModule;
}
}
}
return 0;
}
void UpdateCurrentFlagsFromEdit( CDebugModule &DebugModule, int nItem )
{
CSimpleString strMask;
strMask.GetWindowText( GetDlgItem( m_hWnd, IDC_MASK ) );
DWORD dwMask;
if (SUCCEEDED(StringToNumber( strMask, 16, &dwMask )))
{
DebugModule.Mask(dwMask);
}
strMask.Format( TEXT("0x%08X"), DebugModule.Mask() );
ListView_SetItemText( GetDlgItem( m_hWnd, IDC_MODULE_LIST ), nItem, 1, const_cast<LPTSTR>(strMask.String()) );
}
LRESULT OnListItemChanged( WPARAM, LPARAM lParam )
{
NMLISTVIEW *pNmListView = reinterpret_cast<NMLISTVIEW *>(lParam);
if (pNmListView)
{
if (pNmListView->iItem >= 0 && (LVIF_STATE & pNmListView->uChanged) && ((pNmListView->uOldState & LVIS_SELECTED) ^ (pNmListView->uNewState & LVIS_SELECTED)))
{
CDebugModule *pDebugModule = reinterpret_cast<CDebugModule *>(pNmListView->lParam);
if (pDebugModule)
{
if (LVIS_SELECTED & pNmListView->uNewState)
{
CSimpleString strMask;
strMask.Format( TEXT("0x%08X"), pDebugModule->Mask() );
SetDlgItemText( m_hWnd, IDC_MASK, strMask );
}
else
{
UpdateCurrentFlagsFromEdit( *pDebugModule, pNmListView->iItem );
}
}
}
}
return 0;
}
void OnDeleteModule( WPARAM, LPARAM )
{
int nCurSel = GetCurrentSelectionIndex();
if (nCurSel >= 0)
{
ListView_DeleteItem( GetDlgItem( m_hWnd, IDC_MODULE_LIST ), nCurSel );
int nCount = ListView_GetItemCount( GetDlgItem( m_hWnd, IDC_MODULE_LIST ) );
if (nCount)
{
SelectItem(nCurSel >= nCount ? nCount-1 : nCurSel );
}
}
}
void OnAddModule( WPARAM, LPARAM )
{
CAddModuleDialog::CData AddModuleData;
AddModuleData.strName = TEXT("");
AddModuleData.strTitle = TEXT("Add New Module");
extern HINSTANCE g_hInstance;
if (IDOK==DialogBoxParam( g_hInstance, MAKEINTRESOURCE(IDD_MODULENAME), m_hWnd, CAddModuleDialog::DialogProc, reinterpret_cast<LPARAM>(&AddModuleData)))
{
if (AddModuleData.strName.Length())
{
int nIndex = AddNewEntry( AddModuleData.strName, 0xFFFFFFFF );
if (nIndex >= 0)
{
SelectItem( nIndex );
SetFocus( GetDlgItem( m_hWnd, IDC_MASK ) );
SendDlgItemMessage( m_hWnd, IDC_MASK, EM_SETSEL, 0, static_cast<LPARAM>(-1) );
}
}
}
}
LRESULT OnNotify( WPARAM wParam, LPARAM lParam )
{
SC_BEGIN_NOTIFY_MESSAGE_HANDLERS()
{
SC_HANDLE_NOTIFY_MESSAGE_CONTROL(LVN_DELETEITEM,IDC_MODULE_LIST,OnListDeleteItem);
SC_HANDLE_NOTIFY_MESSAGE_CONTROL(LVN_ITEMCHANGED,IDC_MODULE_LIST,OnListItemChanged);
}
SC_END_NOTIFY_MESSAGE_HANDLERS();
}
LRESULT OnCommand( WPARAM wParam, LPARAM lParam )
{
SC_BEGIN_COMMAND_HANDLERS()
{
SC_HANDLE_COMMAND(IDOK,OnOK);
SC_HANDLE_COMMAND(IDCANCEL,OnCancel);
SC_HANDLE_COMMAND(IDC_DELETE_MODULE,OnDeleteModule);
SC_HANDLE_COMMAND(IDC_ADD_MODULE,OnAddModule);
}
SC_END_COMMAND_HANDLERS();
}
public:
static INT_PTR WINAPI DialogProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
{
SC_BEGIN_DIALOG_MESSAGE_HANDLERS(CDebugMaskDialog)
{
SC_HANDLE_DIALOG_MESSAGE( WM_INITDIALOG, OnInitDialog );
SC_HANDLE_DIALOG_MESSAGE( WM_COMMAND, OnCommand );
SC_HANDLE_DIALOG_MESSAGE( WM_NOTIFY, OnNotify );
}
SC_END_DIALOG_MESSAGE_HANDLERS();
}
};
#endif
| [
"seta7D5@protonmail.com"
] | seta7D5@protonmail.com |
a869d84c2ed427a5946af6a842c8d006dec70f5b | 07306d96ba61d744cb54293d75ed2e9a09228916 | /External/NaturalMotion/morpheme/SDK/assetProcessor/include/assetProcessor/AnimSource/AnimSourceBuilderUtils.h | c78c6e6bd5e40a650e04745e5a5148967be47e52 | [] | no_license | D34Dspy/warz-client | e57783a7c8adab1654f347f389c1dace35b81158 | 5262ea65e0baaf3f37ffaede5f41c9b7eafee7c1 | refs/heads/master | 2023-03-17T00:56:46.602407 | 2015-12-20T16:43:00 | 2015-12-20T16:43:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,004 | h | // Copyright (c) 2010 NaturalMotion. All Rights Reserved.
// Not to be copied, adapted, modified, used, distributed, sold,
// licensed or commercially exploited in any manner without the
// written consent of NaturalMotion.
//
// All non public elements of this software are the confidential
// information of NaturalMotion and may not be disclosed to any
// person nor used for any purpose not expressly approved by
// NaturalMotion in writing.
//----------------------------------------------------------------------------------------------------------------------
#ifdef _MSC_VER
#pragma once
#endif
#ifndef ANIM_SOURCE_BUILDER_UTILS_H
#define ANIM_SOURCE_BUILDER_UTILS_H
//----------------------------------------------------------------------------------------------------------------------
#include <vector>
#include <algorithm>
#include "morpheme/AnimSource/mrAnimSourceUtils.h"
//----------------------------------------------------------------------------------------------------------------------
namespace AP
{
//----------------------------------------------------------------------------------------------------------------------
uint32_t sectionAnimFramesByNumSections(
uint32_t numSections,
uint32_t numAnimFrames,
std::vector<uint32_t>& sectionStartFrames,
std::vector<uint32_t>& sectionEndFrames);
//----------------------------------------------------------------------------------------------------------------------
uint32_t sectionAnimFramesBySamplesPerSection(
uint32_t samplesPerSection,
uint32_t numAnimFrames,
bool roundToNearestNumSections,
std::vector<uint32_t>& sectionStartFrames,
std::vector<uint32_t>& sectionEndFrames);
//----------------------------------------------------------------------------------------------------------------------
/// \brief returns true if the channel data is considered to be unchanging. Due to numerical error
/// a value may be bouncing between two quantisation intervals if the step size is sufficiently small.
/// This function checks to see if the quantised values remain within a single interval of one another.
bool checkForUnchangingChannelQuantised(
uint32_t numAnimFrames,
const uint32_t* data);
//----------------------------------------------------------------------------------------------------------------------
// CompToAnimChannelMapLayout
//----------------------------------------------------------------------------------------------------------------------
class CompToAnimChannelMapLayout
{
public:
CompToAnimChannelMapLayout(const CompToAnimChannelMapLayout& rhs);
CompToAnimChannelMapLayout();
~CompToAnimChannelMapLayout();
NM_INLINE uint32_t getNumEntries() const { return (uint32_t)m_animChannels.size(); }
NM_INLINE void setAnimChannels(const std::vector<uint32_t>& animChannels) { m_animChannels = animChannels; }
NM_INLINE const std::vector<uint32_t>& getAnimChannels() const { return m_animChannels; }
NM_INLINE uint32_t getAnimChannel(uint32_t indx) const { return m_animChannels[indx]; }
NM_INLINE void push_back(uint32_t animId) { m_animChannels.push_back(animId); }
NM_INLINE uint32_t pop_back() { uint32_t result = m_animChannels.back(); m_animChannels.pop_back(); return result; }
NM_INLINE void sort() { std::sort(m_animChannels.begin(), m_animChannels.end()); }
protected:
std::vector<uint32_t> m_animChannels;
};
//----------------------------------------------------------------------------------------------------------------------
// SectionDataChannelLayout
//----------------------------------------------------------------------------------------------------------------------
class SectionDataChannelLayout
{
public:
class SectionLayout
{
friend class SectionDataChannelLayout;
public:
SectionLayout(uint32_t numChannelTypes);
~SectionLayout();
void tidy();
void sort();
NM_INLINE uint32_t getNumChannelTypes() const { return m_numChannelTypes; }
NM_INLINE const CompToAnimChannelMapLayout* getChannelTypeLayout(uint32_t channelType) const;
NM_INLINE size_t getSectionSize() const { return m_sectionSize; }
protected:
uint32_t m_numChannelTypes;
CompToAnimChannelMapLayout** m_channelTypeLayouts;
size_t m_sectionSize;
};
public:
SectionDataChannelLayout();
~SectionDataChannelLayout();
void tidy();
void computeLayout(
uint32_t numSections,
uint32_t numChannelTypes,
const std::vector<uint32_t>* const* channelTypeAnimIds,
const size_t* memReqsPerChannelType);
uint32_t getLargestSectionLayoutIndex() const;
NM_INLINE uint32_t getNumSections() const { return m_numSections; }
NM_INLINE const SectionLayout* getSectionLayout(uint32_t sectionIndex) const;
protected:
static void sectionSizeMeanAndVar(
const std::vector<size_t>& sectionSizes,
float& sectionSizeMean,
float& sectionSizeVar);
protected:
uint32_t m_numSections;
SectionLayout** m_sectionLayouts;
};
//----------------------------------------------------------------------------------------------------------------------
NM_INLINE const CompToAnimChannelMapLayout* SectionDataChannelLayout::SectionLayout::getChannelTypeLayout(uint32_t channelType) const
{
NMP_VERIFY(m_channelTypeLayouts);
NMP_VERIFY(channelType < m_numChannelTypes);
return m_channelTypeLayouts[channelType];
}
//----------------------------------------------------------------------------------------------------------------------
NM_INLINE const SectionDataChannelLayout::SectionLayout* SectionDataChannelLayout::getSectionLayout(uint32_t sectionIndex) const
{
NMP_VERIFY(m_sectionLayouts);
NMP_VERIFY(sectionIndex < m_numSections);
return m_sectionLayouts[sectionIndex];
}
} // namespace AP
//----------------------------------------------------------------------------------------------------------------------
#endif // ANIM_SOURCE_BUILDER_UTILS_H
//----------------------------------------------------------------------------------------------------------------------
| [
"hasan@openkod.com"
] | hasan@openkod.com |
c4901b139ab7433fab2261001443c506e87af10b | e6cb9b05376710f9a0ab8543b00420d7c604c2c2 | /client/src/main/game/guns/spray.cpp | aab0edc615a768670b3deb7136b2d0d2181b1d47 | [
"MIT"
] | permissive | JulianBiancardi/Wolfenstein-Taller1 | 684b69fb08fc4e91faf09f82fae2f585fea10e44 | 28e72ce8438264919586785aa09ce9b0a5de222b | refs/heads/main | 2023-04-11T07:20:20.905180 | 2021-04-16T18:05:19 | 2021-04-16T18:05:19 | 315,163,517 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 369 | cpp | #include "spray.h"
Spray::Spray(double spray_angle, double std_dev)
: spray_angle(spray_angle / 2),
generator(),
normal_distribution(0, std_dev) {}
Spray::~Spray() {}
double Spray::operator()() {
double angle;
// Truncate to certain angle
do {
angle = normal_distribution(generator);
} while (spray_angle < fabs(angle));
return angle;
} | [
"czopsantiago@gmail.com"
] | czopsantiago@gmail.com |
523a9b214b25b49573dfee444bd26e14347503b2 | 32f0b04881f92467df7db284539cd56bdfb5354b | /src/SDcard/FATFS/FatApiConstants.h | 6e9a871b92595be2041df4c19c8e339af98b386f | [
"MIT"
] | permissive | happeneddr9/STM32F0-YM2151-VGMPlayer | c5f8b3eb2a3d6e3b6ac6efac99a0bbe85a477016 | 202b3cc1f9b4c4c26468444710e9c4a17eb61510 | refs/heads/master | 2022-07-11T17:59:13.858747 | 2020-05-17T15:14:50 | 2020-05-17T15:14:50 | 256,118,887 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,636 | h | /**
* @Name : FatApiConstants.h
* @Date : 2020年1月1日 下午2:16:19
* @Author : happe
* @brief :
*/
#ifndef SDCARD_FATFS_FATAPICONSTANTS_H_
#define SDCARD_FATFS_FATAPICONSTANTS_H_
namespace SDCard{
enum FCNTL : uint8_t{
O_RDONLY = 0X00, ///< Open for reading only.
O_WRONLY = 0X01, ///< Open for writing only.
O_RDWR = 0X02, ///< Open for reading and writing.
O_AT_END = 0X04, ///< Open at EOF.
O_APPEND = 0X08, ///< Set append mode.
O_CREAT = 0x10, ///< Create file if it does not exist.
O_TRUNC = 0x20, ///< Truncate file to zero length.
O_EXCL = 0x40, ///< Fail if the file exists.
O_SYNC = 0x80, ///< Synchronized write I/O operations.
O_ACCMODE = (O_RDONLY | O_WRONLY | O_RDWR), ///< Mask for access mode.
O_READ = O_RDONLY,
O_WRITE = O_WRONLY,
};
typedef uint8_t oflag_t;
inline bool isWriteMode(oflag_t oflag) {
oflag &= O_ACCMODE;
return oflag == O_WRONLY || oflag == O_RDWR;
}
// FatFile class static and const definitions
// flags for ls()
/** ls() flag for list all files including hidden. */
const uint8_t LS_A = 1;
/** ls() flag to print modify. date */
const uint8_t LS_DATE = 2;
/** ls() flag to print file size. */
const uint8_t LS_SIZE = 4;
/** ls() flag for recursive list of subdirectories */
const uint8_t LS_R = 8;
// flags for timestamp
/** set the file's last access date */
const uint8_t T_ACCESS = 1;
/** set the file's creation date and time */
const uint8_t T_CREATE = 2;
/** Set the file's write date and time */
const uint8_t T_WRITE = 4;
}
#endif /* SDCARD_FATFS_FATAPICONSTANTS_H_ */
| [
"happeneddr9@gmail.com"
] | happeneddr9@gmail.com |
f42ef8ca1c93c087f9f97de3bbc15bb18006b607 | 7359c57284f4772c910055e91d0b8587698ff80b | /game_engine/src/map.cpp | 48dc40352e6b55a90aceea05da150e0036221672 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | GabrielLins64/Endless-Online-Awaken | 0eb3644604037a1750f23eede3a7cf421a418328 | 1af1e07fb8ae88d87e76fdf297422cff1c0bacab | refs/heads/master | 2021-09-10T08:05:10.320335 | 2018-03-22T15:33:28 | 2018-03-22T15:33:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,408 | cpp | // Endless Online Awaken
#include "map.hpp"
#include "file_handler.hpp"
#include "gui.hpp"
#include "map_cursor.hpp"
#include "font_handler.hpp"
#include "client.hpp"
#include <fstream>
#include <iostream>
bool Map::initialized_ = false;
bool Map::exists;
unsigned int Map::id;
std::string Map::name;
unsigned int Map::revision;
unsigned short Map::width;
unsigned short Map::height;
unsigned int Map::fill_tile;
std::map<Map::Layer::Type, Map::Layer> Map::layers;
std::map<unsigned short, std::map<unsigned short, std::shared_ptr<Map::Attribute>>> Map::atts;
std::vector<std::shared_ptr<Character>> Map::characters;
std::vector<std::shared_ptr<NPC>> Map::npcs;
Map::Layer::Layer()
{
this->type = Type::Ground;
}
Map::Map()
{
if(!this->initialized_)
{
this->exists = false;
this->id = 0;
this->name = "";
this->revision = 0;
this->width = 1;
this->height = 1;
this->fill_tile = 0;
this->initialized_ = true;
}
}
Map::Map(unsigned int id)
{
if(!this->initialized_)
{
this->initialized_ = true;
}
this->Load(id);
}
bool Map::Load(unsigned int id)
{
this->Reset();
this->exists = false;
this->id = id;
if(this->id == 0)
{
throw std::runtime_error("Map: can't load map, ID #0 is reserved.");
}
std::string filename = "data/maps/" + std::to_string(this->id) + ".map";
FileHandler fh(filename);
this->exists = fh.Exists();
if(!this->exists) return false;
this->name = fh.GetString();
this->revision = fh.GetInt();
this->width = fh.GetShort();
this->height = fh.GetShort();
this->fill_tile = fh.GetInt();
unsigned char read_tile = fh.GetChar();
while(read_tile == 1)
{
std::shared_ptr<Tile> tile = std::shared_ptr<Tile>(new Tile());
tile->graphic_id = fh.GetInt();
tile->x = fh.GetShort();
tile->y = fh.GetShort();
Layer::Type layer_type = (Layer::Type)fh.GetChar();
this->layers[(Layer::Type)layer_type].tiles[tile->x][tile->y] = tile;
read_tile = fh.GetChar();
}
read_tile = fh.GetChar();
while(read_tile == 1)
{
std::shared_ptr<Attribute> att = std::shared_ptr<Attribute>(new Attribute());
att->type = (Attribute::Type)fh.GetChar();
att->x = fh.GetShort();
att->y = fh.GetShort();
this->atts[att->x][att->y] = att;
read_tile = fh.GetChar();
}
std::cout << "Map loaded: '" << this->name << "' " << this->width << "x" << this->height << std::endl;
return true;
}
void Map::Save()
{
if(this->id == 0)
{
throw std::runtime_error("Map: can't save map, ID #0 is reserved.");
}
std::ofstream file;
std::string filename = "data/maps/" + std::to_string(this->id) + ".map";
FileHandler fh;
fh.AddString(this->name);
fh.AddInt(++this->revision);
fh.AddShort(this->width);
fh.AddShort(this->height);
fh.AddInt(this->fill_tile);
for(auto &l : this->layers)
{
for(auto &t : l.second.tiles)
{
for(auto &tt : t.second)
{
std::shared_ptr<Tile> tile = tt.second;
if(tile == 0) continue;
fh.AddChar(1);
fh.AddInt(tile->graphic_id);
fh.AddShort(tile->x);
fh.AddShort(tile->y);
fh.AddChar((unsigned int)l.first);
}
}
}
fh.AddChar(0);
for(auto &a : this->atts)
{
for(auto &aa : a.second)
{
std::shared_ptr<Attribute> att = aa.second;
if(att == 0) continue;
fh.AddChar(1);
fh.AddChar((unsigned int)att->type);
fh.AddShort(att->x);
fh.AddShort(att->y);
}
}
fh.AddChar(0);
fh.Save(filename);
this->exists = fh.Exists();
}
void Map::Tick()
{
for(auto &it : this->characters)
{
it->Tick();
}
for(auto &it : this->npcs)
{
it->Tick();
}
}
void Map::Render(int rx, int ry)
{
Character *character = Client().character;
unsigned short start_x = 0;
unsigned short start_y = 0;
unsigned short end_x = this->width > 0? this->width - 1 : 1;
unsigned short end_y = this->height > 0? this->height - 1 : 1;
if(character != 0)
{
start_x = character->x > 16? character->x - 16 : 0;
start_y = character->y > 16? character->y - 16 : 0;
end_x = character->x + 16 > this->width? this->width - 1 : character->x + 16;
end_y = character->y + 16 > this->height? this->height - 1 : character->y + 16;
}
if(this->fill_tile != 0)
{
ALLEGRO_BITMAP *tilegfx = GFXLoader().GetBitmap(3, this->fill_tile);
if(tilegfx != 0)
{
al_hold_bitmap_drawing(true);
for(unsigned short x = start_x; x <= end_x; ++x)
{
for(unsigned short y = start_y; y <= end_y; ++y)
{
int screen_x = x * 64 - x * 32 - y * 32 + rx;
int screen_y = y * 16 + x * 16 + ry;
al_draw_bitmap(tilegfx, screen_x, screen_y, 0);
}
}
al_hold_bitmap_drawing(false);
}
}
int gid_offset[2] = { 3, 4 };
bool cursor_drawn = false;
for(int i = 0; i < (int)Layer::Type::Object; ++i) // render stagged tiles for ground layer only
{
std::map<unsigned int, ALLEGRO_BITMAP *> bitmaps;
std::map<unsigned int, std::vector<std::shared_ptr<Tile>>> tiles_stagged;
for(unsigned short x = start_x; x <= end_x; ++x)
{
for(unsigned short y = start_y; y <= end_y; ++y)
{
std::shared_ptr<Tile> tile = this->layers[(Layer::Type)i].tiles[x][y];
if(tile == 0) continue;
ALLEGRO_BITMAP *tilegfx = NULL;
if(bitmaps.find(tile->graphic_id) == bitmaps.end())
{
tilegfx = GFXLoader().GetBitmap(gid_offset[i], tile->graphic_id);
bitmaps[tile->graphic_id] = tilegfx;
}
if(tile->x >= start_x && tile->x <= end_x && tile->y >= start_y && tile->y <= end_y)
tiles_stagged[tile->graphic_id].push_back(tile);
}
}
for(auto &ts : tiles_stagged)
{
al_hold_bitmap_drawing(true);
for(auto &tile : ts.second)
{
if(bitmaps[ts.first] == NULL) continue;
int screen_x = tile->x * 64 - tile->x * 32 - tile->y * 32 + rx;
int screen_y = tile->y * 16 + tile->x * 16 + ry;
int w = al_get_bitmap_width(bitmaps[ts.first]);
int h = al_get_bitmap_height(bitmaps[ts.first]);
if(i == (int)Layer::Type::Object)
{
if(w > 64)
{
screen_x -= w / 2;
screen_x += 32;
}
if(h > 32)
{
screen_y -= h;
screen_y += 32;
}
if(w < 64)
{
screen_x -= w / 2;
screen_x += 32;
if(h > 32) screen_y -= 8;
}
if(h < 32)
{
screen_y -= h / 2;
screen_y += 16;
}
}
al_draw_bitmap(bitmaps[ts.first], screen_x, screen_y, 0);
}
al_hold_bitmap_drawing(false);
}
if(i == (int)Layer::Type::Ground)
{
MapCursor().Render(rx, ry);
cursor_drawn = true;
}
}
if(!cursor_drawn)
{
MapCursor().Render(rx, ry);
}
// object layer + characters
for(unsigned short x = start_x; x <= end_x; ++x)
{
for(unsigned short y = start_y; y <= end_y; ++y)
{
std::shared_ptr<Tile> tile = this->layers[Layer::Type::Object].tiles[x][y];
if(tile != 0)
{
ALLEGRO_BITMAP *tilegfx = GFXLoader().GetBitmap(gid_offset[(int)Layer::Type::Object], tile->graphic_id);
if(tilegfx != 0)
{
int screen_x = tile->x * 64 - tile->x * 32 - tile->y * 32 + rx;
int screen_y = tile->y * 16 + tile->x * 16 + ry;
int w = al_get_bitmap_width(tilegfx);
int h = al_get_bitmap_height(tilegfx);
if(w > 64)
{
screen_x -= w / 2;
screen_x += 32;
}
if(h > 32)
{
screen_y -= h;
screen_y += 32;
}
if(w < 64)
{
screen_x -= w / 2;
screen_x += 32;
if(h > 32) screen_y -= 8;
}
if(h < 32)
{
screen_y -= h / 2;
screen_y += 16;
}
al_draw_bitmap(tilegfx, screen_x, screen_y, 0);
}
}
for(auto &charr : this->characters)
{
if(charr->x == x && charr->y == y) charr->RenderNew(rx, ry);
}
for(auto &npc : this->npcs)
{
if(npc->x == x && npc->y == y) npc->Render(rx, ry);
}
}
}
std::string nickname = MapCursor().nickname;
if(nickname != "")
{
ALLEGRO_FONT *font = FontHandler().font;
float alpha = 0.5f;
ALLEGRO_COLOR color = al_map_rgba_f(1.0, 1.0, 1.0, alpha);
Character *charr = this->GetCharacter(nickname);
if(charr == 0) return;
int text_w = al_get_text_width(font, nickname.c_str());
std::vector<int> char_pos = charr->GetScreenPos();
al_draw_text(font, color, char_pos[0] - text_w / 2, char_pos[1] - 6, 0, nickname.c_str());
}
}
void Map::Reset()
{
this->id = 0;
this->name.clear();
this->revision = 0;
this->width = 1;
this->height = 1;
this->fill_tile = 0;
this->layers.clear();
this->atts.clear();
this->characters.clear();
this->npcs.clear();
}
std::vector<Character *> Map::GetCharactersAt(unsigned short x, unsigned short y)
{
std::vector<Character *> ret;
for(auto &it: characters)
{
if(it->x == x && it->y == y)
{
ret.push_back(it.get());
}
}
return ret;
}
Character *Map::GetCharacter(std::string name)
{
for(auto &it: characters)
{
if(it->name == name)
return it.get();
}
return 0;
}
void Map::DeleteCharacter(std::string name)
{
for(std::size_t i = 0; i < this->characters.size(); ++i)
{
if(this->characters[i]->name == name)
{
this->characters.erase(this->characters.begin() + i);
return;
}
}
}
std::vector<NPC *> Map::GetNPCsAt(unsigned short x, unsigned short y)
{
std::vector<NPC *> ret;
for(auto &it: npcs)
{
if(it->x == x && it->y == y)
{
ret.push_back(it.get());
}
}
return ret;
}
NPC *Map::GetNPC(unsigned int index)
{
for(auto &it: npcs)
{
if(it->index == index)
return it.get();
}
return 0;
}
void Map::DeleteNPC(unsigned int index)
{
for(std::size_t i = 0; i < this->npcs.size(); ++i)
{
if(this->npcs[i]->index == index)
{
this->npcs.erase(this->npcs.begin() + i);
return;
}
}
}
bool Map::Walkable(unsigned short x, unsigned short y, bool entity)
{
if(this->atts[x][y] != 0)
{
if(this->atts[x][y]->type == Attribute::Type::Wall) return false;
}
if(!entity) return true;
for(auto &it: this->characters)
{
if(it->x == x && it->y == y) return false;
}
for(auto &it: this->npcs)
{
if(it->x == x && it->y == y) return false;
}
return true;
}
| [
"jjimmy92@gmail.com"
] | jjimmy92@gmail.com |
a82a54524ecc8de2f53e0238e169df4ee037e192 | 910d634de833e81bdbd6269be1950f36b75b765d | /Tile2D/Canvas/ParticleSystem/ParticleSystem.cpp | 196141099f582527a0ba9b9a96baea28cc176572 | [
"MIT"
] | permissive | mipelius/tile2d | ccc2c3adb4fd3375797babfd3e3ba9090967e805 | 7cbc62d6b47afdea11a7775d25f9e91c900cc627 | refs/heads/master | 2021-09-20T18:34:50.480325 | 2018-07-26T22:16:07 | 2018-07-26T22:16:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,184 | cpp | // MIT License
//
// This file is part of SpaceGame.
// Copyright (c) 2014-2018 Miika Pelkonen
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#include "precompile.h"
#include "ParticleSystem.h"
#include "Tile2D.h"
#include "Resources.h"
#include "Reflector.h"
ParticleSystem::ParticleSystem() : particleRect_({-10, -10, 10, 10}){
lastSpawnTimeStamp_ = SDL_GetTicks();
}
void ParticleSystem::drawActual(const Canvas &canvas) {
if (isPlaying_) {
spawnParticles_();
}
updateParticles_();
drawParticles_();
}
void ParticleSystem::spawnParticles_() {
// spawn new particles if necessary and possible
if (spawnFrequency_ == 0) {
return;
}
if (initializer_ != nullptr) {
Uint32 deltaTime = SDL_GetTicks() - lastSpawnTimeStamp_;
float threshold = 1000.0f / spawnFrequency_;
if (deltaTime > threshold) {
Uint32 amount = (Uint32)(deltaTime / threshold);
for (auto i = 0u; i < amount; ++i) {
if (playsOnce_ && particlesSpawned_ >= particlesToSpawn_) {
stop();
return;
}
if (!emitOnce()) {
return;
}
}
}
}
}
void ParticleSystem::updateParticles_() {
Particle* currentParticle = firstParticle_;
while (currentParticle != nullptr) {
updater_->update(currentParticle);
currentParticle = currentParticle->next_;
}
}
void ParticleSystem::drawParticles_() {
if (texturePtr_ == nullptr) {
return;
}
texturePtr_->glBind();
Particle* currentParticle = firstParticle_;
glBlendFunc(blendSourceFactor_, blendDestinationFactor_);
while (currentParticle != nullptr) {
glMatrixMode(GL_MODELVIEW);
currentParticle->transform_.glTransform();
glColor4f(
currentParticle->color_.red,
currentParticle->color_.green,
currentParticle->color_.blue,
currentParticle->opacity_
);
glBegin(GL_QUADS);
glTexCoord2f(0.01, 0.01);
glVertex3f(particleRect_.x1, particleRect_.y1, 0.0);
glTexCoord2f(0.99, 0.01);
glVertex3f(particleRect_.x2, particleRect_.y1, 0.0);
glTexCoord2f(0.99, 0.99);
glVertex3f(particleRect_.x2, particleRect_.y2, 0.0);
glTexCoord2f(0.01, 0.99);
glVertex3f(particleRect_.x1, particleRect_.y2, 0.0);
glEnd();
currentParticle->transform_.glInvTransform();
currentParticle = currentParticle->next_;
}
}
// --- getters and setters ---
Texture *ParticleSystem::getTexturePtr() const {
return texturePtr_;
}
void ParticleSystem::setTexturePtr(Texture *texturePtr) {
texturePtr_ = texturePtr;
}
unsigned int ParticleSystem::getSpawnFrequency() const {
return spawnFrequency_;
}
void ParticleSystem::setSpawnFrequency(unsigned int spawnFrequency) {
spawnFrequency_ = spawnFrequency;
}
unsigned int ParticleSystem::getMaxParticles() const {
return maxParticles_;
}
void ParticleSystem::setMaxParticles(unsigned int maxParticles) {
maxParticles_ = maxParticles;
}
void ParticleSystem::setInitializer(void (*initFunc)(Particle *)) {
initializer_ = new InitializerWrapper(initFunc);
}
void ParticleSystem::setUpdater(void (*updateFunc)(Particle *)) {
updater_ = new UpdaterWrapper(updateFunc);
}
const Rect &ParticleSystem::getParticleRect() const {
return particleRect_;
}
void ParticleSystem::setParticleRect(const Rect &particleRect) {
particleRect_ = particleRect;
}
void ParticleSystem::onDestroy() {
DrawableBase::onDestroy();
Particle* currentParticle = firstParticle_;
while (currentParticle != nullptr) {
Particle* nextParticle = currentParticle->next_;
Tile2D::instance_().particlePool_.free(currentParticle);
currentParticle = nextParticle;
}
}
GLenum ParticleSystem::getBlendSourceFactor() const {
return blendSourceFactor_;
}
void ParticleSystem::setBlendSourceFactor(GLenum blendSourceFactor) {
blendSourceFactor_ = blendSourceFactor;
}
GLenum ParticleSystem::getBlendDestinationFactor() const {
return blendDestinationFactor_;
}
void ParticleSystem::setBlendDestinationFactor(GLenum blendDestionationFactor) {
blendDestinationFactor_ = blendDestionationFactor;
}
bool ParticleSystem::playsOnce() const {
return playsOnce_;
}
void ParticleSystem::setPlaysOnce(bool playOnce) {
playsOnce_ = playOnce;
}
Tile2DComponent *ParticleSystem::clone() {
return new ParticleSystem(*this);
}
ParticleSystem::~ParticleSystem() {
delete initializer_;
delete updater_;
}
void ParticleSystem::deserialize(const json::Object &jsonObject) {
DrawableBase::deserialize(jsonObject);
if (jsonObject.HasKey("blendSourceFactor")) {
auto str = jsonObject["blendSourceFactor"].ToString();
auto it = stringToGLEnumMap_.find(str);
if (it == stringToGLEnumMap_.end()) {
throw std::runtime_error("ParticleSystem: invalid blendSourceFactor");
}
blendSourceFactor_ = (*it).second;
}
if (jsonObject.HasKey("blendDestinationFactor")) {
auto str = jsonObject["blendDestinationFactor"].ToString();
auto it = stringToGLEnumMap_.find(str);
if (it == stringToGLEnumMap_.end()) {
throw std::runtime_error("ParticleSystem: invalid blendDestinationFactor_");
}
blendDestinationFactor_ = (*it).second;
}
if (jsonObject.HasKey("spawnFrequency")) {
spawnFrequency_ = (unsigned int)jsonObject["spawnFrequency"].ToInt();
}
if (jsonObject.HasKey("maxParticles")) {
maxParticles_ = (unsigned int)jsonObject["maxParticles"].ToInt();
}
if (jsonObject.HasKey("particleRect")) {
particleRect_.deserialize(jsonObject["particleRect"].ToObject());
}
if (jsonObject.HasKey("texture")) {
auto textureName = jsonObject["texture"].ToString();
texturePtr_ = Tile2D::resources().textures[textureName];
}
if (jsonObject.HasKey("playsOnce")) {
playsOnce_ = jsonObject["playsOnce"].ToBool();
}
if (jsonObject.HasKey("initializer")) {
auto initializerJson = jsonObject["initializer"];
auto initializer = Tile2D::reflector().instantiate<IInitializer>(initializerJson);
initializer_ = initializer;
}
if (jsonObject.HasKey("updater")) {
auto updaterJson = jsonObject["updater"];
auto updater = Tile2D::reflector().instantiate<IUpdater>(updaterJson);
updater_ = updater;
}
if (jsonObject.HasKey("playOnAwake")) {
playOnAwake_ = jsonObject["playOnAwake"].ToBool();
}
if (jsonObject.HasKey("particlesToSpawn")) {
particlesToSpawn_ = (unsigned int)jsonObject["particlesToSpawn"].ToInt();
}
}
ParticleSystem::ParticleSystem(ParticleSystem &other) {
blendSourceFactor_ = other.blendSourceFactor_;
blendDestinationFactor_ = other.blendDestinationFactor_;
spawnFrequency_ = other.spawnFrequency_;
maxParticles_ = other.maxParticles_;
particleRect_ = other.particleRect_;
texturePtr_ = other.texturePtr_;
playsOnce_ = other.playsOnce_;
playOnAwake_ = other.playOnAwake_;
particlesToSpawn_ = other.particlesToSpawn_;
firstParticle_ = nullptr;
particleCount_ = 0;
particlesSpawned_ = 0;
lastSpawnTimeStamp_ = 0;
if (other.initializer_ != nullptr) {
this->initializer_ = other.initializer_->clone();
}
if (other.updater_ != nullptr) {
this->updater_ = other.updater_->clone();
}
}
void ParticleSystem::play() {
isPlaying_ = true;
}
void ParticleSystem::stop() {
particlesSpawned_ = 0;
isPlaying_ = false;
}
void ParticleSystem::init() {
DrawableBase::init();
if (playOnAwake_) {
play();
}
}
bool ParticleSystem::isPlayOnAwake() const {
return playOnAwake_;
}
void ParticleSystem::setPlayOnAwake(bool playOnAwake) {
playOnAwake_ = playOnAwake;
}
bool ParticleSystem::isPlaying() const {
return isPlaying_;
}
void ParticleSystem::setInitializer(ParticleSystem::IInitializer* initializer) {
initializer_ = initializer;
}
void ParticleSystem::setUpdater(ParticleSystem::IUpdater* updater) {
updater_ = updater;
}
unsigned int ParticleSystem::getParticlesToSpawn() const {
return particlesToSpawn_;
}
void ParticleSystem::setParticlesToSpawn(unsigned int particlesToSpawn) {
particlesToSpawn_ = particlesToSpawn;
}
bool ParticleSystem::emitOnce() {
if (particleCount_ > maxParticles_) {
return false;
}
Particle* newParticle = Tile2D::instance_().particlePool_.malloc();
if (firstParticle_ != nullptr) {
firstParticle_->prev_ = newParticle;
}
newParticle->next_ = firstParticle_;
newParticle->prev_ = nullptr;
newParticle->owner_ = this;
firstParticle_ = newParticle;
lastSpawnTimeStamp_ = SDL_GetTicks();
newParticle->spawnTimestamp_ = lastSpawnTimeStamp_;
initializer_->initialize(newParticle);
particleCount_++;
particlesSpawned_++;
return true;
}
| [
"pelkonen.miika@gmail.com"
] | pelkonen.miika@gmail.com |
59c8c4a66e751e04aba46fd765b7e0799a4faa27 | bcb4c2bcc5174e9d0f1196a8bea6fbedf76373aa | /Lab5New/Lab5New/ezra_lab5_pc02.cpp | fc4b839ff6e0012e6c50a5f67c85cac3e01d2e6b | [] | no_license | emchang3/CIS2541 | bc62447ef72773b613fb4cc264bd3674596796c0 | e00a7eaeecf8a19284c7393153d8731fad22cb31 | refs/heads/master | 2021-01-16T23:22:34.360745 | 2017-01-12T02:05:19 | 2017-01-12T02:05:19 | 60,797,773 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 515 | cpp | //
// PC2.cpp
// Lab5
//
// Created by Ezra Chang on 6/20/16.
// Copyright © 2016 Ezra Chang. All rights reserved.
//
// Characters for the ASCII Codes
//
// Write a program that uses a loop to display the characters for the ASCII codes 0 through 127. Display 16 characters on each line.
#include <iostream>
using namespace std;
int main()
{
for(int i = 0; i <= 127; i++)
{
cout << (char) i << " ";
if ((i + 1) % 16 == 0)
{
cout << endl;
}
}
cout << endl << endl;
return 0;
}
| [
"ezra.mintao.chang@gmail.com"
] | ezra.mintao.chang@gmail.com |
e08cc19a694631d6ca53432e109306f2e92b17a5 | ba05ccc2bf2b4f9ec6e6af3ad7e6cda48ef8fc61 | /iegad_framework/libiegad/test/test_queue.cxx | 1842531b598a479ef016b76edba9f4cce113381b | [] | no_license | HaihuaLiu1113/work | a1c54161c5aab19e1cd5144d69c5f74324f9b0ca | c71d8f5c34b34a42db01d0a8eef10f64d29e03aa | refs/heads/master | 2021-01-11T05:02:52.367561 | 2017-03-29T02:06:45 | 2017-03-29T02:06:45 | 86,526,484 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,348 | cxx | // ==========================================
// @title : queue 第一轮测试
// @by : iegad, 2016-06-18
// ==========================================
#include <gtest/gtest.h>
#include <thread>
#include <future>
#include <string>
#include <memory>
#include "tools/job_queue.hpp"
using namespace iegad::tools;
struct person_t {
public:
person_t(const std::string & name, int age)
:
age(age),
name(name)
{}
int age;
std::string name;
};
typedef std::shared_ptr<person_t> person_ptr;
int
func1(job_que_t<int> & que)
{// 异步出队线程
std::this_thread::sleep_for(std::chrono::seconds(1));
int res;
if (!que.pop(&res)) {
return -1;
}
return res;
}
person_ptr
func2(job_que_t<person_ptr> & que)
{
std::this_thread::sleep_for(std::chrono::seconds(1));
person_ptr res;
if (!que.pop(&res)) {
return nullptr;
}
return res;
}
// 1: ============== int que ================
TEST(queueTesting, pushAndPop_int)
{
job_que_t<int> que;
EXPECT_TRUE(que.empty());
que.push(10);
que.push(20);
EXPECT_EQ(que.size(), 2u);
// 同步出队
int va1;
EXPECT_TRUE(que.pop(&va1));
EXPECT_EQ(10, va1);
//异步出队
std::future<int> f1 = std::async(func1, std::ref(que));
EXPECT_EQ(20, f1.get());
// stop队列, 将返回错误出队值
std::future<int> f2 = std::async(func1, std::ref(que));
que.stop();
EXPECT_EQ(-1, f2.get());
EXPECT_TRUE(que.empty());
}
// 2: ============== class que ================
TEST(queueTesting, pushAndPop_class)
{
job_que_t<person_ptr> que;
EXPECT_TRUE(que.empty());
person_ptr p1(new person_t("肖琪", 28));
person_ptr p2(new person_t("Aizen", 22));
que.push(p1);
que.push(p2);
EXPECT_EQ(que.size(), 2u);
// 同步出队
person_ptr va1;
EXPECT_TRUE(que.pop(&va1));
EXPECT_EQ(28, va1->age);
EXPECT_EQ("肖琪", va1->name);
//异步出队
std::future<person_ptr> f1 = std::async(func2, std::ref(que));
person_ptr va2 = f1.get();
EXPECT_EQ(22, va2->age);
EXPECT_EQ("Aizen", va2->name);
// stop队列, 将返回错误出队值
std::future<person_ptr> f2 = std::async(func2, std::ref(que));
que.stop();
EXPECT_EQ(nullptr, f2.get());
EXPECT_TRUE(que.empty());
}
| [
"liuhaihua"
] | liuhaihua |
2f962d37e5bf1960137f2ac7ad41c9144a8ac63c | 6223dc2e5de7921696cb34fb62142fd4a4efe361 | /Sandhi/Sandhi_Intership_Work/Sandhi-PlantMigration/gr-sbhsfan/swig/sbhsfan_swig.i | 11a321966087b7db1c5490b38a15b3b5d465ee0c | [] | no_license | Mushirahmed/python_workspace | 5ef477b2688e8c25b1372f546752501ee53d93e5 | 46e2ed783b17450aba29e4e2df7b656522b2b03b | refs/heads/master | 2021-03-12T19:24:50.598982 | 2015-05-25T10:23:54 | 2015-05-25T10:23:54 | 24,671,376 | 0 | 1 | null | 2015-02-06T09:27:40 | 2014-10-01T08:40:33 | Python | UTF-8 | C++ | false | false | 159 | i | /* -*- c++ -*- */
#define SBHSFAN_API
%include "gnuradio.i" // the common stuff
//load generated python docstrings
%include "sbhsfan_swig_doc.i"
%{
%}
| [
"imushir@gmail.com"
] | imushir@gmail.com |
7c5d78e59f2bb54011bdf19ea47042ed547dbf89 | 167cc24e3f5225553071a6c05a048ae5964c5685 | /MantidQt/API/src/PythonThreading.cpp | 16956d4e29d69bd87a86b8a9ee9db2aee0781472 | [] | no_license | mcvine/mantid | b5e5410ecb236357eb522aa6bd26154595d0c7b7 | 802187f44f44fa1617f4bf9ca33459599e34054c | refs/heads/master | 2021-01-20T16:44:35.622599 | 2016-06-06T14:04:07 | 2016-06-06T14:04:07 | 59,444,548 | 0 | 0 | null | 2016-05-23T01:52:34 | 2016-05-23T01:52:33 | null | UTF-8 | C++ | false | false | 1,468 | cpp | //------------------------------------------------------------------------------
// Includes
//------------------------------------------------------------------------------
#include "MantidQtAPI/PythonThreading.h"
#include <iostream>
//------------------------------------------------------------------------------
// PythonGIL Public members
//------------------------------------------------------------------------------
/**
* Leaves the lock unlocked. You are strongly encouraged to use
* the ScopedInterpreterLock class to control this
*/
PythonGIL::PythonGIL() : m_state(PyGILState_UNLOCKED) {}
/**
* Calls PyGILState_Ensure. A call to this must be matched by a call to release
* on the same thread.
*/
void PythonGIL::acquire() { m_state = PyGILState_Ensure(); }
/**
* Calls PyGILState_Release
*/
void PythonGIL::release() { PyGILState_Release(m_state); }
//------------------------------------------------------------------------------
// RecursivePythonGIL public members
//------------------------------------------------------------------------------
/**
* Leaves the lock unlocked. You are strongly encouraged to use
* the ScopedRecursiveInterpreterLock class to control this
*/
RecursivePythonGIL::RecursivePythonGIL() : m_count(0), m_lock() {}
void RecursivePythonGIL::acquire() {
if(m_count == 0) {
m_lock.acquire();
}
m_count += 1;
}
void RecursivePythonGIL::release() {
if (--m_count == 0) {
m_lock.release();
}
}
| [
"martyn.gigg@gmail.com"
] | martyn.gigg@gmail.com |
d0d16176cfcfff6ba669c12751116265f4da6faa | 89f230e1b83b8ac043c7a045f1420f5095fa91d4 | /cpp/cpp11/No.2/oop.cpp | 73fa55c42068735273bb84b0f1e07be7111a3d01 | [] | no_license | walterzhaoJR/CodeLearning | f264ae6975034e0b68e68d7007853e45c10b78d3 | 8b7197f8e4cc035c7a85765969a9b04750489dac | refs/heads/master | 2022-07-17T06:37:48.904401 | 2022-05-24T11:58:52 | 2022-05-24T11:58:52 | 227,797,226 | 0 | 0 | null | 2021-11-05T16:53:39 | 2019-12-13T08:55:50 | Python | UTF-8 | C++ | false | false | 1,936 | cpp | #include<iostream>
using namespace std;
class Base
{
public:
int value1;
int value2;
Base()
{
value1 = 1;
}
Base(int _values):Base()//委托Base()构造函数
{
value2 = _values;
}
};
class subClass:public Base
{
public:
int value3;
subClass(int value3,int value2):Base(value2)//继承父类构造
{
this->value3 = value3;
}
};
/*
*
*当基类的虚函数被删除后,子类拥有旧的函数就不再重载该虚拟函数并摇身一变成为了一个普通的类方法,这将造成灾难性的后果。
* C++11 引入了 override 和 final 这两个关键字来防止上述情形的发生。
*
*override
* 当重载虚函数时,引入 override 关键字将显式的告知编译器进行重载,
* 编译器将检查基函数是否存在这样的虚函数,否则将无法通过编译
*
* final 则是为了防止类被继续继承以及终止虚函数继续重载引入的
*
* */
class Test
{
public:
virtual void foo(int){};
};
class Test2:public Test
{
public:
virtual void foo(int) override ;//合法]
//virtual void foo(float) override ;//非法,父类没有这个虚函数
};
//final
class BT
{
public:
virtual void foo() final;
};
class AT final :Base
{
//合法
};
/*
class CT:AT//非法,应为AT 已经为final的不能被继承
{
};
*/
class DT:BT
{
//void foo();//非法,在基类中的foo()函数已经是final不能被继承的了
};
//C++11 允许显式的声明采用或拒绝编译器自带的函数
class My
{
public:
My() = default;//显示的声明使用编译器生成的构造函数
My& operator=(const My&my) = delete;//显示的拒绝使用编译器生成的构造
My(int number);
};
int main()
{
Base b(2);
cout<<b.value1<<endl;
cout<<b.value2<<endl;
subClass s(10,8);
cout<<s.value1<<endl;
cout<<s.value2<<endl;
cout<<s.value3<<endl;
}
| [
"walterzhao@tencent.com"
] | walterzhao@tencent.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.